diff --git a/parse/train/4qR3coiNaIv/4qR3coiNaIv.md b/parse/train/4qR3coiNaIv/4qR3coiNaIv.md new file mode 100644 index 0000000000000000000000000000000000000000..50e1123d554a799a6858e39cac3674b1ff56eb8d --- /dev/null +++ b/parse/train/4qR3coiNaIv/4qR3coiNaIv.md @@ -0,0 +1,313 @@ +# SCALABLE BAYESIAN INVERSE REINFORCEMENT LEARNING + +Alex J. Chan University of Cambridge, Cambridge, UK alexjchan@maths.cam.ac.uk + +Mihaela van der Schaar +University of Cambridge, Cambridge, UK University of California, Los Angeles, USA Cambridge Centre for AI in Medicine, UK The Alan Turing Institute, London, UK +mv472@cam.ac.uk + +# ABSTRACT + +Bayesian inference over the reward presents an ideal solution to the ill-posed nature of the inverse reinforcement learning problem. Unfortunately current methods generally do not scale well beyond the small tabular setting due to the need for an inner-loop MDP solver, and even non-Bayesian methods that do themselves scale often require extensive interaction with the environment to perform well, being inappropriate for high stakes or costly applications such as healthcare. In this paper we introduce our method, Approximate Variational Reward Imitation Learning (AVRIL), that addresses both of these issues by jointly learning an approximate posterior distribution over the reward that scales to arbitrarily complicated state spaces alongside an appropriate policy in a completely offline manner through a variational approach to said latent reward. Applying our method to real medical data alongside classic control simulations, we demonstrate Bayesian reward inference in environments beyond the scope of current methods, as well as task performance competitive with focused offline imitation learning algorithms. + +# 1 INTRODUCTION + +For applications in complicated and high-stakes environments it can often mean operating in the minimal possible setting - that is with no access to knowledge of the environment dynamics nor intrinsic reward, nor even the ability to interact and test policies. In this case learning and inference must be done solely on the basis of logged trajectories from a competent demonstrator showing only the states visited and the the action taken in each case. + +Clinical decision making is an important example of this, where there is great interest in learning policies from medical professionals but is completely impractical and unethical to deploy policies on patients mid-training. Moreover this is an area where it is not only the policies, but also knowledge of the demonstrator’s preferences and goals, that we are interested in. While imitation learning (IL) generally deals with the problem of producing appropriate policies to match a demonstrator, with the added layer of understanding motivations this would then usually be approached through inverse reinforcement learning (IRL). Here attempting to learn the assumed underlying reward driving the demonstrator, before secondarily learning a policy that is optimal with respect to the reward using some forward reinforcement learning (RL) technique. By composing the RL and IRL procedures in order to perform IL we arrive at apprenticeship learning (AL), which introduces its own challenges, particularly in the offline setting. Notably for any given set of demonstrations there are (infinitely) many rewards for which the actions would be optimal $\mathrm { N g }$ et al., 2000). Max-margin (Abbeel & $\mathrm { N g }$ , 2004) and max-entropy (Ziebart et al., 2008) methods for heuristically differentiating plausible rewards do so at the cost of potentially dismissing the true reward for not possessing desirable qualities. On the other hand a Bayesian approach to IRL (BIRL) is more conceptually satisfying, taking a probabilistic view of the reward, we are interested in the posterior distribution having seen the demonstrations (Ramachandran & Amir, 2007), accounting for all possibilities. BIRL is not without its own drawbacks though, as noted in Brown & Niekum (2019), making it inappropriate for modern complicated environments: assuming linear rewards; small, solvable environments; and repeated, inner-loop, calls to forward RL. + +![](images/d9cfdc5b1bc6f3e16d989317572e562d90d7f13f159f7755e10beb37ec13d22b.jpg) +Figure 1: Overview. AVRIL is a framework for BIRL that works through an approximation in the variational Bayesian framework, considering the reward to be a latent representation of behaviour. A distribution over the reward, which is amortised over the demonstration space, is learnt that then informs an imitator $Q$ -function policy. The dotted line represents a departure from a traditional auto-encoder as the input, alongside the latent reward, informs the decoder. + +The main contribution then of this paper is a method for advancing BIRL beyond these obstacles, allowing for approximate reward inference using an arbitrarily flexible class of functions, in any environment, without costly inner-loop operations, and importantly entirely offline. This leads to our algorithm AVRIL, depicted in figure 1, which represents a framework for jointly learning a variational posterior distribution over the reward alongside an imitator policy in an auto-encoderesque manner. In what follows we review the modern methods for offline IRL/IL (Section 2) with a focus on the approach of Bayesian IRL and the issues it faces when confronted with challenging environments. We then address the above issues by introducing our contributions (Section 3), and demonstrate the gains of our algorithm in real medical data and simulated control environments, notably that it is now possible to achieve Bayesian reward inference in such settings (Section 4). Finally we wrap up with some concluding thoughts and directions (Section 5). Code for AVRIL and our experiments is made available at https://github.com/XanderJC/scalable-birl and https://github.com/vanderschaarlab/mlforhealthlabpub. + +# 2 APPROACHING APPRENTICESHIP AND IMITATION OFFLINE + +Preliminaries. We consider the standard Markov decision process (MDP) environment, with states $s \in \mathcal { S }$ , actions $a \in \mathcal A$ , transitions $T \in \Delta ( { \cal S } ) ^ { s \times { \cal A } }$ , rewards $\vec { R } \in \mathbb { R } ^ { S \times A 1 }$ , and discount $\gamma \in [ 0 , 1 ]$ . For a policy $\pi \in \Delta ( \mathcal { A } ) ^ { s }$ let $\begin{array} { r } { \rho _ { \pi } ( s , a ) = \mathbb { E } _ { \pi , T } [ \sum _ { t = 0 } ^ { \infty } \gamma ^ { t } \mathbb { 1 } _ { \{ s _ { t } = s , a _ { t } = a \} } ] } \end{array}$ be the induced unique occupancy measure alongside the state-only occupancy measure $\begin{array} { r } { \rho _ { \pi } ( s ) = \sum _ { a \in \mathcal { A } } \rho _ { \pi } ( s , a ) } \end{array}$ . Despite this full environment model, the only information available to us is the $\mathbf { M D P } \backslash R T$ , in that we have no access to either the underlying reward or the transitions, with our lacking knowledge of the transitions being also strong in the sense that further we are unable to simulate the environment to sample them. The learning signal is then given by access to $m$ -many trajectories of some demonstrator assumed to be acting optimally w.r.t. the MDP, following a policy $\pi _ { D }$ , making up a data set $\mathcal { D } _ { r a w } = \{ ( s _ { 1 } ^ { ( i ) } , a _ { 1 } ^ { ( i ) } , \dotsc , s _ { \tau ^ { ( i ) } } ^ { ( \bar { i } ) } , a _ { \tau ^ { ( i ) } } ^ { ( i ) } ) \} _ { i = 1 } ^ { m }$ where $s _ { t } ^ { ( i ) }$ is the state and $a _ { t } ^ { ( i ) }$ is the action taken at step $t$ during the $i$ th demonstration, and $\tau ^ { ( i ) }$ is the (max) time horizon of the ith demonstration. Given the Markov assumption though it is sufficient and convenient to consider the demonstrations simply as a collection of $n$ -many state, action, next state, next action tuples such that $\mathcal { D } = \{ ( s _ { i } , a _ { i } , s _ { i } ^ { \prime } , a _ { i } ^ { \prime } ) \} _ { i = 1 } ^ { n }$ with $\begin{array} { r } { n = \sum _ { i = 1 } ^ { m } ( \tau ^ { ( i ) } - 1 ) } \end{array}$ . + +Apprenticeship through rewards. Typically AL proceeds by first inferring an appropriate reward function with an IRL procedure $\mathrm { N g }$ et al., 2000; Ramachandran & Amir, 2007; Rothkopf & Dimitrakakis, 2011; Ziebart et al., 2008) before running forward RL to obtain an appropriate policy. This allows for easy mix-and-match procedures, swapping in different standard RL and IRL methods depending on the situation. These algorithms though depend on either knowledge of $T$ in order to solve exactly or the ability to perform roll-outs in the environment, with little previous work focusing on the entirely offline setting. One simple solution is through attempting to learn the dynamics (Herman et al., 2016), though without a large supply of diverse demonstrations or a small environment this becomes impractical given imperfections in the model. Alternatively Klein et al. (2011) and Lee et al. (2019) attempt off-policy feature matching through least-squared temporal difference and deep neural networks to uncover appropriate feature representations. + +Implicit-reward policy learning. Recent work has often forgone an explicit representation of the reward. Moving within the maximum-entropy RL framework (Ziebart, 2010; Levine, 2018), Ho & Ermon (2016) noted that the full procedure ${ \mathrm { ~ R L ~ o ~ I R L } }$ ) can be interpreted equivalently as the minimisation of some divergence between occupancy measures of the imitator and demonstrator: + +$$ +\underset { \pi } { \arg \operatorname* { m i n } } \{ \psi ^ { * } ( \rho _ { \pi } - \rho _ { \pi _ { D } } ) - H ( \pi ) \} , +$$ + +with $H ( \pi )$ being the discounted causal entropy (Bloem & Bambos, 2014) of the policy and $\psi ^ { * }$ the Fenchel conjugate of a chosen regulariser on the form of the reward. These are typically optimised in an adversarial fashion (Goodfellow et al., 2014) and given the focus on evaluating $\rho _ { \pi }$ this often requires extensive interaction with the environment, otherwise banking on approximations over a replay buffer (Kostrikov et al., 2018) or a reformulation of the divergence to allow for off-policy evaluation (Kostrikov et al., 2019). Bear in mind that optimal policies within the maximum-entropy framework are parameterised by a Boltzmann distribution: + +$$ +\pi ( a | s ) = \frac { \exp ( Q ( s , a ) ) } { \sum _ { b \in \cal { A } } \exp ( Q ( s , b ) ) } , +$$ + +with $Q ( s , a )$ the soft $Q$ -function, defined recursively via the soft Bellman-equation: + +$$ +Q ( s , a ) \triangleq R ( s , a ) + \gamma \mathbb { E } _ { s ^ { \prime } \sim \rho _ { \pi } } \Big [ \operatorname { s o f t } _ { a ^ { \prime } } \operatorname { m a x } Q ( s ^ { \prime } , a ^ { \prime } ) ) \Big ] . +$$ + +Then for a learnt parameterised policy given in terms of $Q$ -values from a function approximator $Q _ { \theta }$ we can obtain an implied reward given by: + +$$ +R _ { Q _ { \theta } } ( s , a ) = Q _ { \theta } ( s , a ) - \gamma \mathbb { E } _ { s ^ { \prime } \sim \rho _ { \pi } } \Bigg [ \log \Bigg ( \sum _ { a ^ { \prime } \in \mathcal { A } } \exp ( Q _ { \theta } ( s ^ { \prime } , a ^ { \prime } ) ) \Bigg ) \Bigg ] . +$$ + +A number of algorithms make use of this fact with Piot et al. (2014) and Reddy et al. (2019) working by essentially placing a sparsity prior on this implied reward, encouraging it towards zero, and thus incorporating subsequent state information. Alternatively Jarrett et al. (2020) show that even the simple behavioural cloning (Bain & Sammut, 1995) is implicitly maximising some reward with an approximation that the expectation over states is taken with respect to the demonstrator, not the learnt policy. They then attempt to rectify part of this approximation using the properties of the energy-based model implied by the policy (Grathwohl et al., 2019). + +The problem with learning an implicit reward in an offline setting is that it remains just that, implicit, only able to be evaluated at points seen in the demonstrations, and even then only approximately. Thus even if their consideration improves imitator policies performance they offer no real improvement for interpretation. + +# 2.1 BAYESIAN INVERSE REINFORCEMENT LEARNING + +We are then resigned to directly reason about the underlying reward, bringing us back to the question of IRL, and in particular BIRL for a principled approach to reasoning under uncertainty. Given a prior over possible functions, having seen some demonstrations, we calculate the posterior over the function using a theoretically simple application of Bayes rule. Ramachandran $\&$ Amir (2007) defines the likelihood of an action at a state as a Boltzmann distribution with inverse temperature and respective state-action values, yielding a probabilistic demonstrator policy given by: + +$$ +\pi _ { D } ( a | s , R ) = \frac { \exp ( \beta Q _ { R } ^ { \pi _ { D } } ( s , a ) ) } { \sum _ { b \in \cal { A } } \exp ( \beta Q _ { R } ^ { \pi _ { D } } ( s , b ) ) } , +$$ + +where $\beta \in [ 0 , \infty )$ represents the the confidence in the optimality of the demonstrator. Note that despite similarities, moving forward we are no longer within the maximum-entropy framework and $Q _ { R } ^ { \pi } ( s , a )$ now denotes the traditional, not soft (as in equation 3), state-action value ( $Q$ -value) funcRtion given a reward $R$ and policy $\pi$ such that $\begin{array} { r } { Q _ { R } ^ { \pi } ( s , \bar { a } ) = \mathbb { E } _ { \pi , T } [ \sum _ { t = 0 } ^ { \infty } \gamma ^ { t } R ( s _ { t } ) | s _ { 0 } = s , a _ { 0 } = a ] } \end{array}$ Unsurprisingly this yields an intractable posterior distribution leading to a Markov chain Monte Carlo (MCMC) algorithm based on a random grid-walk to sample from the posterior. + +Issues in complex and unknown environments. This original formulation, alongside extensions that consider maximum-a-posteriori inference (Choi & Kim, 2011) and multiple rewards (Choi & Kim, 2012; Dimitrakakis & Rothkopf, 2011), suffer from three major drawbacks that make them impractical for modern, complicated, and model-free task environments. + +1. The reward is a linear combination of state features. Naturally this is a very restrictive class of functions and assumes access to carefully hand-crafted features of the state space. 2. The cardinality of the state-space is finite, $| S | < \infty$ . Admittedly this can be relaxed in practical terms, although it does mean the rapid-mixing bounds derived by Ramachandran & Amir (2007) do not hold at all in the infinite case. For finite approximations they scale at $\mathcal { O } ( | S | ^ { 2 } )$ , rapidly becoming vacuous and causing BIRL to inherit the usual MCMC difficulties on assessing convergence and sequential computation (Gamerman & Lopes, 2006). 3. The requirement of an inner-loop MDP solve. Most importantly at every step a new reward is sampled and the likelihood of the data must then be evaluated. This requires calculating the $Q$ -values of the policy with respect to the reward, in other words running forward RL. While not an insurmountable problem in the simple cases where everything is known and can be quickly solved with a procedure guaranteed to converge correctly, this becomes an issue in the realm where only deep function approximation works adequately (i.e. the nontabular setting). DQN training for example easily stretches into hours (Mnih et al., 2013) and will have to be repeated thousands of times, making it completely untenable. + +We have seen that even in the most simple setting the problem of exact Bayesian inference over the reward is intractable, and the above limitations of the current MCMC methods are not trivial to overcome. Consequently very little work has been done in the area and there still remain very open challenges. Levine et al. (2011) addressed linearity through a Gaussian process approach, allowing for a significantly more flexible and non-linear representation though introducing issues of its own, namely the computational complexity of inverting large matrices (Rasmussen, 2003). More recently Brown & Niekum (2019) have presented the only current solution to the inner-loop problem by introducing an alternative formulation of the likelihood, one based on human recorded pairwise preferences over demonstrations that significantly reduces the complexity of likelihood. However labelled preferences certainly can’t be assumed always available and while very effective for the given task is not appropriate in the general case. One of the key aspects of our contribution is that we are able to deal with all three of these issues while also not requiring any additional information. + +The usefulness of uncertainty. On top of the philosophical consistency of Bayesian inference there are a number of reasons for wanting a measure of uncertainty over any uncovered reward that are not available from regular IRL algorithms. First that the (epistemic) uncertainty revealed by Bayesian inference tells us a lot about what areas of the state-space we really cannot say anything about because we haven’t seen any demonstrations there - potentially informing future data collection if that is possible (Mindermann et al., 2018). Additionally in the cases we are mostly concerned about (e.g. medicine) we have to be very careful about letting algorithms pick actions in practice and we are interested in performing safe or risk-averse imitation, for which a degree of confidence over learnt rewards is necessary. Brown et al. (2020) for example use a distribution over reward to optimise a conditional value-at-risk instead of expected return so as to bound potential downsides. + +# 3 APPROXIMATE VARIATIONAL REWARD IMITATION LEARNING + +A variational Bayesian approach. In this section we detail our method, AVRIL, for efficiently learning an imitator policy and performing reward inference simultaneously. Unlike the previously mentioned sampling or MAP-based methods, we employ variational inference (Blei et al., 2017) to reason about the posterior. Here we posit a surrogate distribution $q _ { \phi } ( R )$ , parameterised by $\phi$ , and aim to minimise the Kullback-Leibler (KL) divergence to the posterior, resulting in an objective: + +$$ +\operatorname* { m i n } _ { \phi } \{ D _ { \mathrm { K L } } ( q _ { \phi } ( R ) | | p ( R | \mathcal { D } ) ) \} . +$$ + +This divergence is still as troubling as the posterior to evaluate, leading to an auxiliary objective function in the Evidence Lower BOund (ELBO): + +$$ +\mathcal { F } ( \phi ) = \mathbb { E } _ { q _ { \phi } } \big [ \log p ( \mathcal { D } | R ) \big ] - D _ { K L } \big ( q _ { \phi } ( R ) | | p ( R ) \big ) , +$$ + +where it can be seen that maximisation over $\phi$ is equivalent to (6). We are agnostic towards the form of both the prior and variational distribution, for simplicity here we assume a Gaussian process prior with mean zero and unit variance over $R$ alongside the variational posterior distribution given by: + +$$ +q _ { \phi } ( R ) = \mathcal { N } ( R ; \mu , \sigma ^ { 2 } ) , +$$ + +where $\mu , \sigma ^ { 2 }$ are the outputs of an encoder neural network taking $s$ as input and parameterised by $\phi$ . Note that for the algorithm that we will describe these choices are not a necessity and can be easily substituted for more expressive distributions if appropriate. Maintaining the assumption of Boltzmann rationality on the part of the demonstrator, our objective takes the form: + +$$ +\mathcal { F } ( \phi ) = \mathbb { E } _ { q _ { \phi } } \left[ \sum _ { ( s , a ) \in \mathcal { D } } \log \frac { \exp ( \beta Q _ { R } ^ { \pi _ { D } } ( s , a ) ) } { \sum _ { b \in \mathcal { A } } \exp ( \beta Q _ { R } ^ { \pi _ { D } } ( s , b ) ) } \right] - D _ { K L } \big ( q _ { \phi } ( R ) | | p ( R ) \big ) . +$$ + +The most interesting (and problematic) part of this objective as ever centres on the evaluation of $Q _ { R } ^ { \pi _ { D } } ( s , a )$ . Notice that what is really required here is an expression of the $Q$ -values as a smooth function of the reward such that with samples of $R$ we could take gradients w.r.t. $\phi$ . Of course there is little hope of obtaining this simply, by itself it is a harder problem than that of forward RL which only attempts to evaluate the $Q$ -values for a specific $R$ and already in complicated environments has to rely on function approximation and limited guarantees. + +A naive approach would be to sample $\hat { R }$ and then approximate the $Q$ -values with a second neural network, solving offline over the batched data using a least-squared $\mathrm { T D } / Q$ -learning algorithm, as is the approach forced on sampling based BIRL methods. It is in fact though doubly inappropriate for this setting, not only does this require a solve as an inner-loop but importantly differentiating through the solving operation is extremely impractical, it requires backpropagating through a number of gradient updates that are essentially unbounded as the complexity of the environment increases. + +A further approximation. This raises an important question - is it possible to jointly optimise a policy and variational distribution only once instead of requiring a repeated solve? This is theoretically suspect, the $Q$ -values are defined on a singular reward, constrained as $R ( s , a ) \ =$ $\mathbb { E } _ { s ^ { \prime } , a ^ { \prime } \sim \pi , T } [ \bar { Q } _ { R } ^ { \pi } ( { \bar { s , } } a ) - \gamma Q _ { R } ^ { \pi } ( s ^ { \prime } , a ^ { \prime } ) ]$ so we cannot learn a particular standard $Q$ -function that reflects the entire distribution. But can we learn a policy that reflects the expected reward using a second policy neural network $Q _ { \theta } ?$ We can’t simply optimise $\theta$ alongside $\phi$ to maximise the ELBO though as that completely ignores the fact that the learnt policy is intimately related to the distribution over the reward. Our solution to ensure then that they behave as intended is by constraining $q _ { \phi }$ and $Q _ { \theta }$ to be consistent with each other, specifically that the implied reward of the policy is sufficiently likely under the variational posterior (equivalently that the negative log-likelihood is sufficiently low). Thus we arrive at a constrained optimisation objective given by: + +$$ +\operatorname* { m a x } _ { \phi , \theta } \sum _ { ( s , a ) \in \mathcal { D } } \log \frac { \exp ( \beta Q _ { \theta } ( s , a ) ) } { \sum _ { b \in \mathcal { A } } \exp ( \beta Q _ { \theta } ( s , b ) ) } - D _ { K L } \big ( q _ { \phi } ( R ) | | p ( R ) \big ) , +$$ + +with $\epsilon$ reflecting the strength of the constraint. Rewriting (10) as a Lagrangian under the KKT conditions (Karush, 1939; Kuhn $\&$ Tucker, 1951), and given complimentary slackness, we obtain a practical objective function: + +$$ +\begin{array} { r l } { \mathcal { F } ( \phi , \theta , \mathcal { D } ) = \displaystyle \sum _ { ( s , a , s ^ { \prime } , a ^ { \prime } ) \in \mathcal { D } } \log \frac { \exp \beta Q _ { \theta } ( s , a ) ) } { \sum _ { b \in A } \exp ( \beta Q _ { \theta } ( s , b ) ) } - D _ { K L } \big ( q _ { \phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \big ) } & { } \\ { + \lambda \log q _ { \phi } ( Q _ { \theta } ( s , a ) - \gamma Q _ { \theta } ( s ^ { \prime } , a ^ { \prime } ) ) . } & { } \end{array} +$$ + +Here the KL divergence between processes is approximated over a countable set, and $\lambda$ is introduced to control the strength of constraint. + +On the implementation. Optimisation is simple as both networks are maximising the same objective and gradients can be easily obtained through backpropagation while being amenable to minibatching, allowing you to call your favourite gradient-based stochastic optimisation scheme. We re-iterate though that AVRIL really represents a framework for doing BIRL and not a specific model + +# Algorithm 1: Approximate Variational Reward Imitation Learning (AVRIL) + +Result: Parameters $\phi$ of variational distribution and $\theta$ of policy Q-function +Input: $\mathcal { D } , S , A , \gamma , \lambda$ , learning rate $\eta$ , mini-batch size $b$ ; +Initialise $\phi , \theta$ ; $\triangleright$ Can concatenate into single vector $( \phi , \theta )$ +while not converged do Sample $\mathcal { D } _ { m i n i }$ from $\mathcal { D }$ ; $\begin{array} { r } { \mathcal { F } ( \phi , \theta , \mathcal { D } ) = \mathbb { E } [ \frac { n } { b } \mathcal { F } ( \phi , \theta , \mathcal { D } _ { m i n i } ) ] } \end{array}$ ; . MC estimate total loss $( \phi ^ { \prime } , \theta ^ { \prime } ) ( \phi , \theta ) + \eta \nabla _ { \phi , \theta } \mathcal { F } ( \phi , \theta , \mathcal { D } )$ ; . Gradient step for $\phi , \theta$ $\phi , \theta \phi ^ { \prime } , \theta ^ { \prime }$ +end +Return: $\phi , \theta$ + +since $Q _ { \theta }$ and $q _ { \phi }$ represent arbitrary function approximators. So far we have presented both as neural networks, but this does not have to be the case. Of course the advantage of them is their flexibility and ease of training but they are still inherently black box. It is then perfectly possible to swap in any particular function approximator if the task requires it, using simple linear models for example may slightly hurt performance but allow for more insight. Despite the specific focus on infinite state-spaces, AVRIL can still even be applied in the tabular setting by simply representing the policy and variational distribution with multi-dimensional tensors. Having settled on their forms, equation (11) is calculated simply and the joint gradient with respect to $\theta$ and $\phi$ is straight-forwardly returned using any standard auto-diff package. The whole process is summarised in Algorithm 1. + +We can now see how AVRIL does not suffer the issues outlined in section 2.1. Our form of $q _ { \phi } ( R )$ is flexible and easily accommodates a non-linear form of the reward given a neural architecture - this also removes any restriction on $s$ , or at least allows for any state space that is commonly tackled within the IL/RL literature. Additionally we have a single objective for which all parameters are maximised simultaneously - there are no inner-loops, costly or otherwise, meaning training is faster than the MCMC methods by a factor equal roughly to the number of samples they would require. + +The generative model view. Ultimately a policy represents a generative model for the behavioural data we see. Ho & Ermon (2016) explicitly make use of this fact by casting the problem in the GAN framework (Goodfellow et al., 2014). Our method is more analogous to a VAE (Kingma & Welling, 2013), though not exactly, where given the graphical model in figure 2 the reward can be seen as a latent representation of the policy. Our approach takes the seen data and amortises the inference, encoding over the state space. The policy does not act as a decoder in precisely taking any given encoded reward and outputting a policy, but it does take the whole reward posterior and translate it into actions and therefore behaviour. This approach has its advantages, in both meaningful interpretation of the latent reward (which is non-existent in adversarial methods), and that we forgo the practical difficulties of alternating min-max optimisation (Kodali et al., 2017) while maintaining a generative view of the policy. + +![](images/787d6d634246cb213461ef2627f55b1feb1315b21e4be42cc9a37cfd4f67f240.jpg) +Figure 2: Graphical model for Bayesian IRL + +Temporal consistency through reward regularisation. Considering only the first term of (11) yields the standard behavioural cloning setup (where the logits output can be interpreted as the $Q$ - values) as it removes the reward from the equation and just focuses on matching actions to states. AVRIL can then be seen as a policy-learning method regularised by the need for the implied reward to be consistent. Note that this does not induce any necessary bias since the logits normally contain an extra degree of freedom allowing them to arbitrarily shift by some scale factor. This factor is now explicitly constrained by giving the logits additional meaning in that they represent $Q$ -values. This places great importance on the KL term, since every parameterisation of a policy will have an associated implied reward, the KL regularises these to be not so far from the prior and preventing the reward from overfitting to the policy and becoming pointless. It also is able to double as a regularising term in a similar manor to previous reward-regularisation methods (Piot et al., 2014; Reddy et al., 2019) depending on the chosen prior, encouraging the reward to be close to zero: + +Proposition 1 (Reward Regularisation) Assume that the constraint in (10) is satisfied in that $\begin{array} { r } { { \mathbb E } _ { q _ { \phi } } [ R ( s , a ) ] = { \mathbb E } _ { \pi , T } [ Q _ { \theta } ( s , a ) - \gamma Q _ { \theta } ( s ^ { \prime } , a ^ { \prime } ) ] } \end{array}$ , then given a standard normal prior $p ( R ) = \mathcal { N } ( R ; 0 , 1 )$ the $\mathrm { K L }$ divergence yields a sparsity regulator on the implied reward: + +$$ +\mathcal { L } _ { r e g } = \sum _ { ( s , a , s ^ { \prime } , a ^ { \prime } ) \in \mathcal { D } } \frac { 1 } { 2 } \big ( Q _ { \theta } ( s , a ) - \gamma Q _ { \theta } ( s ^ { \prime } , a ^ { \prime } ) \big ) ^ { 2 } + g ( \mathrm { V a r } _ { q _ { \phi } } [ R ( s , a ) ] ) . +$$ + +Proof. Appendix.  This follows immediately from the fact that the divergence evaluates as DK $\begin{array} { r } { \overset { \vartriangle } { \boldsymbol { \mathrm { \iota } } } \big ( q _ { \phi } ( \hat { R } ( s , a ) ) | | p ( R ( s , a ) ) \big ) = \frac { 1 } { 2 } ( - \log ( \operatorname { V a r } _ { q _ { \phi } } [ R ( s , a ) ] ) - 1 + \operatorname { V a r } _ { q _ { \phi } } [ R ( s , a ) ] + \mathbb { E } _ { q _ { \phi } } [ R ( s , a ) ] ^ { 2 } ) } \end{array}$ + +This then allows AVRIL to inherit the benefit of these methods while also explicitly learning a reward that can be queried at any point. We are also allowed the choice of whether it is state-only or state-action. This has so far been arbitrary, but it is important to consider that a state-only reward is a necessary and sufficient condition for a reward that is fully disentangled from the dynamics $\operatorname { F u }$ et al., 2018). Thus by learning such a reward and given the final term of (11) that directly connects one-step rewards in terms of the policy, this forces the policy (not the reward) to account for the dynamics of the system ensuring temporal consistency in a way that BC for example simply can’t. Alternatively using a state-action reward means that inevitably some of the temporal information leaks out of the policy and into the reward - ultimately to the detriment of the policy but potentially allowing for a more interpretable (or useful) form of reward depending on the task at hand. + +# 4 EXPERIMENTS + +Experimental setup. We are primarily concerned with the case of medical environments, which is exactly where the issue of learning without interaction is most crucial, you just cannot let a policy sample treatments for a patient to try to learn more about the dynamics. It is also where a level of interpretability in what has been learnt is important, since the consequence of actions are potentially very impactful on human lives. As such we focus our evaluation on learning on a real-life healthcare problem, with demonstrations taken from the Medical Information Mart for Intensive Care (MIMIC-III) dataset (Johnson et al., 2016). The data contains trajectories of patients in intensive care recording their condition and theraputic interventions at one day intervals. We evaluate the ability of the methods to learn a medical policy in both the two and four action setting - specifically whether the patient should be placed on a ventilator, and the decision for ventilation in combination with antibiotic treatment. These represent the two most common, and important, clinical interventions recorded in the data. Without a recorded notion of reward, performance is measured with respect to action matching against a held out test set of demonstrations with cross-validation. + +Alongside the healthcare data and for the purposes of demonstrating generalisability, we provide additional results on standard environments of varying complexity in the RL literature, the standard control problems of: CartPole, a classic control environment aiming to swing up and balance a pendulum; Acrobot, which aims to maintain a sequence of joints above a given height; and LunarLander, guiding a landing module to a safe touchdown on the moon surface. In these settings given sufficient demonstration data all benchmarks are very much capable of reaching demonstrator level performance, so we test the algorithms on their ability to handle sample complexity in the low data regime by testing their performance when given access to a select number of trajectories which we adjust, replicating the setup in Jarrett et al. (2020). With access to a simulation through the OpenAI gym (Brockman et al., 2016), we measure performance by deploying the learnt policies live and calculating their average return over 300 episodes. + +Benchmarks. We test our method (AVRIL) against a number of benchmarks from the offline IRL/IL setting: Deep Successor Feature Network (DSFN) (Lee et al., 2019), an offline adaptation of max-margin IRL that generalises past the linear methods using a deep network with leastsquares temporal-difference learning, the only other method that produces both a reward and policy; Reward-regularized Classification for Apprenticeship Learning (RCAL) (Piot et al., 2014), where an explicit regulariser on the sparsity of the implied reward is introduced in order to account for the dynamics information; ValueDICE (VDICE) (Kostrikov et al., 2019), an adversarial imitation learning, adapted for the offline setting by removing the replay regularisation; Energy-based Distribution Matching (EDM) (Jarrett et al., 2020), the state-of-the-art in offline imitation learning; and finally the standard example of Behavioural Cloning (BC). To provide evidence that we are indeed learning an appropriate reward we show an ablation of our method on the MIMIC data: we take the reward learnt by AVRIL and use it as the ‘true’ reward used to train a $Q$ -network offline to learn a policy (A-RL). Note that we have not included previous BIRL methods for the reasons explained in section 2.1, training a network just once in these environments takes in the order of minutes and repeating this sequentially thousands of times is just not practical. For aid in comparison all methods share the same network architecture of two hidden layers of 64 units with ELU activation functions and are trained using Adam (Kingma & Ba, 2014) with learning rates individually tuned. Further details on experimental setup and the implementation of benchmarks can be found in the appendix. + +![](images/99c662ff38503bdc43e89701fae5833c8fdd14b9ef6e894424ecac8256a1baf1.jpg) +Figure 3: Control environments performance. We plot the average returns received by the policies when deployed live in the environment against the number of trajectories seen during training. + +Table 1: Healthcare performance. Comparison of methods on the MIMIC-III dataset. Performance of the policy is evaluated on the quality of action matching against a held out test set of demonstrations. We report the accuracy (ACC), area under the receiving operator characteristic curve (AUC) and average precision score (APS). + +
VentilatorVentilator + Antibiotics
MetricACCAUCAPSACCAUCAPS
BC0.873 ± 0.0070.916 ± 0.0020.904±0.0030.700±0.0090.864 ± 0.0030.665 ± 0.009
VDICE0.879 ±0.0020.915 ± 0.0020.904±0.0030.710 ±0.0050.863 ±0.0020.675 ±0.004
RCAL0.870 ± 0.0120.916 ± 0.0030.904±0.0050.702 ±0.0080.865 ± 0.0040.669 ± 0.006
DSFN0.869 ± 0.0050.905 ± 0.0030.885 ±0.0010.683 ± 0.0070.856 ±0.0020.670 ± 0.004
EDM0.882 ± 0.0110.920±0.0020.909 ± 0.0030.716 ±0.0080.873±0.0020.682 ± 0.004
A-RL10.875±0.0100.904±0.0020.927±0.0020.718 ± 0.0100.864±0.0020.665±0.005
AVRIL0.891±0.002 0.917 ± 0.0010.940±0.0010.754± 0.001 0.884 ± 0.000 0.708 ± 0.002
+ +Evaluation. We see for all tasks AVRIL learns an appropriate policy that performs strongly across the board, being competitive in all cases and in places beating out all of the other benchmarks. The results for our healthcare example are given in table 1, with AVRIL performing very strongly, having the highest accuracy and precision score in both tasks. The results for the control environments are shown in figure 3. AVRIL performs competitively and is easily capable of reaching demonstrator level performance in the samples given for these tasks, though not always as quickly as some of the dedicated offline IL methods. + +Reward insight. Remember though that task performance is not exactly our goal. Rather the key aspect of AVRIL is the inference over the unseen reward in order to gain information about the preferences of the agent that other black-box policy methods can’t. In the previous experiments our reward encoder was a neural network for maximum flexibility and we can see from the performance of A-RL we learn a representation of the reward that can be used to relearn in the environment very effectively, albeit not quite to the same standard of AVRIL. Note this also reflects an original motivation for AVRIL in that offpolicy RL on top of a learnt reward suffers. In figure 4 we explore how to gain more insight from the learnt reward using different parameterisations of the reward. The top graph shows how a learnt state-action reward changes as a function of blood-oxygen level for an otherwise healthy patient, and it can be seen that as it drops below average the reward for ventilating the patient becomes much higher (note this is average for patients in the ICU, not across the general population). While this is intuitive we still have to query a neural network repeatedly over the state space to gain insight, the bottom graph of figure 4 presents then a simpler but perhaps more useful representation. In this case we learn a state-only reward as before but as a linear model. This is not as strong a constraint on the policy since that is still free to be non-linear as a neural network but simultaneously allows us the insight of what our model considers high value in the environment as we plot the relative model coefficients for each covariate. We can see here for example that the biggest impact on the overall estimated quality of a state is given by blood pressure, well known as an important indicator of health (Hepworth et al., 1994), strongly impacted by trauma and infection. + +![](images/ca7c32b8888060a1a5cb258f469a662fd368830830a97e61c43ea9064d01b67d.jpg) +Figure 5: Gridworld example. Scaled heat-maps of: the ground truth reward; the relative state occupancy of the expert demonstrations; the reward posterior mean; and reward standard deviation. + +Gridworld ground-truth comparison While environments like MIMIC are the main focus of this work they do not lend them selves to inspection of the uncovered reward as the ground truth simply is not available to us. We thus demonstrate on a toy gridworld environment, in order to clearly see the effect of learning a posterior distribution over the reward. In this (finite) example both the encoder and decoder are represented by tensors but otherwise the procedure remains the same. Figure 5 plots scaled heat-maps of: a) the ground truth reward; b) the relative state occupancy of the expert demonstrations, obtained using value-iteration; c) the reward posterior mean; and d) the reward standard deviation. The interesting thing to note is that the standard deviation of the learnt reward essentially resembles the complement of the state occupancy - revealing the epistemic uncertainty around that part of the state-space given we haven’t seen any demonstrations there. + +# 5 CONCLUSIONS + +We have presented a novel algorithm, Approximate Variational Reward Imitation Learning, for addressing the scalability issues that prevent current Bayesian IRL methods being used in large and unknown environments. We show that this performs strongly on real and toy data for learning imitation policies completely offline and importantly recovers a reward that is both effective for retraining policies but also offers useful insight into the preferences of the demonstrator. Of course this still represents an approximation, and there is room for further, more exact methods or else guarantees on the maximum divergence. We have focused on simply obtaining the appropriate uncertainty over reward as well as imitation in high stakes environments - in these settings it is crucial that learnt policies avoid catastrophic failure and so how exactly to use the uncertainty in order to achieve truly safe imitation (or indeed better-that-demonstrator apprenticeship) is increasingly of interest. + +![](images/10c9875b3e37b7a44561ac5529ce0724c415439487c6fd0baa51655f4911daf4.jpg) +Figure 4: (Top) A state-action reward is learnt and plotted for an otherwise average patient as their blood oxygen level changes. (Bottom) The associated weights given a state-only reward as a linear function of the state-space. + +# ACKNOWLEDGEMENTS + +AJC would like to acknowledge and thank Microsoft Research for its support through its PhD Scholarship Program with the EPSRC. This work was additionally supported by the Office of Naval Research (ONR) and the NSF (Grant number: 1722516). We would like to thank all of the anonymous reviewers on OpenReview, alongside the many members of the van der Schaar lab, for their input, comments, and suggestions at various stages that have ultimately improved the manuscript. + +# REFERENCES + +Pieter Abbeel and Andrew $\mathrm { ~ Y ~ N ~ g ~ }$ . Apprenticeship learning via inverse reinforcement learning. In Proceedings of the twenty-first international conference on Machine learning, pp. 1, 2004. + +Michael Bain and Claude Sammut. A framework for behavioural cloning. In Machine Intelligence 15, pp. 103–129, 1995. + +David M Blei, Alp Kucukelbir, and Jon D McAuliffe. Variational inference: A review for statisticians. Journal of the American statistical Association, 112(518):859–877, 2017. + +Michael Bloem and Nicholas Bambos. Infinite time horizon maximum causal entropy inverse reinforcement learning. In 53rd IEEE Conference on Decision and Control, pp. 4911–4916. IEEE, 2014. + +Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and Wojciech Zaremba. Openai gym, 2016. + +Daniel Brown, Scott Niekum, and Marek Petrik. Bayesian robust optimization for imitation learning. Advances in Neural Information Processing Systems, 33, 2020. + +Daniel S Brown and Scott Niekum. Deep bayesian reward learning from preferences. arXiv preprint arXiv:1912.04472, 2019. + +Jaedeug Choi and Kee-Eung Kim. Map inference for bayesian inverse reinforcement learning. In Advances in Neural Information Processing Systems, pp. 1989–1997, 2011. + +Jaedeug Choi and Kee-Eung Kim. Nonparametric bayesian inverse reinforcement learning for multiple reward functions. In Advances in Neural Information Processing Systems, pp. 305–313, 2012. + +Christos Dimitrakakis and Constantin A Rothkopf. Bayesian multitask inverse reinforcement learning. In European workshop on reinforcement learning, pp. 273–284. Springer, 2011. + +Justin Fu, Katie Luo, and Sergey Levine. Learning robust rewards with adverserial inverse reinforcement learning. In International Conference on Learning Representations, 2018. + +Dani Gamerman and Hedibert F Lopes. Markov chain Monte Carlo: stochastic simulation for Bayesian inference. CRC Press, 2006. + +Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in neural information processing systems, pp. 2672–2680, 2014. + +Will Grathwohl, Kuan-Chieh Wang, Joern-Henrik Jacobsen, David Duvenaud, Mohammad Norouzi, and Kevin Swersky. Your classifier is secretly an energy based model and you should treat it like one. In International Conference on Learning Representations, 2019. + +Joseph T Hepworth, Sherry Garrett Hendrickson, and Jean Lopez. Time series analysis of physiological response during icu visitation. Western journal of nursing research, 16(6):704–717, 1994. + +Michael Herman, Tobias Gindele, Jorg Wagner, Felix Schmitt, and Wolfram Burgard. Inverse rein-¨ forcement learning with simultaneous estimation of rewards and dynamics. In Artificial Intelligence and Statistics, pp. 102–110. PMLR, 2016. + +Ashley Hill, Antonin Raffin, Maximilian Ernestus, Adam Gleave, Anssi Kanervisto, Rene Traore, Prafulla Dhariwal, Christopher Hesse, Oleg Klimov, Alex Nichol, Matthias Plappert, Alec Radford, John Schulman, Szymon Sidor, and Yuhuai Wu. Stable baselines. https://github. com/hill-a/stable-baselines, 2018. + +Jonathan Ho and Stefano Ermon. Generative adversarial imitation learning. In Advances in neural information processing systems, pp. 4565–4573, 2016. + +Daniel Jarrett, Ioana Bica, and Mihaela van der Schaar. Strictly batch imitation learning by energybased distribution matching. Advances in Neural Information Processing Systems, 33, 2020. + +Alistair EW Johnson, Tom J Pollard, Lu Shen, H Lehman Li-Wei, Mengling Feng, Mohammad Ghassemi, Benjamin Moody, Peter Szolovits, Leo Anthony Celi, and Roger G Mark. Mimic-iii, a freely accessible critical care database. Scientific data, 3(1):1–9, 2016. + +William Karush. Minima of functions of several variables with inequalities as side constraints. M. Sc. Dissertation. Dept. of Mathematics, Univ. of Chicago, 1939. + +Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. + +Diederik P Kingma and Max Welling. Auto-encoding variational bayes. arXiv preprint arXiv:1312.6114, 2013. + +Edouard Klein, Matthieu Geist, and Olivier Pietquin. Batch, off-policy and model-free apprenticeship learning. In European Workshop on Reinforcement Learning, pp. 285–296. Springer, 2011. + +Naveen Kodali, Jacob Abernethy, James Hays, and Zsolt Kira. On convergence and stability of gans. arXiv preprint arXiv:1705.07215, 2017. + +Ilya Kostrikov, Kumar Krishna Agrawal, Debidatta Dwibedi, Sergey Levine, and Jonathan Tompson. Discriminator-actor-critic: Addressing sample inefficiency and reward bias in adversarial imitation learning. In International Conference on Learning Representations, 2018. + +Ilya Kostrikov, Ofir Nachum, and Jonathan Tompson. Imitation learning via off-policy distribution matching. International Conference on Learning Representations (ICLR), 2019. + +HW Kuhn and AW Tucker. Nonlinear programming. In Proceedings of the Second Berkeley Symposium on Mathematical Statistics and Probability. The Regents of the University of California, 1951. + +Donghun Lee, Srivatsan Srinivasan, and Finale Doshi-Velez. Truly batch apprenticeship learning with deep successor features. International Joint Conference on Artificial Intelligence (IJCAI), 2019. + +Sergey Levine. Reinforcement learning and control as probabilistic inference: Tutorial and review. arXiv preprint arXiv:1805.00909, 2018. + +Sergey Levine, Zoran Popovic, and Vladlen Koltun. Nonlinear inverse reinforcement learning with gaussian processes. In Advances in Neural Information Processing Systems, pp. 19–27, 2011. + +Soren Mindermann, Rohin Shah, Adam Gleave, and Dylan Hadfield-Menell. Active inverse reward ¨ design. arXiv preprint arXiv:1809.03060, 2018. + +Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, and Martin Riedmiller. Playing atari with deep reinforcement learning. arXiv preprint arXiv:1312.5602, 2013. + +Andrew Y Ng, Stuart J Russell, et al. Algorithms for inverse reinforcement learning. In Icml, volume 1, pp. 2, 2000. + +Bilal Piot, Matthieu Geist, and Olivier Pietquin. Boosted and reward-regularized classification for apprenticeship learning. In Proceedings of the 2014 international conference on Autonomous agents and multi-agent systems, pp. 1249–1256. International Foundation for Autonomous Agents and Multiagent Systems, 2014. + +Antonin Raffin. Rl baselines zoo. https://github.com/araffin/rl-baselines-zoo, 2018. + +Deepak Ramachandran and Eyal Amir. Bayesian inverse reinforcement learning. In IJCAI, volume 7, pp. 2586–2591, 2007. + +Carl Edward Rasmussen. Gaussian processes in machine learning. In Summer School on Machine Learning, pp. 63–71. Springer, 2003. + +Siddharth Reddy, Anca D Dragan, and Sergey Levine. Sqil: Imitation learning via reinforcement learning with sparse rewards. In International Conference on Learning Representations, 2019. + +Constantin A Rothkopf and Christos Dimitrakakis. Preference elicitation and inverse reinforcement learning. In Joint European conference on machine learning and knowledge discovery in databases, pp. 34–48. Springer, 2011. + +John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347, 2017. + +Brian D Ziebart. Modeling Purposeful Adaptive Behavior with the Principle of Maximum Causal Entropy. PhD thesis, University of Washington, 2010. + +Brian D Ziebart, Andrew L Maas, J Andrew Bagnell, and Anind K Dey. Maximum entropy inverse reinforcement learning. In Aaai, volume 8, pp. 1433–1438. Chicago, IL, USA, 2008. + +# A EXPERIMENTAL SETUP + +Expert Demonstrators. Demonstrations are produced by running pre-trained and hyperparmeteroptimised agents taken from the RL Baselines Zoo (Raffin, 2018) in OpenAI Stable Baselines (Hill et al., 2018). For Acrobot and LunarLander these are DQNs (Mnih et al., 2013), while CartPole uses PPO2 (Schulman et al., 2017). Trajectories were then sub-sampled for every 20th step in Acrobot and CartPole, and every 5th step in LunarLander. + +Testing setup. For control environments algorithms were presented with (1,3,7,10,15) trajectories uniformly sampled from a pool of 1000 expert trajectories. Each algorithm was then trained until convergence and tested by performing 300 live roll-outs in the simulated environment and recording the average accumulated reward received in each episode. This whole process was then repeated 10 times, consequently with different initialisations and seen trajectories. + +Implementations. All methods are neural network based and so in experiments they share the same architecture of 2 hidden layers of 64 units each connected by exponential linear unit (ELU) activation functions. + +Publicly available code was used in the implementations of a number of the benchmarks, specifically: + +• VDICE (Kostrikov et al., 2019): https://github.com/google-research/google-research/tree/ master/value_dice +• DSFN (Lee et al., 2019): https://github.com/dtak/batch-apprenticeship-learning +• EDM (Jarrett et al., 2020): https://github.com/wgrathwohl/JEM + +Note that VDICE was originally designed for continuous actions with a Normal distribution output which we adapt for the experiments by replacing with a Gumbel-softmax. + +# B PROOFS + +Proof of proposition 1. Assuming the constraint is satisfied, we are maximising the following objective: + +$$ +\mathcal { F } ( \phi , \theta ) = \sum _ { ( s , a , s ^ { \prime } , a ^ { \prime } ) \in \mathcal { D } } \log \frac { \exp \beta Q _ { \theta } ( s , a ) ) } { \sum _ { b \in \mathcal { A } } \exp ( \beta Q _ { \theta } ( s , b ) ) } - D _ { K L } \big ( q _ { \phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \big ) +$$ + +Which is equivalent to minimising the negative value + +$$ +\mathcal { F } ( \phi , \theta ) = \sum _ { ( s , a , s ^ { \prime } , a ^ { \prime } ) \in \mathcal { D } } - \log \frac { \exp \beta Q _ { \theta } ( s , a ) ) } { \sum _ { b \in \mathcal { A } } \exp ( \beta Q _ { \theta } ( s , b ) ) } + \underbrace { D _ { K L } \big ( q _ { \phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \big ) } _ { \mathcal { L } _ { r e g } } , +$$ + +with the first term $\mathcal { L } _ { B C }$ being the negative log-likelihood of the data and the classic behavioural cloning objective. Now given a standard Gaussian prior then the $\mathrm { K L }$ divergence of a Gaussian with mean $\mu$ and variance $\sigma ^ { 2 }$ from the prior is given by $\begin{array} { r } { \frac { 1 } { 2 } ( - \log ( \sigma ^ { 2 } ) + \sigma ^ { 2 } - 1 + \bar { \mu } ^ { 2 } ) } \end{array}$ (Kingma & Welling, + +2013). Then given our prior $p ( R ( s , a ) ) = \mathcal { N } ( R ; 0 , 1 )$ , the KL evaluates as: + +$$ +\begin{array} { l } { { \displaystyle { \mathcal L } _ { r e g } = \sum _ { ( s , a , s ^ { \prime } , a ^ { \prime } ) \in \mathcal D } _ { K L } \big ( q _ { \phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \big ) } } \\ { { = \sum _ { ( s , a , s ^ { \prime } , a ^ { \prime } ) \in \mathcal D } \frac { 1 } { 2 } \big ( - \log ( \operatorname { V a r } _ { q _ { \phi } } [ R ( s , a ) ] ) + \operatorname { V a r } _ { q _ { \phi } } [ R ( s , a ) ] - 1 + \mathbb { E } _ { q _ { \phi } } [ R ( s , a ) ] ^ { 2 } \big ) } } \\ { { = \sum _ { ( s , a , s ^ { \prime } , a ^ { \prime } ) \in \mathcal D } \frac { 1 } { 2 } \big ( \mathbb { E } _ { q _ { \phi } } [ R ( s , a ) ] ^ { 2 } ) + g ( \operatorname { V a r } _ { q _ { \phi } } [ R ( s , a ) ] ) } } \\ { { = \sum _ { ( s , a , s ^ { \prime } , a ^ { \prime } ) \in \mathcal D } \frac { 1 } { 2 } \big ( Q _ { \theta } ( s , a ) - \gamma Q _ { \theta } ( s ^ { \prime } , a ^ { \prime } ) \big ) ^ { 2 } + g ( \operatorname { V a r } _ { q _ { \phi } } [ R ( s , a ) ] ) } } \end{array} +$$ + +Since by assumption $\mathbb { E } _ { q _ { \phi } } [ R ( s , a ) ] ~ = ~ \mathbb { E } _ { \pi , T } [ Q _ { \theta } ( s , a ) ~ - ~ \gamma Q _ { \theta } ( s ^ { \prime } , a ^ { \prime } ) ]$ with the expectation approximated over samples in the data and considering a definition of the function $g$ to be $\begin{array} { r } { \dot { g } ( \mathrm { V a r } _ { q _ { \phi } } [ R ( s , a ) ] ) = \frac { 1 } { 2 } ( - \log ( \mathrm { V a r } _ { q _ { \phi } } [ R ( s , a ) ] ) + \mathrm { V a r } _ { q _ { \phi } } [ \bar { R } ( s , a ) ] - 1 ) . } \end{array}$ .  \ No newline at end of file diff --git a/parse/train/4qR3coiNaIv/4qR3coiNaIv_content_list.json b/parse/train/4qR3coiNaIv/4qR3coiNaIv_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..61e4807409de298f579eeeed8e8fb0cbad689e1d --- /dev/null +++ b/parse/train/4qR3coiNaIv/4qR3coiNaIv_content_list.json @@ -0,0 +1,1599 @@ +[ + { + "type": "text", + "text": "SCALABLE BAYESIAN INVERSE REINFORCEMENT LEARNING ", + "text_level": 1, + "bbox": [ + 174, + 99, + 821, + 145 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Alex J. Chan University of Cambridge, Cambridge, UK alexjchan@maths.cam.ac.uk ", + "bbox": [ + 184, + 170, + 460, + 212 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Mihaela van der Schaar \nUniversity of Cambridge, Cambridge, UK University of California, Los Angeles, USA Cambridge Centre for AI in Medicine, UK The Alan Turing Institute, London, UK \nmv472@cam.ac.uk ", + "bbox": [ + 501, + 170, + 789, + 253 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 290, + 544, + 305 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Bayesian inference over the reward presents an ideal solution to the ill-posed nature of the inverse reinforcement learning problem. Unfortunately current methods generally do not scale well beyond the small tabular setting due to the need for an inner-loop MDP solver, and even non-Bayesian methods that do themselves scale often require extensive interaction with the environment to perform well, being inappropriate for high stakes or costly applications such as healthcare. In this paper we introduce our method, Approximate Variational Reward Imitation Learning (AVRIL), that addresses both of these issues by jointly learning an approximate posterior distribution over the reward that scales to arbitrarily complicated state spaces alongside an appropriate policy in a completely offline manner through a variational approach to said latent reward. Applying our method to real medical data alongside classic control simulations, we demonstrate Bayesian reward inference in environments beyond the scope of current methods, as well as task performance competitive with focused offline imitation learning algorithms. ", + "bbox": [ + 233, + 320, + 764, + 513 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 539, + 336, + 554 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "For applications in complicated and high-stakes environments it can often mean operating in the minimal possible setting - that is with no access to knowledge of the environment dynamics nor intrinsic reward, nor even the ability to interact and test policies. In this case learning and inference must be done solely on the basis of logged trajectories from a competent demonstrator showing only the states visited and the the action taken in each case. ", + "bbox": [ + 174, + 569, + 823, + 638 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Clinical decision making is an important example of this, where there is great interest in learning policies from medical professionals but is completely impractical and unethical to deploy policies on patients mid-training. Moreover this is an area where it is not only the policies, but also knowledge of the demonstrator’s preferences and goals, that we are interested in. While imitation learning (IL) generally deals with the problem of producing appropriate policies to match a demonstrator, with the added layer of understanding motivations this would then usually be approached through inverse reinforcement learning (IRL). Here attempting to learn the assumed underlying reward driving the demonstrator, before secondarily learning a policy that is optimal with respect to the reward using some forward reinforcement learning (RL) technique. By composing the RL and IRL procedures in order to perform IL we arrive at apprenticeship learning (AL), which introduces its own challenges, particularly in the offline setting. Notably for any given set of demonstrations there are (infinitely) many rewards for which the actions would be optimal $\\mathrm { N g }$ et al., 2000). Max-margin (Abbeel & $\\mathrm { N g }$ , 2004) and max-entropy (Ziebart et al., 2008) methods for heuristically differentiating plausible rewards do so at the cost of potentially dismissing the true reward for not possessing desirable qualities. On the other hand a Bayesian approach to IRL (BIRL) is more conceptually satisfying, taking a probabilistic view of the reward, we are interested in the posterior distribution having seen the demonstrations (Ramachandran & Amir, 2007), accounting for all possibilities. BIRL is not without its own drawbacks though, as noted in Brown & Niekum (2019), making it inappropriate for modern complicated environments: assuming linear rewards; small, solvable environments; and repeated, inner-loop, calls to forward RL. ", + "bbox": [ + 174, + 646, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/d9cfdc5b1bc6f3e16d989317572e562d90d7f13f159f7755e10beb37ec13d22b.jpg", + "image_caption": [ + "Figure 1: Overview. AVRIL is a framework for BIRL that works through an approximation in the variational Bayesian framework, considering the reward to be a latent representation of behaviour. A distribution over the reward, which is amortised over the demonstration space, is learnt that then informs an imitator $Q$ -function policy. The dotted line represents a departure from a traditional auto-encoder as the input, alongside the latent reward, informs the decoder. " + ], + "image_footnote": [], + "bbox": [ + 186, + 98, + 797, + 234 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The main contribution then of this paper is a method for advancing BIRL beyond these obstacles, allowing for approximate reward inference using an arbitrarily flexible class of functions, in any environment, without costly inner-loop operations, and importantly entirely offline. This leads to our algorithm AVRIL, depicted in figure 1, which represents a framework for jointly learning a variational posterior distribution over the reward alongside an imitator policy in an auto-encoderesque manner. In what follows we review the modern methods for offline IRL/IL (Section 2) with a focus on the approach of Bayesian IRL and the issues it faces when confronted with challenging environments. We then address the above issues by introducing our contributions (Section 3), and demonstrate the gains of our algorithm in real medical data and simulated control environments, notably that it is now possible to achieve Bayesian reward inference in such settings (Section 4). Finally we wrap up with some concluding thoughts and directions (Section 5). Code for AVRIL and our experiments is made available at https://github.com/XanderJC/scalable-birl and https://github.com/vanderschaarlab/mlforhealthlabpub. ", + "bbox": [ + 173, + 325, + 825, + 506 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 APPROACHING APPRENTICESHIP AND IMITATION OFFLINE", + "text_level": 1, + "bbox": [ + 176, + 529, + 691, + 545 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Preliminaries. We consider the standard Markov decision process (MDP) environment, with states $s \\in \\mathcal { S }$ , actions $a \\in \\mathcal A$ , transitions $T \\in \\Delta ( { \\cal S } ) ^ { s \\times { \\cal A } }$ , rewards $\\vec { R } \\in \\mathbb { R } ^ { S \\times A 1 }$ , and discount $\\gamma \\in [ 0 , 1 ]$ . For a policy $\\pi \\in \\Delta ( \\mathcal { A } ) ^ { s }$ let $\\begin{array} { r } { \\rho _ { \\pi } ( s , a ) = \\mathbb { E } _ { \\pi , T } [ \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } \\mathbb { 1 } _ { \\{ s _ { t } = s , a _ { t } = a \\} } ] } \\end{array}$ be the induced unique occupancy measure alongside the state-only occupancy measure $\\begin{array} { r } { \\rho _ { \\pi } ( s ) = \\sum _ { a \\in \\mathcal { A } } \\rho _ { \\pi } ( s , a ) } \\end{array}$ . Despite this full environment model, the only information available to us is the $\\mathbf { M D P } \\backslash R T$ , in that we have no access to either the underlying reward or the transitions, with our lacking knowledge of the transitions being also strong in the sense that further we are unable to simulate the environment to sample them. The learning signal is then given by access to $m$ -many trajectories of some demonstrator assumed to be acting optimally w.r.t. the MDP, following a policy $\\pi _ { D }$ , making up a data set $\\mathcal { D } _ { r a w } = \\{ ( s _ { 1 } ^ { ( i ) } , a _ { 1 } ^ { ( i ) } , \\dotsc , s _ { \\tau ^ { ( i ) } } ^ { ( \\bar { i } ) } , a _ { \\tau ^ { ( i ) } } ^ { ( i ) } ) \\} _ { i = 1 } ^ { m }$ where $s _ { t } ^ { ( i ) }$ is the state and $a _ { t } ^ { ( i ) }$ is the action taken at step $t$ during the $i$ th demonstration, and $\\tau ^ { ( i ) }$ is the (max) time horizon of the ith demonstration. Given the Markov assumption though it is sufficient and convenient to consider the demonstrations simply as a collection of $n$ -many state, action, next state, next action tuples such that $\\mathcal { D } = \\{ ( s _ { i } , a _ { i } , s _ { i } ^ { \\prime } , a _ { i } ^ { \\prime } ) \\} _ { i = 1 } ^ { n }$ with $\\begin{array} { r } { n = \\sum _ { i = 1 } ^ { m } ( \\tau ^ { ( i ) } - 1 ) } \\end{array}$ . ", + "bbox": [ + 173, + 561, + 825, + 768 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Apprenticeship through rewards. Typically AL proceeds by first inferring an appropriate reward function with an IRL procedure $\\mathrm { N g }$ et al., 2000; Ramachandran & Amir, 2007; Rothkopf & Dimitrakakis, 2011; Ziebart et al., 2008) before running forward RL to obtain an appropriate policy. This allows for easy mix-and-match procedures, swapping in different standard RL and IRL methods depending on the situation. These algorithms though depend on either knowledge of $T$ in order to solve exactly or the ability to perform roll-outs in the environment, with little previous work focusing on the entirely offline setting. One simple solution is through attempting to learn the dynamics (Herman et al., 2016), though without a large supply of diverse demonstrations or a small environment this becomes impractical given imperfections in the model. Alternatively Klein et al. (2011) and Lee et al. (2019) attempt off-policy feature matching through least-squared temporal difference and deep neural networks to uncover appropriate feature representations. ", + "bbox": [ + 174, + 785, + 825, + 882 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 160 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Implicit-reward policy learning. Recent work has often forgone an explicit representation of the reward. Moving within the maximum-entropy RL framework (Ziebart, 2010; Levine, 2018), Ho & Ermon (2016) noted that the full procedure ${ \\mathrm { ~ R L ~ o ~ I R L } }$ ) can be interpreted equivalently as the minimisation of some divergence between occupancy measures of the imitator and demonstrator: ", + "bbox": [ + 173, + 174, + 825, + 229 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/870742468cae69ab150cfe440ab1ebd1f7bf665c0794f41299537990da853ad6.jpg", + "text": "$$\n\\underset { \\pi } { \\arg \\operatorname* { m i n } } \\{ \\psi ^ { * } ( \\rho _ { \\pi } - \\rho _ { \\pi _ { D } } ) - H ( \\pi ) \\} ,\n$$", + "text_format": "latex", + "bbox": [ + 382, + 232, + 612, + 257 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "with $H ( \\pi )$ being the discounted causal entropy (Bloem & Bambos, 2014) of the policy and $\\psi ^ { * }$ the Fenchel conjugate of a chosen regulariser on the form of the reward. These are typically optimised in an adversarial fashion (Goodfellow et al., 2014) and given the focus on evaluating $\\rho _ { \\pi }$ this often requires extensive interaction with the environment, otherwise banking on approximations over a replay buffer (Kostrikov et al., 2018) or a reformulation of the divergence to allow for off-policy evaluation (Kostrikov et al., 2019). Bear in mind that optimal policies within the maximum-entropy framework are parameterised by a Boltzmann distribution: ", + "bbox": [ + 173, + 258, + 825, + 356 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/0c74caa5f9bc1d89acad1468e1f149a3ed4c26b48ade8e568c23ddc47fd8e772.jpg", + "text": "$$\n\\pi ( a | s ) = \\frac { \\exp ( Q ( s , a ) ) } { \\sum _ { b \\in \\cal { A } } \\exp ( Q ( s , b ) ) } ,\n$$", + "text_format": "latex", + "bbox": [ + 393, + 358, + 602, + 393 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "with $Q ( s , a )$ the soft $Q$ -function, defined recursively via the soft Bellman-equation: ", + "bbox": [ + 176, + 395, + 718, + 410 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/0aa78fb99ec235065b0573f570f97b7482c82125adfc93974b6d64143c688551.jpg", + "text": "$$\nQ ( s , a ) \\triangleq R ( s , a ) + \\gamma \\mathbb { E } _ { s ^ { \\prime } \\sim \\rho _ { \\pi } } \\Big [ \\operatorname { s o f t } _ { a ^ { \\prime } } \\operatorname { m a x } Q ( s ^ { \\prime } , a ^ { \\prime } ) ) \\Big ] .\n$$", + "text_format": "latex", + "bbox": [ + 326, + 411, + 671, + 439 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Then for a learnt parameterised policy given in terms of $Q$ -values from a function approximator $Q _ { \\theta }$ we can obtain an implied reward given by: ", + "bbox": [ + 178, + 440, + 820, + 469 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/1d7ed7ec38bc7068c7c374fe0563075cd630f77ba98fea016777db39e6364b88.jpg", + "text": "$$\nR _ { Q _ { \\theta } } ( s , a ) = Q _ { \\theta } ( s , a ) - \\gamma \\mathbb { E } _ { s ^ { \\prime } \\sim \\rho _ { \\pi } } \\Bigg [ \\log \\Bigg ( \\sum _ { a ^ { \\prime } \\in \\mathcal { A } } \\exp ( Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ) \\Bigg ) \\Bigg ] .\n$$", + "text_format": "latex", + "bbox": [ + 279, + 470, + 718, + 513 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "A number of algorithms make use of this fact with Piot et al. (2014) and Reddy et al. (2019) working by essentially placing a sparsity prior on this implied reward, encouraging it towards zero, and thus incorporating subsequent state information. Alternatively Jarrett et al. (2020) show that even the simple behavioural cloning (Bain & Sammut, 1995) is implicitly maximising some reward with an approximation that the expectation over states is taken with respect to the demonstrator, not the learnt policy. They then attempt to rectify part of this approximation using the properties of the energy-based model implied by the policy (Grathwohl et al., 2019). ", + "bbox": [ + 174, + 515, + 825, + 613 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The problem with learning an implicit reward in an offline setting is that it remains just that, implicit, only able to be evaluated at points seen in the demonstrations, and even then only approximately. Thus even if their consideration improves imitator policies performance they offer no real improvement for interpretation. ", + "bbox": [ + 174, + 619, + 823, + 676 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.1 BAYESIAN INVERSE REINFORCEMENT LEARNING ", + "text_level": 1, + "bbox": [ + 173, + 691, + 555, + 705 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We are then resigned to directly reason about the underlying reward, bringing us back to the question of IRL, and in particular BIRL for a principled approach to reasoning under uncertainty. Given a prior over possible functions, having seen some demonstrations, we calculate the posterior over the function using a theoretically simple application of Bayes rule. Ramachandran $\\&$ Amir (2007) defines the likelihood of an action at a state as a Boltzmann distribution with inverse temperature and respective state-action values, yielding a probabilistic demonstrator policy given by: ", + "bbox": [ + 173, + 717, + 825, + 801 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/eaead0b2596f07403155ca11eab69b0df05df986ed1d025b26750cb7161f5e84.jpg", + "text": "$$\n\\pi _ { D } ( a | s , R ) = \\frac { \\exp ( \\beta Q _ { R } ^ { \\pi _ { D } } ( s , a ) ) } { \\sum _ { b \\in \\cal { A } } \\exp ( \\beta Q _ { R } ^ { \\pi _ { D } } ( s , b ) ) } ,\n$$", + "text_format": "latex", + "bbox": [ + 364, + 803, + 632, + 838 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\beta \\in [ 0 , \\infty )$ represents the the confidence in the optimality of the demonstrator. Note that despite similarities, moving forward we are no longer within the maximum-entropy framework and $Q _ { R } ^ { \\pi } ( s , a )$ now denotes the traditional, not soft (as in equation 3), state-action value ( $Q$ -value) funcRtion given a reward $R$ and policy $\\pi$ such that $\\begin{array} { r } { Q _ { R } ^ { \\pi } ( s , \\bar { a } ) = \\mathbb { E } _ { \\pi , T } [ \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } R ( s _ { t } ) | s _ { 0 } = s , a _ { 0 } = a ] } \\end{array}$ Unsurprisingly this yields an intractable posterior distribution leading to a Markov chain Monte Carlo (MCMC) algorithm based on a random grid-walk to sample from the posterior. ", + "bbox": [ + 173, + 840, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Issues in complex and unknown environments. This original formulation, alongside extensions that consider maximum-a-posteriori inference (Choi & Kim, 2011) and multiple rewards (Choi & Kim, 2012; Dimitrakakis & Rothkopf, 2011), suffer from three major drawbacks that make them impractical for modern, complicated, and model-free task environments. ", + "bbox": [ + 176, + 103, + 825, + 160 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "1. The reward is a linear combination of state features. Naturally this is a very restrictive class of functions and assumes access to carefully hand-crafted features of the state space. 2. The cardinality of the state-space is finite, $| S | < \\infty$ . Admittedly this can be relaxed in practical terms, although it does mean the rapid-mixing bounds derived by Ramachandran & Amir (2007) do not hold at all in the infinite case. For finite approximations they scale at $\\mathcal { O } ( | S | ^ { 2 } )$ , rapidly becoming vacuous and causing BIRL to inherit the usual MCMC difficulties on assessing convergence and sequential computation (Gamerman & Lopes, 2006). 3. The requirement of an inner-loop MDP solve. Most importantly at every step a new reward is sampled and the likelihood of the data must then be evaluated. This requires calculating the $Q$ -values of the policy with respect to the reward, in other words running forward RL. While not an insurmountable problem in the simple cases where everything is known and can be quickly solved with a procedure guaranteed to converge correctly, this becomes an issue in the realm where only deep function approximation works adequately (i.e. the nontabular setting). DQN training for example easily stretches into hours (Mnih et al., 2013) and will have to be repeated thousands of times, making it completely untenable. ", + "bbox": [ + 210, + 171, + 825, + 388 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We have seen that even in the most simple setting the problem of exact Bayesian inference over the reward is intractable, and the above limitations of the current MCMC methods are not trivial to overcome. Consequently very little work has been done in the area and there still remain very open challenges. Levine et al. (2011) addressed linearity through a Gaussian process approach, allowing for a significantly more flexible and non-linear representation though introducing issues of its own, namely the computational complexity of inverting large matrices (Rasmussen, 2003). More recently Brown & Niekum (2019) have presented the only current solution to the inner-loop problem by introducing an alternative formulation of the likelihood, one based on human recorded pairwise preferences over demonstrations that significantly reduces the complexity of likelihood. However labelled preferences certainly can’t be assumed always available and while very effective for the given task is not appropriate in the general case. One of the key aspects of our contribution is that we are able to deal with all three of these issues while also not requiring any additional information. ", + "bbox": [ + 173, + 400, + 825, + 565 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The usefulness of uncertainty. On top of the philosophical consistency of Bayesian inference there are a number of reasons for wanting a measure of uncertainty over any uncovered reward that are not available from regular IRL algorithms. First that the (epistemic) uncertainty revealed by Bayesian inference tells us a lot about what areas of the state-space we really cannot say anything about because we haven’t seen any demonstrations there - potentially informing future data collection if that is possible (Mindermann et al., 2018). Additionally in the cases we are mostly concerned about (e.g. medicine) we have to be very careful about letting algorithms pick actions in practice and we are interested in performing safe or risk-averse imitation, for which a degree of confidence over learnt rewards is necessary. Brown et al. (2020) for example use a distribution over reward to optimise a conditional value-at-risk instead of expected return so as to bound potential downsides. ", + "bbox": [ + 173, + 580, + 825, + 719 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3 APPROXIMATE VARIATIONAL REWARD IMITATION LEARNING ", + "text_level": 1, + "bbox": [ + 174, + 739, + 717, + 756 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "A variational Bayesian approach. In this section we detail our method, AVRIL, for efficiently learning an imitator policy and performing reward inference simultaneously. Unlike the previously mentioned sampling or MAP-based methods, we employ variational inference (Blei et al., 2017) to reason about the posterior. Here we posit a surrogate distribution $q _ { \\phi } ( R )$ , parameterised by $\\phi$ , and aim to minimise the Kullback-Leibler (KL) divergence to the posterior, resulting in an objective: ", + "bbox": [ + 174, + 770, + 825, + 840 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/469374a8cd250696c803b1c0a945b8a40c02cba5529457319872279071ab9709.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\phi } \\{ D _ { \\mathrm { K L } } ( q _ { \\phi } ( R ) | | p ( R | \\mathcal { D } ) ) \\} .\n$$", + "text_format": "latex", + "bbox": [ + 398, + 843, + 598, + 868 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "This divergence is still as troubling as the posterior to evaluate, leading to an auxiliary objective function in the Evidence Lower BOund (ELBO): ", + "bbox": [ + 174, + 872, + 826, + 900 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/722a4c9f996fb1f0dcf1ce1851d1761a6df383a55436cc191dd6fbada90e1fd0.jpg", + "text": "$$\n\\mathcal { F } ( \\phi ) = \\mathbb { E } _ { q _ { \\phi } } \\big [ \\log p ( \\mathcal { D } | R ) \\big ] - D _ { K L } \\big ( q _ { \\phi } ( R ) | | p ( R ) \\big ) ,\n$$", + "text_format": "latex", + "bbox": [ + 330, + 902, + 666, + 922 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where it can be seen that maximisation over $\\phi$ is equivalent to (6). We are agnostic towards the form of both the prior and variational distribution, for simplicity here we assume a Gaussian process prior with mean zero and unit variance over $R$ alongside the variational posterior distribution given by: ", + "bbox": [ + 173, + 103, + 826, + 146 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/1532b16207f68ec3cfe9b06cfe011627db774328a75ce3351dc6541f8afdee54.jpg", + "text": "$$\nq _ { \\phi } ( R ) = \\mathcal { N } ( R ; \\mu , \\sigma ^ { 2 } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 421, + 151, + 575, + 170 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\mu , \\sigma ^ { 2 }$ are the outputs of an encoder neural network taking $s$ as input and parameterised by $\\phi$ . Note that for the algorithm that we will describe these choices are not a necessity and can be easily substituted for more expressive distributions if appropriate. Maintaining the assumption of Boltzmann rationality on the part of the demonstrator, our objective takes the form: ", + "bbox": [ + 174, + 178, + 825, + 234 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/f161d3dcacc8d099ea4aae0724813e18fd50a03c53b7ef7c02012c5149826eb6.jpg", + "text": "$$\n\\mathcal { F } ( \\phi ) = \\mathbb { E } _ { q _ { \\phi } } \\left[ \\sum _ { ( s , a ) \\in \\mathcal { D } } \\log \\frac { \\exp ( \\beta Q _ { R } ^ { \\pi _ { D } } ( s , a ) ) } { \\sum _ { b \\in \\mathcal { A } } \\exp ( \\beta Q _ { R } ^ { \\pi _ { D } } ( s , b ) ) } \\right] - D _ { K L } \\big ( q _ { \\phi } ( R ) | | p ( R ) \\big ) .\n$$", + "text_format": "latex", + "bbox": [ + 246, + 239, + 750, + 285 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The most interesting (and problematic) part of this objective as ever centres on the evaluation of $Q _ { R } ^ { \\pi _ { D } } ( s , a )$ . Notice that what is really required here is an expression of the $Q$ -values as a smooth function of the reward such that with samples of $R$ we could take gradients w.r.t. $\\phi$ . Of course there is little hope of obtaining this simply, by itself it is a harder problem than that of forward RL which only attempts to evaluate the $Q$ -values for a specific $R$ and already in complicated environments has to rely on function approximation and limited guarantees. ", + "bbox": [ + 173, + 291, + 825, + 376 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "A naive approach would be to sample $\\hat { R }$ and then approximate the $Q$ -values with a second neural network, solving offline over the batched data using a least-squared $\\mathrm { T D } / Q$ -learning algorithm, as is the approach forced on sampling based BIRL methods. It is in fact though doubly inappropriate for this setting, not only does this require a solve as an inner-loop but importantly differentiating through the solving operation is extremely impractical, it requires backpropagating through a number of gradient updates that are essentially unbounded as the complexity of the environment increases. ", + "bbox": [ + 173, + 383, + 825, + 468 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "A further approximation. This raises an important question - is it possible to jointly optimise a policy and variational distribution only once instead of requiring a repeated solve? This is theoretically suspect, the $Q$ -values are defined on a singular reward, constrained as $R ( s , a ) \\ =$ $\\mathbb { E } _ { s ^ { \\prime } , a ^ { \\prime } \\sim \\pi , T } [ \\bar { Q } _ { R } ^ { \\pi } ( { \\bar { s , } } a ) - \\gamma Q _ { R } ^ { \\pi } ( s ^ { \\prime } , a ^ { \\prime } ) ]$ so we cannot learn a particular standard $Q$ -function that reflects the entire distribution. But can we learn a policy that reflects the expected reward using a second policy neural network $Q _ { \\theta } ?$ We can’t simply optimise $\\theta$ alongside $\\phi$ to maximise the ELBO though as that completely ignores the fact that the learnt policy is intimately related to the distribution over the reward. Our solution to ensure then that they behave as intended is by constraining $q _ { \\phi }$ and $Q _ { \\theta }$ to be consistent with each other, specifically that the implied reward of the policy is sufficiently likely under the variational posterior (equivalently that the negative log-likelihood is sufficiently low). Thus we arrive at a constrained optimisation objective given by: ", + "bbox": [ + 173, + 483, + 825, + 637 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/ab6bb01b3d406269eacf9275cd5158b503c48ae031c27f3ab6ca365465af1c90.jpg", + "text": "$$\n\\operatorname* { m a x } _ { \\phi , \\theta } \\sum _ { ( s , a ) \\in \\mathcal { D } } \\log \\frac { \\exp ( \\beta Q _ { \\theta } ( s , a ) ) } { \\sum _ { b \\in \\mathcal { A } } \\exp ( \\beta Q _ { \\theta } ( s , b ) ) } - D _ { K L } \\big ( q _ { \\phi } ( R ) | | p ( R ) \\big ) ,\n$$", + "text_format": "latex", + "bbox": [ + 285, + 642, + 710, + 684 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "with $\\epsilon$ reflecting the strength of the constraint. Rewriting (10) as a Lagrangian under the KKT conditions (Karush, 1939; Kuhn $\\&$ Tucker, 1951), and given complimentary slackness, we obtain a practical objective function: ", + "bbox": [ + 176, + 708, + 820, + 751 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/2d42ccb3925545343a792675f7aacd47709b0e80950a893270372c9b3f1092f8.jpg", + "text": "$$\n\\begin{array} { r l } { \\mathcal { F } ( \\phi , \\theta , \\mathcal { D } ) = \\displaystyle \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal { D } } \\log \\frac { \\exp \\beta Q _ { \\theta } ( s , a ) ) } { \\sum _ { b \\in A } \\exp ( \\beta Q _ { \\theta } ( s , b ) ) } - D _ { K L } \\big ( q _ { \\phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \\big ) } & { } \\\\ { + \\lambda \\log q _ { \\phi } ( Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ) . } & { } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 209, + 757, + 787, + 820 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Here the KL divergence between processes is approximated over a countable set, and $\\lambda$ is introduced to control the strength of constraint. ", + "bbox": [ + 173, + 824, + 826, + 853 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "On the implementation. Optimisation is simple as both networks are maximising the same objective and gradients can be easily obtained through backpropagation while being amenable to minibatching, allowing you to call your favourite gradient-based stochastic optimisation scheme. We re-iterate though that AVRIL really represents a framework for doing BIRL and not a specific model ", + "bbox": [ + 173, + 867, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Algorithm 1: Approximate Variational Reward Imitation Learning (AVRIL) ", + "text_level": 1, + "bbox": [ + 178, + 107, + 673, + 122 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Result: Parameters $\\phi$ of variational distribution and $\\theta$ of policy Q-function \nInput: $\\mathcal { D } , S , A , \\gamma , \\lambda$ , learning rate $\\eta$ , mini-batch size $b$ ; \nInitialise $\\phi , \\theta$ ; $\\triangleright$ Can concatenate into single vector $( \\phi , \\theta )$ \nwhile not converged do Sample $\\mathcal { D } _ { m i n i }$ from $\\mathcal { D }$ ; $\\begin{array} { r } { \\mathcal { F } ( \\phi , \\theta , \\mathcal { D } ) = \\mathbb { E } [ \\frac { n } { b } \\mathcal { F } ( \\phi , \\theta , \\mathcal { D } _ { m i n i } ) ] } \\end{array}$ ; . MC estimate total loss $( \\phi ^ { \\prime } , \\theta ^ { \\prime } ) ( \\phi , \\theta ) + \\eta \\nabla _ { \\phi , \\theta } \\mathcal { F } ( \\phi , \\theta , \\mathcal { D } )$ ; . Gradient step for $\\phi , \\theta$ $\\phi , \\theta \\phi ^ { \\prime } , \\theta ^ { \\prime }$ \nend \nReturn: $\\phi , \\theta$ ", + "bbox": [ + 173, + 125, + 807, + 265 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "since $Q _ { \\theta }$ and $q _ { \\phi }$ represent arbitrary function approximators. So far we have presented both as neural networks, but this does not have to be the case. Of course the advantage of them is their flexibility and ease of training but they are still inherently black box. It is then perfectly possible to swap in any particular function approximator if the task requires it, using simple linear models for example may slightly hurt performance but allow for more insight. Despite the specific focus on infinite state-spaces, AVRIL can still even be applied in the tabular setting by simply representing the policy and variational distribution with multi-dimensional tensors. Having settled on their forms, equation (11) is calculated simply and the joint gradient with respect to $\\theta$ and $\\phi$ is straight-forwardly returned using any standard auto-diff package. The whole process is summarised in Algorithm 1. ", + "bbox": [ + 174, + 303, + 825, + 429 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We can now see how AVRIL does not suffer the issues outlined in section 2.1. Our form of $q _ { \\phi } ( R )$ is flexible and easily accommodates a non-linear form of the reward given a neural architecture - this also removes any restriction on $s$ , or at least allows for any state space that is commonly tackled within the IL/RL literature. Additionally we have a single objective for which all parameters are maximised simultaneously - there are no inner-loops, costly or otherwise, meaning training is faster than the MCMC methods by a factor equal roughly to the number of samples they would require. ", + "bbox": [ + 174, + 435, + 825, + 520 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The generative model view. Ultimately a policy represents a generative model for the behavioural data we see. Ho & Ermon (2016) explicitly make use of this fact by casting the problem in the GAN framework (Goodfellow et al., 2014). Our method is more analogous to a VAE (Kingma & Welling, 2013), though not exactly, where given the graphical model in figure 2 the reward can be seen as a latent representation of the policy. Our approach takes the seen data and amortises the inference, encoding over the state space. The policy does not act as a decoder in precisely taking any given encoded reward and outputting a policy, but it does take the whole reward posterior and translate it into actions and therefore behaviour. This approach has its advantages, in both meaningful interpretation of the latent reward (which is non-existent in adversarial methods), and that we forgo the practical difficulties of alternating min-max optimisation (Kodali et al., 2017) while maintaining a generative view of the policy. ", + "bbox": [ + 174, + 541, + 614, + 693 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/787d6d634246cb213461ef2627f55b1feb1315b21e4be42cc9a37cfd4f67f240.jpg", + "image_caption": [ + "Figure 2: Graphical model for Bayesian IRL " + ], + "image_footnote": [], + "bbox": [ + 632, + 544, + 813, + 640 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 694, + 821, + 736 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Temporal consistency through reward regularisation. Considering only the first term of (11) yields the standard behavioural cloning setup (where the logits output can be interpreted as the $Q$ - values) as it removes the reward from the equation and just focuses on matching actions to states. AVRIL can then be seen as a policy-learning method regularised by the need for the implied reward to be consistent. Note that this does not induce any necessary bias since the logits normally contain an extra degree of freedom allowing them to arbitrarily shift by some scale factor. This factor is now explicitly constrained by giving the logits additional meaning in that they represent $Q$ -values. This places great importance on the KL term, since every parameterisation of a policy will have an associated implied reward, the KL regularises these to be not so far from the prior and preventing the reward from overfitting to the policy and becoming pointless. It also is able to double as a regularising term in a similar manor to previous reward-regularisation methods (Piot et al., 2014; Reddy et al., 2019) depending on the chosen prior, encouraging the reward to be close to zero: ", + "bbox": [ + 173, + 757, + 825, + 924 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Proposition 1 (Reward Regularisation) Assume that the constraint in (10) is satisfied in that $\\begin{array} { r } { { \\mathbb E } _ { q _ { \\phi } } [ R ( s , a ) ] = { \\mathbb E } _ { \\pi , T } [ Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ] } \\end{array}$ , then given a standard normal prior $p ( R ) = \\mathcal { N } ( R ; 0 , 1 )$ the $\\mathrm { K L }$ divergence yields a sparsity regulator on the implied reward: ", + "bbox": [ + 171, + 103, + 826, + 146 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/8c1fb4ca7a6b5f8b5fda4b490f7a45c3bb86bcc967bc98e1f7e8f7e2af6b9568.jpg", + "text": "$$\n\\mathcal { L } _ { r e g } = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal { D } } \\frac { 1 } { 2 } \\big ( Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) \\big ) ^ { 2 } + g ( \\mathrm { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) .\n$$", + "text_format": "latex", + "bbox": [ + 266, + 152, + 732, + 193 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Proof. Appendix. \u0003 This follows immediately from the fact that the divergence evaluates as DK $\\begin{array} { r } { \\overset { \\vartriangle } { \\boldsymbol { \\mathrm { \\iota } } } \\big ( q _ { \\phi } ( \\hat { R } ( s , a ) ) | | p ( R ( s , a ) ) \\big ) = \\frac { 1 } { 2 } ( - \\log ( \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) - 1 + \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] + \\mathbb { E } _ { q _ { \\phi } } [ R ( s , a ) ] ^ { 2 } ) } \\end{array}$ ", + "bbox": [ + 174, + 200, + 825, + 231 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "This then allows AVRIL to inherit the benefit of these methods while also explicitly learning a reward that can be queried at any point. We are also allowed the choice of whether it is state-only or state-action. This has so far been arbitrary, but it is important to consider that a state-only reward is a necessary and sufficient condition for a reward that is fully disentangled from the dynamics $\\operatorname { F u }$ et al., 2018). Thus by learning such a reward and given the final term of (11) that directly connects one-step rewards in terms of the policy, this forces the policy (not the reward) to account for the dynamics of the system ensuring temporal consistency in a way that BC for example simply can’t. Alternatively using a state-action reward means that inevitably some of the temporal information leaks out of the policy and into the reward - ultimately to the detriment of the policy but potentially allowing for a more interpretable (or useful) form of reward depending on the task at hand. ", + "bbox": [ + 174, + 234, + 825, + 375 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 396, + 326, + 411 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Experimental setup. We are primarily concerned with the case of medical environments, which is exactly where the issue of learning without interaction is most crucial, you just cannot let a policy sample treatments for a patient to try to learn more about the dynamics. It is also where a level of interpretability in what has been learnt is important, since the consequence of actions are potentially very impactful on human lives. As such we focus our evaluation on learning on a real-life healthcare problem, with demonstrations taken from the Medical Information Mart for Intensive Care (MIMIC-III) dataset (Johnson et al., 2016). The data contains trajectories of patients in intensive care recording their condition and theraputic interventions at one day intervals. We evaluate the ability of the methods to learn a medical policy in both the two and four action setting - specifically whether the patient should be placed on a ventilator, and the decision for ventilation in combination with antibiotic treatment. These represent the two most common, and important, clinical interventions recorded in the data. Without a recorded notion of reward, performance is measured with respect to action matching against a held out test set of demonstrations with cross-validation. ", + "bbox": [ + 174, + 428, + 825, + 608 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Alongside the healthcare data and for the purposes of demonstrating generalisability, we provide additional results on standard environments of varying complexity in the RL literature, the standard control problems of: CartPole, a classic control environment aiming to swing up and balance a pendulum; Acrobot, which aims to maintain a sequence of joints above a given height; and LunarLander, guiding a landing module to a safe touchdown on the moon surface. In these settings given sufficient demonstration data all benchmarks are very much capable of reaching demonstrator level performance, so we test the algorithms on their ability to handle sample complexity in the low data regime by testing their performance when given access to a select number of trajectories which we adjust, replicating the setup in Jarrett et al. (2020). With access to a simulation through the OpenAI gym (Brockman et al., 2016), we measure performance by deploying the learnt policies live and calculating their average return over 300 episodes. ", + "bbox": [ + 174, + 616, + 825, + 767 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Benchmarks. We test our method (AVRIL) against a number of benchmarks from the offline IRL/IL setting: Deep Successor Feature Network (DSFN) (Lee et al., 2019), an offline adaptation of max-margin IRL that generalises past the linear methods using a deep network with leastsquares temporal-difference learning, the only other method that produces both a reward and policy; Reward-regularized Classification for Apprenticeship Learning (RCAL) (Piot et al., 2014), where an explicit regulariser on the sparsity of the implied reward is introduced in order to account for the dynamics information; ValueDICE (VDICE) (Kostrikov et al., 2019), an adversarial imitation learning, adapted for the offline setting by removing the replay regularisation; Energy-based Distribution Matching (EDM) (Jarrett et al., 2020), the state-of-the-art in offline imitation learning; and finally the standard example of Behavioural Cloning (BC). To provide evidence that we are indeed learning an appropriate reward we show an ablation of our method on the MIMIC data: we take the reward learnt by AVRIL and use it as the ‘true’ reward used to train a $Q$ -network offline to learn a policy (A-RL). Note that we have not included previous BIRL methods for the reasons explained in section 2.1, training a network just once in these environments takes in the order of minutes and repeating this sequentially thousands of times is just not practical. For aid in comparison all methods share the same network architecture of two hidden layers of 64 units with ELU activation functions and are trained using Adam (Kingma & Ba, 2014) with learning rates individually tuned. Further details on experimental setup and the implementation of benchmarks can be found in the appendix. ", + "bbox": [ + 174, + 784, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/99c662ff38503bdc43e89701fae5833c8fdd14b9ef6e894424ecac8256a1baf1.jpg", + "image_caption": [ + "Figure 3: Control environments performance. We plot the average returns received by the policies when deployed live in the environment against the number of trajectories seen during training. " + ], + "image_footnote": [], + "bbox": [ + 176, + 112, + 805, + 229 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/67e92acc9b38e72efd681d6f45c1970e9fcc5cfb81050ddb8eaaeab98d4fc5ca.jpg", + "table_caption": [ + "Table 1: Healthcare performance. Comparison of methods on the MIMIC-III dataset. Performance of the policy is evaluated on the quality of action matching against a held out test set of demonstrations. We report the accuracy (ACC), area under the receiving operator characteristic curve (AUC) and average precision score (APS). " + ], + "table_footnote": [], + "table_body": "
VentilatorVentilator + Antibiotics
MetricACCAUCAPSACCAUCAPS
BC0.873 ± 0.0070.916 ± 0.0020.904±0.0030.700±0.0090.864 ± 0.0030.665 ± 0.009
VDICE0.879 ±0.0020.915 ± 0.0020.904±0.0030.710 ±0.0050.863 ±0.0020.675 ±0.004
RCAL0.870 ± 0.0120.916 ± 0.0030.904±0.0050.702 ±0.0080.865 ± 0.0040.669 ± 0.006
DSFN0.869 ± 0.0050.905 ± 0.0030.885 ±0.0010.683 ± 0.0070.856 ±0.0020.670 ± 0.004
EDM0.882 ± 0.0110.920±0.0020.909 ± 0.0030.716 ±0.0080.873±0.0020.682 ± 0.004
A-RL10.875±0.0100.904±0.0020.927±0.0020.718 ± 0.0100.864±0.0020.665±0.005
AVRIL0.891±0.002 0.917 ± 0.0010.940±0.0010.754± 0.001 0.884 ± 0.000 0.708 ± 0.002
", + "bbox": [ + 174, + 347, + 823, + 489 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 502, + 825, + 616 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Evaluation. We see for all tasks AVRIL learns an appropriate policy that performs strongly across the board, being competitive in all cases and in places beating out all of the other benchmarks. The results for our healthcare example are given in table 1, with AVRIL performing very strongly, having the highest accuracy and precision score in both tasks. The results for the control environments are shown in figure 3. AVRIL performs competitively and is easily capable of reaching demonstrator level performance in the samples given for these tasks, though not always as quickly as some of the dedicated offline IL methods. ", + "bbox": [ + 173, + 630, + 825, + 727 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Reward insight. Remember though that task performance is not exactly our goal. Rather the key aspect of AVRIL is the inference over the unseen reward in order to gain information about the preferences of the agent that other black-box policy methods can’t. In the previous experiments our reward encoder was a neural network for maximum flexibility and we can see from the performance of A-RL we learn a representation of the reward that can be used to relearn in the environment very effectively, albeit not quite to the same standard of AVRIL. Note this also reflects an original motivation for AVRIL in that offpolicy RL on top of a learnt reward suffers. In figure 4 we explore how to gain more insight from the learnt reward using different parameterisations of the reward. The top graph shows how a learnt state-action reward changes as a function of blood-oxygen level for an otherwise healthy patient, and it can be seen that as it drops below average the reward for ventilating the patient becomes much higher (note this is average for patients in the ICU, not across the general population). While this is intuitive we still have to query a neural network repeatedly over the state space to gain insight, the bottom graph of figure 4 presents then a simpler but perhaps more useful representation. In this case we learn a state-only reward as before but as a linear model. This is not as strong a constraint on the policy since that is still free to be non-linear as a neural network but simultaneously allows us the insight of what our model considers high value in the environment as we plot the relative model coefficients for each covariate. We can see here for example that the biggest impact on the overall estimated quality of a state is given by blood pressure, well known as an important indicator of health (Hepworth et al., 1994), strongly impacted by trauma and infection. ", + "bbox": [ + 174, + 743, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/ca7c32b8888060a1a5cb258f469a662fd368830830a97e61c43ea9064d01b67d.jpg", + "image_caption": [ + "Figure 5: Gridworld example. Scaled heat-maps of: the ground truth reward; the relative state occupancy of the expert demonstrations; the reward posterior mean; and reward standard deviation. " + ], + "image_footnote": [], + "bbox": [ + 192, + 97, + 816, + 204 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 258, + 825, + 343 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Gridworld ground-truth comparison While environments like MIMIC are the main focus of this work they do not lend them selves to inspection of the uncovered reward as the ground truth simply is not available to us. We thus demonstrate on a toy gridworld environment, in order to clearly see the effect of learning a posterior distribution over the reward. In this (finite) example both the encoder and decoder are represented by tensors but otherwise the procedure remains the same. Figure 5 plots scaled heat-maps of: a) the ground truth reward; b) the relative state occupancy of the expert demonstrations, obtained using value-iteration; c) the reward posterior mean; and d) the reward standard deviation. The interesting thing to note is that the standard deviation of the learnt reward essentially resembles the complement of the state occupancy - revealing the epistemic uncertainty around that part of the state-space given we haven’t seen any demonstrations there. ", + "bbox": [ + 174, + 359, + 581, + 579 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 CONCLUSIONS ", + "text_level": 1, + "bbox": [ + 176, + 602, + 328, + 617 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We have presented a novel algorithm, Approximate Variational Reward Imitation Learning, for addressing the scalability issues that prevent current Bayesian IRL methods being used in large and unknown environments. We show that this performs strongly on real and toy data for learning imitation policies completely offline and importantly recovers a reward that is both effective for retraining policies but also offers useful insight into the preferences of the demonstrator. Of course this still represents an approximation, and there is room for further, more exact methods or else guarantees on the maximum divergence. We have focused on simply obtaining the appropriate uncertainty over reward as well as imitation in high stakes environments - in these settings it is crucial that learnt policies avoid catastrophic failure and so how exactly to use the uncertainty in order to achieve truly safe imitation (or indeed better-that-demonstrator apprenticeship) is increasingly of interest. ", + "bbox": [ + 174, + 635, + 581, + 704 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/10c9875b3e37b7a44561ac5529ce0724c415439487c6fd0baa51655f4911daf4.jpg", + "image_caption": [ + "Figure 4: (Top) A state-action reward is learnt and plotted for an otherwise average patient as their blood oxygen level changes. (Bottom) The associated weights given a state-only reward as a linear function of the state-space. " + ], + "image_footnote": [], + "bbox": [ + 604, + 366, + 815, + 582 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 704, + 825, + 801 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ACKNOWLEDGEMENTS ", + "text_level": 1, + "bbox": [ + 176, + 823, + 366, + 838 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "AJC would like to acknowledge and thank Microsoft Research for its support through its PhD Scholarship Program with the EPSRC. This work was additionally supported by the Office of Naval Research (ONR) and the NSF (Grant number: 1722516). We would like to thank all of the anonymous reviewers on OpenReview, alongside the many members of the van der Schaar lab, for their input, comments, and suggestions at various stages that have ultimately improved the manuscript. ", + "bbox": [ + 174, + 854, + 823, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 102, + 287, + 118 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Pieter Abbeel and Andrew $\\mathrm { ~ Y ~ N ~ g ~ }$ . Apprenticeship learning via inverse reinforcement learning. In Proceedings of the twenty-first international conference on Machine learning, pp. 1, 2004. ", + "bbox": [ + 173, + 126, + 825, + 155 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Michael Bain and Claude Sammut. A framework for behavioural cloning. In Machine Intelligence 15, pp. 103–129, 1995. ", + "bbox": [ + 171, + 164, + 823, + 194 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "David M Blei, Alp Kucukelbir, and Jon D McAuliffe. Variational inference: A review for statisticians. Journal of the American statistical Association, 112(518):859–877, 2017. ", + "bbox": [ + 174, + 203, + 821, + 233 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Michael Bloem and Nicholas Bambos. Infinite time horizon maximum causal entropy inverse reinforcement learning. In 53rd IEEE Conference on Decision and Control, pp. 4911–4916. IEEE, 2014. ", + "bbox": [ + 174, + 242, + 825, + 285 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and Wojciech Zaremba. Openai gym, 2016. ", + "bbox": [ + 174, + 294, + 823, + 324 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Daniel Brown, Scott Niekum, and Marek Petrik. Bayesian robust optimization for imitation learning. Advances in Neural Information Processing Systems, 33, 2020. ", + "bbox": [ + 173, + 333, + 821, + 363 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Daniel S Brown and Scott Niekum. Deep bayesian reward learning from preferences. arXiv preprint arXiv:1912.04472, 2019. ", + "bbox": [ + 174, + 372, + 823, + 401 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jaedeug Choi and Kee-Eung Kim. Map inference for bayesian inverse reinforcement learning. In Advances in Neural Information Processing Systems, pp. 1989–1997, 2011. ", + "bbox": [ + 171, + 410, + 823, + 440 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jaedeug Choi and Kee-Eung Kim. Nonparametric bayesian inverse reinforcement learning for multiple reward functions. In Advances in Neural Information Processing Systems, pp. 305–313, 2012. ", + "bbox": [ + 173, + 449, + 825, + 492 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Christos Dimitrakakis and Constantin A Rothkopf. Bayesian multitask inverse reinforcement learning. In European workshop on reinforcement learning, pp. 273–284. Springer, 2011. ", + "bbox": [ + 173, + 502, + 821, + 532 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Justin Fu, Katie Luo, and Sergey Levine. Learning robust rewards with adverserial inverse reinforcement learning. In International Conference on Learning Representations, 2018. ", + "bbox": [ + 169, + 540, + 821, + 570 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dani Gamerman and Hedibert F Lopes. Markov chain Monte Carlo: stochastic simulation for Bayesian inference. CRC Press, 2006. ", + "bbox": [ + 171, + 579, + 825, + 609 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in neural information processing systems, pp. 2672–2680, 2014. ", + "bbox": [ + 173, + 617, + 823, + 661 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Will Grathwohl, Kuan-Chieh Wang, Joern-Henrik Jacobsen, David Duvenaud, Mohammad Norouzi, and Kevin Swersky. Your classifier is secretly an energy based model and you should treat it like one. In International Conference on Learning Representations, 2019. ", + "bbox": [ + 174, + 670, + 825, + 714 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Joseph T Hepworth, Sherry Garrett Hendrickson, and Jean Lopez. Time series analysis of physiological response during icu visitation. Western journal of nursing research, 16(6):704–717, 1994. ", + "bbox": [ + 173, + 723, + 826, + 765 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Michael Herman, Tobias Gindele, Jorg Wagner, Felix Schmitt, and Wolfram Burgard. Inverse rein-¨ forcement learning with simultaneous estimation of rewards and dynamics. In Artificial Intelligence and Statistics, pp. 102–110. PMLR, 2016. ", + "bbox": [ + 173, + 775, + 823, + 819 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ashley Hill, Antonin Raffin, Maximilian Ernestus, Adam Gleave, Anssi Kanervisto, Rene Traore, Prafulla Dhariwal, Christopher Hesse, Oleg Klimov, Alex Nichol, Matthias Plappert, Alec Radford, John Schulman, Szymon Sidor, and Yuhuai Wu. Stable baselines. https://github. com/hill-a/stable-baselines, 2018. ", + "bbox": [ + 173, + 829, + 825, + 886 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jonathan Ho and Stefano Ermon. Generative adversarial imitation learning. In Advances in neural information processing systems, pp. 4565–4573, 2016. ", + "bbox": [ + 176, + 895, + 821, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Daniel Jarrett, Ioana Bica, and Mihaela van der Schaar. Strictly batch imitation learning by energybased distribution matching. Advances in Neural Information Processing Systems, 33, 2020. ", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alistair EW Johnson, Tom J Pollard, Lu Shen, H Lehman Li-Wei, Mengling Feng, Mohammad Ghassemi, Benjamin Moody, Peter Szolovits, Leo Anthony Celi, and Roger G Mark. Mimic-iii, a freely accessible critical care database. Scientific data, 3(1):1–9, 2016. ", + "bbox": [ + 176, + 141, + 821, + 185 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "William Karush. Minima of functions of several variables with inequalities as side constraints. M. Sc. Dissertation. Dept. of Mathematics, Univ. of Chicago, 1939. ", + "bbox": [ + 176, + 194, + 821, + 223 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. ", + "bbox": [ + 174, + 232, + 823, + 262 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik P Kingma and Max Welling. Auto-encoding variational bayes. arXiv preprint arXiv:1312.6114, 2013. ", + "bbox": [ + 173, + 271, + 823, + 301 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Edouard Klein, Matthieu Geist, and Olivier Pietquin. Batch, off-policy and model-free apprenticeship learning. In European Workshop on Reinforcement Learning, pp. 285–296. Springer, 2011. ", + "bbox": [ + 173, + 309, + 823, + 340 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Naveen Kodali, Jacob Abernethy, James Hays, and Zsolt Kira. On convergence and stability of gans. arXiv preprint arXiv:1705.07215, 2017. ", + "bbox": [ + 173, + 348, + 823, + 378 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ilya Kostrikov, Kumar Krishna Agrawal, Debidatta Dwibedi, Sergey Levine, and Jonathan Tompson. Discriminator-actor-critic: Addressing sample inefficiency and reward bias in adversarial imitation learning. In International Conference on Learning Representations, 2018. ", + "bbox": [ + 173, + 386, + 825, + 431 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ilya Kostrikov, Ofir Nachum, and Jonathan Tompson. Imitation learning via off-policy distribution matching. International Conference on Learning Representations (ICLR), 2019. ", + "bbox": [ + 169, + 439, + 823, + 469 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "HW Kuhn and AW Tucker. Nonlinear programming. In Proceedings of the Second Berkeley Symposium on Mathematical Statistics and Probability. The Regents of the University of California, 1951. ", + "bbox": [ + 174, + 478, + 823, + 521 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Donghun Lee, Srivatsan Srinivasan, and Finale Doshi-Velez. Truly batch apprenticeship learning with deep successor features. International Joint Conference on Artificial Intelligence (IJCAI), 2019. ", + "bbox": [ + 174, + 530, + 823, + 573 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sergey Levine. Reinforcement learning and control as probabilistic inference: Tutorial and review. arXiv preprint arXiv:1805.00909, 2018. ", + "bbox": [ + 174, + 583, + 820, + 613 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sergey Levine, Zoran Popovic, and Vladlen Koltun. Nonlinear inverse reinforcement learning with gaussian processes. In Advances in Neural Information Processing Systems, pp. 19–27, 2011. ", + "bbox": [ + 173, + 621, + 821, + 651 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Soren Mindermann, Rohin Shah, Adam Gleave, and Dylan Hadfield-Menell. Active inverse reward ¨ design. arXiv preprint arXiv:1809.03060, 2018. ", + "bbox": [ + 174, + 660, + 823, + 689 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, and Martin Riedmiller. Playing atari with deep reinforcement learning. arXiv preprint arXiv:1312.5602, 2013. ", + "bbox": [ + 173, + 699, + 825, + 742 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andrew Y Ng, Stuart J Russell, et al. Algorithms for inverse reinforcement learning. In Icml, volume 1, pp. 2, 2000. ", + "bbox": [ + 171, + 751, + 823, + 781 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Bilal Piot, Matthieu Geist, and Olivier Pietquin. Boosted and reward-regularized classification for apprenticeship learning. In Proceedings of the 2014 international conference on Autonomous agents and multi-agent systems, pp. 1249–1256. International Foundation for Autonomous Agents and Multiagent Systems, 2014. ", + "bbox": [ + 174, + 790, + 825, + 847 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Antonin Raffin. Rl baselines zoo. https://github.com/araffin/rl-baselines-zoo, 2018. ", + "bbox": [ + 174, + 857, + 821, + 885 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Deepak Ramachandran and Eyal Amir. Bayesian inverse reinforcement learning. In IJCAI, volume 7, pp. 2586–2591, 2007. ", + "bbox": [ + 176, + 895, + 820, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Carl Edward Rasmussen. Gaussian processes in machine learning. In Summer School on Machine Learning, pp. 63–71. Springer, 2003. ", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Siddharth Reddy, Anca D Dragan, and Sergey Levine. Sqil: Imitation learning via reinforcement learning with sparse rewards. In International Conference on Learning Representations, 2019. ", + "bbox": [ + 173, + 140, + 823, + 170 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Constantin A Rothkopf and Christos Dimitrakakis. Preference elicitation and inverse reinforcement learning. In Joint European conference on machine learning and knowledge discovery in databases, pp. 34–48. Springer, 2011. ", + "bbox": [ + 178, + 178, + 823, + 222 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347, 2017. ", + "bbox": [ + 171, + 229, + 823, + 260 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Brian D Ziebart. Modeling Purposeful Adaptive Behavior with the Principle of Maximum Causal Entropy. PhD thesis, University of Washington, 2010. ", + "bbox": [ + 173, + 267, + 823, + 297 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Brian D Ziebart, Andrew L Maas, J Andrew Bagnell, and Anind K Dey. Maximum entropy inverse reinforcement learning. In Aaai, volume 8, pp. 1433–1438. Chicago, IL, USA, 2008. ", + "bbox": [ + 174, + 306, + 823, + 335 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A EXPERIMENTAL SETUP ", + "text_level": 1, + "bbox": [ + 176, + 102, + 403, + 118 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Expert Demonstrators. Demonstrations are produced by running pre-trained and hyperparmeteroptimised agents taken from the RL Baselines Zoo (Raffin, 2018) in OpenAI Stable Baselines (Hill et al., 2018). For Acrobot and LunarLander these are DQNs (Mnih et al., 2013), while CartPole uses PPO2 (Schulman et al., 2017). Trajectories were then sub-sampled for every 20th step in Acrobot and CartPole, and every 5th step in LunarLander. ", + "bbox": [ + 173, + 138, + 825, + 208 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Testing setup. For control environments algorithms were presented with (1,3,7,10,15) trajectories uniformly sampled from a pool of 1000 expert trajectories. Each algorithm was then trained until convergence and tested by performing 300 live roll-outs in the simulated environment and recording the average accumulated reward received in each episode. This whole process was then repeated 10 times, consequently with different initialisations and seen trajectories. ", + "bbox": [ + 174, + 232, + 825, + 303 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Implementations. All methods are neural network based and so in experiments they share the same architecture of 2 hidden layers of 64 units each connected by exponential linear unit (ELU) activation functions. ", + "bbox": [ + 174, + 325, + 825, + 368 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Publicly available code was used in the implementations of a number of the benchmarks, specifically: ", + "bbox": [ + 173, + 375, + 825, + 404 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "• VDICE (Kostrikov et al., 2019): https://github.com/google-research/google-research/tree/ master/value_dice \n• DSFN (Lee et al., 2019): https://github.com/dtak/batch-apprenticeship-learning \n• EDM (Jarrett et al., 2020): https://github.com/wgrathwohl/JEM ", + "bbox": [ + 212, + 421, + 784, + 574 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Note that VDICE was originally designed for continuous actions with a Normal distribution output which we adapt for the experiments by replacing with a Gumbel-softmax. ", + "bbox": [ + 173, + 592, + 825, + 621 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B PROOFS ", + "text_level": 1, + "bbox": [ + 174, + 650, + 276, + 665 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Proof of proposition 1. Assuming the constraint is satisfied, we are maximising the following objective: ", + "bbox": [ + 173, + 685, + 825, + 715 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/6cc3bd8ee994e7067352680b1c0f4e7bf683ad55e33076f9db973e6035afd169.jpg", + "text": "$$\n\\mathcal { F } ( \\phi , \\theta ) = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal { D } } \\log \\frac { \\exp \\beta Q _ { \\theta } ( s , a ) ) } { \\sum _ { b \\in \\mathcal { A } } \\exp ( \\beta Q _ { \\theta } ( s , b ) ) } - D _ { K L } \\big ( q _ { \\phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \\big )\n$$", + "text_format": "latex", + "bbox": [ + 205, + 728, + 763, + 770 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Which is equivalent to minimising the negative value ", + "bbox": [ + 174, + 784, + 522, + 799 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/6e760f31446e4ca138988bf7ec1f10f266bed97384094a2066f4c54c88f1c129.jpg", + "text": "$$\n\\mathcal { F } ( \\phi , \\theta ) = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal { D } } - \\log \\frac { \\exp \\beta Q _ { \\theta } ( s , a ) ) } { \\sum _ { b \\in \\mathcal { A } } \\exp ( \\beta Q _ { \\theta } ( s , b ) ) } + \\underbrace { D _ { K L } \\big ( q _ { \\phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \\big ) } _ { \\mathcal { L } _ { r e g } } ,\n$$", + "text_format": "latex", + "bbox": [ + 196, + 811, + 772, + 868 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "with the first term $\\mathcal { L } _ { B C }$ being the negative log-likelihood of the data and the classic behavioural cloning objective. Now given a standard Gaussian prior then the $\\mathrm { K L }$ divergence of a Gaussian with mean $\\mu$ and variance $\\sigma ^ { 2 }$ from the prior is given by $\\begin{array} { r } { \\frac { 1 } { 2 } ( - \\log ( \\sigma ^ { 2 } ) + \\sigma ^ { 2 } - 1 + \\bar { \\mu } ^ { 2 } ) } \\end{array}$ (Kingma & Welling, ", + "bbox": [ + 176, + 881, + 823, + 925 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "2013). Then given our prior $p ( R ( s , a ) ) = \\mathcal { N } ( R ; 0 , 1 )$ , the KL evaluates as: ", + "bbox": [ + 173, + 102, + 665, + 119 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/3982fadd32581fcf7ff439784c25ae2e8dbbf7258f95998ae859909bd77b402a.jpg", + "text": "$$\n\\begin{array} { l } { { \\displaystyle { \\mathcal L } _ { r e g } = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal D } _ { K L } \\big ( q _ { \\phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \\big ) } } \\\\ { { = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal D } \\frac { 1 } { 2 } \\big ( - \\log ( \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) + \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] - 1 + \\mathbb { E } _ { q _ { \\phi } } [ R ( s , a ) ] ^ { 2 } \\big ) } } \\\\ { { = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal D } \\frac { 1 } { 2 } \\big ( \\mathbb { E } _ { q _ { \\phi } } [ R ( s , a ) ] ^ { 2 } ) + g ( \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) } } \\\\ { { = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal D } \\frac { 1 } { 2 } \\big ( Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) \\big ) ^ { 2 } + g ( \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 200, + 126, + 766, + 284 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Since by assumption $\\mathbb { E } _ { q _ { \\phi } } [ R ( s , a ) ] ~ = ~ \\mathbb { E } _ { \\pi , T } [ Q _ { \\theta } ( s , a ) ~ - ~ \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ]$ with the expectation approximated over samples in the data and considering a definition of the function $g$ to be $\\begin{array} { r } { \\dot { g } ( \\mathrm { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) = \\frac { 1 } { 2 } ( - \\log ( \\mathrm { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) + \\mathrm { V a r } _ { q _ { \\phi } } [ \\bar { R } ( s , a ) ] - 1 ) . } \\end{array}$ . \u0003 ", + "bbox": [ + 173, + 290, + 821, + 335 + ], + "page_idx": 13 + } +] \ No newline at end of file diff --git a/parse/train/4qR3coiNaIv/4qR3coiNaIv_middle.json b/parse/train/4qR3coiNaIv/4qR3coiNaIv_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..e8315fadfc2ce6d13976550691c898472e16489b --- /dev/null +++ b/parse/train/4qR3coiNaIv/4qR3coiNaIv_middle.json @@ -0,0 +1,35914 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 79, + 503, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 506, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 506, + 98 + ], + "score": 1.0, + "content": "SCALABLE BAYESIAN INVERSE REINFORCEMENT", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 189, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 189, + 118 + ], + "score": 1.0, + "content": "LEARNING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 282, + 168 + ], + "lines": [ + { + "bbox": [ + 112, + 135, + 170, + 147 + ], + "spans": [ + { + "bbox": [ + 112, + 135, + 170, + 147 + ], + "score": 1.0, + "content": "Alex J. Chan", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 282, + 158 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 282, + 158 + ], + "score": 1.0, + "content": "University of Cambridge, Cambridge, UK", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 113, + 158, + 264, + 169 + ], + "spans": [ + { + "bbox": [ + 113, + 158, + 264, + 169 + ], + "score": 1.0, + "content": "alexjchan@maths.cam.ac.uk", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 307, + 135, + 483, + 201 + ], + "lines": [ + { + "bbox": [ + 306, + 134, + 411, + 147 + ], + "spans": [ + { + "bbox": [ + 306, + 134, + 411, + 147 + ], + "score": 1.0, + "content": "Mihaela van der Schaar", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 306, + 145, + 477, + 158 + ], + "spans": [ + { + "bbox": [ + 306, + 145, + 477, + 158 + ], + "score": 1.0, + "content": "University of Cambridge, Cambridge, UK", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 306, + 157, + 484, + 169 + ], + "spans": [ + { + "bbox": [ + 306, + 157, + 484, + 169 + ], + "score": 1.0, + "content": "University of California, Los Angeles, USA", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 306, + 168, + 479, + 179 + ], + "spans": [ + { + "bbox": [ + 306, + 168, + 479, + 179 + ], + "score": 1.0, + "content": "Cambridge Centre for AI in Medicine, UK", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 306, + 178, + 466, + 191 + ], + "spans": [ + { + "bbox": [ + 306, + 178, + 466, + 191 + ], + "score": 1.0, + "content": "The Alan Turing Institute, London, UK", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 306, + 191, + 399, + 201 + ], + "spans": [ + { + "bbox": [ + 306, + 191, + 399, + 201 + ], + "score": 1.0, + "content": "mv472@cam.ac.uk", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 278, + 230, + 333, + 242 + ], + "lines": [ + { + "bbox": [ + 276, + 229, + 336, + 244 + ], + "spans": [ + { + "bbox": [ + 276, + 229, + 336, + 244 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 143, + 254, + 468, + 407 + ], + "lines": [ + { + "bbox": [ + 141, + 253, + 469, + 267 + ], + "spans": [ + { + "bbox": [ + 141, + 253, + 469, + 267 + ], + "score": 1.0, + "content": "Bayesian inference over the reward presents an ideal solution to the ill-posed na-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 265, + 469, + 277 + ], + "spans": [ + { + "bbox": [ + 141, + 265, + 469, + 277 + ], + "score": 1.0, + "content": "ture of the inverse reinforcement learning problem. Unfortunately current meth-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 276, + 469, + 288 + ], + "spans": [ + { + "bbox": [ + 142, + 276, + 469, + 288 + ], + "score": 1.0, + "content": "ods generally do not scale well beyond the small tabular setting due to the need", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 288, + 469, + 299 + ], + "spans": [ + { + "bbox": [ + 141, + 288, + 469, + 299 + ], + "score": 1.0, + "content": "for an inner-loop MDP solver, and even non-Bayesian methods that do themselves", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 298, + 470, + 310 + ], + "spans": [ + { + "bbox": [ + 141, + 298, + 470, + 310 + ], + "score": 1.0, + "content": "scale often require extensive interaction with the environment to perform well,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 309, + 470, + 321 + ], + "spans": [ + { + "bbox": [ + 141, + 309, + 470, + 321 + ], + "score": 1.0, + "content": "being inappropriate for high stakes or costly applications such as healthcare. In", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 319, + 470, + 332 + ], + "spans": [ + { + "bbox": [ + 141, + 319, + 470, + 332 + ], + "score": 1.0, + "content": "this paper we introduce our method, Approximate Variational Reward Imitation", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 331, + 469, + 343 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 469, + 343 + ], + "score": 1.0, + "content": "Learning (AVRIL), that addresses both of these issues by jointly learning an ap-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 342, + 470, + 354 + ], + "spans": [ + { + "bbox": [ + 141, + 342, + 470, + 354 + ], + "score": 1.0, + "content": "proximate posterior distribution over the reward that scales to arbitrarily compli-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 353, + 469, + 364 + ], + "spans": [ + { + "bbox": [ + 141, + 353, + 469, + 364 + ], + "score": 1.0, + "content": "cated state spaces alongside an appropriate policy in a completely offline manner", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 363, + 470, + 376 + ], + "spans": [ + { + "bbox": [ + 141, + 363, + 470, + 376 + ], + "score": 1.0, + "content": "through a variational approach to said latent reward. Applying our method to real", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 375, + 469, + 387 + ], + "spans": [ + { + "bbox": [ + 141, + 375, + 469, + 387 + ], + "score": 1.0, + "content": "medical data alongside classic control simulations, we demonstrate Bayesian re-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 142, + 386, + 469, + 398 + ], + "spans": [ + { + "bbox": [ + 142, + 386, + 469, + 398 + ], + "score": 1.0, + "content": "ward inference in environments beyond the scope of current methods, as well as", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 397, + 466, + 409 + ], + "spans": [ + { + "bbox": [ + 141, + 397, + 466, + 409 + ], + "score": 1.0, + "content": "task performance competitive with focused offline imitation learning algorithms.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 427, + 206, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 208, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 208, + 442 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 451, + 504, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "score": 1.0, + "content": "For applications in complicated and high-stakes environments it can often mean operating in the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "minimal possible setting - that is with no access to knowledge of the environment dynamics nor", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "score": 1.0, + "content": "intrinsic reward, nor even the ability to interact and test policies. In this case learning and inference", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "score": 1.0, + "content": "must be done solely on the basis of logged trajectories from a competent demonstrator showing only", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 496, + 325, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 325, + 508 + ], + "score": 1.0, + "content": "the states visited and the the action taken in each case.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 512, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 526 + ], + "score": 1.0, + "content": "Clinical decision making is an important example of this, where there is great interest in learning", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 536 + ], + "score": 1.0, + "content": "policies from medical professionals but is completely impractical and unethical to deploy policies on", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "patients mid-training. Moreover this is an area where it is not only the policies, but also knowledge", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "score": 1.0, + "content": "of the demonstrator’s preferences and goals, that we are interested in. While imitation learning (IL)", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "score": 1.0, + "content": "generally deals with the problem of producing appropriate policies to match a demonstrator, with", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 567, + 506, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 506, + 580 + ], + "score": 1.0, + "content": "the added layer of understanding motivations this would then usually be approached through inverse", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 579, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 505, + 591 + ], + "score": 1.0, + "content": "reinforcement learning (IRL). Here attempting to learn the assumed underlying reward driving the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 588, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 603 + ], + "score": 1.0, + "content": "demonstrator, before secondarily learning a policy that is optimal with respect to the reward using", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "some forward reinforcement learning (RL) technique. By composing the RL and IRL procedures in", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "order to perform IL we arrive at apprenticeship learning (AL), which introduces its own challenges,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "particularly in the offline setting. Notably for any given set of demonstrations there are (infinitely)", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 333, + 645 + ], + "score": 1.0, + "content": "many rewards for which the actions would be optimal", + "type": "text" + }, + { + "bbox": [ + 334, + 633, + 348, + 644 + ], + "score": 0.42, + "content": "\\mathrm { N g }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "et al., 2000). Max-margin (Abbeel &", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 120, + 655 + ], + "score": 0.29, + "content": "\\mathrm { N g }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 644, + 505, + 657 + ], + "score": 1.0, + "content": ", 2004) and max-entropy (Ziebart et al., 2008) methods for heuristically differentiating plausible", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "rewards do so at the cost of potentially dismissing the true reward for not possessing desirable", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 665, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 680 + ], + "score": 1.0, + "content": "qualities. On the other hand a Bayesian approach to IRL (BIRL) is more conceptually satisfying,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "taking a probabilistic view of the reward, we are interested in the posterior distribution having seen", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "the demonstrations (Ramachandran & Amir, 2007), accounting for all possibilities. BIRL is not", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "without its own drawbacks though, as noted in Brown & Niekum (2019), making it inappropriate", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "for modern complicated environments: assuming linear rewards; small, solvable environments; and", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 721, + 274, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 274, + 732 + ], + "score": 1.0, + "content": "repeated, inner-loop, calls to forward RL.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 41.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 79, + 503, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 506, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 506, + 98 + ], + "score": 1.0, + "content": "SCALABLE BAYESIAN INVERSE REINFORCEMENT", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 189, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 189, + 118 + ], + "score": 1.0, + "content": "LEARNING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 282, + 168 + ], + "lines": [ + { + "bbox": [ + 112, + 135, + 170, + 147 + ], + "spans": [ + { + "bbox": [ + 112, + 135, + 170, + 147 + ], + "score": 1.0, + "content": "Alex J. Chan", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 282, + 158 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 282, + 158 + ], + "score": 1.0, + "content": "University of Cambridge, Cambridge, UK", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 113, + 158, + 264, + 169 + ], + "spans": [ + { + "bbox": [ + 113, + 158, + 264, + 169 + ], + "score": 1.0, + "content": "alexjchan@maths.cam.ac.uk", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 112, + 135, + 282, + 169 + ] + }, + { + "type": "list", + "bbox": [ + 307, + 135, + 483, + 201 + ], + "lines": [ + { + "bbox": [ + 306, + 134, + 411, + 147 + ], + "spans": [ + { + "bbox": [ + 306, + 134, + 411, + 147 + ], + "score": 1.0, + "content": "Mihaela van der Schaar", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 306, + 145, + 477, + 158 + ], + "spans": [ + { + "bbox": [ + 306, + 145, + 477, + 158 + ], + "score": 1.0, + "content": "University of Cambridge, Cambridge, UK", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 306, + 157, + 484, + 169 + ], + "spans": [ + { + "bbox": [ + 306, + 157, + 484, + 169 + ], + "score": 1.0, + "content": "University of California, Los Angeles, USA", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 306, + 168, + 479, + 179 + ], + "spans": [ + { + "bbox": [ + 306, + 168, + 479, + 179 + ], + "score": 1.0, + "content": "Cambridge Centre for AI in Medicine, UK", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 306, + 178, + 466, + 191 + ], + "spans": [ + { + "bbox": [ + 306, + 178, + 466, + 191 + ], + "score": 1.0, + "content": "The Alan Turing Institute, London, UK", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 306, + 191, + 399, + 201 + ], + "spans": [ + { + "bbox": [ + 306, + 191, + 399, + 201 + ], + "score": 1.0, + "content": "mv472@cam.ac.uk", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 7.5, + "bbox_fs": [ + 306, + 134, + 484, + 201 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 230, + 333, + 242 + ], + "lines": [ + { + "bbox": [ + 276, + 229, + 336, + 244 + ], + "spans": [ + { + "bbox": [ + 276, + 229, + 336, + 244 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 143, + 254, + 468, + 407 + ], + "lines": [ + { + "bbox": [ + 141, + 253, + 469, + 267 + ], + "spans": [ + { + "bbox": [ + 141, + 253, + 469, + 267 + ], + "score": 1.0, + "content": "Bayesian inference over the reward presents an ideal solution to the ill-posed na-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 265, + 469, + 277 + ], + "spans": [ + { + "bbox": [ + 141, + 265, + 469, + 277 + ], + "score": 1.0, + "content": "ture of the inverse reinforcement learning problem. Unfortunately current meth-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 276, + 469, + 288 + ], + "spans": [ + { + "bbox": [ + 142, + 276, + 469, + 288 + ], + "score": 1.0, + "content": "ods generally do not scale well beyond the small tabular setting due to the need", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 288, + 469, + 299 + ], + "spans": [ + { + "bbox": [ + 141, + 288, + 469, + 299 + ], + "score": 1.0, + "content": "for an inner-loop MDP solver, and even non-Bayesian methods that do themselves", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 298, + 470, + 310 + ], + "spans": [ + { + "bbox": [ + 141, + 298, + 470, + 310 + ], + "score": 1.0, + "content": "scale often require extensive interaction with the environment to perform well,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 309, + 470, + 321 + ], + "spans": [ + { + "bbox": [ + 141, + 309, + 470, + 321 + ], + "score": 1.0, + "content": "being inappropriate for high stakes or costly applications such as healthcare. In", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 319, + 470, + 332 + ], + "spans": [ + { + "bbox": [ + 141, + 319, + 470, + 332 + ], + "score": 1.0, + "content": "this paper we introduce our method, Approximate Variational Reward Imitation", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 331, + 469, + 343 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 469, + 343 + ], + "score": 1.0, + "content": "Learning (AVRIL), that addresses both of these issues by jointly learning an ap-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 342, + 470, + 354 + ], + "spans": [ + { + "bbox": [ + 141, + 342, + 470, + 354 + ], + "score": 1.0, + "content": "proximate posterior distribution over the reward that scales to arbitrarily compli-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 353, + 469, + 364 + ], + "spans": [ + { + "bbox": [ + 141, + 353, + 469, + 364 + ], + "score": 1.0, + "content": "cated state spaces alongside an appropriate policy in a completely offline manner", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 363, + 470, + 376 + ], + "spans": [ + { + "bbox": [ + 141, + 363, + 470, + 376 + ], + "score": 1.0, + "content": "through a variational approach to said latent reward. Applying our method to real", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 375, + 469, + 387 + ], + "spans": [ + { + "bbox": [ + 141, + 375, + 469, + 387 + ], + "score": 1.0, + "content": "medical data alongside classic control simulations, we demonstrate Bayesian re-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 142, + 386, + 469, + 398 + ], + "spans": [ + { + "bbox": [ + 142, + 386, + 469, + 398 + ], + "score": 1.0, + "content": "ward inference in environments beyond the scope of current methods, as well as", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 397, + 466, + 409 + ], + "spans": [ + { + "bbox": [ + 141, + 397, + 466, + 409 + ], + "score": 1.0, + "content": "task performance competitive with focused offline imitation learning algorithms.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 18.5, + "bbox_fs": [ + 141, + 253, + 470, + 409 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 427, + 206, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 208, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 208, + 442 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 451, + 504, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "score": 1.0, + "content": "For applications in complicated and high-stakes environments it can often mean operating in the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "minimal possible setting - that is with no access to knowledge of the environment dynamics nor", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "score": 1.0, + "content": "intrinsic reward, nor even the ability to interact and test policies. In this case learning and inference", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "score": 1.0, + "content": "must be done solely on the basis of logged trajectories from a competent demonstrator showing only", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 496, + 325, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 325, + 508 + ], + "score": 1.0, + "content": "the states visited and the the action taken in each case.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 452, + 505, + 508 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 512, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 526 + ], + "score": 1.0, + "content": "Clinical decision making is an important example of this, where there is great interest in learning", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 536 + ], + "score": 1.0, + "content": "policies from medical professionals but is completely impractical and unethical to deploy policies on", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "patients mid-training. Moreover this is an area where it is not only the policies, but also knowledge", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "score": 1.0, + "content": "of the demonstrator’s preferences and goals, that we are interested in. While imitation learning (IL)", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "score": 1.0, + "content": "generally deals with the problem of producing appropriate policies to match a demonstrator, with", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 567, + 506, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 506, + 580 + ], + "score": 1.0, + "content": "the added layer of understanding motivations this would then usually be approached through inverse", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 579, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 505, + 591 + ], + "score": 1.0, + "content": "reinforcement learning (IRL). Here attempting to learn the assumed underlying reward driving the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 588, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 603 + ], + "score": 1.0, + "content": "demonstrator, before secondarily learning a policy that is optimal with respect to the reward using", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "some forward reinforcement learning (RL) technique. By composing the RL and IRL procedures in", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "order to perform IL we arrive at apprenticeship learning (AL), which introduces its own challenges,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "particularly in the offline setting. Notably for any given set of demonstrations there are (infinitely)", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 333, + 645 + ], + "score": 1.0, + "content": "many rewards for which the actions would be optimal", + "type": "text" + }, + { + "bbox": [ + 334, + 633, + 348, + 644 + ], + "score": 0.42, + "content": "\\mathrm { N g }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "et al., 2000). Max-margin (Abbeel &", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 120, + 655 + ], + "score": 0.29, + "content": "\\mathrm { N g }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 644, + 505, + 657 + ], + "score": 1.0, + "content": ", 2004) and max-entropy (Ziebart et al., 2008) methods for heuristically differentiating plausible", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "rewards do so at the cost of potentially dismissing the true reward for not possessing desirable", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 665, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 680 + ], + "score": 1.0, + "content": "qualities. On the other hand a Bayesian approach to IRL (BIRL) is more conceptually satisfying,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "taking a probabilistic view of the reward, we are interested in the posterior distribution having seen", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "the demonstrations (Ramachandran & Amir, 2007), accounting for all possibilities. BIRL is not", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "without its own drawbacks though, as noted in Brown & Niekum (2019), making it inappropriate", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "for modern complicated environments: assuming linear rewards; small, solvable environments; and", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 721, + 274, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 274, + 732 + ], + "score": 1.0, + "content": "repeated, inner-loop, calls to forward RL.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 511, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 114, + 78, + 488, + 186 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 78, + 488, + 186 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 78, + 488, + 186 + ], + "spans": [ + { + "bbox": [ + 114, + 78, + 488, + 186 + ], + "score": 0.968, + "type": "image", + "image_path": "d9cfdc5b1bc6f3e16d989317572e562d90d7f13f159f7755e10beb37ec13d22b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 78, + 488, + 114.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 114.0, + 488, + 150.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 150.0, + 488, + 186.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 191, + 505, + 247 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 192, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 204 + ], + "score": 1.0, + "content": "Figure 1: Overview. AVRIL is a framework for BIRL that works through an approximation in the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 202, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 505, + 216 + ], + "score": 1.0, + "content": "variational Bayesian framework, considering the reward to be a latent representation of behaviour.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "A distribution over the reward, which is amortised over the demonstration space, is learnt that then", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 225, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 189, + 237 + ], + "score": 1.0, + "content": "informs an imitator", + "type": "text" + }, + { + "bbox": [ + 190, + 225, + 199, + 236 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 225, + 505, + 237 + ], + "score": 1.0, + "content": "-function policy. The dotted line represents a departure from a traditional", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 235, + 408, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 408, + 248 + ], + "score": 1.0, + "content": "auto-encoder as the input, alongside the latent reward, informs the decoder.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 506, + 271 + ], + "score": 1.0, + "content": "The main contribution then of this paper is a method for advancing BIRL beyond these obstacles,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 268, + 506, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 506, + 283 + ], + "score": 1.0, + "content": "allowing for approximate reward inference using an arbitrarily flexible class of functions, in any", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 280, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 506, + 293 + ], + "score": 1.0, + "content": "environment, without costly inner-loop operations, and importantly entirely offline. This leads to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 289, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 506, + 305 + ], + "score": 1.0, + "content": "our algorithm AVRIL, depicted in figure 1, which represents a framework for jointly learning a", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "variational posterior distribution over the reward alongside an imitator policy in an auto-encoder-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 313, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 325 + ], + "score": 1.0, + "content": "esque manner. In what follows we review the modern methods for offline IRL/IL (Section 2) with", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 322, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 104, + 322, + 506, + 338 + ], + "score": 1.0, + "content": "a focus on the approach of Bayesian IRL and the issues it faces when confronted with challenging", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 335, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 505, + 347 + ], + "score": 1.0, + "content": "environments. We then address the above issues by introducing our contributions (Section 3), and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 345, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 359 + ], + "score": 1.0, + "content": "demonstrate the gains of our algorithm in real medical data and simulated control environments,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 357, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 369 + ], + "score": 1.0, + "content": "notably that it is now possible to achieve Bayesian reward inference in such settings (Section 4).", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 368, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 506, + 381 + ], + "score": 1.0, + "content": "Finally we wrap up with some concluding thoughts and directions (Section 5). Code for AVRIL and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 379, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 391 + ], + "score": 1.0, + "content": "our experiments is made available at https://github.com/XanderJC/scalable-birl", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 390, + 439, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 439, + 402 + ], + "score": 1.0, + "content": "and https://github.com/vanderschaarlab/mlforhealthlabpub.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 108, + 419, + 423, + 432 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 425, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 425, + 434 + ], + "score": 1.0, + "content": "2 APPROACHING APPRENTICESHIP AND IMITATION OFFLINE", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 445, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "Preliminaries. We consider the standard Markov decision process (MDP) environment, with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 453, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 104, + 453, + 132, + 469 + ], + "score": 1.0, + "content": "states", + "type": "text" + }, + { + "bbox": [ + 132, + 456, + 162, + 466 + ], + "score": 0.89, + "content": "s \\in \\mathcal { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 453, + 199, + 469 + ], + "score": 1.0, + "content": ", actions", + "type": "text" + }, + { + "bbox": [ + 200, + 456, + 231, + 466 + ], + "score": 0.89, + "content": "a \\in \\mathcal A", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 453, + 282, + 469 + ], + "score": 1.0, + "content": ", transitions", + "type": "text" + }, + { + "bbox": [ + 282, + 455, + 349, + 468 + ], + "score": 0.91, + "content": "T \\in \\Delta ( { \\cal S } ) ^ { s \\times { \\cal A } }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 453, + 389, + 469 + ], + "score": 1.0, + "content": ", rewards", + "type": "text" + }, + { + "bbox": [ + 389, + 456, + 445, + 466 + ], + "score": 0.92, + "content": "\\vec { R } \\in \\mathbb { R } ^ { S \\times A 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 453, + 506, + 469 + ], + "score": 1.0, + "content": ", and discount", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 460, + 509, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 149, + 479 + ], + "score": 0.92, + "content": "\\gamma \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 460, + 209, + 486 + ], + "score": 1.0, + "content": ". For a policy", + "type": "text" + }, + { + "bbox": [ + 209, + 467, + 261, + 479 + ], + "score": 0.93, + "content": "\\pi \\in \\Delta ( \\mathcal { A } ) ^ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 460, + 277, + 486 + ], + "score": 1.0, + "content": "let", + "type": "text" + }, + { + "bbox": [ + 277, + 467, + 440, + 480 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\rho _ { \\pi } ( s , a ) = \\mathbb { E } _ { \\pi , T } [ \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } \\mathbb { 1 } _ { \\{ s _ { t } = s , a _ { t } = a \\} } ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 460, + 509, + 486 + ], + "score": 1.0, + "content": "be the induced", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 478, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 104, + 478, + 400, + 493 + ], + "score": 1.0, + "content": "unique occupancy measure alongside the state-only occupancy measure", + "type": "text" + }, + { + "bbox": [ + 400, + 479, + 501, + 492 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\rho _ { \\pi } ( s ) = \\sum _ { a \\in \\mathcal { A } } \\rho _ { \\pi } ( s , a ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 478, + 505, + 493 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 491, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 429, + 503 + ], + "score": 1.0, + "content": "Despite this full environment model, the only information available to us is the", + "type": "text" + }, + { + "bbox": [ + 429, + 492, + 472, + 503 + ], + "score": 0.7, + "content": "\\mathbf { M D P } \\backslash R T", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 491, + 506, + 503 + ], + "score": 1.0, + "content": ", in that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 502, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 506, + 515 + ], + "score": 1.0, + "content": "we have no access to either the underlying reward or the transitions, with our lacking knowledge of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 513, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 524 + ], + "score": 1.0, + "content": "the transitions being also strong in the sense that further we are unable to simulate the environment", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 525, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 354, + 536 + ], + "score": 1.0, + "content": "to sample them. The learning signal is then given by access to", + "type": "text" + }, + { + "bbox": [ + 355, + 526, + 365, + 534 + ], + "score": 0.78, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 525, + 505, + 536 + ], + "score": 1.0, + "content": "-many trajectories of some demon-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 534, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 104, + 534, + 401, + 549 + ], + "score": 1.0, + "content": "strator assumed to be acting optimally w.r.t. the MDP, following a policy", + "type": "text" + }, + { + "bbox": [ + 402, + 537, + 415, + 546 + ], + "score": 0.85, + "content": "\\pi _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 534, + 506, + 549 + ], + "score": 1.0, + "content": ", making up a data set", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 544, + 504, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 271, + 562 + ], + "score": 0.92, + "content": "\\mathcal { D } _ { r a w } = \\{ ( s _ { 1 } ^ { ( i ) } , a _ { 1 } ^ { ( i ) } , \\dotsc , s _ { \\tau ^ { ( i ) } } ^ { ( \\bar { i } ) } , a _ { \\tau ^ { ( i ) } } ^ { ( i ) } ) \\} _ { i = 1 } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 544, + 299, + 564 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 300, + 546, + 315, + 561 + ], + "score": 0.92, + "content": "s _ { t } ^ { ( i ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 544, + 378, + 564 + ], + "score": 1.0, + "content": "is the state and", + "type": "text" + }, + { + "bbox": [ + 379, + 546, + 394, + 561 + ], + "score": 0.92, + "content": "a _ { t } ^ { ( i ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 544, + 498, + 564 + ], + "score": 1.0, + "content": "is the action taken at step", + "type": "text" + }, + { + "bbox": [ + 498, + 550, + 504, + 559 + ], + "score": 0.63, + "content": "t", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 560, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 104, + 560, + 149, + 575 + ], + "score": 1.0, + "content": "during the", + "type": "text" + }, + { + "bbox": [ + 150, + 564, + 154, + 572 + ], + "score": 0.29, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 560, + 242, + 575 + ], + "score": 1.0, + "content": "th demonstration, and", + "type": "text" + }, + { + "bbox": [ + 242, + 562, + 258, + 573 + ], + "score": 0.9, + "content": "\\tau ^ { ( i ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 560, + 506, + 575 + ], + "score": 1.0, + "content": "is the (max) time horizon of the ith demonstration. Given the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "score": 1.0, + "content": "Markov assumption though it is sufficient and convenient to consider the demonstrations simply as", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 583, + 504, + 599 + ], + "spans": [ + { + "bbox": [ + 104, + 583, + 165, + 599 + ], + "score": 1.0, + "content": "a collection of", + "type": "text" + }, + { + "bbox": [ + 166, + 586, + 172, + 594 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 583, + 403, + 599 + ], + "score": 1.0, + "content": "-many state, action, next state, next action tuples such that", + "type": "text" + }, + { + "bbox": [ + 404, + 584, + 504, + 597 + ], + "score": 0.91, + "content": "\\mathcal { D } = \\{ ( s _ { i } , a _ { i } , s _ { i } ^ { \\prime } , a _ { i } ^ { \\prime } ) \\} _ { i = 1 } ^ { n }", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 592, + 218, + 613 + ], + "spans": [ + { + "bbox": [ + 104, + 592, + 127, + 613 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 127, + 595, + 211, + 610 + ], + "score": 0.93, + "content": "\\begin{array} { r } { n = \\sum _ { i = 1 } ^ { m } ( \\tau ^ { ( i ) } - 1 ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 592, + 218, + 613 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 505, + 699 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "score": 1.0, + "content": "Apprenticeship through rewards. Typically AL proceeds by first inferring an appropriate reward", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 239, + 646 + ], + "score": 1.0, + "content": "function with an IRL procedure", + "type": "text" + }, + { + "bbox": [ + 239, + 634, + 253, + 645 + ], + "score": 0.5, + "content": "\\mathrm { N g }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "et al., 2000; Ramachandran & Amir, 2007; Rothkopf & Dimi-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 645, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 657 + ], + "score": 1.0, + "content": "trakakis, 2011; Ziebart et al., 2008) before running forward RL to obtain an appropriate policy. This", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "allows for easy mix-and-match procedures, swapping in different standard RL and IRL methods", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 450, + 678 + ], + "score": 1.0, + "content": "depending on the situation. These algorithms though depend on either knowledge of", + "type": "text" + }, + { + "bbox": [ + 450, + 667, + 459, + 676 + ], + "score": 0.79, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "in order to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "solve exactly or the ability to perform roll-outs in the environment, with little previous work focus-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "ing on the entirely offline setting. One simple solution is through attempting to learn the dynamics", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 105, + 712, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 119, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "1We define a state-action reward here, as is usual in the literature. Extensions to a state-only reward are", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 314, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 314, + 732 + ], + "score": 1.0, + "content": "simple, and indeed can be preferable, as we will see later.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 114, + 78, + 488, + 186 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 78, + 488, + 186 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 78, + 488, + 186 + ], + "spans": [ + { + "bbox": [ + 114, + 78, + 488, + 186 + ], + "score": 0.968, + "type": "image", + "image_path": "d9cfdc5b1bc6f3e16d989317572e562d90d7f13f159f7755e10beb37ec13d22b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 78, + 488, + 114.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 114.0, + 488, + 150.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 150.0, + 488, + 186.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 191, + 505, + 247 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 192, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 204 + ], + "score": 1.0, + "content": "Figure 1: Overview. AVRIL is a framework for BIRL that works through an approximation in the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 202, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 505, + 216 + ], + "score": 1.0, + "content": "variational Bayesian framework, considering the reward to be a latent representation of behaviour.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "A distribution over the reward, which is amortised over the demonstration space, is learnt that then", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 225, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 189, + 237 + ], + "score": 1.0, + "content": "informs an imitator", + "type": "text" + }, + { + "bbox": [ + 190, + 225, + 199, + 236 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 225, + 505, + 237 + ], + "score": 1.0, + "content": "-function policy. The dotted line represents a departure from a traditional", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 235, + 408, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 408, + 248 + ], + "score": 1.0, + "content": "auto-encoder as the input, alongside the latent reward, informs the decoder.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 506, + 271 + ], + "score": 1.0, + "content": "The main contribution then of this paper is a method for advancing BIRL beyond these obstacles,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 268, + 506, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 506, + 283 + ], + "score": 1.0, + "content": "allowing for approximate reward inference using an arbitrarily flexible class of functions, in any", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 280, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 506, + 293 + ], + "score": 1.0, + "content": "environment, without costly inner-loop operations, and importantly entirely offline. This leads to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 289, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 506, + 305 + ], + "score": 1.0, + "content": "our algorithm AVRIL, depicted in figure 1, which represents a framework for jointly learning a", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "variational posterior distribution over the reward alongside an imitator policy in an auto-encoder-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 313, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 325 + ], + "score": 1.0, + "content": "esque manner. In what follows we review the modern methods for offline IRL/IL (Section 2) with", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 322, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 104, + 322, + 506, + 338 + ], + "score": 1.0, + "content": "a focus on the approach of Bayesian IRL and the issues it faces when confronted with challenging", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 335, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 505, + 347 + ], + "score": 1.0, + "content": "environments. We then address the above issues by introducing our contributions (Section 3), and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 345, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 359 + ], + "score": 1.0, + "content": "demonstrate the gains of our algorithm in real medical data and simulated control environments,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 357, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 369 + ], + "score": 1.0, + "content": "notably that it is now possible to achieve Bayesian reward inference in such settings (Section 4).", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 368, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 506, + 381 + ], + "score": 1.0, + "content": "Finally we wrap up with some concluding thoughts and directions (Section 5). Code for AVRIL and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 379, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 391 + ], + "score": 1.0, + "content": "our experiments is made available at https://github.com/XanderJC/scalable-birl", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 390, + 439, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 439, + 402 + ], + "score": 1.0, + "content": "and https://github.com/vanderschaarlab/mlforhealthlabpub.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14, + "bbox_fs": [ + 104, + 257, + 506, + 402 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 419, + 423, + 432 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 425, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 425, + 434 + ], + "score": 1.0, + "content": "2 APPROACHING APPRENTICESHIP AND IMITATION OFFLINE", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 445, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "Preliminaries. We consider the standard Markov decision process (MDP) environment, with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 453, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 104, + 453, + 132, + 469 + ], + "score": 1.0, + "content": "states", + "type": "text" + }, + { + "bbox": [ + 132, + 456, + 162, + 466 + ], + "score": 0.89, + "content": "s \\in \\mathcal { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 453, + 199, + 469 + ], + "score": 1.0, + "content": ", actions", + "type": "text" + }, + { + "bbox": [ + 200, + 456, + 231, + 466 + ], + "score": 0.89, + "content": "a \\in \\mathcal A", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 453, + 282, + 469 + ], + "score": 1.0, + "content": ", transitions", + "type": "text" + }, + { + "bbox": [ + 282, + 455, + 349, + 468 + ], + "score": 0.91, + "content": "T \\in \\Delta ( { \\cal S } ) ^ { s \\times { \\cal A } }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 453, + 389, + 469 + ], + "score": 1.0, + "content": ", rewards", + "type": "text" + }, + { + "bbox": [ + 389, + 456, + 445, + 466 + ], + "score": 0.92, + "content": "\\vec { R } \\in \\mathbb { R } ^ { S \\times A 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 453, + 506, + 469 + ], + "score": 1.0, + "content": ", and discount", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 460, + 509, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 149, + 479 + ], + "score": 0.92, + "content": "\\gamma \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 460, + 209, + 486 + ], + "score": 1.0, + "content": ". For a policy", + "type": "text" + }, + { + "bbox": [ + 209, + 467, + 261, + 479 + ], + "score": 0.93, + "content": "\\pi \\in \\Delta ( \\mathcal { A } ) ^ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 460, + 277, + 486 + ], + "score": 1.0, + "content": "let", + "type": "text" + }, + { + "bbox": [ + 277, + 467, + 440, + 480 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\rho _ { \\pi } ( s , a ) = \\mathbb { E } _ { \\pi , T } [ \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } \\mathbb { 1 } _ { \\{ s _ { t } = s , a _ { t } = a \\} } ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 460, + 509, + 486 + ], + "score": 1.0, + "content": "be the induced", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 478, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 104, + 478, + 400, + 493 + ], + "score": 1.0, + "content": "unique occupancy measure alongside the state-only occupancy measure", + "type": "text" + }, + { + "bbox": [ + 400, + 479, + 501, + 492 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\rho _ { \\pi } ( s ) = \\sum _ { a \\in \\mathcal { A } } \\rho _ { \\pi } ( s , a ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 478, + 505, + 493 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 491, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 429, + 503 + ], + "score": 1.0, + "content": "Despite this full environment model, the only information available to us is the", + "type": "text" + }, + { + "bbox": [ + 429, + 492, + 472, + 503 + ], + "score": 0.7, + "content": "\\mathbf { M D P } \\backslash R T", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 491, + 506, + 503 + ], + "score": 1.0, + "content": ", in that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 502, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 506, + 515 + ], + "score": 1.0, + "content": "we have no access to either the underlying reward or the transitions, with our lacking knowledge of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 513, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 524 + ], + "score": 1.0, + "content": "the transitions being also strong in the sense that further we are unable to simulate the environment", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 525, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 354, + 536 + ], + "score": 1.0, + "content": "to sample them. The learning signal is then given by access to", + "type": "text" + }, + { + "bbox": [ + 355, + 526, + 365, + 534 + ], + "score": 0.78, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 525, + 505, + 536 + ], + "score": 1.0, + "content": "-many trajectories of some demon-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 534, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 104, + 534, + 401, + 549 + ], + "score": 1.0, + "content": "strator assumed to be acting optimally w.r.t. the MDP, following a policy", + "type": "text" + }, + { + "bbox": [ + 402, + 537, + 415, + 546 + ], + "score": 0.85, + "content": "\\pi _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 534, + 506, + 549 + ], + "score": 1.0, + "content": ", making up a data set", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 544, + 504, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 271, + 562 + ], + "score": 0.92, + "content": "\\mathcal { D } _ { r a w } = \\{ ( s _ { 1 } ^ { ( i ) } , a _ { 1 } ^ { ( i ) } , \\dotsc , s _ { \\tau ^ { ( i ) } } ^ { ( \\bar { i } ) } , a _ { \\tau ^ { ( i ) } } ^ { ( i ) } ) \\} _ { i = 1 } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 544, + 299, + 564 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 300, + 546, + 315, + 561 + ], + "score": 0.92, + "content": "s _ { t } ^ { ( i ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 544, + 378, + 564 + ], + "score": 1.0, + "content": "is the state and", + "type": "text" + }, + { + "bbox": [ + 379, + 546, + 394, + 561 + ], + "score": 0.92, + "content": "a _ { t } ^ { ( i ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 544, + 498, + 564 + ], + "score": 1.0, + "content": "is the action taken at step", + "type": "text" + }, + { + "bbox": [ + 498, + 550, + 504, + 559 + ], + "score": 0.63, + "content": "t", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 560, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 104, + 560, + 149, + 575 + ], + "score": 1.0, + "content": "during the", + "type": "text" + }, + { + "bbox": [ + 150, + 564, + 154, + 572 + ], + "score": 0.29, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 560, + 242, + 575 + ], + "score": 1.0, + "content": "th demonstration, and", + "type": "text" + }, + { + "bbox": [ + 242, + 562, + 258, + 573 + ], + "score": 0.9, + "content": "\\tau ^ { ( i ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 560, + 506, + 575 + ], + "score": 1.0, + "content": "is the (max) time horizon of the ith demonstration. Given the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "score": 1.0, + "content": "Markov assumption though it is sufficient and convenient to consider the demonstrations simply as", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 583, + 504, + 599 + ], + "spans": [ + { + "bbox": [ + 104, + 583, + 165, + 599 + ], + "score": 1.0, + "content": "a collection of", + "type": "text" + }, + { + "bbox": [ + 166, + 586, + 172, + 594 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 583, + 403, + 599 + ], + "score": 1.0, + "content": "-many state, action, next state, next action tuples such that", + "type": "text" + }, + { + "bbox": [ + 404, + 584, + 504, + 597 + ], + "score": 0.91, + "content": "\\mathcal { D } = \\{ ( s _ { i } , a _ { i } , s _ { i } ^ { \\prime } , a _ { i } ^ { \\prime } ) \\} _ { i = 1 } ^ { n }", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 592, + 218, + 613 + ], + "spans": [ + { + "bbox": [ + 104, + 592, + 127, + 613 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 127, + 595, + 211, + 610 + ], + "score": 0.93, + "content": "\\begin{array} { r } { n = \\sum _ { i = 1 } ^ { m } ( \\tau ^ { ( i ) } - 1 ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 592, + 218, + 613 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 444, + 509, + 613 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 505, + 699 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "score": 1.0, + "content": "Apprenticeship through rewards. Typically AL proceeds by first inferring an appropriate reward", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 239, + 646 + ], + "score": 1.0, + "content": "function with an IRL procedure", + "type": "text" + }, + { + "bbox": [ + 239, + 634, + 253, + 645 + ], + "score": 0.5, + "content": "\\mathrm { N g }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "et al., 2000; Ramachandran & Amir, 2007; Rothkopf & Dimi-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 645, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 657 + ], + "score": 1.0, + "content": "trakakis, 2011; Ziebart et al., 2008) before running forward RL to obtain an appropriate policy. This", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "allows for easy mix-and-match procedures, swapping in different standard RL and IRL methods", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 450, + 678 + ], + "score": 1.0, + "content": "depending on the situation. These algorithms though depend on either knowledge of", + "type": "text" + }, + { + "bbox": [ + 450, + 667, + 459, + 676 + ], + "score": 0.79, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "in order to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "solve exactly or the ability to perform roll-outs in the environment, with little previous work focus-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "ing on the entirely offline setting. One simple solution is through attempting to learn the dynamics", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "(Herman et al., 2016), though without a large supply of diverse demonstrations or a small environ-", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "ment this becomes impractical given imperfections in the model. Alternatively Klein et al. (2011)", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "and Lee et al. (2019) attempt off-policy feature matching through least-squared temporal difference", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 399, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 399, + 128 + ], + "score": 1.0, + "content": "and deep neural networks to uncover appropriate feature representations.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 622, + 506, + 701 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "(Herman et al., 2016), though without a large supply of diverse demonstrations or a small environ-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "ment this becomes impractical given imperfections in the model. Alternatively Klein et al. (2011)", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "and Lee et al. (2019) attempt off-policy feature matching through least-squared temporal difference", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 399, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 399, + 128 + ], + "score": 1.0, + "content": "and deep neural networks to uncover appropriate feature representations.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 138, + 505, + 182 + ], + "lines": [ + { + "bbox": [ + 106, + 137, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 151 + ], + "score": 1.0, + "content": "Implicit-reward policy learning. Recent work has often forgone an explicit representation of the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 505, + 161 + ], + "score": 1.0, + "content": "reward. Moving within the maximum-entropy RL framework (Ziebart, 2010; Levine, 2018), Ho", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 301, + 173 + ], + "score": 1.0, + "content": "& Ermon (2016) noted that the full procedure", + "type": "text" + }, + { + "bbox": [ + 301, + 161, + 345, + 171 + ], + "score": 0.35, + "content": "{ \\mathrm { ~ R L ~ o ~ I R L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 160, + 505, + 173 + ], + "score": 1.0, + "content": ") can be interpreted equivalently as the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 171, + 496, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 496, + 184 + ], + "score": 1.0, + "content": "minimisation of some divergence between occupancy measures of the imitator and demonstrator:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 184, + 375, + 204 + ], + "lines": [ + { + "bbox": [ + 234, + 184, + 375, + 204 + ], + "spans": [ + { + "bbox": [ + 234, + 184, + 375, + 204 + ], + "score": 0.93, + "content": "\\underset { \\pi } { \\arg \\operatorname* { m i n } } \\{ \\psi ^ { * } ( \\rho _ { \\pi } - \\rho _ { \\pi _ { D } } ) - H ( \\pi ) \\} ,", + "type": "interline_equation", + "image_path": "870742468cae69ab150cfe440ab1ebd1f7bf665c0794f41299537990da853ad6.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 234, + 184, + 375, + 204 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 205, + 505, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 205, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 127, + 218 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 127, + 205, + 151, + 218 + ], + "score": 0.92, + "content": "H ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 206, + 476, + 218 + ], + "score": 1.0, + "content": "being the discounted causal entropy (Bloem & Bambos, 2014) of the policy and", + "type": "text" + }, + { + "bbox": [ + 476, + 206, + 488, + 217 + ], + "score": 0.89, + "content": "\\psi ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 206, + 505, + 218 + ], + "score": 1.0, + "content": "the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 216, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 229 + ], + "score": 1.0, + "content": "Fenchel conjugate of a chosen regulariser on the form of the reward. These are typically optimised", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 451, + 240 + ], + "score": 1.0, + "content": "in an adversarial fashion (Goodfellow et al., 2014) and given the focus on evaluating", + "type": "text" + }, + { + "bbox": [ + 451, + 229, + 463, + 239 + ], + "score": 0.85, + "content": "\\rho _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "this often", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 239, + 506, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 506, + 251 + ], + "score": 1.0, + "content": "requires extensive interaction with the environment, otherwise banking on approximations over a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "replay buffer (Kostrikov et al., 2018) or a reformulation of the divergence to allow for off-policy", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 260, + 504, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 504, + 273 + ], + "score": 1.0, + "content": "evaluation (Kostrikov et al., 2019). Bear in mind that optimal policies within the maximum-entropy", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 271, + 342, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 342, + 284 + ], + "score": 1.0, + "content": "framework are parameterised by a Boltzmann distribution:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 284, + 369, + 312 + ], + "lines": [ + { + "bbox": [ + 241, + 284, + 369, + 312 + ], + "spans": [ + { + "bbox": [ + 241, + 284, + 369, + 312 + ], + "score": 0.95, + "content": "\\pi ( a | s ) = \\frac { \\exp ( Q ( s , a ) ) } { \\sum _ { b \\in \\cal { A } } \\exp ( Q ( s , b ) ) } ,", + "type": "interline_equation", + "image_path": "0c74caa5f9bc1d89acad1468e1f149a3ed4c26b48ade8e568c23ddc47fd8e772.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 241, + 284, + 369, + 298.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 241, + 298.0, + 369, + 312.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 313, + 440, + 325 + ], + "lines": [ + { + "bbox": [ + 105, + 311, + 442, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 127, + 327 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 127, + 313, + 158, + 325 + ], + "score": 0.93, + "content": "Q ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 311, + 191, + 327 + ], + "score": 1.0, + "content": "the soft", + "type": "text" + }, + { + "bbox": [ + 191, + 314, + 200, + 325 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 311, + 442, + 327 + ], + "score": 1.0, + "content": "-function, defined recursively via the soft Bellman-equation:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 326, + 411, + 348 + ], + "lines": [ + { + "bbox": [ + 200, + 326, + 411, + 348 + ], + "spans": [ + { + "bbox": [ + 200, + 326, + 411, + 348 + ], + "score": 0.91, + "content": "Q ( s , a ) \\triangleq R ( s , a ) + \\gamma \\mathbb { E } _ { s ^ { \\prime } \\sim \\rho _ { \\pi } } \\Big [ \\operatorname { s o f t } _ { a ^ { \\prime } } \\operatorname { m a x } Q ( s ^ { \\prime } , a ^ { \\prime } ) ) \\Big ] .", + "type": "interline_equation", + "image_path": "0aa78fb99ec235065b0573f570f97b7482c82125adfc93974b6d64143c688551.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 200, + 326, + 411, + 348 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 349, + 502, + 372 + ], + "lines": [ + { + "bbox": [ + 107, + 348, + 501, + 363 + ], + "spans": [ + { + "bbox": [ + 107, + 348, + 329, + 363 + ], + "score": 1.0, + "content": "Then for a learnt parameterised policy given in terms of", + "type": "text" + }, + { + "bbox": [ + 330, + 350, + 338, + 361 + ], + "score": 0.87, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 348, + 488, + 363 + ], + "score": 1.0, + "content": "-values from a function approximator", + "type": "text" + }, + { + "bbox": [ + 488, + 350, + 501, + 361 + ], + "score": 0.88, + "content": "Q _ { \\theta }", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 360, + 278, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 278, + 374 + ], + "score": 1.0, + "content": "we can obtain an implied reward given by:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "interline_equation", + "bbox": [ + 171, + 373, + 440, + 407 + ], + "lines": [ + { + "bbox": [ + 171, + 373, + 440, + 407 + ], + "spans": [ + { + "bbox": [ + 171, + 373, + 440, + 407 + ], + "score": 0.94, + "content": "R _ { Q _ { \\theta } } ( s , a ) = Q _ { \\theta } ( s , a ) - \\gamma \\mathbb { E } _ { s ^ { \\prime } \\sim \\rho _ { \\pi } } \\Bigg [ \\log \\Bigg ( \\sum _ { a ^ { \\prime } \\in \\mathcal { A } } \\exp ( Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ) \\Bigg ) \\Bigg ] .", + "type": "interline_equation", + "image_path": "1d7ed7ec38bc7068c7c374fe0563075cd630f77ba98fea016777db39e6364b88.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 171, + 373, + 440, + 384.3333333333333 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 171, + 384.3333333333333, + 440, + 395.66666666666663 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 171, + 395.66666666666663, + 440, + 406.99999999999994 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 408, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 422 + ], + "score": 1.0, + "content": "A number of algorithms make use of this fact with Piot et al. (2014) and Reddy et al. (2019) working", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 420, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 432 + ], + "score": 1.0, + "content": "by essentially placing a sparsity prior on this implied reward, encouraging it towards zero, and thus", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 430, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 443 + ], + "score": 1.0, + "content": "incorporating subsequent state information. Alternatively Jarrett et al. (2020) show that even the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "score": 1.0, + "content": "simple behavioural cloning (Bain & Sammut, 1995) is implicitly maximising some reward with an", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 452, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 465 + ], + "score": 1.0, + "content": "approximation that the expectation over states is taken with respect to the demonstrator, not the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 463, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 505, + 476 + ], + "score": 1.0, + "content": "learnt policy. They then attempt to rectify part of this approximation using the properties of the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 474, + 378, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 378, + 487 + ], + "score": 1.0, + "content": "energy-based model implied by the policy (Grathwohl et al., 2019).", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 491, + 504, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "The problem with learning an implicit reward in an offline setting is that it remains just that, implicit,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 502, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 514 + ], + "score": 1.0, + "content": "only able to be evaluated at points seen in the demonstrations, and even then only approximately.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 513, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 526 + ], + "score": 1.0, + "content": "Thus even if their consideration improves imitator policies performance they offer no real improve-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 524, + 202, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 202, + 536 + ], + "score": 1.0, + "content": "ment for interpretation.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 106, + 548, + 340, + 559 + ], + "lines": [ + { + "bbox": [ + 106, + 548, + 343, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 343, + 561 + ], + "score": 1.0, + "content": "2.1 BAYESIAN INVERSE REINFORCEMENT LEARNING", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 568, + 505, + 635 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 505, + 582 + ], + "score": 1.0, + "content": "We are then resigned to directly reason about the underlying reward, bringing us back to the question", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "score": 1.0, + "content": "of IRL, and in particular BIRL for a principled approach to reasoning under uncertainty. Given a", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "score": 1.0, + "content": "prior over possible functions, having seen some demonstrations, we calculate the posterior over", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 441, + 614 + ], + "score": 1.0, + "content": "the function using a theoretically simple application of Bayes rule. Ramachandran", + "type": "text" + }, + { + "bbox": [ + 442, + 602, + 451, + 612 + ], + "score": 0.48, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 601, + 505, + 614 + ], + "score": 1.0, + "content": "Amir (2007)", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 612, + 506, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 506, + 625 + ], + "score": 1.0, + "content": "defines the likelihood of an action at a state as a Boltzmann distribution with inverse temperature", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 623, + 460, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 460, + 637 + ], + "score": 1.0, + "content": "and respective state-action values, yielding a probabilistic demonstrator policy given by:", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39.5 + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 636, + 387, + 664 + ], + "lines": [ + { + "bbox": [ + 223, + 636, + 387, + 664 + ], + "spans": [ + { + "bbox": [ + 223, + 636, + 387, + 664 + ], + "score": 0.95, + "content": "\\pi _ { D } ( a | s , R ) = \\frac { \\exp ( \\beta Q _ { R } ^ { \\pi _ { D } } ( s , a ) ) } { \\sum _ { b \\in \\cal { A } } \\exp ( \\beta Q _ { R } ^ { \\pi _ { D } } ( s , b ) ) } ,", + "type": "interline_equation", + "image_path": "eaead0b2596f07403155ca11eab69b0df05df986ed1d025b26750cb7161f5e84.jpg" + } + ] + } + ], + "index": 43.5, + "virtual_lines": [ + { + "bbox": [ + 223, + 636, + 387, + 650.0 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 223, + 650.0, + 387, + 664.0 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 134, + 678 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 666, + 182, + 678 + ], + "score": 0.92, + "content": "\\beta \\in [ 0 , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 664, + 506, + 678 + ], + "score": 1.0, + "content": "represents the the confidence in the optimality of the demonstrator. Note that", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "despite similarities, moving forward we are no longer within the maximum-entropy framework and", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 107, + 686, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 107, + 687, + 144, + 700 + ], + "score": 0.93, + "content": "Q _ { R } ^ { \\pi } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 686, + 443, + 702 + ], + "score": 1.0, + "content": "now denotes the traditional, not soft (as in equation 3), state-action value (", + "type": "text" + }, + { + "bbox": [ + 443, + 688, + 452, + 699 + ], + "score": 0.76, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 686, + 506, + 702 + ], + "score": 1.0, + "content": "-value) func-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 103, + 694, + 502, + 716 + ], + "spans": [ + { + "bbox": [ + 103, + 694, + 189, + 716 + ], + "score": 1.0, + "content": "Rtion given a reward", + "type": "text" + }, + { + "bbox": [ + 189, + 699, + 198, + 709 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 694, + 245, + 716 + ], + "score": 1.0, + "content": "and policy", + "type": "text" + }, + { + "bbox": [ + 246, + 702, + 253, + 709 + ], + "score": 0.73, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 694, + 294, + 716 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 295, + 698, + 502, + 712 + ], + "score": 0.86, + "content": "\\begin{array} { r } { Q _ { R } ^ { \\pi } ( s , \\bar { a } ) = \\mathbb { E } _ { \\pi , T } [ \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } R ( s _ { t } ) | s _ { 0 } = s , a _ { 0 } = a ] } \\end{array}", + "type": "inline_equation" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "Unsurprisingly this yields an intractable posterior distribution leading to a Markov chain Monte", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 720, + 449, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 449, + 733 + ], + "score": 1.0, + "content": "Carlo (MCMC) algorithm based on a random grid-walk to sample from the posterior.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 506, + 128 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 138, + 505, + 182 + ], + "lines": [ + { + "bbox": [ + 106, + 137, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 151 + ], + "score": 1.0, + "content": "Implicit-reward policy learning. Recent work has often forgone an explicit representation of the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 505, + 161 + ], + "score": 1.0, + "content": "reward. Moving within the maximum-entropy RL framework (Ziebart, 2010; Levine, 2018), Ho", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 301, + 173 + ], + "score": 1.0, + "content": "& Ermon (2016) noted that the full procedure", + "type": "text" + }, + { + "bbox": [ + 301, + 161, + 345, + 171 + ], + "score": 0.35, + "content": "{ \\mathrm { ~ R L ~ o ~ I R L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 160, + 505, + 173 + ], + "score": 1.0, + "content": ") can be interpreted equivalently as the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 171, + 496, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 496, + 184 + ], + "score": 1.0, + "content": "minimisation of some divergence between occupancy measures of the imitator and demonstrator:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 137, + 505, + 184 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 184, + 375, + 204 + ], + "lines": [ + { + "bbox": [ + 234, + 184, + 375, + 204 + ], + "spans": [ + { + "bbox": [ + 234, + 184, + 375, + 204 + ], + "score": 0.93, + "content": "\\underset { \\pi } { \\arg \\operatorname* { m i n } } \\{ \\psi ^ { * } ( \\rho _ { \\pi } - \\rho _ { \\pi _ { D } } ) - H ( \\pi ) \\} ,", + "type": "interline_equation", + "image_path": "870742468cae69ab150cfe440ab1ebd1f7bf665c0794f41299537990da853ad6.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 234, + 184, + 375, + 204 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 205, + 505, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 205, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 127, + 218 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 127, + 205, + 151, + 218 + ], + "score": 0.92, + "content": "H ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 206, + 476, + 218 + ], + "score": 1.0, + "content": "being the discounted causal entropy (Bloem & Bambos, 2014) of the policy and", + "type": "text" + }, + { + "bbox": [ + 476, + 206, + 488, + 217 + ], + "score": 0.89, + "content": "\\psi ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 206, + 505, + 218 + ], + "score": 1.0, + "content": "the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 216, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 229 + ], + "score": 1.0, + "content": "Fenchel conjugate of a chosen regulariser on the form of the reward. These are typically optimised", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 451, + 240 + ], + "score": 1.0, + "content": "in an adversarial fashion (Goodfellow et al., 2014) and given the focus on evaluating", + "type": "text" + }, + { + "bbox": [ + 451, + 229, + 463, + 239 + ], + "score": 0.85, + "content": "\\rho _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "this often", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 239, + 506, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 506, + 251 + ], + "score": 1.0, + "content": "requires extensive interaction with the environment, otherwise banking on approximations over a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "replay buffer (Kostrikov et al., 2018) or a reformulation of the divergence to allow for off-policy", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 260, + 504, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 504, + 273 + ], + "score": 1.0, + "content": "evaluation (Kostrikov et al., 2019). Bear in mind that optimal policies within the maximum-entropy", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 271, + 342, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 342, + 284 + ], + "score": 1.0, + "content": "framework are parameterised by a Boltzmann distribution:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 205, + 506, + 284 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 284, + 369, + 312 + ], + "lines": [ + { + "bbox": [ + 241, + 284, + 369, + 312 + ], + "spans": [ + { + "bbox": [ + 241, + 284, + 369, + 312 + ], + "score": 0.95, + "content": "\\pi ( a | s ) = \\frac { \\exp ( Q ( s , a ) ) } { \\sum _ { b \\in \\cal { A } } \\exp ( Q ( s , b ) ) } ,", + "type": "interline_equation", + "image_path": "0c74caa5f9bc1d89acad1468e1f149a3ed4c26b48ade8e568c23ddc47fd8e772.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 241, + 284, + 369, + 298.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 241, + 298.0, + 369, + 312.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 313, + 440, + 325 + ], + "lines": [ + { + "bbox": [ + 105, + 311, + 442, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 127, + 327 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 127, + 313, + 158, + 325 + ], + "score": 0.93, + "content": "Q ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 311, + 191, + 327 + ], + "score": 1.0, + "content": "the soft", + "type": "text" + }, + { + "bbox": [ + 191, + 314, + 200, + 325 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 311, + 442, + 327 + ], + "score": 1.0, + "content": "-function, defined recursively via the soft Bellman-equation:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 311, + 442, + 327 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 326, + 411, + 348 + ], + "lines": [ + { + "bbox": [ + 200, + 326, + 411, + 348 + ], + "spans": [ + { + "bbox": [ + 200, + 326, + 411, + 348 + ], + "score": 0.91, + "content": "Q ( s , a ) \\triangleq R ( s , a ) + \\gamma \\mathbb { E } _ { s ^ { \\prime } \\sim \\rho _ { \\pi } } \\Big [ \\operatorname { s o f t } _ { a ^ { \\prime } } \\operatorname { m a x } Q ( s ^ { \\prime } , a ^ { \\prime } ) ) \\Big ] .", + "type": "interline_equation", + "image_path": "0aa78fb99ec235065b0573f570f97b7482c82125adfc93974b6d64143c688551.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 200, + 326, + 411, + 348 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 349, + 502, + 372 + ], + "lines": [ + { + "bbox": [ + 107, + 348, + 501, + 363 + ], + "spans": [ + { + "bbox": [ + 107, + 348, + 329, + 363 + ], + "score": 1.0, + "content": "Then for a learnt parameterised policy given in terms of", + "type": "text" + }, + { + "bbox": [ + 330, + 350, + 338, + 361 + ], + "score": 0.87, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 348, + 488, + 363 + ], + "score": 1.0, + "content": "-values from a function approximator", + "type": "text" + }, + { + "bbox": [ + 488, + 350, + 501, + 361 + ], + "score": 0.88, + "content": "Q _ { \\theta }", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 360, + 278, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 278, + 374 + ], + "score": 1.0, + "content": "we can obtain an implied reward given by:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 348, + 501, + 374 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 171, + 373, + 440, + 407 + ], + "lines": [ + { + "bbox": [ + 171, + 373, + 440, + 407 + ], + "spans": [ + { + "bbox": [ + 171, + 373, + 440, + 407 + ], + "score": 0.94, + "content": "R _ { Q _ { \\theta } } ( s , a ) = Q _ { \\theta } ( s , a ) - \\gamma \\mathbb { E } _ { s ^ { \\prime } \\sim \\rho _ { \\pi } } \\Bigg [ \\log \\Bigg ( \\sum _ { a ^ { \\prime } \\in \\mathcal { A } } \\exp ( Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ) \\Bigg ) \\Bigg ] .", + "type": "interline_equation", + "image_path": "1d7ed7ec38bc7068c7c374fe0563075cd630f77ba98fea016777db39e6364b88.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 171, + 373, + 440, + 384.3333333333333 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 171, + 384.3333333333333, + 440, + 395.66666666666663 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 171, + 395.66666666666663, + 440, + 406.99999999999994 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 408, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 422 + ], + "score": 1.0, + "content": "A number of algorithms make use of this fact with Piot et al. (2014) and Reddy et al. (2019) working", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 420, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 432 + ], + "score": 1.0, + "content": "by essentially placing a sparsity prior on this implied reward, encouraging it towards zero, and thus", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 430, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 443 + ], + "score": 1.0, + "content": "incorporating subsequent state information. Alternatively Jarrett et al. (2020) show that even the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "score": 1.0, + "content": "simple behavioural cloning (Bain & Sammut, 1995) is implicitly maximising some reward with an", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 452, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 465 + ], + "score": 1.0, + "content": "approximation that the expectation over states is taken with respect to the demonstrator, not the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 463, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 505, + 476 + ], + "score": 1.0, + "content": "learnt policy. They then attempt to rectify part of this approximation using the properties of the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 474, + 378, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 378, + 487 + ], + "score": 1.0, + "content": "energy-based model implied by the policy (Grathwohl et al., 2019).", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 407, + 505, + 487 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 491, + 504, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "The problem with learning an implicit reward in an offline setting is that it remains just that, implicit,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 502, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 514 + ], + "score": 1.0, + "content": "only able to be evaluated at points seen in the demonstrations, and even then only approximately.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 513, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 526 + ], + "score": 1.0, + "content": "Thus even if their consideration improves imitator policies performance they offer no real improve-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 524, + 202, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 202, + 536 + ], + "score": 1.0, + "content": "ment for interpretation.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 491, + 505, + 536 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 548, + 340, + 559 + ], + "lines": [ + { + "bbox": [ + 106, + 548, + 343, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 343, + 561 + ], + "score": 1.0, + "content": "2.1 BAYESIAN INVERSE REINFORCEMENT LEARNING", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 568, + 505, + 635 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 505, + 582 + ], + "score": 1.0, + "content": "We are then resigned to directly reason about the underlying reward, bringing us back to the question", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "score": 1.0, + "content": "of IRL, and in particular BIRL for a principled approach to reasoning under uncertainty. Given a", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "score": 1.0, + "content": "prior over possible functions, having seen some demonstrations, we calculate the posterior over", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 441, + 614 + ], + "score": 1.0, + "content": "the function using a theoretically simple application of Bayes rule. Ramachandran", + "type": "text" + }, + { + "bbox": [ + 442, + 602, + 451, + 612 + ], + "score": 0.48, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 601, + 505, + 614 + ], + "score": 1.0, + "content": "Amir (2007)", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 612, + 506, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 506, + 625 + ], + "score": 1.0, + "content": "defines the likelihood of an action at a state as a Boltzmann distribution with inverse temperature", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 623, + 460, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 460, + 637 + ], + "score": 1.0, + "content": "and respective state-action values, yielding a probabilistic demonstrator policy given by:", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 568, + 506, + 637 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 636, + 387, + 664 + ], + "lines": [ + { + "bbox": [ + 223, + 636, + 387, + 664 + ], + "spans": [ + { + "bbox": [ + 223, + 636, + 387, + 664 + ], + "score": 0.95, + "content": "\\pi _ { D } ( a | s , R ) = \\frac { \\exp ( \\beta Q _ { R } ^ { \\pi _ { D } } ( s , a ) ) } { \\sum _ { b \\in \\cal { A } } \\exp ( \\beta Q _ { R } ^ { \\pi _ { D } } ( s , b ) ) } ,", + "type": "interline_equation", + "image_path": "eaead0b2596f07403155ca11eab69b0df05df986ed1d025b26750cb7161f5e84.jpg" + } + ] + } + ], + "index": 43.5, + "virtual_lines": [ + { + "bbox": [ + 223, + 636, + 387, + 650.0 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 223, + 650.0, + 387, + 664.0 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 134, + 678 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 666, + 182, + 678 + ], + "score": 0.92, + "content": "\\beta \\in [ 0 , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 664, + 506, + 678 + ], + "score": 1.0, + "content": "represents the the confidence in the optimality of the demonstrator. Note that", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "despite similarities, moving forward we are no longer within the maximum-entropy framework and", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 107, + 686, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 107, + 687, + 144, + 700 + ], + "score": 0.93, + "content": "Q _ { R } ^ { \\pi } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 686, + 443, + 702 + ], + "score": 1.0, + "content": "now denotes the traditional, not soft (as in equation 3), state-action value (", + "type": "text" + }, + { + "bbox": [ + 443, + 688, + 452, + 699 + ], + "score": 0.76, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 686, + 506, + 702 + ], + "score": 1.0, + "content": "-value) func-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 103, + 694, + 502, + 716 + ], + "spans": [ + { + "bbox": [ + 103, + 694, + 189, + 716 + ], + "score": 1.0, + "content": "Rtion given a reward", + "type": "text" + }, + { + "bbox": [ + 189, + 699, + 198, + 709 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 694, + 245, + 716 + ], + "score": 1.0, + "content": "and policy", + "type": "text" + }, + { + "bbox": [ + 246, + 702, + 253, + 709 + ], + "score": 0.73, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 694, + 294, + 716 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 295, + 698, + 502, + 712 + ], + "score": 0.86, + "content": "\\begin{array} { r } { Q _ { R } ^ { \\pi } ( s , \\bar { a } ) = \\mathbb { E } _ { \\pi , T } [ \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } R ( s _ { t } ) | s _ { 0 } = s , a _ { 0 } = a ] } \\end{array}", + "type": "inline_equation" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "Unsurprisingly this yields an intractable posterior distribution leading to a Markov chain Monte", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 720, + 449, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 449, + 733 + ], + "score": 1.0, + "content": "Carlo (MCMC) algorithm based on a random grid-walk to sample from the posterior.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47.5, + "bbox_fs": [ + 103, + 664, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Issues in complex and unknown environments. This original formulation, alongside extensions", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "that consider maximum-a-posteriori inference (Choi & Kim, 2011) and multiple rewards (Choi &", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "Kim, 2012; Dimitrakakis & Rothkopf, 2011), suffer from three major drawbacks that make them", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 116, + 397, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 397, + 127 + ], + "score": 1.0, + "content": "impractical for modern, complicated, and model-free task environments.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 129, + 136, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 129, + 135, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 129, + 135, + 505, + 149 + ], + "score": 1.0, + "content": "1. The reward is a linear combination of state features. Naturally this is a very restrictive", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 141, + 146, + 504, + 160 + ], + "spans": [ + { + "bbox": [ + 141, + 146, + 504, + 160 + ], + "score": 1.0, + "content": "class of functions and assumes access to carefully hand-crafted features of the state space.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 128, + 160, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 128, + 160, + 318, + 174 + ], + "score": 1.0, + "content": "2. The cardinality of the state-space is finite,", + "type": "text" + }, + { + "bbox": [ + 318, + 161, + 358, + 173 + ], + "score": 0.92, + "content": "| S | < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 160, + 506, + 174 + ], + "score": 1.0, + "content": ". Admittedly this can be relaxed in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 140, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 140, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "practical terms, although it does mean the rapid-mixing bounds derived by Ramachandran", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 142, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "& Amir (2007) do not hold at all in the infinite case. For finite approximations they scale", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 194, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 141, + 194, + 152, + 207 + ], + "score": 1.0, + "content": "at", + "type": "text" + }, + { + "bbox": [ + 153, + 194, + 186, + 206 + ], + "score": 0.93, + "content": "\\mathcal { O } ( | S | ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 194, + 505, + 207 + ], + "score": 1.0, + "content": ", rapidly becoming vacuous and causing BIRL to inherit the usual MCMC diffi-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 142, + 205, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 142, + 205, + 505, + 218 + ], + "score": 1.0, + "content": "culties on assessing convergence and sequential computation (Gamerman & Lopes, 2006).", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 130, + 219, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 130, + 219, + 506, + 233 + ], + "score": 1.0, + "content": "3. The requirement of an inner-loop MDP solve. Most importantly at every step a new reward", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 140, + 229, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 140, + 229, + 506, + 244 + ], + "score": 1.0, + "content": "is sampled and the likelihood of the data must then be evaluated. This requires calculating", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 241, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 141, + 241, + 157, + 254 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 157, + 242, + 166, + 253 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 241, + 505, + 254 + ], + "score": 1.0, + "content": "-values of the policy with respect to the reward, in other words running forward RL.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 142, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "While not an insurmountable problem in the simple cases where everything is known and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 264, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 142, + 264, + 505, + 276 + ], + "score": 1.0, + "content": "can be quickly solved with a procedure guaranteed to converge correctly, this becomes an", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 141, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "issue in the realm where only deep function approximation works adequately (i.e. the non-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 141, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "tabular setting). DQN training for example easily stretches into hours (Mnih et al., 2013)", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 297, + 467, + 309 + ], + "spans": [ + { + "bbox": [ + 142, + 297, + 467, + 309 + ], + "score": 1.0, + "content": "and will have to be repeated thousands of times, making it completely untenable.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 317, + 505, + 448 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "We have seen that even in the most simple setting the problem of exact Bayesian inference over", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 329, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 505, + 339 + ], + "score": 1.0, + "content": "the reward is intractable, and the above limitations of the current MCMC methods are not trivial", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "to overcome. Consequently very little work has been done in the area and there still remain very", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 349, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 363 + ], + "score": 1.0, + "content": "open challenges. Levine et al. (2011) addressed linearity through a Gaussian process approach,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 361, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 506, + 374 + ], + "score": 1.0, + "content": "allowing for a significantly more flexible and non-linear representation though introducing issues of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 371, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 506, + 384 + ], + "score": 1.0, + "content": "its own, namely the computational complexity of inverting large matrices (Rasmussen, 2003). More", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 384, + 504, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 504, + 395 + ], + "score": 1.0, + "content": "recently Brown & Niekum (2019) have presented the only current solution to the inner-loop problem", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 393, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 407 + ], + "score": 1.0, + "content": "by introducing an alternative formulation of the likelihood, one based on human recorded pairwise", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 405, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 506, + 417 + ], + "score": 1.0, + "content": "preferences over demonstrations that significantly reduces the complexity of likelihood. However", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 416, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 505, + 427 + ], + "score": 1.0, + "content": "labelled preferences certainly can’t be assumed always available and while very effective for the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 427, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 506, + 438 + ], + "score": 1.0, + "content": "given task is not appropriate in the general case. One of the key aspects of our contribution is that", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "we are able to deal with all three of these issues while also not requiring any additional information.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 505, + 570 + ], + "lines": [ + { + "bbox": [ + 106, + 460, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 506, + 473 + ], + "score": 1.0, + "content": "The usefulness of uncertainty. On top of the philosophical consistency of Bayesian inference", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 506, + 484 + ], + "score": 1.0, + "content": "there are a number of reasons for wanting a measure of uncertainty over any uncovered reward that", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 481, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 104, + 481, + 505, + 496 + ], + "score": 1.0, + "content": "are not available from regular IRL algorithms. First that the (epistemic) uncertainty revealed by", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 492, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 507 + ], + "score": 1.0, + "content": "Bayesian inference tells us a lot about what areas of the state-space we really cannot say anything", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 504, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 505, + 517 + ], + "score": 1.0, + "content": "about because we haven’t seen any demonstrations there - potentially informing future data collec-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 515, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 506, + 528 + ], + "score": 1.0, + "content": "tion if that is possible (Mindermann et al., 2018). Additionally in the cases we are mostly concerned", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 526, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 505, + 539 + ], + "score": 1.0, + "content": "about (e.g. medicine) we have to be very careful about letting algorithms pick actions in practice", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 505, + 550 + ], + "score": 1.0, + "content": "and we are interested in performing safe or risk-averse imitation, for which a degree of confidence", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 548, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 506, + 561 + ], + "score": 1.0, + "content": "over learnt rewards is necessary. Brown et al. (2020) for example use a distribution over reward to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 559, + 500, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 500, + 572 + ], + "score": 1.0, + "content": "optimise a conditional value-at-risk instead of expected return so as to bound potential downsides.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35.5 + }, + { + "type": "title", + "bbox": [ + 107, + 586, + 439, + 599 + ], + "lines": [ + { + "bbox": [ + 104, + 585, + 441, + 601 + ], + "spans": [ + { + "bbox": [ + 104, + 585, + 441, + 601 + ], + "score": 1.0, + "content": "3 APPROXIMATE VARIATIONAL REWARD IMITATION LEARNING", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 610, + 505, + 666 + ], + "lines": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "A variational Bayesian approach. In this section we detail our method, AVRIL, for efficiently", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "learning an imitator policy and performing reward inference simultaneously. Unlike the previously", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 645 + ], + "score": 1.0, + "content": "mentioned sampling or MAP-based methods, we employ variational inference (Blei et al., 2017) to", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 374, + 657 + ], + "score": 1.0, + "content": "reason about the posterior. Here we posit a surrogate distribution", + "type": "text" + }, + { + "bbox": [ + 374, + 644, + 400, + 656 + ], + "score": 0.92, + "content": "q _ { \\phi } ( R )", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 644, + 477, + 657 + ], + "score": 1.0, + "content": ", parameterised by", + "type": "text" + }, + { + "bbox": [ + 477, + 644, + 484, + 655 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 644, + 505, + 657 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 654, + 493, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 493, + 668 + ], + "score": 1.0, + "content": "aim to minimise the Kullback-Leibler (KL) divergence to the posterior, resulting in an objective:", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44 + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 668, + 366, + 688 + ], + "lines": [ + { + "bbox": [ + 244, + 668, + 366, + 688 + ], + "spans": [ + { + "bbox": [ + 244, + 668, + 366, + 688 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { \\phi } \\{ D _ { \\mathrm { K L } } ( q _ { \\phi } ( R ) | | p ( R | \\mathcal { D } ) ) \\} .", + "type": "interline_equation", + "image_path": "469374a8cd250696c803b1c0a945b8a40c02cba5529457319872279071ab9709.jpg" + } + ] + } + ], + "index": 47, + "virtual_lines": [ + { + "bbox": [ + 244, + 668, + 366, + 688 + ], + "spans": [], + "index": 47 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 691, + 506, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 690, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 505, + 704 + ], + "score": 1.0, + "content": "This divergence is still as troubling as the posterior to evaluate, leading to an auxiliary objective", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 701, + 304, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 304, + 714 + ], + "score": 1.0, + "content": "function in the Evidence Lower BOund (ELBO):", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48.5 + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 715, + 408, + 731 + ], + "lines": [ + { + "bbox": [ + 202, + 715, + 408, + 731 + ], + "spans": [ + { + "bbox": [ + 202, + 715, + 408, + 731 + ], + "score": 0.91, + "content": "\\mathcal { F } ( \\phi ) = \\mathbb { E } _ { q _ { \\phi } } \\big [ \\log p ( \\mathcal { D } | R ) \\big ] - D _ { K L } \\big ( q _ { \\phi } ( R ) | | p ( R ) \\big ) ,", + "type": "interline_equation", + "image_path": "722a4c9f996fb1f0dcf1ce1851d1761a6df383a55436cc191dd6fbada90e1fd0.jpg" + } + ] + } + ], + "index": 50, + "virtual_lines": [ + { + "bbox": [ + 202, + 715, + 408, + 731 + ], + "spans": [], + "index": 50 + } + ] + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 8 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Issues in complex and unknown environments. This original formulation, alongside extensions", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "that consider maximum-a-posteriori inference (Choi & Kim, 2011) and multiple rewards (Choi &", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "Kim, 2012; Dimitrakakis & Rothkopf, 2011), suffer from three major drawbacks that make them", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 116, + 397, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 397, + 127 + ], + "score": 1.0, + "content": "impractical for modern, complicated, and model-free task environments.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 505, + 127 + ] + }, + { + "type": "text", + "bbox": [ + 129, + 136, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 129, + 135, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 129, + 135, + 505, + 149 + ], + "score": 1.0, + "content": "1. The reward is a linear combination of state features. Naturally this is a very restrictive", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 141, + 146, + 504, + 160 + ], + "spans": [ + { + "bbox": [ + 141, + 146, + 504, + 160 + ], + "score": 1.0, + "content": "class of functions and assumes access to carefully hand-crafted features of the state space.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 128, + 160, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 128, + 160, + 318, + 174 + ], + "score": 1.0, + "content": "2. The cardinality of the state-space is finite,", + "type": "text" + }, + { + "bbox": [ + 318, + 161, + 358, + 173 + ], + "score": 0.92, + "content": "| S | < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 160, + 506, + 174 + ], + "score": 1.0, + "content": ". Admittedly this can be relaxed in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 140, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 140, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "practical terms, although it does mean the rapid-mixing bounds derived by Ramachandran", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 142, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "& Amir (2007) do not hold at all in the infinite case. For finite approximations they scale", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 194, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 141, + 194, + 152, + 207 + ], + "score": 1.0, + "content": "at", + "type": "text" + }, + { + "bbox": [ + 153, + 194, + 186, + 206 + ], + "score": 0.93, + "content": "\\mathcal { O } ( | S | ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 194, + 505, + 207 + ], + "score": 1.0, + "content": ", rapidly becoming vacuous and causing BIRL to inherit the usual MCMC diffi-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 142, + 205, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 142, + 205, + 505, + 218 + ], + "score": 1.0, + "content": "culties on assessing convergence and sequential computation (Gamerman & Lopes, 2006).", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 130, + 219, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 130, + 219, + 506, + 233 + ], + "score": 1.0, + "content": "3. The requirement of an inner-loop MDP solve. Most importantly at every step a new reward", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 140, + 229, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 140, + 229, + 506, + 244 + ], + "score": 1.0, + "content": "is sampled and the likelihood of the data must then be evaluated. This requires calculating", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 241, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 141, + 241, + 157, + 254 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 157, + 242, + 166, + 253 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 241, + 505, + 254 + ], + "score": 1.0, + "content": "-values of the policy with respect to the reward, in other words running forward RL.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 142, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "While not an insurmountable problem in the simple cases where everything is known and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 264, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 142, + 264, + 505, + 276 + ], + "score": 1.0, + "content": "can be quickly solved with a procedure guaranteed to converge correctly, this becomes an", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 141, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "issue in the realm where only deep function approximation works adequately (i.e. the non-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 141, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "tabular setting). DQN training for example easily stretches into hours (Mnih et al., 2013)", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 297, + 467, + 309 + ], + "spans": [ + { + "bbox": [ + 142, + 297, + 467, + 309 + ], + "score": 1.0, + "content": "and will have to be repeated thousands of times, making it completely untenable.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 11, + "bbox_fs": [ + 128, + 135, + 506, + 309 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 317, + 505, + 448 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "We have seen that even in the most simple setting the problem of exact Bayesian inference over", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 329, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 505, + 339 + ], + "score": 1.0, + "content": "the reward is intractable, and the above limitations of the current MCMC methods are not trivial", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "to overcome. Consequently very little work has been done in the area and there still remain very", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 349, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 363 + ], + "score": 1.0, + "content": "open challenges. Levine et al. (2011) addressed linearity through a Gaussian process approach,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 361, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 506, + 374 + ], + "score": 1.0, + "content": "allowing for a significantly more flexible and non-linear representation though introducing issues of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 371, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 506, + 384 + ], + "score": 1.0, + "content": "its own, namely the computational complexity of inverting large matrices (Rasmussen, 2003). More", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 384, + 504, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 504, + 395 + ], + "score": 1.0, + "content": "recently Brown & Niekum (2019) have presented the only current solution to the inner-loop problem", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 393, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 407 + ], + "score": 1.0, + "content": "by introducing an alternative formulation of the likelihood, one based on human recorded pairwise", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 405, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 506, + 417 + ], + "score": 1.0, + "content": "preferences over demonstrations that significantly reduces the complexity of likelihood. However", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 416, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 505, + 427 + ], + "score": 1.0, + "content": "labelled preferences certainly can’t be assumed always available and while very effective for the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 427, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 506, + 438 + ], + "score": 1.0, + "content": "given task is not appropriate in the general case. One of the key aspects of our contribution is that", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "we are able to deal with all three of these issues while also not requiring any additional information.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 316, + 506, + 450 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 505, + 570 + ], + "lines": [ + { + "bbox": [ + 106, + 460, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 506, + 473 + ], + "score": 1.0, + "content": "The usefulness of uncertainty. On top of the philosophical consistency of Bayesian inference", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 506, + 484 + ], + "score": 1.0, + "content": "there are a number of reasons for wanting a measure of uncertainty over any uncovered reward that", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 481, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 104, + 481, + 505, + 496 + ], + "score": 1.0, + "content": "are not available from regular IRL algorithms. First that the (epistemic) uncertainty revealed by", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 492, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 507 + ], + "score": 1.0, + "content": "Bayesian inference tells us a lot about what areas of the state-space we really cannot say anything", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 504, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 505, + 517 + ], + "score": 1.0, + "content": "about because we haven’t seen any demonstrations there - potentially informing future data collec-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 515, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 506, + 528 + ], + "score": 1.0, + "content": "tion if that is possible (Mindermann et al., 2018). Additionally in the cases we are mostly concerned", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 526, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 505, + 539 + ], + "score": 1.0, + "content": "about (e.g. medicine) we have to be very careful about letting algorithms pick actions in practice", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 505, + 550 + ], + "score": 1.0, + "content": "and we are interested in performing safe or risk-averse imitation, for which a degree of confidence", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 548, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 506, + 561 + ], + "score": 1.0, + "content": "over learnt rewards is necessary. Brown et al. (2020) for example use a distribution over reward to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 559, + 500, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 500, + 572 + ], + "score": 1.0, + "content": "optimise a conditional value-at-risk instead of expected return so as to bound potential downsides.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 460, + 506, + 572 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 586, + 439, + 599 + ], + "lines": [ + { + "bbox": [ + 104, + 585, + 441, + 601 + ], + "spans": [ + { + "bbox": [ + 104, + 585, + 441, + 601 + ], + "score": 1.0, + "content": "3 APPROXIMATE VARIATIONAL REWARD IMITATION LEARNING", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 610, + 505, + 666 + ], + "lines": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "A variational Bayesian approach. In this section we detail our method, AVRIL, for efficiently", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "learning an imitator policy and performing reward inference simultaneously. Unlike the previously", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 645 + ], + "score": 1.0, + "content": "mentioned sampling or MAP-based methods, we employ variational inference (Blei et al., 2017) to", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 374, + 657 + ], + "score": 1.0, + "content": "reason about the posterior. Here we posit a surrogate distribution", + "type": "text" + }, + { + "bbox": [ + 374, + 644, + 400, + 656 + ], + "score": 0.92, + "content": "q _ { \\phi } ( R )", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 644, + 477, + 657 + ], + "score": 1.0, + "content": ", parameterised by", + "type": "text" + }, + { + "bbox": [ + 477, + 644, + 484, + 655 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 644, + 505, + 657 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 654, + 493, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 493, + 668 + ], + "score": 1.0, + "content": "aim to minimise the Kullback-Leibler (KL) divergence to the posterior, resulting in an objective:", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 611, + 506, + 668 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 668, + 366, + 688 + ], + "lines": [ + { + "bbox": [ + 244, + 668, + 366, + 688 + ], + "spans": [ + { + "bbox": [ + 244, + 668, + 366, + 688 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { \\phi } \\{ D _ { \\mathrm { K L } } ( q _ { \\phi } ( R ) | | p ( R | \\mathcal { D } ) ) \\} .", + "type": "interline_equation", + "image_path": "469374a8cd250696c803b1c0a945b8a40c02cba5529457319872279071ab9709.jpg" + } + ] + } + ], + "index": 47, + "virtual_lines": [ + { + "bbox": [ + 244, + 668, + 366, + 688 + ], + "spans": [], + "index": 47 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 691, + 506, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 690, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 505, + 704 + ], + "score": 1.0, + "content": "This divergence is still as troubling as the posterior to evaluate, leading to an auxiliary objective", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 701, + 304, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 304, + 714 + ], + "score": 1.0, + "content": "function in the Evidence Lower BOund (ELBO):", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48.5, + "bbox_fs": [ + 105, + 690, + 505, + 714 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 715, + 408, + 731 + ], + "lines": [ + { + "bbox": [ + 202, + 715, + 408, + 731 + ], + "spans": [ + { + "bbox": [ + 202, + 715, + 408, + 731 + ], + "score": 0.91, + "content": "\\mathcal { F } ( \\phi ) = \\mathbb { E } _ { q _ { \\phi } } \\big [ \\log p ( \\mathcal { D } | R ) \\big ] - D _ { K L } \\big ( q _ { \\phi } ( R ) | | p ( R ) \\big ) ,", + "type": "interline_equation", + "image_path": "722a4c9f996fb1f0dcf1ce1851d1761a6df383a55436cc191dd6fbada90e1fd0.jpg" + } + ] + } + ], + "index": 50, + "virtual_lines": [ + { + "bbox": [ + 202, + 715, + 408, + 731 + ], + "spans": [], + "index": 50 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 506, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 282, + 95 + ], + "score": 1.0, + "content": "where it can be seen that maximisation over", + "type": "text" + }, + { + "bbox": [ + 282, + 83, + 290, + 94 + ], + "score": 0.86, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "is equivalent to (6). We are agnostic towards the form", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "of both the prior and variational distribution, for simplicity here we assume a Gaussian process prior", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 497, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 261, + 117 + ], + "score": 1.0, + "content": "with mean zero and unit variance over", + "type": "text" + }, + { + "bbox": [ + 262, + 105, + 270, + 114 + ], + "score": 0.85, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 104, + 497, + 117 + ], + "score": 1.0, + "content": "alongside the variational posterior distribution given by:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 258, + 120, + 352, + 135 + ], + "lines": [ + { + "bbox": [ + 258, + 120, + 352, + 135 + ], + "spans": [ + { + "bbox": [ + 258, + 120, + 352, + 135 + ], + "score": 0.93, + "content": "q _ { \\phi } ( R ) = \\mathcal { N } ( R ; \\mu , \\sigma ^ { 2 } ) ,", + "type": "interline_equation", + "image_path": "1532b16207f68ec3cfe9b06cfe011627db774328a75ce3351dc6541f8afdee54.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 258, + 120, + 352, + 135 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 505, + 186 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 134, + 154 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 141, + 156, + 153 + ], + "score": 0.92, + "content": "\\mu , \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 140, + 372, + 154 + ], + "score": 1.0, + "content": "are the outputs of an encoder neural network taking", + "type": "text" + }, + { + "bbox": [ + 372, + 144, + 379, + 151 + ], + "score": 0.71, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 140, + 505, + 154 + ], + "score": 1.0, + "content": "as input and parameterised by", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 152, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 107, + 153, + 114, + 164 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 152, + 505, + 165 + ], + "score": 1.0, + "content": ". Note that for the algorithm that we will describe these choices are not a necessity and can be", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 164, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 506, + 176 + ], + "score": 1.0, + "content": "easily substituted for more expressive distributions if appropriate. Maintaining the assumption of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 174, + 441, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 441, + 187 + ], + "score": 1.0, + "content": "Boltzmann rationality on the part of the demonstrator, our objective takes the form:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 190, + 459, + 226 + ], + "lines": [ + { + "bbox": [ + 151, + 190, + 459, + 226 + ], + "spans": [ + { + "bbox": [ + 151, + 190, + 459, + 226 + ], + "score": 0.94, + "content": "\\mathcal { F } ( \\phi ) = \\mathbb { E } _ { q _ { \\phi } } \\left[ \\sum _ { ( s , a ) \\in \\mathcal { D } } \\log \\frac { \\exp ( \\beta Q _ { R } ^ { \\pi _ { D } } ( s , a ) ) } { \\sum _ { b \\in \\mathcal { A } } \\exp ( \\beta Q _ { R } ^ { \\pi _ { D } } ( s , b ) ) } \\right] - D _ { K L } \\big ( q _ { \\phi } ( R ) | | p ( R ) \\big ) .", + "type": "interline_equation", + "image_path": "f161d3dcacc8d099ea4aae0724813e18fd50a03c53b7ef7c02012c5149826eb6.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 151, + 190, + 459, + 202.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 151, + 202.0, + 459, + 214.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 151, + 214.0, + 459, + 226.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 231, + 505, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "score": 1.0, + "content": "The most interesting (and problematic) part of this objective as ever centres on the evaluation of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 239, + 507, + 259 + ], + "spans": [ + { + "bbox": [ + 107, + 243, + 149, + 255 + ], + "score": 0.91, + "content": "Q _ { R } ^ { \\pi _ { D } } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 239, + 414, + 259 + ], + "score": 1.0, + "content": ". Notice that what is really required here is an expression of the", + "type": "text" + }, + { + "bbox": [ + 414, + 243, + 423, + 254 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 239, + 507, + 259 + ], + "score": 1.0, + "content": "-values as a smooth", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 300, + 266 + ], + "score": 1.0, + "content": "function of the reward such that with samples of", + "type": "text" + }, + { + "bbox": [ + 301, + 254, + 309, + 263 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 254, + 429, + 266 + ], + "score": 1.0, + "content": "we could take gradients w.r.t.", + "type": "text" + }, + { + "bbox": [ + 430, + 254, + 437, + 265 + ], + "score": 0.82, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 254, + 505, + 266 + ], + "score": 1.0, + "content": ". Of course there", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "score": 1.0, + "content": "is little hope of obtaining this simply, by itself it is a harder problem than that of forward RL which", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 276, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 222, + 288 + ], + "score": 1.0, + "content": "only attempts to evaluate the", + "type": "text" + }, + { + "bbox": [ + 222, + 276, + 231, + 287 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 276, + 314, + 288 + ], + "score": 1.0, + "content": "-values for a specific", + "type": "text" + }, + { + "bbox": [ + 314, + 276, + 323, + 285 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 276, + 505, + 288 + ], + "score": 1.0, + "content": "and already in complicated environments has", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 287, + 339, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 339, + 298 + ], + "score": 1.0, + "content": "to rely on function approximation and limited guarantees.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 505, + 371 + ], + "lines": [ + { + "bbox": [ + 105, + 303, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 263, + 318 + ], + "score": 1.0, + "content": "A naive approach would be to sample", + "type": "text" + }, + { + "bbox": [ + 263, + 303, + 272, + 315 + ], + "score": 0.86, + "content": "\\hat { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 305, + 379, + 318 + ], + "score": 1.0, + "content": "and then approximate the", + "type": "text" + }, + { + "bbox": [ + 379, + 306, + 388, + 316 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 305, + 505, + 318 + ], + "score": 1.0, + "content": "-values with a second neural", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 378, + 329 + ], + "score": 1.0, + "content": "network, solving offline over the batched data using a least-squared", + "type": "text" + }, + { + "bbox": [ + 378, + 316, + 404, + 327 + ], + "score": 0.33, + "content": "\\mathrm { T D } / Q", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "-learning algorithm, as is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 326, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 506, + 339 + ], + "score": 1.0, + "content": "the approach forced on sampling based BIRL methods. It is in fact though doubly inappropriate for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 338, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 505, + 351 + ], + "score": 1.0, + "content": "this setting, not only does this require a solve as an inner-loop but importantly differentiating through", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 349, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 506, + 362 + ], + "score": 1.0, + "content": "the solving operation is extremely impractical, it requires backpropagating through a number of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 360, + 490, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 490, + 373 + ], + "score": 1.0, + "content": "gradient updates that are essentially unbounded as the complexity of the environment increases.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 383, + 505, + 505 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "A further approximation. This raises an important question - is it possible to jointly optimise", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 394, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 104, + 394, + 506, + 408 + ], + "score": 1.0, + "content": "a policy and variational distribution only once instead of requiring a repeated solve? This is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 404, + 504, + 419 + ], + "spans": [ + { + "bbox": [ + 104, + 404, + 213, + 419 + ], + "score": 1.0, + "content": "theoretically suspect, the", + "type": "text" + }, + { + "bbox": [ + 213, + 406, + 222, + 416 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 404, + 459, + 419 + ], + "score": 1.0, + "content": "-values are defined on a singular reward, constrained as", + "type": "text" + }, + { + "bbox": [ + 459, + 405, + 504, + 417 + ], + "score": 0.92, + "content": "R ( s , a ) \\ =", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 415, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 254, + 429 + ], + "score": 0.9, + "content": "\\mathbb { E } _ { s ^ { \\prime } , a ^ { \\prime } \\sim \\pi , T } [ \\bar { Q } _ { R } ^ { \\pi } ( { \\bar { s , } } a ) - \\gamma Q _ { R } ^ { \\pi } ( s ^ { \\prime } , a ^ { \\prime } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 415, + 425, + 430 + ], + "score": 1.0, + "content": "so we cannot learn a particular standard", + "type": "text" + }, + { + "bbox": [ + 425, + 416, + 434, + 428 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 415, + 506, + 430 + ], + "score": 1.0, + "content": "-function that re-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 425, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 104, + 425, + 506, + 441 + ], + "score": 1.0, + "content": "flects the entire distribution. But can we learn a policy that reflects the expected reward using a", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 227, + 451 + ], + "score": 1.0, + "content": "second policy neural network", + "type": "text" + }, + { + "bbox": [ + 227, + 438, + 244, + 450 + ], + "score": 0.59, + "content": "Q _ { \\theta } ?", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 438, + 352, + 451 + ], + "score": 1.0, + "content": "We can’t simply optimise", + "type": "text" + }, + { + "bbox": [ + 353, + 439, + 359, + 448 + ], + "score": 0.78, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 438, + 401, + 451 + ], + "score": 1.0, + "content": "alongside", + "type": "text" + }, + { + "bbox": [ + 401, + 439, + 408, + 450 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 438, + 505, + 451 + ], + "score": 1.0, + "content": "to maximise the ELBO", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 449, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 461 + ], + "score": 1.0, + "content": "though as that completely ignores the fact that the learnt policy is intimately related to the distri-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 458, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 104, + 458, + 506, + 474 + ], + "score": 1.0, + "content": "bution over the reward. Our solution to ensure then that they behave as intended is by constraining", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 470, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 118, + 483 + ], + "score": 0.84, + "content": "q _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 470, + 137, + 484 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 138, + 471, + 151, + 482 + ], + "score": 0.89, + "content": "Q _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 470, + 506, + 484 + ], + "score": 1.0, + "content": "to be consistent with each other, specifically that the implied reward of the policy is", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "score": 1.0, + "content": "sufficiently likely under the variational posterior (equivalently that the negative log-likelihood is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 492, + 434, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 434, + 506 + ], + "score": 1.0, + "content": "sufficiently low). Thus we arrive at a constrained optimisation objective given by:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 509, + 435, + 542 + ], + "lines": [ + { + "bbox": [ + 175, + 509, + 435, + 542 + ], + "spans": [ + { + "bbox": [ + 175, + 509, + 435, + 542 + ], + "score": 0.62, + "content": "\\operatorname* { m a x } _ { \\phi , \\theta } \\sum _ { ( s , a ) \\in \\mathcal { D } } \\log \\frac { \\exp ( \\beta Q _ { \\theta } ( s , a ) ) } { \\sum _ { b \\in \\mathcal { A } } \\exp ( \\beta Q _ { \\theta } ( s , b ) ) } - D _ { K L } \\big ( q _ { \\phi } ( R ) | | p ( R ) \\big ) ,", + "type": "interline_equation", + "image_path": "ab6bb01b3d406269eacf9275cd5158b503c48ae031c27f3ab6ca365465af1c90.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 175, + 509, + 435, + 520.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 175, + 520.0, + 435, + 531.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 175, + 531.0, + 435, + 542.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 561, + 502, + 595 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 504, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 127, + 574 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 128, + 564, + 134, + 572 + ], + "score": 0.69, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 561, + 504, + 574 + ], + "score": 1.0, + "content": "reflecting the strength of the constraint. Rewriting (10) as a Lagrangian under the KKT", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 572, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 237, + 586 + ], + "score": 1.0, + "content": "conditions (Karush, 1939; Kuhn", + "type": "text" + }, + { + "bbox": [ + 238, + 574, + 247, + 583 + ], + "score": 0.28, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 572, + 505, + 586 + ], + "score": 1.0, + "content": "Tucker, 1951), and given complimentary slackness, we obtain a", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 584, + 221, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 584, + 221, + 596 + ], + "score": 1.0, + "content": "practical objective function:", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "interline_equation", + "bbox": [ + 128, + 600, + 482, + 650 + ], + "lines": [ + { + "bbox": [ + 128, + 600, + 482, + 650 + ], + "spans": [ + { + "bbox": [ + 128, + 600, + 482, + 650 + ], + "score": 0.94, + "content": "\\begin{array} { r l } { \\mathcal { F } ( \\phi , \\theta , \\mathcal { D } ) = \\displaystyle \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal { D } } \\log \\frac { \\exp \\beta Q _ { \\theta } ( s , a ) ) } { \\sum _ { b \\in A } \\exp ( \\beta Q _ { \\theta } ( s , b ) ) } - D _ { K L } \\big ( q _ { \\phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \\big ) } & { } \\\\ { + \\lambda \\log q _ { \\phi } ( Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ) . } & { } \\end{array}", + "type": "interline_equation", + "image_path": "2d42ccb3925545343a792675f7aacd47709b0e80950a893270372c9b3f1092f8.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 128, + 600, + 482, + 616.6666666666666 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 128, + 616.6666666666666, + 482, + 633.3333333333333 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 128, + 633.3333333333333, + 482, + 649.9999999999999 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 653, + 506, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 653, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 443, + 666 + ], + "score": 1.0, + "content": "Here the KL divergence between processes is approximated over a countable set, and", + "type": "text" + }, + { + "bbox": [ + 443, + 654, + 450, + 663 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 653, + 505, + 666 + ], + "score": 1.0, + "content": "is introduced", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 664, + 252, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 252, + 676 + ], + "score": 1.0, + "content": "to control the strength of constraint.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 106, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 699 + ], + "score": 1.0, + "content": "On the implementation. Optimisation is simple as both networks are maximising the same ob-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "jective and gradients can be easily obtained through backpropagation while being amenable to mini-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "batching, allowing you to call your favourite gradient-based stochastic optimisation scheme. We", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 104, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "re-iterate though that AVRIL really represents a framework for doing BIRL and not a specific model", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 506, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 282, + 95 + ], + "score": 1.0, + "content": "where it can be seen that maximisation over", + "type": "text" + }, + { + "bbox": [ + 282, + 83, + 290, + 94 + ], + "score": 0.86, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "is equivalent to (6). We are agnostic towards the form", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "of both the prior and variational distribution, for simplicity here we assume a Gaussian process prior", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 497, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 261, + 117 + ], + "score": 1.0, + "content": "with mean zero and unit variance over", + "type": "text" + }, + { + "bbox": [ + 262, + 105, + 270, + 114 + ], + "score": 0.85, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 104, + 497, + 117 + ], + "score": 1.0, + "content": "alongside the variational posterior distribution given by:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 83, + 505, + 117 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 258, + 120, + 352, + 135 + ], + "lines": [ + { + "bbox": [ + 258, + 120, + 352, + 135 + ], + "spans": [ + { + "bbox": [ + 258, + 120, + 352, + 135 + ], + "score": 0.93, + "content": "q _ { \\phi } ( R ) = \\mathcal { N } ( R ; \\mu , \\sigma ^ { 2 } ) ,", + "type": "interline_equation", + "image_path": "1532b16207f68ec3cfe9b06cfe011627db774328a75ce3351dc6541f8afdee54.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 258, + 120, + 352, + 135 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 505, + 186 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 134, + 154 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 141, + 156, + 153 + ], + "score": 0.92, + "content": "\\mu , \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 140, + 372, + 154 + ], + "score": 1.0, + "content": "are the outputs of an encoder neural network taking", + "type": "text" + }, + { + "bbox": [ + 372, + 144, + 379, + 151 + ], + "score": 0.71, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 140, + 505, + 154 + ], + "score": 1.0, + "content": "as input and parameterised by", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 152, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 107, + 153, + 114, + 164 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 152, + 505, + 165 + ], + "score": 1.0, + "content": ". Note that for the algorithm that we will describe these choices are not a necessity and can be", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 164, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 506, + 176 + ], + "score": 1.0, + "content": "easily substituted for more expressive distributions if appropriate. Maintaining the assumption of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 174, + 441, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 441, + 187 + ], + "score": 1.0, + "content": "Boltzmann rationality on the part of the demonstrator, our objective takes the form:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 140, + 506, + 187 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 190, + 459, + 226 + ], + "lines": [ + { + "bbox": [ + 151, + 190, + 459, + 226 + ], + "spans": [ + { + "bbox": [ + 151, + 190, + 459, + 226 + ], + "score": 0.94, + "content": "\\mathcal { F } ( \\phi ) = \\mathbb { E } _ { q _ { \\phi } } \\left[ \\sum _ { ( s , a ) \\in \\mathcal { D } } \\log \\frac { \\exp ( \\beta Q _ { R } ^ { \\pi _ { D } } ( s , a ) ) } { \\sum _ { b \\in \\mathcal { A } } \\exp ( \\beta Q _ { R } ^ { \\pi _ { D } } ( s , b ) ) } \\right] - D _ { K L } \\big ( q _ { \\phi } ( R ) | | p ( R ) \\big ) .", + "type": "interline_equation", + "image_path": "f161d3dcacc8d099ea4aae0724813e18fd50a03c53b7ef7c02012c5149826eb6.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 151, + 190, + 459, + 202.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 151, + 202.0, + 459, + 214.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 151, + 214.0, + 459, + 226.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 231, + 505, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "score": 1.0, + "content": "The most interesting (and problematic) part of this objective as ever centres on the evaluation of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 239, + 507, + 259 + ], + "spans": [ + { + "bbox": [ + 107, + 243, + 149, + 255 + ], + "score": 0.91, + "content": "Q _ { R } ^ { \\pi _ { D } } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 239, + 414, + 259 + ], + "score": 1.0, + "content": ". Notice that what is really required here is an expression of the", + "type": "text" + }, + { + "bbox": [ + 414, + 243, + 423, + 254 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 239, + 507, + 259 + ], + "score": 1.0, + "content": "-values as a smooth", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 300, + 266 + ], + "score": 1.0, + "content": "function of the reward such that with samples of", + "type": "text" + }, + { + "bbox": [ + 301, + 254, + 309, + 263 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 254, + 429, + 266 + ], + "score": 1.0, + "content": "we could take gradients w.r.t.", + "type": "text" + }, + { + "bbox": [ + 430, + 254, + 437, + 265 + ], + "score": 0.82, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 254, + 505, + 266 + ], + "score": 1.0, + "content": ". Of course there", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "score": 1.0, + "content": "is little hope of obtaining this simply, by itself it is a harder problem than that of forward RL which", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 276, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 222, + 288 + ], + "score": 1.0, + "content": "only attempts to evaluate the", + "type": "text" + }, + { + "bbox": [ + 222, + 276, + 231, + 287 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 276, + 314, + 288 + ], + "score": 1.0, + "content": "-values for a specific", + "type": "text" + }, + { + "bbox": [ + 314, + 276, + 323, + 285 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 276, + 505, + 288 + ], + "score": 1.0, + "content": "and already in complicated environments has", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 287, + 339, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 339, + 298 + ], + "score": 1.0, + "content": "to rely on function approximation and limited guarantees.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 231, + 507, + 298 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 505, + 371 + ], + "lines": [ + { + "bbox": [ + 105, + 303, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 263, + 318 + ], + "score": 1.0, + "content": "A naive approach would be to sample", + "type": "text" + }, + { + "bbox": [ + 263, + 303, + 272, + 315 + ], + "score": 0.86, + "content": "\\hat { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 305, + 379, + 318 + ], + "score": 1.0, + "content": "and then approximate the", + "type": "text" + }, + { + "bbox": [ + 379, + 306, + 388, + 316 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 305, + 505, + 318 + ], + "score": 1.0, + "content": "-values with a second neural", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 378, + 329 + ], + "score": 1.0, + "content": "network, solving offline over the batched data using a least-squared", + "type": "text" + }, + { + "bbox": [ + 378, + 316, + 404, + 327 + ], + "score": 0.33, + "content": "\\mathrm { T D } / Q", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "-learning algorithm, as is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 326, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 506, + 339 + ], + "score": 1.0, + "content": "the approach forced on sampling based BIRL methods. It is in fact though doubly inappropriate for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 338, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 505, + 351 + ], + "score": 1.0, + "content": "this setting, not only does this require a solve as an inner-loop but importantly differentiating through", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 349, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 506, + 362 + ], + "score": 1.0, + "content": "the solving operation is extremely impractical, it requires backpropagating through a number of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 360, + 490, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 490, + 373 + ], + "score": 1.0, + "content": "gradient updates that are essentially unbounded as the complexity of the environment increases.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 303, + 506, + 373 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 383, + 505, + 505 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "A further approximation. This raises an important question - is it possible to jointly optimise", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 394, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 104, + 394, + 506, + 408 + ], + "score": 1.0, + "content": "a policy and variational distribution only once instead of requiring a repeated solve? This is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 404, + 504, + 419 + ], + "spans": [ + { + "bbox": [ + 104, + 404, + 213, + 419 + ], + "score": 1.0, + "content": "theoretically suspect, the", + "type": "text" + }, + { + "bbox": [ + 213, + 406, + 222, + 416 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 404, + 459, + 419 + ], + "score": 1.0, + "content": "-values are defined on a singular reward, constrained as", + "type": "text" + }, + { + "bbox": [ + 459, + 405, + 504, + 417 + ], + "score": 0.92, + "content": "R ( s , a ) \\ =", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 415, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 254, + 429 + ], + "score": 0.9, + "content": "\\mathbb { E } _ { s ^ { \\prime } , a ^ { \\prime } \\sim \\pi , T } [ \\bar { Q } _ { R } ^ { \\pi } ( { \\bar { s , } } a ) - \\gamma Q _ { R } ^ { \\pi } ( s ^ { \\prime } , a ^ { \\prime } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 415, + 425, + 430 + ], + "score": 1.0, + "content": "so we cannot learn a particular standard", + "type": "text" + }, + { + "bbox": [ + 425, + 416, + 434, + 428 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 415, + 506, + 430 + ], + "score": 1.0, + "content": "-function that re-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 425, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 104, + 425, + 506, + 441 + ], + "score": 1.0, + "content": "flects the entire distribution. But can we learn a policy that reflects the expected reward using a", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 227, + 451 + ], + "score": 1.0, + "content": "second policy neural network", + "type": "text" + }, + { + "bbox": [ + 227, + 438, + 244, + 450 + ], + "score": 0.59, + "content": "Q _ { \\theta } ?", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 438, + 352, + 451 + ], + "score": 1.0, + "content": "We can’t simply optimise", + "type": "text" + }, + { + "bbox": [ + 353, + 439, + 359, + 448 + ], + "score": 0.78, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 438, + 401, + 451 + ], + "score": 1.0, + "content": "alongside", + "type": "text" + }, + { + "bbox": [ + 401, + 439, + 408, + 450 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 438, + 505, + 451 + ], + "score": 1.0, + "content": "to maximise the ELBO", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 449, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 461 + ], + "score": 1.0, + "content": "though as that completely ignores the fact that the learnt policy is intimately related to the distri-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 458, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 104, + 458, + 506, + 474 + ], + "score": 1.0, + "content": "bution over the reward. Our solution to ensure then that they behave as intended is by constraining", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 470, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 118, + 483 + ], + "score": 0.84, + "content": "q _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 470, + 137, + 484 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 138, + 471, + 151, + 482 + ], + "score": 0.89, + "content": "Q _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 470, + 506, + 484 + ], + "score": 1.0, + "content": "to be consistent with each other, specifically that the implied reward of the policy is", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "score": 1.0, + "content": "sufficiently likely under the variational posterior (equivalently that the negative log-likelihood is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 492, + 434, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 434, + 506 + ], + "score": 1.0, + "content": "sufficiently low). Thus we arrive at a constrained optimisation objective given by:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28, + "bbox_fs": [ + 104, + 383, + 506, + 506 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 509, + 435, + 542 + ], + "lines": [ + { + "bbox": [ + 175, + 509, + 435, + 542 + ], + "spans": [ + { + "bbox": [ + 175, + 509, + 435, + 542 + ], + "score": 0.62, + "content": "\\operatorname* { m a x } _ { \\phi , \\theta } \\sum _ { ( s , a ) \\in \\mathcal { D } } \\log \\frac { \\exp ( \\beta Q _ { \\theta } ( s , a ) ) } { \\sum _ { b \\in \\mathcal { A } } \\exp ( \\beta Q _ { \\theta } ( s , b ) ) } - D _ { K L } \\big ( q _ { \\phi } ( R ) | | p ( R ) \\big ) ,", + "type": "interline_equation", + "image_path": "ab6bb01b3d406269eacf9275cd5158b503c48ae031c27f3ab6ca365465af1c90.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 175, + 509, + 435, + 520.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 175, + 520.0, + 435, + 531.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 175, + 531.0, + 435, + 542.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 561, + 502, + 595 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 504, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 127, + 574 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 128, + 564, + 134, + 572 + ], + "score": 0.69, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 561, + 504, + 574 + ], + "score": 1.0, + "content": "reflecting the strength of the constraint. Rewriting (10) as a Lagrangian under the KKT", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 572, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 237, + 586 + ], + "score": 1.0, + "content": "conditions (Karush, 1939; Kuhn", + "type": "text" + }, + { + "bbox": [ + 238, + 574, + 247, + 583 + ], + "score": 0.28, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 572, + 505, + 586 + ], + "score": 1.0, + "content": "Tucker, 1951), and given complimentary slackness, we obtain a", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 584, + 221, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 584, + 221, + 596 + ], + "score": 1.0, + "content": "practical objective function:", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 561, + 505, + 596 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 128, + 600, + 482, + 650 + ], + "lines": [ + { + "bbox": [ + 128, + 600, + 482, + 650 + ], + "spans": [ + { + "bbox": [ + 128, + 600, + 482, + 650 + ], + "score": 0.94, + "content": "\\begin{array} { r l } { \\mathcal { F } ( \\phi , \\theta , \\mathcal { D } ) = \\displaystyle \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal { D } } \\log \\frac { \\exp \\beta Q _ { \\theta } ( s , a ) ) } { \\sum _ { b \\in A } \\exp ( \\beta Q _ { \\theta } ( s , b ) ) } - D _ { K L } \\big ( q _ { \\phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \\big ) } & { } \\\\ { + \\lambda \\log q _ { \\phi } ( Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ) . } & { } \\end{array}", + "type": "interline_equation", + "image_path": "2d42ccb3925545343a792675f7aacd47709b0e80950a893270372c9b3f1092f8.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 128, + 600, + 482, + 616.6666666666666 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 128, + 616.6666666666666, + 482, + 633.3333333333333 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 128, + 633.3333333333333, + 482, + 649.9999999999999 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 653, + 506, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 653, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 443, + 666 + ], + "score": 1.0, + "content": "Here the KL divergence between processes is approximated over a countable set, and", + "type": "text" + }, + { + "bbox": [ + 443, + 654, + 450, + 663 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 653, + 505, + 666 + ], + "score": 1.0, + "content": "is introduced", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 664, + 252, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 252, + 676 + ], + "score": 1.0, + "content": "to control the strength of constraint.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 653, + 505, + 676 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 699 + ], + "score": 1.0, + "content": "On the implementation. Optimisation is simple as both networks are maximising the same ob-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "jective and gradients can be easily obtained through backpropagation while being amenable to mini-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "batching, allowing you to call your favourite gradient-based stochastic optimisation scheme. We", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 104, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "re-iterate though that AVRIL really represents a framework for doing BIRL and not a specific model", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5, + "bbox_fs": [ + 104, + 687, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 109, + 85, + 412, + 97 + ], + "lines": [ + { + "bbox": [ + 107, + 83, + 414, + 100 + ], + "spans": [ + { + "bbox": [ + 107, + 83, + 414, + 100 + ], + "score": 1.0, + "content": "Algorithm 1: Approximate Variational Reward Imitation Learning (AVRIL)", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 99, + 494, + 210 + ], + "lines": [ + { + "bbox": [ + 105, + 97, + 408, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 186, + 113 + ], + "score": 1.0, + "content": "Result: Parameters", + "type": "text" + }, + { + "bbox": [ + 187, + 100, + 194, + 110 + ], + "score": 0.82, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 97, + 316, + 113 + ], + "score": 1.0, + "content": "of variational distribution and", + "type": "text" + }, + { + "bbox": [ + 316, + 100, + 322, + 109 + ], + "score": 0.69, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 97, + 408, + 113 + ], + "score": 1.0, + "content": "of policy Q-function", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 109, + 329, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 109, + 136, + 122 + ], + "score": 1.0, + "content": "Input:", + "type": "text" + }, + { + "bbox": [ + 137, + 110, + 189, + 121 + ], + "score": 0.93, + "content": "\\mathcal { D } , S , A , \\gamma , \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 109, + 245, + 122 + ], + "score": 1.0, + "content": ", learning rate", + "type": "text" + }, + { + "bbox": [ + 245, + 112, + 252, + 121 + ], + "score": 0.76, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 109, + 318, + 122 + ], + "score": 1.0, + "content": ", mini-batch size", + "type": "text" + }, + { + "bbox": [ + 319, + 110, + 325, + 120 + ], + "score": 0.51, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 109, + 329, + 122 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 119, + 489, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 144, + 133 + ], + "score": 1.0, + "content": "Initialise", + "type": "text" + }, + { + "bbox": [ + 144, + 122, + 161, + 132 + ], + "score": 0.87, + "content": "\\phi , \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 119, + 168, + 133 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 243, + 123, + 252, + 132 + ], + "score": 0.38, + "content": "\\triangleright", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 120, + 465, + 134 + ], + "score": 1.0, + "content": "Can concatenate into single vector", + "type": "text" + }, + { + "bbox": [ + 465, + 120, + 489, + 133 + ], + "score": 0.85, + "content": "( \\phi , \\theta )", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 131, + 204, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 204, + 144 + ], + "score": 1.0, + "content": "while not converged do", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 120, + 142, + 221, + 155 + ], + "spans": [ + { + "bbox": [ + 120, + 142, + 154, + 155 + ], + "score": 1.0, + "content": "Sample", + "type": "text" + }, + { + "bbox": [ + 154, + 143, + 181, + 154 + ], + "score": 0.89, + "content": "\\mathcal { D } _ { m i n i }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 142, + 204, + 155 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 204, + 143, + 214, + 153 + ], + "score": 0.73, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 142, + 221, + 155 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 121, + 153, + 490, + 167 + ], + "spans": [ + { + "bbox": [ + 121, + 154, + 263, + 166 + ], + "score": 0.8, + "content": "\\begin{array} { r } { \\mathcal { F } ( \\phi , \\theta , \\mathcal { D } ) = \\mathbb { E } [ \\frac { n } { b } \\mathcal { F } ( \\phi , \\theta , \\mathcal { D } _ { m i n i } ) ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 153, + 269, + 167 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 344, + 153, + 490, + 166 + ], + "score": 1.0, + "content": ". MC estimate total loss", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 120, + 165, + 489, + 179 + ], + "spans": [ + { + "bbox": [ + 120, + 167, + 273, + 178 + ], + "score": 0.84, + "content": "( \\phi ^ { \\prime } , \\theta ^ { \\prime } ) ( \\phi , \\theta ) + \\eta \\nabla _ { \\phi , \\theta } \\mathcal { F } ( \\phi , \\theta , \\mathcal { D } )", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 165, + 279, + 179 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 352, + 166, + 471, + 178 + ], + "score": 1.0, + "content": ". Gradient step for", + "type": "text" + }, + { + "bbox": [ + 472, + 166, + 489, + 178 + ], + "score": 0.87, + "content": "\\phi , \\theta", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 123, + 177, + 175, + 189 + ], + "spans": [ + { + "bbox": [ + 123, + 177, + 175, + 189 + ], + "score": 0.3, + "content": "\\phi , \\theta \\phi ^ { \\prime } , \\theta ^ { \\prime }", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 125, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 125, + 199 + ], + "score": 1.0, + "content": "end", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 160, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 143, + 209 + ], + "score": 1.0, + "content": "Return:", + "type": "text" + }, + { + "bbox": [ + 143, + 199, + 160, + 210 + ], + "score": 0.41, + "content": "\\phi , \\theta", + "type": "inline_equation" + } + ], + "index": 10 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 107, + 240, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 106, + 241, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 129, + 253 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 129, + 241, + 142, + 252 + ], + "score": 0.88, + "content": "Q _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 241, + 160, + 253 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 160, + 242, + 172, + 253 + ], + "score": 0.85, + "content": "q _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 241, + 505, + 253 + ], + "score": 1.0, + "content": "represent arbitrary function approximators. So far we have presented both as neural", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "networks, but this does not have to be the case. Of course the advantage of them is their flexibility", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 262, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 505, + 276 + ], + "score": 1.0, + "content": "and ease of training but they are still inherently black box. It is then perfectly possible to swap in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 273, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 287 + ], + "score": 1.0, + "content": "any particular function approximator if the task requires it, using simple linear models for example", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "score": 1.0, + "content": "may slightly hurt performance but allow for more insight. Despite the specific focus on infinite", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "score": 1.0, + "content": "state-spaces, AVRIL can still even be applied in the tabular setting by simply representing the policy", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 307, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 318 + ], + "score": 1.0, + "content": "and variational distribution with multi-dimensional tensors. Having settled on their forms, equation", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 318, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 353, + 329 + ], + "score": 1.0, + "content": "(11) is calculated simply and the joint gradient with respect to", + "type": "text" + }, + { + "bbox": [ + 353, + 318, + 360, + 327 + ], + "score": 0.77, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 318, + 377, + 329 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 378, + 318, + 385, + 329 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 318, + 505, + 329 + ], + "score": 1.0, + "content": "is straight-forwardly returned", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 329, + 460, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 460, + 341 + ], + "score": 1.0, + "content": "using any standard auto-diff package. The whole process is summarised in Algorithm 1.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 505, + 412 + ], + "lines": [ + { + "bbox": [ + 106, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 468, + 358 + ], + "score": 1.0, + "content": "We can now see how AVRIL does not suffer the issues outlined in section 2.1. Our form of", + "type": "text" + }, + { + "bbox": [ + 469, + 345, + 495, + 357 + ], + "score": 0.93, + "content": "q _ { \\phi } ( R )", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 356, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 505, + 368 + ], + "score": 1.0, + "content": "flexible and easily accommodates a non-linear form of the reward given a neural architecture - this", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 367, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 236, + 379 + ], + "score": 1.0, + "content": "also removes any restriction on", + "type": "text" + }, + { + "bbox": [ + 236, + 368, + 244, + 377 + ], + "score": 0.72, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 367, + 506, + 379 + ], + "score": 1.0, + "content": ", or at least allows for any state space that is commonly tackled", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 377, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 506, + 391 + ], + "score": 1.0, + "content": "within the IL/RL literature. Additionally we have a single objective for which all parameters are", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "maximised simultaneously - there are no inner-loops, costly or otherwise, meaning training is faster", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 399, + 496, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 496, + 413 + ], + "score": 1.0, + "content": "than the MCMC methods by a factor equal roughly to the number of samples they would require.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 429, + 376, + 549 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 377, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 377, + 442 + ], + "score": 1.0, + "content": "The generative model view. Ultimately a policy represents a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 439, + 377, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 377, + 451 + ], + "score": 1.0, + "content": "generative model for the behavioural data we see. Ho & Ermon", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 451, + 376, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 376, + 462 + ], + "score": 1.0, + "content": "(2016) explicitly make use of this fact by casting the problem in the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 461, + 376, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 376, + 473 + ], + "score": 1.0, + "content": "GAN framework (Goodfellow et al., 2014). Our method is more", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 472, + 376, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 376, + 484 + ], + "score": 1.0, + "content": "analogous to a VAE (Kingma & Welling, 2013), though not ex-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 484, + 376, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 376, + 496 + ], + "score": 1.0, + "content": "actly, where given the graphical model in figure 2 the reward can", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 494, + 376, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 376, + 507 + ], + "score": 1.0, + "content": "be seen as a latent representation of the policy. Our approach takes", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 505, + 376, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 376, + 518 + ], + "score": 1.0, + "content": "the seen data and amortises the inference, encoding over the state", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 516, + 376, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 376, + 529 + ], + "score": 1.0, + "content": "space. The policy does not act as a decoder in precisely taking any", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 527, + 377, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 377, + 540 + ], + "score": 1.0, + "content": "given encoded reward and outputting a policy, but it does take the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 538, + 376, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 376, + 550 + ], + "score": 1.0, + "content": "whole reward posterior and translate it into actions and therefore", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31 + }, + { + "type": "image", + "bbox": [ + 387, + 431, + 498, + 507 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 387, + 431, + 498, + 507 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 387, + 431, + 498, + 507 + ], + "spans": [ + { + "bbox": [ + 387, + 431, + 498, + 507 + ], + "score": 0.96, + "type": "image", + "image_path": "787d6d634246cb213461ef2627f55b1feb1315b21e4be42cc9a37cfd4f67f240.jpg" + } + ] + } + ], + "index": 37.5, + "virtual_lines": [ + { + "bbox": [ + 387, + 431, + 498, + 469.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 387, + 469.0, + 498, + 507.0 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 384, + 520, + 504, + 542 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 383, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 383, + 519, + 505, + 532 + ], + "score": 1.0, + "content": "Figure 2: Graphical model", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 383, + 531, + 456, + 543 + ], + "spans": [ + { + "bbox": [ + 383, + 531, + 456, + 543 + ], + "score": 1.0, + "content": "for Bayesian IRL", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 106, + 550, + 503, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "score": 1.0, + "content": "behaviour. This approach has its advantages, in both meaningful interpretation of the latent reward", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "(which is non-existent in adversarial methods), and that we forgo the practical difficulties of alter-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "nating min-max optimisation (Kodali et al., 2017) while maintaining a generative view of the policy.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 106, + 600, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "Temporal consistency through reward regularisation. Considering only the first term of (11)", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 491, + 624 + ], + "score": 1.0, + "content": "yields the standard behavioural cloning setup (where the logits output can be interpreted as the", + "type": "text" + }, + { + "bbox": [ + 491, + 612, + 500, + 622 + ], + "score": 0.8, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 610, + 505, + 624 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "values) as it removes the reward from the equation and just focuses on matching actions to states.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "AVRIL can then be seen as a policy-learning method regularised by the need for the implied reward", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "to be consistent. Note that this does not induce any necessary bias since the logits normally contain", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "an extra degree of freedom allowing them to arbitrarily shift by some scale factor. This factor is", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 666, + 504, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 463, + 678 + ], + "score": 1.0, + "content": "now explicitly constrained by giving the logits additional meaning in that they represent", + "type": "text" + }, + { + "bbox": [ + 464, + 666, + 473, + 677 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 666, + 504, + 678 + ], + "score": 1.0, + "content": "-values.", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "This places great importance on the KL term, since every parameterisation of a policy will have an", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 104, + 686, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 104, + 686, + 505, + 701 + ], + "score": 1.0, + "content": "associated implied reward, the KL regularises these to be not so far from the prior and preventing", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "the reward from overfitting to the policy and becoming pointless. It also is able to double as a", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "regularising term in a similar manor to previous reward-regularisation methods (Piot et al., 2014;", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 721, + 484, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 484, + 733 + ], + "score": 1.0, + "content": "Reddy et al., 2019) depending on the chosen prior, encouraging the reward to be close to zero:", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 49.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 105, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 105, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "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": "title", + "bbox": [ + 109, + 85, + 412, + 97 + ], + "lines": [ + { + "bbox": [ + 107, + 83, + 414, + 100 + ], + "spans": [ + { + "bbox": [ + 107, + 83, + 414, + 100 + ], + "score": 1.0, + "content": "Algorithm 1: Approximate Variational Reward Imitation Learning (AVRIL)", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "list", + "bbox": [ + 106, + 99, + 494, + 210 + ], + "lines": [ + { + "bbox": [ + 105, + 97, + 408, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 186, + 113 + ], + "score": 1.0, + "content": "Result: Parameters", + "type": "text" + }, + { + "bbox": [ + 187, + 100, + 194, + 110 + ], + "score": 0.82, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 97, + 316, + 113 + ], + "score": 1.0, + "content": "of variational distribution and", + "type": "text" + }, + { + "bbox": [ + 316, + 100, + 322, + 109 + ], + "score": 0.69, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 97, + 408, + 113 + ], + "score": 1.0, + "content": "of policy Q-function", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 109, + 329, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 109, + 136, + 122 + ], + "score": 1.0, + "content": "Input:", + "type": "text" + }, + { + "bbox": [ + 137, + 110, + 189, + 121 + ], + "score": 0.93, + "content": "\\mathcal { D } , S , A , \\gamma , \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 109, + 245, + 122 + ], + "score": 1.0, + "content": ", learning rate", + "type": "text" + }, + { + "bbox": [ + 245, + 112, + 252, + 121 + ], + "score": 0.76, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 109, + 318, + 122 + ], + "score": 1.0, + "content": ", mini-batch size", + "type": "text" + }, + { + "bbox": [ + 319, + 110, + 325, + 120 + ], + "score": 0.51, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 109, + 329, + 122 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 119, + 489, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 144, + 133 + ], + "score": 1.0, + "content": "Initialise", + "type": "text" + }, + { + "bbox": [ + 144, + 122, + 161, + 132 + ], + "score": 0.87, + "content": "\\phi , \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 119, + 168, + 133 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 243, + 123, + 252, + 132 + ], + "score": 0.38, + "content": "\\triangleright", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 120, + 465, + 134 + ], + "score": 1.0, + "content": "Can concatenate into single vector", + "type": "text" + }, + { + "bbox": [ + 465, + 120, + 489, + 133 + ], + "score": 0.85, + "content": "( \\phi , \\theta )", + "type": "inline_equation" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 131, + 204, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 204, + 144 + ], + "score": 1.0, + "content": "while not converged do", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 120, + 142, + 221, + 155 + ], + "spans": [ + { + "bbox": [ + 120, + 142, + 154, + 155 + ], + "score": 1.0, + "content": "Sample", + "type": "text" + }, + { + "bbox": [ + 154, + 143, + 181, + 154 + ], + "score": 0.89, + "content": "\\mathcal { D } _ { m i n i }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 142, + 204, + 155 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 204, + 143, + 214, + 153 + ], + "score": 0.73, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 142, + 221, + 155 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 121, + 153, + 490, + 167 + ], + "spans": [ + { + "bbox": [ + 121, + 154, + 263, + 166 + ], + "score": 0.8, + "content": "\\begin{array} { r } { \\mathcal { F } ( \\phi , \\theta , \\mathcal { D } ) = \\mathbb { E } [ \\frac { n } { b } \\mathcal { F } ( \\phi , \\theta , \\mathcal { D } _ { m i n i } ) ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 153, + 269, + 167 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 344, + 153, + 490, + 166 + ], + "score": 1.0, + "content": ". MC estimate total loss", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 120, + 165, + 489, + 179 + ], + "spans": [ + { + "bbox": [ + 120, + 167, + 273, + 178 + ], + "score": 0.84, + "content": "( \\phi ^ { \\prime } , \\theta ^ { \\prime } ) ( \\phi , \\theta ) + \\eta \\nabla _ { \\phi , \\theta } \\mathcal { F } ( \\phi , \\theta , \\mathcal { D } )", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 165, + 279, + 179 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 352, + 166, + 471, + 178 + ], + "score": 1.0, + "content": ". Gradient step for", + "type": "text" + }, + { + "bbox": [ + 472, + 166, + 489, + 178 + ], + "score": 0.87, + "content": "\\phi , \\theta", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 123, + 177, + 175, + 189 + ], + "spans": [ + { + "bbox": [ + 123, + 177, + 175, + 189 + ], + "score": 0.3, + "content": "\\phi , \\theta \\phi ^ { \\prime } , \\theta ^ { \\prime }", + "type": "inline_equation" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 187, + 125, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 125, + 199 + ], + "score": 1.0, + "content": "end", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 198, + 160, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 143, + 209 + ], + "score": 1.0, + "content": "Return:", + "type": "text" + }, + { + "bbox": [ + 143, + 199, + 160, + 210 + ], + "score": 0.41, + "content": "\\phi , \\theta", + "type": "inline_equation" + } + ], + "index": 10, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 97, + 490, + 210 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 240, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 106, + 241, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 129, + 253 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 129, + 241, + 142, + 252 + ], + "score": 0.88, + "content": "Q _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 241, + 160, + 253 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 160, + 242, + 172, + 253 + ], + "score": 0.85, + "content": "q _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 241, + 505, + 253 + ], + "score": 1.0, + "content": "represent arbitrary function approximators. So far we have presented both as neural", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "networks, but this does not have to be the case. Of course the advantage of them is their flexibility", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 262, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 505, + 276 + ], + "score": 1.0, + "content": "and ease of training but they are still inherently black box. It is then perfectly possible to swap in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 273, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 287 + ], + "score": 1.0, + "content": "any particular function approximator if the task requires it, using simple linear models for example", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "score": 1.0, + "content": "may slightly hurt performance but allow for more insight. Despite the specific focus on infinite", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "score": 1.0, + "content": "state-spaces, AVRIL can still even be applied in the tabular setting by simply representing the policy", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 307, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 318 + ], + "score": 1.0, + "content": "and variational distribution with multi-dimensional tensors. Having settled on their forms, equation", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 318, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 353, + 329 + ], + "score": 1.0, + "content": "(11) is calculated simply and the joint gradient with respect to", + "type": "text" + }, + { + "bbox": [ + 353, + 318, + 360, + 327 + ], + "score": 0.77, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 318, + 377, + 329 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 378, + 318, + 385, + 329 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 318, + 505, + 329 + ], + "score": 1.0, + "content": "is straight-forwardly returned", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 329, + 460, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 460, + 341 + ], + "score": 1.0, + "content": "using any standard auto-diff package. The whole process is summarised in Algorithm 1.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 241, + 506, + 341 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 505, + 412 + ], + "lines": [ + { + "bbox": [ + 106, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 468, + 358 + ], + "score": 1.0, + "content": "We can now see how AVRIL does not suffer the issues outlined in section 2.1. Our form of", + "type": "text" + }, + { + "bbox": [ + 469, + 345, + 495, + 357 + ], + "score": 0.93, + "content": "q _ { \\phi } ( R )", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 356, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 505, + 368 + ], + "score": 1.0, + "content": "flexible and easily accommodates a non-linear form of the reward given a neural architecture - this", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 367, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 236, + 379 + ], + "score": 1.0, + "content": "also removes any restriction on", + "type": "text" + }, + { + "bbox": [ + 236, + 368, + 244, + 377 + ], + "score": 0.72, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 367, + 506, + 379 + ], + "score": 1.0, + "content": ", or at least allows for any state space that is commonly tackled", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 377, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 506, + 391 + ], + "score": 1.0, + "content": "within the IL/RL literature. Additionally we have a single objective for which all parameters are", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "maximised simultaneously - there are no inner-loops, costly or otherwise, meaning training is faster", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 399, + 496, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 496, + 413 + ], + "score": 1.0, + "content": "than the MCMC methods by a factor equal roughly to the number of samples they would require.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 345, + 506, + 413 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 429, + 376, + 549 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 377, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 377, + 442 + ], + "score": 1.0, + "content": "The generative model view. Ultimately a policy represents a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 439, + 377, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 377, + 451 + ], + "score": 1.0, + "content": "generative model for the behavioural data we see. Ho & Ermon", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 451, + 376, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 376, + 462 + ], + "score": 1.0, + "content": "(2016) explicitly make use of this fact by casting the problem in the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 461, + 376, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 376, + 473 + ], + "score": 1.0, + "content": "GAN framework (Goodfellow et al., 2014). Our method is more", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 472, + 376, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 376, + 484 + ], + "score": 1.0, + "content": "analogous to a VAE (Kingma & Welling, 2013), though not ex-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 484, + 376, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 376, + 496 + ], + "score": 1.0, + "content": "actly, where given the graphical model in figure 2 the reward can", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 494, + 376, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 376, + 507 + ], + "score": 1.0, + "content": "be seen as a latent representation of the policy. Our approach takes", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 505, + 376, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 376, + 518 + ], + "score": 1.0, + "content": "the seen data and amortises the inference, encoding over the state", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 516, + 376, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 376, + 529 + ], + "score": 1.0, + "content": "space. The policy does not act as a decoder in precisely taking any", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 527, + 377, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 377, + 540 + ], + "score": 1.0, + "content": "given encoded reward and outputting a policy, but it does take the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 538, + 376, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 376, + 550 + ], + "score": 1.0, + "content": "whole reward posterior and translate it into actions and therefore", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "score": 1.0, + "content": "behaviour. This approach has its advantages, in both meaningful interpretation of the latent reward", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "(which is non-existent in adversarial methods), and that we forgo the practical difficulties of alter-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "nating min-max optimisation (Kodali et al., 2017) while maintaining a generative view of the policy.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 428, + 377, + 550 + ] + }, + { + "type": "image", + "bbox": [ + 387, + 431, + 498, + 507 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 387, + 431, + 498, + 507 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 387, + 431, + 498, + 507 + ], + "spans": [ + { + "bbox": [ + 387, + 431, + 498, + 507 + ], + "score": 0.96, + "type": "image", + "image_path": "787d6d634246cb213461ef2627f55b1feb1315b21e4be42cc9a37cfd4f67f240.jpg" + } + ] + } + ], + "index": 37.5, + "virtual_lines": [ + { + "bbox": [ + 387, + 431, + 498, + 469.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 387, + 469.0, + 498, + 507.0 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 384, + 520, + 504, + 542 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 383, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 383, + 519, + 505, + 532 + ], + "score": 1.0, + "content": "Figure 2: Graphical model", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 383, + 531, + 456, + 543 + ], + "spans": [ + { + "bbox": [ + 383, + 531, + 456, + 543 + ], + "score": 1.0, + "content": "for Bayesian IRL", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 106, + 550, + 503, + 583 + ], + "lines": [], + "index": 42, + "bbox_fs": [ + 105, + 549, + 506, + 585 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 600, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "Temporal consistency through reward regularisation. Considering only the first term of (11)", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 491, + 624 + ], + "score": 1.0, + "content": "yields the standard behavioural cloning setup (where the logits output can be interpreted as the", + "type": "text" + }, + { + "bbox": [ + 491, + 612, + 500, + 622 + ], + "score": 0.8, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 610, + 505, + 624 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "values) as it removes the reward from the equation and just focuses on matching actions to states.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "AVRIL can then be seen as a policy-learning method regularised by the need for the implied reward", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "to be consistent. Note that this does not induce any necessary bias since the logits normally contain", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "an extra degree of freedom allowing them to arbitrarily shift by some scale factor. This factor is", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 666, + 504, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 463, + 678 + ], + "score": 1.0, + "content": "now explicitly constrained by giving the logits additional meaning in that they represent", + "type": "text" + }, + { + "bbox": [ + 464, + 666, + 473, + 677 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 666, + 504, + 678 + ], + "score": 1.0, + "content": "-values.", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "This places great importance on the KL term, since every parameterisation of a policy will have an", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 104, + 686, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 104, + 686, + 505, + 701 + ], + "score": 1.0, + "content": "associated implied reward, the KL regularises these to be not so far from the prior and preventing", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "the reward from overfitting to the policy and becoming pointless. It also is able to double as a", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "regularising term in a similar manor to previous reward-regularisation methods (Piot et al., 2014;", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 721, + 484, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 484, + 733 + ], + "score": 1.0, + "content": "Reddy et al., 2019) depending on the chosen prior, encouraging the reward to be close to zero:", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 49.5, + "bbox_fs": [ + 104, + 600, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 506, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Proposition 1 (Reward Regularisation) Assume that the constraint in (10) is satisfied in that", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 91, + 504, + 109 + ], + "spans": [ + { + "bbox": [ + 107, + 93, + 286, + 106 + ], + "score": 0.91, + "content": "\\begin{array} { r } { { \\mathbb E } _ { q _ { \\phi } } [ R ( s , a ) ] = { \\mathbb E } _ { \\pi , T } [ Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 91, + 425, + 109 + ], + "score": 1.0, + "content": ", then given a standard normal prior", + "type": "text" + }, + { + "bbox": [ + 425, + 93, + 504, + 106 + ], + "score": 0.93, + "content": "p ( R ) = \\mathcal { N } ( R ; 0 , 1 )", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 380, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 121, + 117 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 122, + 106, + 136, + 115 + ], + "score": 0.25, + "content": "\\mathrm { K L }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 105, + 380, + 117 + ], + "score": 1.0, + "content": "divergence yields a sparsity regulator on the implied reward:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 163, + 121, + 448, + 153 + ], + "lines": [ + { + "bbox": [ + 163, + 121, + 448, + 153 + ], + "spans": [ + { + "bbox": [ + 163, + 121, + 448, + 153 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { r e g } = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal { D } } \\frac { 1 } { 2 } \\big ( Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) \\big ) ^ { 2 } + g ( \\mathrm { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) .", + "type": "interline_equation", + "image_path": "8c1fb4ca7a6b5f8b5fda4b490f7a45c3bb86bcc967bc98e1f7e8f7e2af6b9568.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 163, + 121, + 448, + 131.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 163, + 131.66666666666666, + 448, + 142.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 163, + 142.33333333333331, + 448, + 152.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 159, + 505, + 183 + ], + "lines": [ + { + "bbox": [ + 106, + 158, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 505, + 172 + ], + "score": 1.0, + "content": "Proof. Appendix. \u0003 This follows immediately from the fact that the divergence evaluates as", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 169, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 124, + 183 + ], + "score": 1.0, + "content": "DK", + "type": "text" + }, + { + "bbox": [ + 125, + 169, + 505, + 184 + ], + "score": 0.63, + "content": "\\begin{array} { r } { \\overset { \\vartriangle } { \\boldsymbol { \\mathrm { \\iota } } } \\big ( q _ { \\phi } ( \\hat { R } ( s , a ) ) | | p ( R ( s , a ) ) \\big ) = \\frac { 1 } { 2 } ( - \\log ( \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) - 1 + \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] + \\mathbb { E } _ { q _ { \\phi } } [ R ( s , a ) ] ^ { 2 } ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 186, + 505, + 297 + ], + "lines": [ + { + "bbox": [ + 106, + 186, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 506, + 200 + ], + "score": 1.0, + "content": "This then allows AVRIL to inherit the benefit of these methods while also explicitly learning a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "reward that can be queried at any point. We are also allowed the choice of whether it is state-only", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 209, + 504, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 504, + 221 + ], + "score": 1.0, + "content": "or state-action. This has so far been arbitrary, but it is important to consider that a state-only reward", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 491, + 232 + ], + "score": 1.0, + "content": "is a necessary and sufficient condition for a reward that is fully disentangled from the dynamics", + "type": "text" + }, + { + "bbox": [ + 492, + 220, + 505, + 230 + ], + "score": 0.45, + "content": "\\operatorname { F u }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "score": 1.0, + "content": "et al., 2018). Thus by learning such a reward and given the final term of (11) that directly connects", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 242, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 255 + ], + "score": 1.0, + "content": "one-step rewards in terms of the policy, this forces the policy (not the reward) to account for the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "dynamics of the system ensuring temporal consistency in a way that BC for example simply can’t.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "score": 1.0, + "content": "Alternatively using a state-action reward means that inevitably some of the temporal information", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 274, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 287 + ], + "score": 1.0, + "content": "leaks out of the policy and into the reward - ultimately to the detriment of the policy but potentially", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 285, + 471, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 471, + 298 + ], + "score": 1.0, + "content": "allowing for a more interpretable (or useful) form of reward depending on the task at hand.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 108, + 314, + 200, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 201, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 201, + 328 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 339, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 106, + 340, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 505, + 352 + ], + "score": 1.0, + "content": "Experimental setup. We are primarily concerned with the case of medical environments, which", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 349, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 364 + ], + "score": 1.0, + "content": "is exactly where the issue of learning without interaction is most crucial, you just cannot let a policy", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "sample treatments for a patient to try to learn more about the dynamics. It is also where a level", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 372, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 505, + 385 + ], + "score": 1.0, + "content": "of interpretability in what has been learnt is important, since the consequence of actions are poten-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "tially very impactful on human lives. As such we focus our evaluation on learning on a real-life", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "healthcare problem, with demonstrations taken from the Medical Information Mart for Intensive", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 405, + 504, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 504, + 417 + ], + "score": 1.0, + "content": "Care (MIMIC-III) dataset (Johnson et al., 2016). The data contains trajectories of patients in inten-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "sive care recording their condition and theraputic interventions at one day intervals. We evaluate the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 427, + 504, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 504, + 440 + ], + "score": 1.0, + "content": "ability of the methods to learn a medical policy in both the two and four action setting - specifically", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "score": 1.0, + "content": "whether the patient should be placed on a ventilator, and the decision for ventilation in combination", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 448, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 462 + ], + "score": 1.0, + "content": "with antibiotic treatment. These represent the two most common, and important, clinical interven-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 460, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 505, + 472 + ], + "score": 1.0, + "content": "tions recorded in the data. Without a recorded notion of reward, performance is measured with", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 471, + 479, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 479, + 483 + ], + "score": 1.0, + "content": "respect to action matching against a held out test set of demonstrations with cross-validation.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 488, + 505, + 608 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "Alongside the healthcare data and for the purposes of demonstrating generalisability, we provide", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "additional results on standard environments of varying complexity in the RL literature, the stan-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 509, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 505, + 523 + ], + "score": 1.0, + "content": "dard control problems of: CartPole, a classic control environment aiming to swing up and balance", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 104, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "a pendulum; Acrobot, which aims to maintain a sequence of joints above a given height; and Lu-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 530, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 505, + 545 + ], + "score": 1.0, + "content": "narLander, guiding a landing module to a safe touchdown on the moon surface. In these settings", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 543, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 555 + ], + "score": 1.0, + "content": "given sufficient demonstration data all benchmarks are very much capable of reaching demonstrator", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 554, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 566 + ], + "score": 1.0, + "content": "level performance, so we test the algorithms on their ability to handle sample complexity in the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "low data regime by testing their performance when given access to a select number of trajectories", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 575, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 505, + 589 + ], + "score": 1.0, + "content": "which we adjust, replicating the setup in Jarrett et al. (2020). With access to a simulation through", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 586, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 505, + 600 + ], + "score": 1.0, + "content": "the OpenAI gym (Brockman et al., 2016), we measure performance by deploying the learnt policies", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 597, + 343, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 343, + 610 + ], + "score": 1.0, + "content": "live and calculating their average return over 300 episodes.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 621, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 634 + ], + "score": 1.0, + "content": "Benchmarks. We test our method (AVRIL) against a number of benchmarks from the offline", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "IRL/IL setting: Deep Successor Feature Network (DSFN) (Lee et al., 2019), an offline adapta-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "tion of max-margin IRL that generalises past the linear methods using a deep network with least-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 654, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 669 + ], + "score": 1.0, + "content": "squares temporal-difference learning, the only other method that produces both a reward and policy;", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "Reward-regularized Classification for Apprenticeship Learning (RCAL) (Piot et al., 2014), where", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "an explicit regulariser on the sparsity of the implied reward is introduced in order to account for", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "the dynamics information; ValueDICE (VDICE) (Kostrikov et al., 2019), an adversarial imitation", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "learning, adapted for the offline setting by removing the replay regularisation; Energy-based Distri-", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "bution Matching (EDM) (Jarrett et al., 2020), the state-of-the-art in offline imitation learning; and", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "finally the standard example of Behavioural Cloning (BC). To provide evidence that we are indeed", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 47.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 506, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Proposition 1 (Reward Regularisation) Assume that the constraint in (10) is satisfied in that", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 91, + 504, + 109 + ], + "spans": [ + { + "bbox": [ + 107, + 93, + 286, + 106 + ], + "score": 0.91, + "content": "\\begin{array} { r } { { \\mathbb E } _ { q _ { \\phi } } [ R ( s , a ) ] = { \\mathbb E } _ { \\pi , T } [ Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 91, + 425, + 109 + ], + "score": 1.0, + "content": ", then given a standard normal prior", + "type": "text" + }, + { + "bbox": [ + 425, + 93, + 504, + 106 + ], + "score": 0.93, + "content": "p ( R ) = \\mathcal { N } ( R ; 0 , 1 )", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 380, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 121, + 117 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 122, + 106, + 136, + 115 + ], + "score": 0.25, + "content": "\\mathrm { K L }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 105, + 380, + 117 + ], + "score": 1.0, + "content": "divergence yields a sparsity regulator on the implied reward:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 82, + 505, + 117 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 163, + 121, + 448, + 153 + ], + "lines": [ + { + "bbox": [ + 163, + 121, + 448, + 153 + ], + "spans": [ + { + "bbox": [ + 163, + 121, + 448, + 153 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { r e g } = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal { D } } \\frac { 1 } { 2 } \\big ( Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) \\big ) ^ { 2 } + g ( \\mathrm { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) .", + "type": "interline_equation", + "image_path": "8c1fb4ca7a6b5f8b5fda4b490f7a45c3bb86bcc967bc98e1f7e8f7e2af6b9568.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 163, + 121, + 448, + 131.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 163, + 131.66666666666666, + 448, + 142.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 163, + 142.33333333333331, + 448, + 152.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 159, + 505, + 183 + ], + "lines": [ + { + "bbox": [ + 106, + 158, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 505, + 172 + ], + "score": 1.0, + "content": "Proof. Appendix. \u0003 This follows immediately from the fact that the divergence evaluates as", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 169, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 124, + 183 + ], + "score": 1.0, + "content": "DK", + "type": "text" + }, + { + "bbox": [ + 125, + 169, + 505, + 184 + ], + "score": 0.63, + "content": "\\begin{array} { r } { \\overset { \\vartriangle } { \\boldsymbol { \\mathrm { \\iota } } } \\big ( q _ { \\phi } ( \\hat { R } ( s , a ) ) | | p ( R ( s , a ) ) \\big ) = \\frac { 1 } { 2 } ( - \\log ( \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) - 1 + \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] + \\mathbb { E } _ { q _ { \\phi } } [ R ( s , a ) ] ^ { 2 } ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 158, + 505, + 184 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 186, + 505, + 297 + ], + "lines": [ + { + "bbox": [ + 106, + 186, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 506, + 200 + ], + "score": 1.0, + "content": "This then allows AVRIL to inherit the benefit of these methods while also explicitly learning a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "reward that can be queried at any point. We are also allowed the choice of whether it is state-only", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 209, + 504, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 504, + 221 + ], + "score": 1.0, + "content": "or state-action. This has so far been arbitrary, but it is important to consider that a state-only reward", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 491, + 232 + ], + "score": 1.0, + "content": "is a necessary and sufficient condition for a reward that is fully disentangled from the dynamics", + "type": "text" + }, + { + "bbox": [ + 492, + 220, + 505, + 230 + ], + "score": 0.45, + "content": "\\operatorname { F u }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "score": 1.0, + "content": "et al., 2018). Thus by learning such a reward and given the final term of (11) that directly connects", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 242, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 255 + ], + "score": 1.0, + "content": "one-step rewards in terms of the policy, this forces the policy (not the reward) to account for the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "dynamics of the system ensuring temporal consistency in a way that BC for example simply can’t.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "score": 1.0, + "content": "Alternatively using a state-action reward means that inevitably some of the temporal information", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 274, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 287 + ], + "score": 1.0, + "content": "leaks out of the policy and into the reward - ultimately to the detriment of the policy but potentially", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 285, + 471, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 471, + 298 + ], + "score": 1.0, + "content": "allowing for a more interpretable (or useful) form of reward depending on the task at hand.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 186, + 506, + 298 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 314, + 200, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 201, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 201, + 328 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 339, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 106, + 340, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 505, + 352 + ], + "score": 1.0, + "content": "Experimental setup. We are primarily concerned with the case of medical environments, which", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 349, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 364 + ], + "score": 1.0, + "content": "is exactly where the issue of learning without interaction is most crucial, you just cannot let a policy", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "sample treatments for a patient to try to learn more about the dynamics. It is also where a level", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 372, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 505, + 385 + ], + "score": 1.0, + "content": "of interpretability in what has been learnt is important, since the consequence of actions are poten-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "tially very impactful on human lives. As such we focus our evaluation on learning on a real-life", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "healthcare problem, with demonstrations taken from the Medical Information Mart for Intensive", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 405, + 504, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 504, + 417 + ], + "score": 1.0, + "content": "Care (MIMIC-III) dataset (Johnson et al., 2016). The data contains trajectories of patients in inten-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "sive care recording their condition and theraputic interventions at one day intervals. We evaluate the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 427, + 504, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 504, + 440 + ], + "score": 1.0, + "content": "ability of the methods to learn a medical policy in both the two and four action setting - specifically", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "score": 1.0, + "content": "whether the patient should be placed on a ventilator, and the decision for ventilation in combination", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 448, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 462 + ], + "score": 1.0, + "content": "with antibiotic treatment. These represent the two most common, and important, clinical interven-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 460, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 505, + 472 + ], + "score": 1.0, + "content": "tions recorded in the data. Without a recorded notion of reward, performance is measured with", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 471, + 479, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 479, + 483 + ], + "score": 1.0, + "content": "respect to action matching against a held out test set of demonstrations with cross-validation.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 340, + 506, + 483 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 488, + 505, + 608 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "Alongside the healthcare data and for the purposes of demonstrating generalisability, we provide", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "additional results on standard environments of varying complexity in the RL literature, the stan-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 509, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 505, + 523 + ], + "score": 1.0, + "content": "dard control problems of: CartPole, a classic control environment aiming to swing up and balance", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 104, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "a pendulum; Acrobot, which aims to maintain a sequence of joints above a given height; and Lu-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 530, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 505, + 545 + ], + "score": 1.0, + "content": "narLander, guiding a landing module to a safe touchdown on the moon surface. In these settings", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 543, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 555 + ], + "score": 1.0, + "content": "given sufficient demonstration data all benchmarks are very much capable of reaching demonstrator", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 554, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 566 + ], + "score": 1.0, + "content": "level performance, so we test the algorithms on their ability to handle sample complexity in the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "low data regime by testing their performance when given access to a select number of trajectories", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 575, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 505, + 589 + ], + "score": 1.0, + "content": "which we adjust, replicating the setup in Jarrett et al. (2020). With access to a simulation through", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 586, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 505, + 600 + ], + "score": 1.0, + "content": "the OpenAI gym (Brockman et al., 2016), we measure performance by deploying the learnt policies", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 597, + 343, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 343, + 610 + ], + "score": 1.0, + "content": "live and calculating their average return over 300 episodes.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 37, + "bbox_fs": [ + 104, + 488, + 506, + 610 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 621, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 634 + ], + "score": 1.0, + "content": "Benchmarks. We test our method (AVRIL) against a number of benchmarks from the offline", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "IRL/IL setting: Deep Successor Feature Network (DSFN) (Lee et al., 2019), an offline adapta-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "tion of max-margin IRL that generalises past the linear methods using a deep network with least-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 654, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 669 + ], + "score": 1.0, + "content": "squares temporal-difference learning, the only other method that produces both a reward and policy;", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "Reward-regularized Classification for Apprenticeship Learning (RCAL) (Piot et al., 2014), where", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "an explicit regulariser on the sparsity of the implied reward is introduced in order to account for", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "the dynamics information; ValueDICE (VDICE) (Kostrikov et al., 2019), an adversarial imitation", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "learning, adapted for the offline setting by removing the replay regularisation; Energy-based Distri-", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "bution Matching (EDM) (Jarrett et al., 2020), the state-of-the-art in offline imitation learning; and", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "finally the standard example of Behavioural Cloning (BC). To provide evidence that we are indeed", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 399, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 411 + ], + "score": 1.0, + "content": "learning an appropriate reward we show an ablation of our method on the MIMIC data: we take the", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 410, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 389, + 422 + ], + "score": 1.0, + "content": "reward learnt by AVRIL and use it as the ‘true’ reward used to train a", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 390, + 411, + 399, + 421 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 399, + 410, + 506, + 422 + ], + "score": 1.0, + "content": "-network offline to learn a", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 421, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 433 + ], + "score": 1.0, + "content": "policy (A-RL). Note that we have not included previous BIRL methods for the reasons explained", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "in section 2.1, training a network just once in these environments takes in the order of minutes and", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "repeating this sequentially thousands of times is just not practical. For aid in comparison all methods", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "score": 1.0, + "content": "share the same network architecture of two hidden layers of 64 units with ELU activation functions", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "and are trained using Adam (Kingma & Ba, 2014) with learning rates individually tuned. Further", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 476, + 504, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 504, + 488 + ], + "score": 1.0, + "content": "details on experimental setup and the implementation of benchmarks can be found in the appendix.", + "type": "text", + "cross_page": true + } + ], + "index": 19 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 622, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 89, + 493, + 182 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 89, + 493, + 182 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 89, + 493, + 182 + ], + "spans": [ + { + "bbox": [ + 108, + 89, + 493, + 182 + ], + "score": 0.963, + "type": "image", + "image_path": "99c662ff38503bdc43e89701fae5833c8fdd14b9ef6e894424ecac8256a1baf1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 89, + 493, + 120.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 120.0, + 493, + 151.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 151.0, + 493, + 182.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 197, + 504, + 220 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "Figure 3: Control environments performance. We plot the average returns received by the poli-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 207, + 502, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 502, + 222 + ], + "score": 1.0, + "content": "cies when deployed live in the environment against the number of trajectories seen during training.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 107, + 275, + 504, + 388 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 228, + 505, + 272 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 228, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 506, + 241 + ], + "score": 1.0, + "content": "Table 1: Healthcare performance. Comparison of methods on the MIMIC-III dataset. Performance", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "score": 1.0, + "content": "of the policy is evaluated on the quality of action matching against a held out test set of demonstra-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 249, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 104, + 249, + 506, + 264 + ], + "score": 1.0, + "content": "tions. We report the accuracy (ACC), area under the receiving operator characteristic curve (AUC)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 261, + 249, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 249, + 274 + ], + "score": 1.0, + "content": "and average precision score (APS).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "table_body", + "bbox": [ + 107, + 275, + 504, + 388 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 275, + 504, + 388 + ], + "spans": [ + { + "bbox": [ + 107, + 275, + 504, + 388 + ], + "score": 0.984, + "html": "
VentilatorVentilator + Antibiotics
MetricACCAUCAPSACCAUCAPS
BC0.873 ± 0.0070.916 ± 0.0020.904±0.0030.700±0.0090.864 ± 0.0030.665 ± 0.009
VDICE0.879 ±0.0020.915 ± 0.0020.904±0.0030.710 ±0.0050.863 ±0.0020.675 ±0.004
RCAL0.870 ± 0.0120.916 ± 0.0030.904±0.0050.702 ±0.0080.865 ± 0.0040.669 ± 0.006
DSFN0.869 ± 0.0050.905 ± 0.0030.885 ±0.0010.683 ± 0.0070.856 ±0.0020.670 ± 0.004
EDM0.882 ± 0.0110.920±0.0020.909 ± 0.0030.716 ±0.0080.873±0.0020.682 ± 0.004
A-RL10.875±0.0100.904±0.0020.927±0.0020.718 ± 0.0100.864±0.0020.665±0.005
AVRIL0.891±0.002 0.917 ± 0.0010.940±0.0010.754± 0.001 0.884 ± 0.000 0.708 ± 0.002
", + "type": "table", + "image_path": "67e92acc9b38e72efd681d6f45c1970e9fcc5cfb81050ddb8eaaeab98d4fc5ca.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 107, + 275, + 504, + 312.6666666666667 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 107, + 312.6666666666667, + 504, + 350.33333333333337 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 107, + 350.33333333333337, + 504, + 388.00000000000006 + ], + "spans": [], + "index": 11 + } + ] + } + ], + "index": 8.25 + }, + { + "type": "text", + "bbox": [ + 106, + 398, + 505, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 411 + ], + "score": 1.0, + "content": "learning an appropriate reward we show an ablation of our method on the MIMIC data: we take the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 410, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 389, + 422 + ], + "score": 1.0, + "content": "reward learnt by AVRIL and use it as the ‘true’ reward used to train a", + "type": "text" + }, + { + "bbox": [ + 390, + 411, + 399, + 421 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 410, + 506, + 422 + ], + "score": 1.0, + "content": "-network offline to learn a", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 421, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 433 + ], + "score": 1.0, + "content": "policy (A-RL). Note that we have not included previous BIRL methods for the reasons explained", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "in section 2.1, training a network just once in these environments takes in the order of minutes and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "repeating this sequentially thousands of times is just not practical. For aid in comparison all methods", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "score": 1.0, + "content": "share the same network architecture of two hidden layers of 64 units with ELU activation functions", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "and are trained using Adam (Kingma & Ba, 2014) with learning rates individually tuned. Further", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 476, + 504, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 504, + 488 + ], + "score": 1.0, + "content": "details on experimental setup and the implementation of benchmarks can be found in the appendix.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 499, + 505, + 576 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "score": 1.0, + "content": "Evaluation. We see for all tasks AVRIL learns an appropriate policy that performs strongly across", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "the board, being competitive in all cases and in places beating out all of the other benchmarks. The", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 520, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 104, + 520, + 505, + 535 + ], + "score": 1.0, + "content": "results for our healthcare example are given in table 1, with AVRIL performing very strongly, having", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "score": 1.0, + "content": "the highest accuracy and precision score in both tasks. The results for the control environments are", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "shown in figure 3. AVRIL performs competitively and is easily capable of reaching demonstrator", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "level performance in the samples given for these tasks, though not always as quickly as some of the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 565, + 226, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 226, + 577 + ], + "score": 1.0, + "content": "dedicated offline IL methods.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 602 + ], + "score": 1.0, + "content": "Reward insight. Remember though that task performance is not exactly our goal. Rather the key", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 600, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 614 + ], + "score": 1.0, + "content": "aspect of AVRIL is the inference over the unseen reward in order to gain information about the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 610, + 506, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 625 + ], + "score": 1.0, + "content": "preferences of the agent that other black-box policy methods can’t. In the previous experiments our", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 621, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 635 + ], + "score": 1.0, + "content": "reward encoder was a neural network for maximum flexibility and we can see from the performance", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "of A-RL we learn a representation of the reward that can be used to relearn in the environment", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "very effectively, albeit not quite to the same standard of AVRIL. Note this also reflects an original", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "motivation for AVRIL in that offpolicy RL on top of a learnt reward suffers. In figure 4 we explore", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "how to gain more insight from the learnt reward using different parameterisations of the reward. The", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "top graph shows how a learnt state-action reward changes as a function of blood-oxygen level for an", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 686, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 702 + ], + "score": 1.0, + "content": "otherwise healthy patient, and it can be seen that as it drops below average the reward for ventilating", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "the patient becomes much higher (note this is average for patients in the ICU, not across the general", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "population). While this is intuitive we still have to query a neural network repeatedly over the state", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "space to gain insight, the bottom graph of figure 4 presents then a simpler but perhaps more useful", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 33 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 89, + 493, + 182 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 89, + 493, + 182 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 89, + 493, + 182 + ], + "spans": [ + { + "bbox": [ + 108, + 89, + 493, + 182 + ], + "score": 0.963, + "type": "image", + "image_path": "99c662ff38503bdc43e89701fae5833c8fdd14b9ef6e894424ecac8256a1baf1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 89, + 493, + 120.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 120.0, + 493, + 151.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 151.0, + 493, + 182.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 197, + 504, + 220 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "Figure 3: Control environments performance. We plot the average returns received by the poli-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 207, + 502, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 502, + 222 + ], + "score": 1.0, + "content": "cies when deployed live in the environment against the number of trajectories seen during training.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 107, + 275, + 504, + 388 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 228, + 505, + 272 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 228, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 506, + 241 + ], + "score": 1.0, + "content": "Table 1: Healthcare performance. Comparison of methods on the MIMIC-III dataset. Performance", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "score": 1.0, + "content": "of the policy is evaluated on the quality of action matching against a held out test set of demonstra-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 249, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 104, + 249, + 506, + 264 + ], + "score": 1.0, + "content": "tions. We report the accuracy (ACC), area under the receiving operator characteristic curve (AUC)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 261, + 249, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 249, + 274 + ], + "score": 1.0, + "content": "and average precision score (APS).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "table_body", + "bbox": [ + 107, + 275, + 504, + 388 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 275, + 504, + 388 + ], + "spans": [ + { + "bbox": [ + 107, + 275, + 504, + 388 + ], + "score": 0.984, + "html": "
VentilatorVentilator + Antibiotics
MetricACCAUCAPSACCAUCAPS
BC0.873 ± 0.0070.916 ± 0.0020.904±0.0030.700±0.0090.864 ± 0.0030.665 ± 0.009
VDICE0.879 ±0.0020.915 ± 0.0020.904±0.0030.710 ±0.0050.863 ±0.0020.675 ±0.004
RCAL0.870 ± 0.0120.916 ± 0.0030.904±0.0050.702 ±0.0080.865 ± 0.0040.669 ± 0.006
DSFN0.869 ± 0.0050.905 ± 0.0030.885 ±0.0010.683 ± 0.0070.856 ±0.0020.670 ± 0.004
EDM0.882 ± 0.0110.920±0.0020.909 ± 0.0030.716 ±0.0080.873±0.0020.682 ± 0.004
A-RL10.875±0.0100.904±0.0020.927±0.0020.718 ± 0.0100.864±0.0020.665±0.005
AVRIL0.891±0.002 0.917 ± 0.0010.940±0.0010.754± 0.001 0.884 ± 0.000 0.708 ± 0.002
", + "type": "table", + "image_path": "67e92acc9b38e72efd681d6f45c1970e9fcc5cfb81050ddb8eaaeab98d4fc5ca.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 107, + 275, + 504, + 312.6666666666667 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 107, + 312.6666666666667, + 504, + 350.33333333333337 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 107, + 350.33333333333337, + 504, + 388.00000000000006 + ], + "spans": [], + "index": 11 + } + ] + } + ], + "index": 8.25 + }, + { + "type": "text", + "bbox": [ + 106, + 398, + 505, + 488 + ], + "lines": [], + "index": 15.5, + "bbox_fs": [ + 105, + 399, + 506, + 488 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 499, + 505, + 576 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "score": 1.0, + "content": "Evaluation. We see for all tasks AVRIL learns an appropriate policy that performs strongly across", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "the board, being competitive in all cases and in places beating out all of the other benchmarks. The", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 520, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 104, + 520, + 505, + 535 + ], + "score": 1.0, + "content": "results for our healthcare example are given in table 1, with AVRIL performing very strongly, having", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "score": 1.0, + "content": "the highest accuracy and precision score in both tasks. The results for the control environments are", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "shown in figure 3. AVRIL performs competitively and is easily capable of reaching demonstrator", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "level performance in the samples given for these tasks, though not always as quickly as some of the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 565, + 226, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 226, + 577 + ], + "score": 1.0, + "content": "dedicated offline IL methods.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23, + "bbox_fs": [ + 104, + 498, + 506, + 577 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 602 + ], + "score": 1.0, + "content": "Reward insight. Remember though that task performance is not exactly our goal. Rather the key", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 600, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 614 + ], + "score": 1.0, + "content": "aspect of AVRIL is the inference over the unseen reward in order to gain information about the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 610, + 506, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 625 + ], + "score": 1.0, + "content": "preferences of the agent that other black-box policy methods can’t. In the previous experiments our", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 621, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 635 + ], + "score": 1.0, + "content": "reward encoder was a neural network for maximum flexibility and we can see from the performance", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "of A-RL we learn a representation of the reward that can be used to relearn in the environment", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "very effectively, albeit not quite to the same standard of AVRIL. Note this also reflects an original", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "motivation for AVRIL in that offpolicy RL on top of a learnt reward suffers. In figure 4 we explore", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "how to gain more insight from the learnt reward using different parameterisations of the reward. The", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "top graph shows how a learnt state-action reward changes as a function of blood-oxygen level for an", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 686, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 702 + ], + "score": 1.0, + "content": "otherwise healthy patient, and it can be seen that as it drops below average the reward for ventilating", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "the patient becomes much higher (note this is average for patients in the ICU, not across the general", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "population). While this is intuitive we still have to query a neural network repeatedly over the state", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "space to gain insight, the bottom graph of figure 4 presents then a simpler but perhaps more useful", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 205, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 104, + 205, + 506, + 217 + ], + "score": 1.0, + "content": "representation. In this case we learn a state-only reward as before but as a linear model. This is", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 217, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 228 + ], + "score": 1.0, + "content": "not as strong a constraint on the policy since that is still free to be non-linear as a neural network", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 226, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 506, + 240 + ], + "score": 1.0, + "content": "but simultaneously allows us the insight of what our model considers high value in the environment", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 239, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 250 + ], + "score": 1.0, + "content": "as we plot the relative model coefficients for each covariate. We can see here for example that the", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 249, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 506, + 262 + ], + "score": 1.0, + "content": "biggest impact on the overall estimated quality of a state is given by blood pressure, well known as", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 260, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 273 + ], + "score": 1.0, + "content": "an important indicator of health (Hepworth et al., 1994), strongly impacted by trauma and infection.", + "type": "text", + "cross_page": true + } + ], + "index": 10 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 588, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 118, + 77, + 500, + 162 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 118, + 77, + 500, + 162 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 77, + 500, + 162 + ], + "spans": [ + { + "bbox": [ + 118, + 77, + 500, + 162 + ], + "score": 0.951, + "type": "image", + "image_path": "ca7c32b8888060a1a5cb258f469a662fd368830830a97e61c43ea9064d01b67d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 118, + 77, + 500, + 105.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 118, + 105.33333333333333, + 500, + 133.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 118, + 133.66666666666666, + 500, + 162.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 173, + 504, + 195 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "Figure 5: Gridworld example. Scaled heat-maps of: the ground truth reward; the relative state", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "occupancy of the expert demonstrations; the reward posterior mean; and reward standard deviation.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 106, + 205, + 505, + 272 + ], + "lines": [ + { + "bbox": [ + 104, + 205, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 104, + 205, + 506, + 217 + ], + "score": 1.0, + "content": "representation. In this case we learn a state-only reward as before but as a linear model. This is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 217, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 228 + ], + "score": 1.0, + "content": "not as strong a constraint on the policy since that is still free to be non-linear as a neural network", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 226, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 506, + 240 + ], + "score": 1.0, + "content": "but simultaneously allows us the insight of what our model considers high value in the environment", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 239, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 250 + ], + "score": 1.0, + "content": "as we plot the relative model coefficients for each covariate. We can see here for example that the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 249, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 506, + 262 + ], + "score": 1.0, + "content": "biggest impact on the overall estimated quality of a state is given by blood pressure, well known as", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 260, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 273 + ], + "score": 1.0, + "content": "an important indicator of health (Hepworth et al., 1994), strongly impacted by trauma and infection.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 285, + 356, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 285, + 356, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 356, + 296 + ], + "score": 1.0, + "content": "Gridworld ground-truth comparison While environments", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 295, + 357, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 357, + 308 + ], + "score": 1.0, + "content": "like MIMIC are the main focus of this work they do not", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 306, + 357, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 357, + 318 + ], + "score": 1.0, + "content": "lend them selves to inspection of the uncovered reward as the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 318, + 357, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 357, + 329 + ], + "score": 1.0, + "content": "ground truth simply is not available to us. We thus demonstrate", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 329, + 356, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 356, + 340 + ], + "score": 1.0, + "content": "on a toy gridworld environment, in order to clearly see the ef-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 339, + 357, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 357, + 352 + ], + "score": 1.0, + "content": "fect of learning a posterior distribution over the reward. In this", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 350, + 357, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 357, + 362 + ], + "score": 1.0, + "content": "(finite) example both the encoder and decoder are represented", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 362, + 356, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 356, + 373 + ], + "score": 1.0, + "content": "by tensors but otherwise the procedure remains the same. Fig-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 373, + 357, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 357, + 384 + ], + "score": 1.0, + "content": "ure 5 plots scaled heat-maps of: a) the ground truth reward; b)", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 383, + 357, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 357, + 396 + ], + "score": 1.0, + "content": "the relative state occupancy of the expert demonstrations, ob-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 394, + 357, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 357, + 406 + ], + "score": 1.0, + "content": "tained using value-iteration; c) the reward posterior mean; and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 405, + 357, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 357, + 418 + ], + "score": 1.0, + "content": "d) the reward standard deviation. The interesting thing to note", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 416, + 356, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 356, + 428 + ], + "score": 1.0, + "content": "is that the standard deviation of the learnt reward essentially", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 426, + 357, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 357, + 441 + ], + "score": 1.0, + "content": "resembles the complement of the state occupancy - revealing", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 437, + 357, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 357, + 451 + ], + "score": 1.0, + "content": "the epistemic uncertainty around that part of the state-space", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 449, + 302, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 302, + 461 + ], + "score": 1.0, + "content": "given we haven’t seen any demonstrations there.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 477, + 201, + 489 + ], + "lines": [ + { + "bbox": [ + 104, + 474, + 203, + 493 + ], + "spans": [ + { + "bbox": [ + 104, + 474, + 203, + 493 + ], + "score": 1.0, + "content": "5 CONCLUSIONS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 503, + 356, + 558 + ], + "lines": [ + { + "bbox": [ + 106, + 502, + 356, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 356, + 515 + ], + "score": 1.0, + "content": "We have presented a novel algorithm, Approximate Variational", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 513, + 356, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 356, + 525 + ], + "score": 1.0, + "content": "Reward Imitation Learning, for addressing the scalability is-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 525, + 356, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 356, + 536 + ], + "score": 1.0, + "content": "sues that prevent current Bayesian IRL methods being used in", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 536, + 356, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 356, + 547 + ], + "score": 1.0, + "content": "large and unknown environments. We show that this performs", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 546, + 356, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 356, + 558 + ], + "score": 1.0, + "content": "strongly on real and toy data for learning imitation policies", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 30 + }, + { + "type": "image", + "bbox": [ + 370, + 290, + 499, + 461 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 370, + 290, + 499, + 461 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 370, + 290, + 499, + 461 + ], + "spans": [ + { + "bbox": [ + 370, + 290, + 499, + 461 + ], + "score": 0.964, + "type": "image", + "image_path": "10c9875b3e37b7a44561ac5529ce0724c415439487c6fd0baa51655f4911daf4.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 370, + 290, + 499, + 461 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 363, + 475, + 504, + 552 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 364, + 476, + 504, + 487 + ], + "spans": [ + { + "bbox": [ + 364, + 476, + 504, + 487 + ], + "score": 1.0, + "content": "Figure 4: (Top) A state-action re-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 363, + 487, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 363, + 487, + 505, + 498 + ], + "score": 1.0, + "content": "ward is learnt and plotted for an", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 363, + 497, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 363, + 497, + 505, + 510 + ], + "score": 1.0, + "content": "otherwise average patient as their", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 363, + 509, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 363, + 509, + 505, + 520 + ], + "score": 1.0, + "content": "blood oxygen level changes. (Bot-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 363, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 363, + 519, + 505, + 532 + ], + "score": 1.0, + "content": "tom) The associated weights given", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 363, + 531, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 363, + 531, + 505, + 542 + ], + "score": 1.0, + "content": "a state-only reward as a linear", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 363, + 540, + 474, + 554 + ], + "spans": [ + { + "bbox": [ + 363, + 540, + 474, + 554 + ], + "score": 1.0, + "content": "function of the state-space.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37 + } + ], + "index": 35.0 + }, + { + "type": "text", + "bbox": [ + 107, + 558, + 505, + 635 + ], + "lines": [ + { + "bbox": [ + 106, + 558, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 505, + 570 + ], + "score": 1.0, + "content": "completely offline and importantly recovers a reward that is both effective for retraining policies but", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "score": 1.0, + "content": "also offers useful insight into the preferences of the demonstrator. Of course this still represents an", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "score": 1.0, + "content": "approximation, and there is room for further, more exact methods or else guarantees on the maxi-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 590, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 604 + ], + "score": 1.0, + "content": "mum divergence. We have focused on simply obtaining the appropriate uncertainty over reward as", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "score": 1.0, + "content": "well as imitation in high stakes environments - in these settings it is crucial that learnt policies avoid", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "catastrophic failure and so how exactly to use the uncertainty in order to achieve truly safe imitation", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 623, + 418, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 418, + 636 + ], + "score": 1.0, + "content": "(or indeed better-that-demonstrator apprenticeship) is increasingly of interest.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44 + }, + { + "type": "title", + "bbox": [ + 108, + 652, + 224, + 664 + ], + "lines": [ + { + "bbox": [ + 107, + 651, + 226, + 667 + ], + "spans": [ + { + "bbox": [ + 107, + 651, + 226, + 667 + ], + "score": 1.0, + "content": "ACKNOWLEDGEMENTS", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 48 + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "AJC would like to acknowledge and thank Microsoft Research for its support through its PhD Schol-", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "arship Program with the EPSRC. This work was additionally supported by the Office of Naval Re-", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "search (ONR) and the NSF (Grant number: 1722516). We would like to thank all of the anonymous", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "reviewers on OpenReview, alongside the many members of the van der Schaar lab, for their input,", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 720, + 472, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 472, + 734 + ], + "score": 1.0, + "content": "comments, and suggestions at various stages that have ultimately improved the manuscript.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 51 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 118, + 77, + 500, + 162 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 118, + 77, + 500, + 162 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 77, + 500, + 162 + ], + "spans": [ + { + "bbox": [ + 118, + 77, + 500, + 162 + ], + "score": 0.951, + "type": "image", + "image_path": "ca7c32b8888060a1a5cb258f469a662fd368830830a97e61c43ea9064d01b67d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 118, + 77, + 500, + 105.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 118, + 105.33333333333333, + 500, + 133.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 118, + 133.66666666666666, + 500, + 162.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 173, + 504, + 195 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "Figure 5: Gridworld example. Scaled heat-maps of: the ground truth reward; the relative state", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "occupancy of the expert demonstrations; the reward posterior mean; and reward standard deviation.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 106, + 205, + 505, + 272 + ], + "lines": [], + "index": 7.5, + "bbox_fs": [ + 104, + 205, + 506, + 273 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 285, + 356, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 285, + 356, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 356, + 296 + ], + "score": 1.0, + "content": "Gridworld ground-truth comparison While environments", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 295, + 357, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 357, + 308 + ], + "score": 1.0, + "content": "like MIMIC are the main focus of this work they do not", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 306, + 357, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 357, + 318 + ], + "score": 1.0, + "content": "lend them selves to inspection of the uncovered reward as the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 318, + 357, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 357, + 329 + ], + "score": 1.0, + "content": "ground truth simply is not available to us. We thus demonstrate", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 329, + 356, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 356, + 340 + ], + "score": 1.0, + "content": "on a toy gridworld environment, in order to clearly see the ef-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 339, + 357, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 357, + 352 + ], + "score": 1.0, + "content": "fect of learning a posterior distribution over the reward. In this", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 350, + 357, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 357, + 362 + ], + "score": 1.0, + "content": "(finite) example both the encoder and decoder are represented", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 362, + 356, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 356, + 373 + ], + "score": 1.0, + "content": "by tensors but otherwise the procedure remains the same. Fig-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 373, + 357, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 357, + 384 + ], + "score": 1.0, + "content": "ure 5 plots scaled heat-maps of: a) the ground truth reward; b)", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 383, + 357, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 357, + 396 + ], + "score": 1.0, + "content": "the relative state occupancy of the expert demonstrations, ob-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 394, + 357, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 357, + 406 + ], + "score": 1.0, + "content": "tained using value-iteration; c) the reward posterior mean; and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 405, + 357, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 357, + 418 + ], + "score": 1.0, + "content": "d) the reward standard deviation. The interesting thing to note", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 416, + 356, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 356, + 428 + ], + "score": 1.0, + "content": "is that the standard deviation of the learnt reward essentially", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 426, + 357, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 357, + 441 + ], + "score": 1.0, + "content": "resembles the complement of the state occupancy - revealing", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 437, + 357, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 357, + 451 + ], + "score": 1.0, + "content": "the epistemic uncertainty around that part of the state-space", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 449, + 302, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 302, + 461 + ], + "score": 1.0, + "content": "given we haven’t seen any demonstrations there.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 285, + 357, + 461 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 477, + 201, + 489 + ], + "lines": [ + { + "bbox": [ + 104, + 474, + 203, + 493 + ], + "spans": [ + { + "bbox": [ + 104, + 474, + 203, + 493 + ], + "score": 1.0, + "content": "5 CONCLUSIONS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 503, + 356, + 558 + ], + "lines": [ + { + "bbox": [ + 106, + 502, + 356, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 356, + 515 + ], + "score": 1.0, + "content": "We have presented a novel algorithm, Approximate Variational", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 513, + 356, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 356, + 525 + ], + "score": 1.0, + "content": "Reward Imitation Learning, for addressing the scalability is-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 525, + 356, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 356, + 536 + ], + "score": 1.0, + "content": "sues that prevent current Bayesian IRL methods being used in", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 536, + 356, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 356, + 547 + ], + "score": 1.0, + "content": "large and unknown environments. We show that this performs", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 546, + 356, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 356, + 558 + ], + "score": 1.0, + "content": "strongly on real and toy data for learning imitation policies", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 558, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 505, + 570 + ], + "score": 1.0, + "content": "completely offline and importantly recovers a reward that is both effective for retraining policies but", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "score": 1.0, + "content": "also offers useful insight into the preferences of the demonstrator. Of course this still represents an", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "score": 1.0, + "content": "approximation, and there is room for further, more exact methods or else guarantees on the maxi-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 590, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 604 + ], + "score": 1.0, + "content": "mum divergence. We have focused on simply obtaining the appropriate uncertainty over reward as", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "score": 1.0, + "content": "well as imitation in high stakes environments - in these settings it is crucial that learnt policies avoid", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "catastrophic failure and so how exactly to use the uncertainty in order to achieve truly safe imitation", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 623, + 418, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 418, + 636 + ], + "score": 1.0, + "content": "(or indeed better-that-demonstrator apprenticeship) is increasingly of interest.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 502, + 356, + 558 + ] + }, + { + "type": "image", + "bbox": [ + 370, + 290, + 499, + 461 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 370, + 290, + 499, + 461 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 370, + 290, + 499, + 461 + ], + "spans": [ + { + "bbox": [ + 370, + 290, + 499, + 461 + ], + "score": 0.964, + "type": "image", + "image_path": "10c9875b3e37b7a44561ac5529ce0724c415439487c6fd0baa51655f4911daf4.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 370, + 290, + 499, + 461 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 363, + 475, + 504, + 552 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 364, + 476, + 504, + 487 + ], + "spans": [ + { + "bbox": [ + 364, + 476, + 504, + 487 + ], + "score": 1.0, + "content": "Figure 4: (Top) A state-action re-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 363, + 487, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 363, + 487, + 505, + 498 + ], + "score": 1.0, + "content": "ward is learnt and plotted for an", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 363, + 497, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 363, + 497, + 505, + 510 + ], + "score": 1.0, + "content": "otherwise average patient as their", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 363, + 509, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 363, + 509, + 505, + 520 + ], + "score": 1.0, + "content": "blood oxygen level changes. (Bot-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 363, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 363, + 519, + 505, + 532 + ], + "score": 1.0, + "content": "tom) The associated weights given", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 363, + 531, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 363, + 531, + 505, + 542 + ], + "score": 1.0, + "content": "a state-only reward as a linear", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 363, + 540, + 474, + 554 + ], + "spans": [ + { + "bbox": [ + 363, + 540, + 474, + 554 + ], + "score": 1.0, + "content": "function of the state-space.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37 + } + ], + "index": 35.0 + }, + { + "type": "text", + "bbox": [ + 107, + 558, + 505, + 635 + ], + "lines": [], + "index": 44, + "bbox_fs": [ + 105, + 558, + 506, + 636 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 652, + 224, + 664 + ], + "lines": [ + { + "bbox": [ + 107, + 651, + 226, + 667 + ], + "spans": [ + { + "bbox": [ + 107, + 651, + 226, + 667 + ], + "score": 1.0, + "content": "ACKNOWLEDGEMENTS", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 48 + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "AJC would like to acknowledge and thank Microsoft Research for its support through its PhD Schol-", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "arship Program with the EPSRC. This work was additionally supported by the Office of Naval Re-", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "search (ONR) and the NSF (Grant number: 1722516). We would like to thank all of the anonymous", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "reviewers on OpenReview, alongside the many members of the van der Schaar lab, for their input,", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 720, + 472, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 472, + 734 + ], + "score": 1.0, + "content": "comments, and suggestions at various stages that have ultimately improved the manuscript.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 51, + "bbox_fs": [ + 105, + 677, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 176, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 505, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 217, + 113 + ], + "score": 1.0, + "content": "Pieter Abbeel and Andrew", + "type": "text" + }, + { + "bbox": [ + 217, + 100, + 241, + 112 + ], + "score": 0.28, + "content": "\\mathrm { ~ Y ~ N ~ g ~ }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 100, + 505, + 113 + ], + "score": 1.0, + "content": ". Apprenticeship learning via inverse reinforcement learning. In", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 111, + 482, + 124 + ], + "spans": [ + { + "bbox": [ + 116, + 111, + 482, + 124 + ], + "score": 1.0, + "content": "Proceedings of the twenty-first international conference on Machine learning, pp. 1, 2004.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 105, + 130, + 504, + 154 + ], + "lines": [ + { + "bbox": [ + 105, + 129, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 505, + 145 + ], + "score": 1.0, + "content": "Michael Bain and Claude Sammut. A framework for behavioural cloning. In Machine Intelligence", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 142, + 212, + 155 + ], + "spans": [ + { + "bbox": [ + 116, + 142, + 212, + 155 + ], + "score": 1.0, + "content": "15, pp. 103–129, 1995.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 161, + 503, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 162, + 504, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 504, + 173 + ], + "score": 1.0, + "content": "David M Blei, Alp Kucukelbir, and Jon D McAuliffe. Variational inference: A review for statisti-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 173, + 439, + 184 + ], + "spans": [ + { + "bbox": [ + 116, + 173, + 439, + 184 + ], + "score": 1.0, + "content": "cians. Journal of the American statistical Association, 112(518):859–877, 2017.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 107, + 192, + 505, + 226 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "Michael Bloem and Nicholas Bambos. Infinite time horizon maximum causal entropy inverse rein-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 115, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "forcement learning. In 53rd IEEE Conference on Decision and Control, pp. 4911–4916. IEEE,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 213, + 142, + 226 + ], + "spans": [ + { + "bbox": [ + 114, + 213, + 142, + 226 + ], + "score": 1.0, + "content": "2014.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 233, + 504, + 257 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "score": 1.0, + "content": "Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 244, + 277, + 257 + ], + "spans": [ + { + "bbox": [ + 116, + 244, + 277, + 257 + ], + "score": 1.0, + "content": "Wojciech Zaremba. Openai gym, 2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 264, + 503, + 288 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 279 + ], + "score": 1.0, + "content": "Daniel Brown, Scott Niekum, and Marek Petrik. Bayesian robust optimization for imitation learning.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 275, + 371, + 288 + ], + "spans": [ + { + "bbox": [ + 115, + 275, + 371, + 288 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, 33, 2020.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 295, + 504, + 318 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 309 + ], + "score": 1.0, + "content": "Daniel S Brown and Scott Niekum. Deep bayesian reward learning from preferences. arXiv preprint", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 307, + 220, + 317 + ], + "spans": [ + { + "bbox": [ + 115, + 307, + 220, + 317 + ], + "score": 1.0, + "content": "arXiv:1912.04472, 2019.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 105, + 325, + 504, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "Jaedeug Choi and Kee-Eung Kim. Map inference for bayesian inverse reinforcement learning. In", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 336, + 420, + 349 + ], + "spans": [ + { + "bbox": [ + 115, + 336, + 420, + 349 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, pp. 1989–1997, 2011.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 505, + 390 + ], + "lines": [ + { + "bbox": [ + 105, + 357, + 504, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 504, + 369 + ], + "score": 1.0, + "content": "Jaedeug Choi and Kee-Eung Kim. Nonparametric bayesian inverse reinforcement learning for mul-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 367, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 115, + 367, + 506, + 381 + ], + "score": 1.0, + "content": "tiple reward functions. In Advances in Neural Information Processing Systems, pp. 305–313,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 378, + 142, + 390 + ], + "spans": [ + { + "bbox": [ + 115, + 378, + 142, + 390 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 398, + 503, + 422 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 411 + ], + "score": 1.0, + "content": "Christos Dimitrakakis and Constantin A Rothkopf. Bayesian multitask inverse reinforcement learn-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 409, + 456, + 422 + ], + "spans": [ + { + "bbox": [ + 115, + 409, + 456, + 422 + ], + "score": 1.0, + "content": "ing. In European workshop on reinforcement learning, pp. 273–284. Springer, 2011.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 104, + 428, + 503, + 452 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 504, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 504, + 441 + ], + "score": 1.0, + "content": "Justin Fu, Katie Luo, and Sergey Levine. Learning robust rewards with adverserial inverse rein-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 440, + 457, + 452 + ], + "spans": [ + { + "bbox": [ + 115, + 440, + 457, + 452 + ], + "score": 1.0, + "content": "forcement learning. In International Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 105, + 459, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 106, + 459, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 505, + 472 + ], + "score": 1.0, + "content": "Dani Gamerman and Hedibert F Lopes. Markov chain Monte Carlo: stochastic simulation for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 470, + 273, + 483 + ], + "spans": [ + { + "bbox": [ + 116, + 470, + 273, + 483 + ], + "score": 1.0, + "content": "Bayesian inference. CRC Press, 2006.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 489, + 504, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 504 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 116, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in neural infor-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 512, + 317, + 525 + ], + "spans": [ + { + "bbox": [ + 115, + 512, + 317, + 525 + ], + "score": 1.0, + "content": "mation processing systems, pp. 2672–2680, 2014.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 531, + 505, + 566 + ], + "lines": [ + { + "bbox": [ + 105, + 531, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 545 + ], + "score": 1.0, + "content": "Will Grathwohl, Kuan-Chieh Wang, Joern-Henrik Jacobsen, David Duvenaud, Mohammad Norouzi,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 543, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 116, + 543, + 505, + 556 + ], + "score": 1.0, + "content": "and Kevin Swersky. Your classifier is secretly an energy based model and you should treat it like", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 554, + 397, + 567 + ], + "spans": [ + { + "bbox": [ + 115, + 554, + 397, + 567 + ], + "score": 1.0, + "content": "one. In International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 506, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 587 + ], + "score": 1.0, + "content": "Joseph T Hepworth, Sherry Garrett Hendrickson, and Jean Lopez. Time series analysis of phys-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 584, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 115, + 584, + 506, + 597 + ], + "score": 1.0, + "content": "iological response during icu visitation. Western journal of nursing research, 16(6):704–717,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 595, + 142, + 607 + ], + "spans": [ + { + "bbox": [ + 116, + 595, + 142, + 607 + ], + "score": 1.0, + "content": "1994.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 614, + 504, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 504, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 504, + 628 + ], + "score": 1.0, + "content": "Michael Herman, Tobias Gindele, Jorg Wagner, Felix Schmitt, and Wolfram Burgard. Inverse rein-¨", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 626, + 504, + 638 + ], + "spans": [ + { + "bbox": [ + 116, + 626, + 504, + 638 + ], + "score": 1.0, + "content": "forcement learning with simultaneous estimation of rewards and dynamics. In Artificial Intelli-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 638, + 313, + 649 + ], + "spans": [ + { + "bbox": [ + 115, + 638, + 313, + 649 + ], + "score": 1.0, + "content": "gence and Statistics, pp. 102–110. PMLR, 2016.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 670 + ], + "score": 1.0, + "content": "Ashley Hill, Antonin Raffin, Maximilian Ernestus, Adam Gleave, Anssi Kanervisto, Rene Traore,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 116, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "Prafulla Dhariwal, Christopher Hesse, Oleg Klimov, Alex Nichol, Matthias Plappert, Alec Rad-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 678, + 504, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 504, + 691 + ], + "score": 1.0, + "content": "ford, John Schulman, Szymon Sidor, and Yuhuai Wu. Stable baselines. https://github.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 690, + 309, + 702 + ], + "spans": [ + { + "bbox": [ + 116, + 690, + 309, + 702 + ], + "score": 1.0, + "content": "com/hill-a/stable-baselines, 2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "Jonathan Ho and Stefano Ermon. Generative adversarial imitation learning. In Advances in neural", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 720, + 336, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 336, + 733 + ], + "score": 1.0, + "content": "information processing systems, pp. 4565–4573, 2016.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 176, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 505, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 217, + 113 + ], + "score": 1.0, + "content": "Pieter Abbeel and Andrew", + "type": "text" + }, + { + "bbox": [ + 217, + 100, + 241, + 112 + ], + "score": 0.28, + "content": "\\mathrm { ~ Y ~ N ~ g ~ }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 100, + 505, + 113 + ], + "score": 1.0, + "content": ". Apprenticeship learning via inverse reinforcement learning. In", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 111, + 482, + 124 + ], + "spans": [ + { + "bbox": [ + 116, + 111, + 482, + 124 + ], + "score": 1.0, + "content": "Proceedings of the twenty-first international conference on Machine learning, pp. 1, 2004.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 100, + 505, + 124 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 130, + 504, + 154 + ], + "lines": [ + { + "bbox": [ + 105, + 129, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 505, + 145 + ], + "score": 1.0, + "content": "Michael Bain and Claude Sammut. A framework for behavioural cloning. In Machine Intelligence", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 142, + 212, + 155 + ], + "spans": [ + { + "bbox": [ + 116, + 142, + 212, + 155 + ], + "score": 1.0, + "content": "15, pp. 103–129, 1995.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 129, + 505, + 155 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 161, + 503, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 162, + 504, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 504, + 173 + ], + "score": 1.0, + "content": "David M Blei, Alp Kucukelbir, and Jon D McAuliffe. Variational inference: A review for statisti-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 173, + 439, + 184 + ], + "spans": [ + { + "bbox": [ + 116, + 173, + 439, + 184 + ], + "score": 1.0, + "content": "cians. Journal of the American statistical Association, 112(518):859–877, 2017.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 106, + 162, + 504, + 184 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 192, + 505, + 226 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "Michael Bloem and Nicholas Bambos. Infinite time horizon maximum causal entropy inverse rein-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 115, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "forcement learning. In 53rd IEEE Conference on Decision and Control, pp. 4911–4916. IEEE,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 213, + 142, + 226 + ], + "spans": [ + { + "bbox": [ + 114, + 213, + 142, + 226 + ], + "score": 1.0, + "content": "2014.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 192, + 505, + 226 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 233, + 504, + 257 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "score": 1.0, + "content": "Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 244, + 277, + 257 + ], + "spans": [ + { + "bbox": [ + 116, + 244, + 277, + 257 + ], + "score": 1.0, + "content": "Wojciech Zaremba. Openai gym, 2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 234, + 505, + 257 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 264, + 503, + 288 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 279 + ], + "score": 1.0, + "content": "Daniel Brown, Scott Niekum, and Marek Petrik. Bayesian robust optimization for imitation learning.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 275, + 371, + 288 + ], + "spans": [ + { + "bbox": [ + 115, + 275, + 371, + 288 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, 33, 2020.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 263, + 505, + 288 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 295, + 504, + 318 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 309 + ], + "score": 1.0, + "content": "Daniel S Brown and Scott Niekum. Deep bayesian reward learning from preferences. arXiv preprint", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 307, + 220, + 317 + ], + "spans": [ + { + "bbox": [ + 115, + 307, + 220, + 317 + ], + "score": 1.0, + "content": "arXiv:1912.04472, 2019.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 294, + 505, + 317 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 325, + 504, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "Jaedeug Choi and Kee-Eung Kim. Map inference for bayesian inverse reinforcement learning. In", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 336, + 420, + 349 + ], + "spans": [ + { + "bbox": [ + 115, + 336, + 420, + 349 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, pp. 1989–1997, 2011.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 326, + 505, + 349 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 505, + 390 + ], + "lines": [ + { + "bbox": [ + 105, + 357, + 504, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 504, + 369 + ], + "score": 1.0, + "content": "Jaedeug Choi and Kee-Eung Kim. Nonparametric bayesian inverse reinforcement learning for mul-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 367, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 115, + 367, + 506, + 381 + ], + "score": 1.0, + "content": "tiple reward functions. In Advances in Neural Information Processing Systems, pp. 305–313,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 378, + 142, + 390 + ], + "spans": [ + { + "bbox": [ + 115, + 378, + 142, + 390 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 357, + 506, + 390 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 398, + 503, + 422 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 411 + ], + "score": 1.0, + "content": "Christos Dimitrakakis and Constantin A Rothkopf. Bayesian multitask inverse reinforcement learn-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 409, + 456, + 422 + ], + "spans": [ + { + "bbox": [ + 115, + 409, + 456, + 422 + ], + "score": 1.0, + "content": "ing. In European workshop on reinforcement learning, pp. 273–284. Springer, 2011.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 398, + 505, + 422 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 428, + 503, + 452 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 504, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 504, + 441 + ], + "score": 1.0, + "content": "Justin Fu, Katie Luo, and Sergey Levine. Learning robust rewards with adverserial inverse rein-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 440, + 457, + 452 + ], + "spans": [ + { + "bbox": [ + 115, + 440, + 457, + 452 + ], + "score": 1.0, + "content": "forcement learning. In International Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 429, + 504, + 452 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 459, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 106, + 459, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 505, + 472 + ], + "score": 1.0, + "content": "Dani Gamerman and Hedibert F Lopes. Markov chain Monte Carlo: stochastic simulation for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 470, + 273, + 483 + ], + "spans": [ + { + "bbox": [ + 116, + 470, + 273, + 483 + ], + "score": 1.0, + "content": "Bayesian inference. CRC Press, 2006.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 459, + 505, + 483 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 489, + 504, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 504 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 116, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in neural infor-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 512, + 317, + 525 + ], + "spans": [ + { + "bbox": [ + 115, + 512, + 317, + 525 + ], + "score": 1.0, + "content": "mation processing systems, pp. 2672–2680, 2014.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 489, + 506, + 525 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 531, + 505, + 566 + ], + "lines": [ + { + "bbox": [ + 105, + 531, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 545 + ], + "score": 1.0, + "content": "Will Grathwohl, Kuan-Chieh Wang, Joern-Henrik Jacobsen, David Duvenaud, Mohammad Norouzi,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 543, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 116, + 543, + 505, + 556 + ], + "score": 1.0, + "content": "and Kevin Swersky. Your classifier is secretly an energy based model and you should treat it like", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 554, + 397, + 567 + ], + "spans": [ + { + "bbox": [ + 115, + 554, + 397, + 567 + ], + "score": 1.0, + "content": "one. In International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 531, + 505, + 567 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 506, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 587 + ], + "score": 1.0, + "content": "Joseph T Hepworth, Sherry Garrett Hendrickson, and Jean Lopez. Time series analysis of phys-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 584, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 115, + 584, + 506, + 597 + ], + "score": 1.0, + "content": "iological response during icu visitation. Western journal of nursing research, 16(6):704–717,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 595, + 142, + 607 + ], + "spans": [ + { + "bbox": [ + 116, + 595, + 142, + 607 + ], + "score": 1.0, + "content": "1994.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 573, + 506, + 607 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 614, + 504, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 504, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 504, + 628 + ], + "score": 1.0, + "content": "Michael Herman, Tobias Gindele, Jorg Wagner, Felix Schmitt, and Wolfram Burgard. Inverse rein-¨", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 626, + 504, + 638 + ], + "spans": [ + { + "bbox": [ + 116, + 626, + 504, + 638 + ], + "score": 1.0, + "content": "forcement learning with simultaneous estimation of rewards and dynamics. In Artificial Intelli-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 638, + 313, + 649 + ], + "spans": [ + { + "bbox": [ + 115, + 638, + 313, + 649 + ], + "score": 1.0, + "content": "gence and Statistics, pp. 102–110. PMLR, 2016.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 614, + 504, + 649 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 670 + ], + "score": 1.0, + "content": "Ashley Hill, Antonin Raffin, Maximilian Ernestus, Adam Gleave, Anssi Kanervisto, Rene Traore,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 116, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "Prafulla Dhariwal, Christopher Hesse, Oleg Klimov, Alex Nichol, Matthias Plappert, Alec Rad-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 678, + 504, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 504, + 691 + ], + "score": 1.0, + "content": "ford, John Schulman, Szymon Sidor, and Yuhuai Wu. Stable baselines. https://github.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 690, + 309, + 702 + ], + "spans": [ + { + "bbox": [ + 116, + 690, + 309, + 702 + ], + "score": 1.0, + "content": "com/hill-a/stable-baselines, 2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 655, + 506, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "Jonathan Ho and Stefano Ermon. Generative adversarial imitation learning. In Advances in neural", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 720, + 336, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 336, + 733 + ], + "score": 1.0, + "content": "information processing systems, pp. 4565–4573, 2016.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 708, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 97 + ], + "score": 1.0, + "content": "Daniel Jarrett, Ioana Bica, and Mihaela van der Schaar. Strictly batch imitation learning by energy-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 486, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 486, + 106 + ], + "score": 1.0, + "content": "based distribution matching. Advances in Neural Information Processing Systems, 33, 2020.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 108, + 112, + 503, + 147 + ], + "lines": [ + { + "bbox": [ + 106, + 112, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 505, + 126 + ], + "score": 1.0, + "content": "Alistair EW Johnson, Tom J Pollard, Lu Shen, H Lehman Li-Wei, Mengling Feng, Mohammad", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 506, + 137 + ], + "score": 1.0, + "content": "Ghassemi, Benjamin Moody, Peter Szolovits, Leo Anthony Celi, and Roger G Mark. Mimic-iii,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 408, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 408, + 147 + ], + "score": 1.0, + "content": "a freely accessible critical care database. Scientific data, 3(1):1–9, 2016.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 108, + 154, + 503, + 177 + ], + "lines": [ + { + "bbox": [ + 106, + 154, + 504, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 504, + 167 + ], + "score": 1.0, + "content": "William Karush. Minima of functions of several variables with inequalities as side constraints. M.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 165, + 373, + 178 + ], + "spans": [ + { + "bbox": [ + 116, + 165, + 373, + 178 + ], + "score": 1.0, + "content": "Sc. Dissertation. Dept. of Mathematics, Univ. of Chicago, 1939.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 107, + 184, + 504, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 183, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 505, + 198 + ], + "score": 1.0, + "content": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 196, + 214, + 208 + ], + "spans": [ + { + "bbox": [ + 116, + 196, + 214, + 208 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 215, + 504, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 214, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 506, + 229 + ], + "score": 1.0, + "content": "Diederik P Kingma and Max Welling. Auto-encoding variational bayes. arXiv preprint", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 226, + 214, + 238 + ], + "spans": [ + { + "bbox": [ + 115, + 226, + 214, + 238 + ], + "score": 1.0, + "content": "arXiv:1312.6114, 2013.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 245, + 504, + 270 + ], + "lines": [ + { + "bbox": [ + 106, + 245, + 504, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 504, + 258 + ], + "score": 1.0, + "content": "Edouard Klein, Matthieu Geist, and Olivier Pietquin. Batch, off-policy and model-free apprentice-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 257, + 502, + 271 + ], + "spans": [ + { + "bbox": [ + 115, + 257, + 502, + 271 + ], + "score": 1.0, + "content": "ship learning. In European Workshop on Reinforcement Learning, pp. 285–296. Springer, 2011.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 276, + 504, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 275, + 504, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 504, + 290 + ], + "score": 1.0, + "content": "Naveen Kodali, Jacob Abernethy, James Hays, and Zsolt Kira. On convergence and stability of gans.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 288, + 279, + 300 + ], + "spans": [ + { + "bbox": [ + 116, + 288, + 279, + 300 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1705.07215, 2017.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 306, + 505, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 306, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 505, + 321 + ], + "score": 1.0, + "content": "Ilya Kostrikov, Kumar Krishna Agrawal, Debidatta Dwibedi, Sergey Levine, and Jonathan Tomp-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 318, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 115, + 318, + 505, + 331 + ], + "score": 1.0, + "content": "son. Discriminator-actor-critic: Addressing sample inefficiency and reward bias in adversarial", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 329, + 453, + 342 + ], + "spans": [ + { + "bbox": [ + 115, + 329, + 453, + 342 + ], + "score": 1.0, + "content": "imitation learning. In International Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 104, + 348, + 504, + 372 + ], + "lines": [ + { + "bbox": [ + 106, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "Ilya Kostrikov, Ofir Nachum, and Jonathan Tompson. Imitation learning via off-policy distribution", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 360, + 438, + 372 + ], + "spans": [ + { + "bbox": [ + 115, + 360, + 438, + 372 + ], + "score": 1.0, + "content": "matching. International Conference on Learning Representations (ICLR), 2019.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 379, + 504, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 379, + 504, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 504, + 392 + ], + "score": 1.0, + "content": "HW Kuhn and AW Tucker. Nonlinear programming. In Proceedings of the Second Berkeley Sym-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 391, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 115, + 391, + 505, + 403 + ], + "score": 1.0, + "content": "posium on Mathematical Statistics and Probability. The Regents of the University of California,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 401, + 142, + 413 + ], + "spans": [ + { + "bbox": [ + 115, + 401, + 142, + 413 + ], + "score": 1.0, + "content": "1951.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 420, + 504, + 454 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 435 + ], + "score": 1.0, + "content": "Donghun Lee, Srivatsan Srinivasan, and Finale Doshi-Velez. Truly batch apprenticeship learning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 431, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 115, + 431, + 506, + 445 + ], + "score": 1.0, + "content": "with deep successor features. International Joint Conference on Artificial Intelligence (IJCAI),", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 114, + 442, + 143, + 455 + ], + "spans": [ + { + "bbox": [ + 114, + 442, + 143, + 455 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 502, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "Sergey Levine. Reinforcement learning and control as probabilistic inference: Tutorial and review.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 474, + 279, + 485 + ], + "spans": [ + { + "bbox": [ + 116, + 474, + 279, + 485 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1805.00909, 2018.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 503, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "Sergey Levine, Zoran Popovic, and Vladlen Koltun. Nonlinear inverse reinforcement learning with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 504, + 492, + 516 + ], + "spans": [ + { + "bbox": [ + 115, + 504, + 492, + 516 + ], + "score": 1.0, + "content": "gaussian processes. In Advances in Neural Information Processing Systems, pp. 19–27, 2011.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 523, + 504, + 546 + ], + "lines": [ + { + "bbox": [ + 106, + 524, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 505, + 536 + ], + "score": 1.0, + "content": "Soren Mindermann, Rohin Shah, Adam Gleave, and Dylan Hadfield-Menell. Active inverse reward ¨", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 534, + 310, + 547 + ], + "spans": [ + { + "bbox": [ + 116, + 534, + 310, + 547 + ], + "score": 1.0, + "content": "design. arXiv preprint arXiv:1809.03060, 2018.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 554, + 504, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 504, + 566 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wier-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 115, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "stra, and Martin Riedmiller. Playing atari with deep reinforcement learning. arXiv preprint", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 576, + 215, + 588 + ], + "spans": [ + { + "bbox": [ + 115, + 576, + 215, + 588 + ], + "score": 1.0, + "content": "arXiv:1312.5602, 2013.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 105, + 595, + 504, + 619 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 609 + ], + "score": 1.0, + "content": "Andrew Y Ng, Stuart J Russell, et al. Algorithms for inverse reinforcement learning. In Icml,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 606, + 211, + 619 + ], + "spans": [ + { + "bbox": [ + 116, + 606, + 211, + 619 + ], + "score": 1.0, + "content": "volume 1, pp. 2, 2000.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 626, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "Bilal Piot, Matthieu Geist, and Olivier Pietquin. Boosted and reward-regularized classification for", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 638, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 115, + 638, + 506, + 650 + ], + "score": 1.0, + "content": "apprenticeship learning. In Proceedings of the 2014 international conference on Autonomous", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 115, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "agents and multi-agent systems, pp. 1249–1256. International Foundation for Autonomous Agents", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 660, + 244, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 244, + 672 + ], + "score": 1.0, + "content": "and Multiagent Systems, 2014.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 107, + 679, + 503, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 693 + ], + "score": 1.0, + "content": "Antonin Raffin. Rl baselines zoo. https://github.com/araffin/rl-baselines-zoo,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 689, + 142, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 142, + 702 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 504, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 504, + 723 + ], + "score": 1.0, + "content": "Deepak Ramachandran and Eyal Amir. Bayesian inverse reinforcement learning. In IJCAI, vol-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 721, + 236, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 236, + 732 + ], + "score": 1.0, + "content": "ume 7, pp. 2586–2591, 2007.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 97 + ], + "score": 1.0, + "content": "Daniel Jarrett, Ioana Bica, and Mihaela van der Schaar. Strictly batch imitation learning by energy-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 486, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 486, + 106 + ], + "score": 1.0, + "content": "based distribution matching. Advances in Neural Information Processing Systems, 33, 2020.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 112, + 503, + 147 + ], + "lines": [ + { + "bbox": [ + 106, + 112, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 505, + 126 + ], + "score": 1.0, + "content": "Alistair EW Johnson, Tom J Pollard, Lu Shen, H Lehman Li-Wei, Mengling Feng, Mohammad", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 506, + 137 + ], + "score": 1.0, + "content": "Ghassemi, Benjamin Moody, Peter Szolovits, Leo Anthony Celi, and Roger G Mark. Mimic-iii,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 408, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 408, + 147 + ], + "score": 1.0, + "content": "a freely accessible critical care database. Scientific data, 3(1):1–9, 2016.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 106, + 112, + 506, + 147 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 154, + 503, + 177 + ], + "lines": [ + { + "bbox": [ + 106, + 154, + 504, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 504, + 167 + ], + "score": 1.0, + "content": "William Karush. Minima of functions of several variables with inequalities as side constraints. M.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 165, + 373, + 178 + ], + "spans": [ + { + "bbox": [ + 116, + 165, + 373, + 178 + ], + "score": 1.0, + "content": "Sc. Dissertation. Dept. of Mathematics, Univ. of Chicago, 1939.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 106, + 154, + 504, + 178 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 184, + 504, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 183, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 505, + 198 + ], + "score": 1.0, + "content": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 196, + 214, + 208 + ], + "spans": [ + { + "bbox": [ + 116, + 196, + 214, + 208 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 183, + 505, + 208 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 215, + 504, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 214, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 506, + 229 + ], + "score": 1.0, + "content": "Diederik P Kingma and Max Welling. Auto-encoding variational bayes. arXiv preprint", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 226, + 214, + 238 + ], + "spans": [ + { + "bbox": [ + 115, + 226, + 214, + 238 + ], + "score": 1.0, + "content": "arXiv:1312.6114, 2013.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 214, + 506, + 238 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 245, + 504, + 270 + ], + "lines": [ + { + "bbox": [ + 106, + 245, + 504, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 504, + 258 + ], + "score": 1.0, + "content": "Edouard Klein, Matthieu Geist, and Olivier Pietquin. Batch, off-policy and model-free apprentice-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 257, + 502, + 271 + ], + "spans": [ + { + "bbox": [ + 115, + 257, + 502, + 271 + ], + "score": 1.0, + "content": "ship learning. In European Workshop on Reinforcement Learning, pp. 285–296. Springer, 2011.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 245, + 504, + 271 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 276, + 504, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 275, + 504, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 504, + 290 + ], + "score": 1.0, + "content": "Naveen Kodali, Jacob Abernethy, James Hays, and Zsolt Kira. On convergence and stability of gans.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 288, + 279, + 300 + ], + "spans": [ + { + "bbox": [ + 116, + 288, + 279, + 300 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1705.07215, 2017.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 275, + 504, + 300 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 306, + 505, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 306, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 505, + 321 + ], + "score": 1.0, + "content": "Ilya Kostrikov, Kumar Krishna Agrawal, Debidatta Dwibedi, Sergey Levine, and Jonathan Tomp-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 318, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 115, + 318, + 505, + 331 + ], + "score": 1.0, + "content": "son. Discriminator-actor-critic: Addressing sample inefficiency and reward bias in adversarial", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 329, + 453, + 342 + ], + "spans": [ + { + "bbox": [ + 115, + 329, + 453, + 342 + ], + "score": 1.0, + "content": "imitation learning. In International Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 306, + 505, + 342 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 348, + 504, + 372 + ], + "lines": [ + { + "bbox": [ + 106, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "Ilya Kostrikov, Ofir Nachum, and Jonathan Tompson. Imitation learning via off-policy distribution", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 360, + 438, + 372 + ], + "spans": [ + { + "bbox": [ + 115, + 360, + 438, + 372 + ], + "score": 1.0, + "content": "matching. International Conference on Learning Representations (ICLR), 2019.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 348, + 505, + 372 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 379, + 504, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 379, + 504, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 504, + 392 + ], + "score": 1.0, + "content": "HW Kuhn and AW Tucker. Nonlinear programming. In Proceedings of the Second Berkeley Sym-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 391, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 115, + 391, + 505, + 403 + ], + "score": 1.0, + "content": "posium on Mathematical Statistics and Probability. The Regents of the University of California,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 401, + 142, + 413 + ], + "spans": [ + { + "bbox": [ + 115, + 401, + 142, + 413 + ], + "score": 1.0, + "content": "1951.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 379, + 505, + 413 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 420, + 504, + 454 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 435 + ], + "score": 1.0, + "content": "Donghun Lee, Srivatsan Srinivasan, and Finale Doshi-Velez. Truly batch apprenticeship learning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 431, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 115, + 431, + 506, + 445 + ], + "score": 1.0, + "content": "with deep successor features. International Joint Conference on Artificial Intelligence (IJCAI),", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 114, + 442, + 143, + 455 + ], + "spans": [ + { + "bbox": [ + 114, + 442, + 143, + 455 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 420, + 506, + 455 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 502, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "Sergey Levine. Reinforcement learning and control as probabilistic inference: Tutorial and review.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 474, + 279, + 485 + ], + "spans": [ + { + "bbox": [ + 116, + 474, + 279, + 485 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1805.00909, 2018.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 462, + 505, + 485 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 503, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "Sergey Levine, Zoran Popovic, and Vladlen Koltun. Nonlinear inverse reinforcement learning with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 504, + 492, + 516 + ], + "spans": [ + { + "bbox": [ + 115, + 504, + 492, + 516 + ], + "score": 1.0, + "content": "gaussian processes. In Advances in Neural Information Processing Systems, pp. 19–27, 2011.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 493, + 505, + 516 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 523, + 504, + 546 + ], + "lines": [ + { + "bbox": [ + 106, + 524, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 505, + 536 + ], + "score": 1.0, + "content": "Soren Mindermann, Rohin Shah, Adam Gleave, and Dylan Hadfield-Menell. Active inverse reward ¨", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 534, + 310, + 547 + ], + "spans": [ + { + "bbox": [ + 116, + 534, + 310, + 547 + ], + "score": 1.0, + "content": "design. arXiv preprint arXiv:1809.03060, 2018.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 524, + 505, + 547 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 554, + 504, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 504, + 566 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wier-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 115, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "stra, and Martin Riedmiller. Playing atari with deep reinforcement learning. arXiv preprint", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 576, + 215, + 588 + ], + "spans": [ + { + "bbox": [ + 115, + 576, + 215, + 588 + ], + "score": 1.0, + "content": "arXiv:1312.5602, 2013.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 554, + 505, + 588 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 595, + 504, + 619 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 609 + ], + "score": 1.0, + "content": "Andrew Y Ng, Stuart J Russell, et al. Algorithms for inverse reinforcement learning. In Icml,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 606, + 211, + 619 + ], + "spans": [ + { + "bbox": [ + 116, + 606, + 211, + 619 + ], + "score": 1.0, + "content": "volume 1, pp. 2, 2000.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 594, + 505, + 619 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 626, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "Bilal Piot, Matthieu Geist, and Olivier Pietquin. Boosted and reward-regularized classification for", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 638, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 115, + 638, + 506, + 650 + ], + "score": 1.0, + "content": "apprenticeship learning. In Proceedings of the 2014 international conference on Autonomous", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 115, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "agents and multi-agent systems, pp. 1249–1256. International Foundation for Autonomous Agents", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 660, + 244, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 244, + 672 + ], + "score": 1.0, + "content": "and Multiagent Systems, 2014.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 626, + 506, + 672 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 679, + 503, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 693 + ], + "score": 1.0, + "content": "Antonin Raffin. Rl baselines zoo. https://github.com/araffin/rl-baselines-zoo,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 689, + 142, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 142, + 702 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 676, + 506, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 504, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 504, + 723 + ], + "score": 1.0, + "content": "Deepak Ramachandran and Eyal Amir. Bayesian inverse reinforcement learning. In IJCAI, vol-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 721, + 236, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 236, + 732 + ], + "score": 1.0, + "content": "ume 7, pp. 2586–2591, 2007.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 106, + 708, + 504, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Carl Edward Rasmussen. Gaussian processes in machine learning. In Summer School on Machine", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 267, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 267, + 106 + ], + "score": 1.0, + "content": "Learning, pp. 63–71. Springer, 2003.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 125 + ], + "score": 1.0, + "content": "Siddharth Reddy, Anca D Dragan, and Sergey Levine. Sqil: Imitation learning via reinforcement", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 123, + 495, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 123, + 495, + 136 + ], + "score": 1.0, + "content": "learning with sparse rewards. In International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 109, + 141, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 107, + 142, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 107, + 142, + 505, + 154 + ], + "score": 1.0, + "content": "Constantin A Rothkopf and Christos Dimitrakakis. Preference elicitation and inverse reinforce-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "ment learning. In Joint European conference on machine learning and knowledge discovery in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 163, + 271, + 177 + ], + "spans": [ + { + "bbox": [ + 116, + 163, + 271, + 177 + ], + "score": 1.0, + "content": "databases, pp. 34–48. Springer, 2011.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 105, + 182, + 504, + 206 + ], + "lines": [ + { + "bbox": [ + 105, + 182, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 197 + ], + "score": 1.0, + "content": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 194, + 380, + 206 + ], + "spans": [ + { + "bbox": [ + 116, + 194, + 380, + 206 + ], + "score": 1.0, + "content": "optimization algorithms. arXiv preprint arXiv:1707.06347, 2017.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 212, + 504, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "Brian D Ziebart. Modeling Purposeful Adaptive Behavior with the Principle of Maximum Causal", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 223, + 334, + 236 + ], + "spans": [ + { + "bbox": [ + 116, + 223, + 334, + 236 + ], + "score": 1.0, + "content": "Entropy. PhD thesis, University of Washington, 2010.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 504, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 242, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 256 + ], + "score": 1.0, + "content": "Brian D Ziebart, Andrew L Maas, J Andrew Bagnell, and Anind K Dey. Maximum entropy inverse", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 254, + 457, + 267 + ], + "spans": [ + { + "bbox": [ + 116, + 254, + 457, + 267 + ], + "score": 1.0, + "content": "reinforcement learning. In Aaai, volume 8, pp. 1433–1438. Chicago, IL, USA, 2008.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Carl Edward Rasmussen. Gaussian processes in machine learning. In Summer School on Machine", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 267, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 267, + 106 + ], + "score": 1.0, + "content": "Learning, pp. 63–71. Springer, 2003.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 506, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 125 + ], + "score": 1.0, + "content": "Siddharth Reddy, Anca D Dragan, and Sergey Levine. Sqil: Imitation learning via reinforcement", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 123, + 495, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 123, + 495, + 136 + ], + "score": 1.0, + "content": "learning with sparse rewards. In International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 111, + 505, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 141, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 107, + 142, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 107, + 142, + 505, + 154 + ], + "score": 1.0, + "content": "Constantin A Rothkopf and Christos Dimitrakakis. Preference elicitation and inverse reinforce-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "ment learning. In Joint European conference on machine learning and knowledge discovery in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 163, + 271, + 177 + ], + "spans": [ + { + "bbox": [ + 116, + 163, + 271, + 177 + ], + "score": 1.0, + "content": "databases, pp. 34–48. Springer, 2011.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 107, + 142, + 505, + 177 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 182, + 504, + 206 + ], + "lines": [ + { + "bbox": [ + 105, + 182, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 197 + ], + "score": 1.0, + "content": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 194, + 380, + 206 + ], + "spans": [ + { + "bbox": [ + 116, + 194, + 380, + 206 + ], + "score": 1.0, + "content": "optimization algorithms. arXiv preprint arXiv:1707.06347, 2017.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 182, + 505, + 206 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 212, + 504, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "Brian D Ziebart. Modeling Purposeful Adaptive Behavior with the Principle of Maximum Causal", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 223, + 334, + 236 + ], + "spans": [ + { + "bbox": [ + 116, + 223, + 334, + 236 + ], + "score": 1.0, + "content": "Entropy. PhD thesis, University of Washington, 2010.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 213, + 505, + 236 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 504, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 242, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 256 + ], + "score": 1.0, + "content": "Brian D Ziebart, Andrew L Maas, J Andrew Bagnell, and Anind K Dey. Maximum entropy inverse", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 254, + 457, + 267 + ], + "spans": [ + { + "bbox": [ + 116, + 254, + 457, + 267 + ], + "score": 1.0, + "content": "reinforcement learning. In Aaai, volume 8, pp. 1433–1438. Chicago, IL, USA, 2008.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 242, + 505, + 267 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 247, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 247, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 247, + 95 + ], + "score": 1.0, + "content": "A EXPERIMENTAL SETUP", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 505, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 110, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 505, + 123 + ], + "score": 1.0, + "content": "Expert Demonstrators. Demonstrations are produced by running pre-trained and hyperparmeter-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 121, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 505, + 134 + ], + "score": 1.0, + "content": "optimised agents taken from the RL Baselines Zoo (Raffin, 2018) in OpenAI Stable Baselines (Hill", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "score": 1.0, + "content": "et al., 2018). For Acrobot and LunarLander these are DQNs (Mnih et al., 2013), while CartPole uses", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "score": 1.0, + "content": "PPO2 (Schulman et al., 2017). Trajectories were then sub-sampled for every 20th step in Acrobot", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 154, + 304, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 304, + 167 + ], + "score": 1.0, + "content": "and CartPole, and every 5th step in LunarLander.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 184, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 505, + 198 + ], + "score": 1.0, + "content": "Testing setup. For control environments algorithms were presented with (1,3,7,10,15) trajectories", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 195, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 505, + 209 + ], + "score": 1.0, + "content": "uniformly sampled from a pool of 1000 expert trajectories. Each algorithm was then trained until", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 207, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 505, + 220 + ], + "score": 1.0, + "content": "convergence and tested by performing 300 live roll-outs in the simulated environment and recording", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 217, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 231 + ], + "score": 1.0, + "content": "the average accumulated reward received in each episode. This whole process was then repeated 10", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 229, + 387, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 387, + 241 + ], + "score": 1.0, + "content": "times, consequently with different initialisations and seen trajectories.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 505, + 292 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "Implementations. All methods are neural network based and so in experiments they share the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "same architecture of 2 hidden layers of 64 units each connected by exponential linear unit (ELU)", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 281, + 191, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 191, + 293 + ], + "score": 1.0, + "content": "activation functions.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 505, + 320 + ], + "lines": [ + { + "bbox": [ + 104, + 296, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 104, + 296, + 505, + 311 + ], + "score": 1.0, + "content": "Publicly available code was used in the implementations of a number of the benchmarks, specifi-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 306, + 133, + 323 + ], + "spans": [ + { + "bbox": [ + 104, + 306, + 133, + 323 + ], + "score": 1.0, + "content": "cally:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 130, + 334, + 480, + 455 + ], + "lines": [ + { + "bbox": [ + 132, + 335, + 273, + 347 + ], + "spans": [ + { + "bbox": [ + 132, + 335, + 273, + 347 + ], + "score": 1.0, + "content": "• VDICE (Kostrikov et al., 2019):", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 140, + 346, + 479, + 358 + ], + "spans": [ + { + "bbox": [ + 140, + 346, + 479, + 358 + ], + "score": 1.0, + "content": "https://github.com/google-research/google-research/tree/", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 357, + 246, + 370 + ], + "spans": [ + { + "bbox": [ + 141, + 357, + 246, + 370 + ], + "score": 1.0, + "content": "master/value_dice", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 132, + 388, + 244, + 401 + ], + "spans": [ + { + "bbox": [ + 132, + 388, + 244, + 401 + ], + "score": 1.0, + "content": "• DSFN (Lee et al., 2019):", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 399, + 463, + 413 + ], + "spans": [ + { + "bbox": [ + 141, + 399, + 463, + 413 + ], + "score": 1.0, + "content": "https://github.com/dtak/batch-apprenticeship-learning", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 132, + 431, + 251, + 444 + ], + "spans": [ + { + "bbox": [ + 132, + 431, + 251, + 444 + ], + "score": 1.0, + "content": "• EDM (Jarrett et al., 2020):", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 443, + 342, + 456 + ], + "spans": [ + { + "bbox": [ + 141, + 443, + 342, + 456 + ], + "score": 1.0, + "content": "https://github.com/wgrathwohl/JEM", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 469, + 505, + 492 + ], + "lines": [ + { + "bbox": [ + 106, + 469, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 505, + 482 + ], + "score": 1.0, + "content": "Note that VDICE was originally designed for continuous actions with a Normal distribution output", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 481, + 402, + 493 + ], + "spans": [ + { + "bbox": [ + 107, + 481, + 402, + 493 + ], + "score": 1.0, + "content": "which we adapt for the experiments by replacing with a Gumbel-softmax.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "title", + "bbox": [ + 107, + 515, + 169, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 513, + 171, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 171, + 530 + ], + "score": 1.0, + "content": "B PROOFS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 543, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 104, + 541, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 104, + 541, + 506, + 558 + ], + "score": 1.0, + "content": "Proof of proposition 1. Assuming the constraint is satisfied, we are maximising the following", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 555, + 149, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 149, + 568 + ], + "score": 1.0, + "content": "objective:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 577, + 467, + 610 + ], + "lines": [ + { + "bbox": [ + 126, + 577, + 467, + 610 + ], + "spans": [ + { + "bbox": [ + 126, + 577, + 467, + 610 + ], + "score": 0.92, + "content": "\\mathcal { F } ( \\phi , \\theta ) = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal { D } } \\log \\frac { \\exp \\beta Q _ { \\theta } ( s , a ) ) } { \\sum _ { b \\in \\mathcal { A } } \\exp ( \\beta Q _ { \\theta } ( s , b ) ) } - D _ { K L } \\big ( q _ { \\phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \\big )", + "type": "interline_equation", + "image_path": "6cc3bd8ee994e7067352680b1c0f4e7bf683ad55e33076f9db973e6035afd169.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 126, + 577, + 467, + 588.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 126, + 588.0, + 467, + 599.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 126, + 599.0, + 467, + 610.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 621, + 320, + 633 + ], + "lines": [ + { + "bbox": [ + 106, + 619, + 321, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 321, + 635 + ], + "score": 1.0, + "content": "Which is equivalent to minimising the negative value", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 643, + 473, + 688 + ], + "lines": [ + { + "bbox": [ + 120, + 643, + 473, + 688 + ], + "spans": [ + { + "bbox": [ + 120, + 643, + 473, + 688 + ], + "score": 0.93, + "content": "\\mathcal { F } ( \\phi , \\theta ) = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal { D } } - \\log \\frac { \\exp \\beta Q _ { \\theta } ( s , a ) ) } { \\sum _ { b \\in \\mathcal { A } } \\exp ( \\beta Q _ { \\theta } ( s , b ) ) } + \\underbrace { D _ { K L } \\big ( q _ { \\phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \\big ) } _ { \\mathcal { L } _ { r e g } } ,", + "type": "interline_equation", + "image_path": "6e760f31446e4ca138988bf7ec1f10f266bed97384094a2066f4c54c88f1c129.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 120, + 643, + 473, + 658.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 120, + 658.0, + 473, + 673.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 120, + 673.0, + 473, + 688.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 504, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 184, + 712 + ], + "score": 1.0, + "content": "with the first term", + "type": "text" + }, + { + "bbox": [ + 184, + 699, + 205, + 710 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { B C }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "being the negative log-likelihood of the data and the classic behavioural", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 366, + 723 + ], + "score": 1.0, + "content": "cloning objective. Now given a standard Gaussian prior then the", + "type": "text" + }, + { + "bbox": [ + 366, + 710, + 381, + 719 + ], + "score": 0.31, + "content": "\\mathrm { K L }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "divergence of a Gaussian with", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 719, + 506, + 735 + ], + "spans": [ + { + "bbox": [ + 104, + 719, + 130, + 735 + ], + "score": 1.0, + "content": "mean", + "type": "text" + }, + { + "bbox": [ + 131, + 722, + 138, + 732 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 719, + 191, + 735 + ], + "score": 1.0, + "content": "and variance", + "type": "text" + }, + { + "bbox": [ + 191, + 720, + 203, + 730 + ], + "score": 0.87, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 719, + 307, + 735 + ], + "score": 1.0, + "content": "from the prior is given by", + "type": "text" + }, + { + "bbox": [ + 308, + 720, + 420, + 734 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\frac { 1 } { 2 } ( - \\log ( \\sigma ^ { 2 } ) + \\sigma ^ { 2 } - 1 + \\bar { \\mu } ^ { 2 } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 719, + 506, + 735 + ], + "score": 1.0, + "content": "(Kingma & Welling,", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 247, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 247, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 247, + 95 + ], + "score": 1.0, + "content": "A EXPERIMENTAL SETUP", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 505, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 110, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 505, + 123 + ], + "score": 1.0, + "content": "Expert Demonstrators. Demonstrations are produced by running pre-trained and hyperparmeter-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 121, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 505, + 134 + ], + "score": 1.0, + "content": "optimised agents taken from the RL Baselines Zoo (Raffin, 2018) in OpenAI Stable Baselines (Hill", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "score": 1.0, + "content": "et al., 2018). For Acrobot and LunarLander these are DQNs (Mnih et al., 2013), while CartPole uses", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "score": 1.0, + "content": "PPO2 (Schulman et al., 2017). Trajectories were then sub-sampled for every 20th step in Acrobot", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 154, + 304, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 304, + 167 + ], + "score": 1.0, + "content": "and CartPole, and every 5th step in LunarLander.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 110, + 505, + 167 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 184, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 505, + 198 + ], + "score": 1.0, + "content": "Testing setup. For control environments algorithms were presented with (1,3,7,10,15) trajectories", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 195, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 505, + 209 + ], + "score": 1.0, + "content": "uniformly sampled from a pool of 1000 expert trajectories. Each algorithm was then trained until", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 207, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 505, + 220 + ], + "score": 1.0, + "content": "convergence and tested by performing 300 live roll-outs in the simulated environment and recording", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 217, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 231 + ], + "score": 1.0, + "content": "the average accumulated reward received in each episode. This whole process was then repeated 10", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 229, + 387, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 387, + 241 + ], + "score": 1.0, + "content": "times, consequently with different initialisations and seen trajectories.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 184, + 505, + 241 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 505, + 292 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "Implementations. All methods are neural network based and so in experiments they share the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "same architecture of 2 hidden layers of 64 units each connected by exponential linear unit (ELU)", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 281, + 191, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 191, + 293 + ], + "score": 1.0, + "content": "activation functions.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 258, + 505, + 293 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 505, + 320 + ], + "lines": [ + { + "bbox": [ + 104, + 296, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 104, + 296, + 505, + 311 + ], + "score": 1.0, + "content": "Publicly available code was used in the implementations of a number of the benchmarks, specifi-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 306, + 133, + 323 + ], + "spans": [ + { + "bbox": [ + 104, + 306, + 133, + 323 + ], + "score": 1.0, + "content": "cally:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 104, + 296, + 505, + 323 + ] + }, + { + "type": "list", + "bbox": [ + 130, + 334, + 480, + 455 + ], + "lines": [ + { + "bbox": [ + 132, + 335, + 273, + 347 + ], + "spans": [ + { + "bbox": [ + 132, + 335, + 273, + 347 + ], + "score": 1.0, + "content": "• VDICE (Kostrikov et al., 2019):", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 140, + 346, + 479, + 358 + ], + "spans": [ + { + "bbox": [ + 140, + 346, + 479, + 358 + ], + "score": 1.0, + "content": "https://github.com/google-research/google-research/tree/", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 357, + 246, + 370 + ], + "spans": [ + { + "bbox": [ + 141, + 357, + 246, + 370 + ], + "score": 1.0, + "content": "master/value_dice", + "type": "text" + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 388, + 244, + 401 + ], + "spans": [ + { + "bbox": [ + 132, + 388, + 244, + 401 + ], + "score": 1.0, + "content": "• DSFN (Lee et al., 2019):", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 141, + 399, + 463, + 413 + ], + "spans": [ + { + "bbox": [ + 141, + 399, + 463, + 413 + ], + "score": 1.0, + "content": "https://github.com/dtak/batch-apprenticeship-learning", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 431, + 251, + 444 + ], + "spans": [ + { + "bbox": [ + 132, + 431, + 251, + 444 + ], + "score": 1.0, + "content": "• EDM (Jarrett et al., 2020):", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 141, + 443, + 342, + 456 + ], + "spans": [ + { + "bbox": [ + 141, + 443, + 342, + 456 + ], + "score": 1.0, + "content": "https://github.com/wgrathwohl/JEM", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + } + ], + "index": 19, + "bbox_fs": [ + 132, + 335, + 479, + 456 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 469, + 505, + 492 + ], + "lines": [ + { + "bbox": [ + 106, + 469, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 505, + 482 + ], + "score": 1.0, + "content": "Note that VDICE was originally designed for continuous actions with a Normal distribution output", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 481, + 402, + 493 + ], + "spans": [ + { + "bbox": [ + 107, + 481, + 402, + 493 + ], + "score": 1.0, + "content": "which we adapt for the experiments by replacing with a Gumbel-softmax.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 469, + 505, + 493 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 515, + 169, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 513, + 171, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 171, + 530 + ], + "score": 1.0, + "content": "B PROOFS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 543, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 104, + 541, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 104, + 541, + 506, + 558 + ], + "score": 1.0, + "content": "Proof of proposition 1. Assuming the constraint is satisfied, we are maximising the following", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 555, + 149, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 149, + 568 + ], + "score": 1.0, + "content": "objective:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 104, + 541, + 506, + 568 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 577, + 467, + 610 + ], + "lines": [ + { + "bbox": [ + 126, + 577, + 467, + 610 + ], + "spans": [ + { + "bbox": [ + 126, + 577, + 467, + 610 + ], + "score": 0.92, + "content": "\\mathcal { F } ( \\phi , \\theta ) = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal { D } } \\log \\frac { \\exp \\beta Q _ { \\theta } ( s , a ) ) } { \\sum _ { b \\in \\mathcal { A } } \\exp ( \\beta Q _ { \\theta } ( s , b ) ) } - D _ { K L } \\big ( q _ { \\phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \\big )", + "type": "interline_equation", + "image_path": "6cc3bd8ee994e7067352680b1c0f4e7bf683ad55e33076f9db973e6035afd169.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 126, + 577, + 467, + 588.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 126, + 588.0, + 467, + 599.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 126, + 599.0, + 467, + 610.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 621, + 320, + 633 + ], + "lines": [ + { + "bbox": [ + 106, + 619, + 321, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 321, + 635 + ], + "score": 1.0, + "content": "Which is equivalent to minimising the negative value", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 619, + 321, + 635 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 643, + 473, + 688 + ], + "lines": [ + { + "bbox": [ + 120, + 643, + 473, + 688 + ], + "spans": [ + { + "bbox": [ + 120, + 643, + 473, + 688 + ], + "score": 0.93, + "content": "\\mathcal { F } ( \\phi , \\theta ) = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal { D } } - \\log \\frac { \\exp \\beta Q _ { \\theta } ( s , a ) ) } { \\sum _ { b \\in \\mathcal { A } } \\exp ( \\beta Q _ { \\theta } ( s , b ) ) } + \\underbrace { D _ { K L } \\big ( q _ { \\phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \\big ) } _ { \\mathcal { L } _ { r e g } } ,", + "type": "interline_equation", + "image_path": "6e760f31446e4ca138988bf7ec1f10f266bed97384094a2066f4c54c88f1c129.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 120, + 643, + 473, + 658.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 120, + 658.0, + 473, + 673.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 120, + 673.0, + 473, + 688.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 504, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 184, + 712 + ], + "score": 1.0, + "content": "with the first term", + "type": "text" + }, + { + "bbox": [ + 184, + 699, + 205, + 710 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { B C }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "being the negative log-likelihood of the data and the classic behavioural", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 366, + 723 + ], + "score": 1.0, + "content": "cloning objective. Now given a standard Gaussian prior then the", + "type": "text" + }, + { + "bbox": [ + 366, + 710, + 381, + 719 + ], + "score": 0.31, + "content": "\\mathrm { K L }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "divergence of a Gaussian with", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 719, + 506, + 735 + ], + "spans": [ + { + "bbox": [ + 104, + 719, + 130, + 735 + ], + "score": 1.0, + "content": "mean", + "type": "text" + }, + { + "bbox": [ + 131, + 722, + 138, + 732 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 719, + 191, + 735 + ], + "score": 1.0, + "content": "and variance", + "type": "text" + }, + { + "bbox": [ + 191, + 720, + 203, + 730 + ], + "score": 0.87, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 719, + 307, + 735 + ], + "score": 1.0, + "content": "from the prior is given by", + "type": "text" + }, + { + "bbox": [ + 308, + 720, + 420, + 734 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\frac { 1 } { 2 } ( - \\log ( \\sigma ^ { 2 } ) + \\sigma ^ { 2 } - 1 + \\bar { \\mu } ^ { 2 } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 719, + 506, + 735 + ], + "score": 1.0, + "content": "(Kingma & Welling,", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 104, + 698, + 506, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 407, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 408, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 220, + 96 + ], + "score": 1.0, + "content": "2013). Then given our prior", + "type": "text" + }, + { + "bbox": [ + 221, + 82, + 321, + 95 + ], + "score": 0.92, + "content": "p ( R ( s , a ) ) = \\mathcal { N } ( R ; 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 81, + 408, + 96 + ], + "score": 1.0, + "content": ", the KL evaluates as:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 100, + 469, + 225 + ], + "lines": [ + { + "bbox": [ + 123, + 100, + 469, + 225 + ], + "spans": [ + { + "bbox": [ + 123, + 100, + 469, + 225 + ], + "score": 0.95, + "content": "\\begin{array} { l } { { \\displaystyle { \\mathcal L } _ { r e g } = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal D } _ { K L } \\big ( q _ { \\phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \\big ) } } \\\\ { { = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal D } \\frac { 1 } { 2 } \\big ( - \\log ( \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) + \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] - 1 + \\mathbb { E } _ { q _ { \\phi } } [ R ( s , a ) ] ^ { 2 } \\big ) } } \\\\ { { = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal D } \\frac { 1 } { 2 } \\big ( \\mathbb { E } _ { q _ { \\phi } } [ R ( s , a ) ] ^ { 2 } ) + g ( \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) } } \\\\ { { = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal D } \\frac { 1 } { 2 } \\big ( Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) \\big ) ^ { 2 } + g ( \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) } } \\end{array}", + "type": "interline_equation", + "image_path": "3982fadd32581fcf7ff439784c25ae2e8dbbf7258f95998ae859909bd77b402a.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 123, + 100, + 469, + 141.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 123, + 141.66666666666666, + 469, + 183.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 123, + 183.33333333333331, + 469, + 224.99999999999997 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 230, + 503, + 266 + ], + "lines": [ + { + "bbox": [ + 104, + 228, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 104, + 228, + 199, + 246 + ], + "score": 1.0, + "content": "Since by assumption", + "type": "text" + }, + { + "bbox": [ + 199, + 231, + 396, + 243 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { q _ { \\phi } } [ R ( s , a ) ] ~ = ~ \\mathbb { E } _ { \\pi , T } [ Q _ { \\theta } ( s , a ) ~ - ~ \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 228, + 505, + 246 + ], + "score": 1.0, + "content": "with the expectation ap-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 241, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 468, + 254 + ], + "score": 1.0, + "content": "proximated over samples in the data and considering a definition of the function", + "type": "text" + }, + { + "bbox": [ + 469, + 244, + 476, + 253 + ], + "score": 0.77, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 241, + 505, + 254 + ], + "score": 1.0, + "content": "to be", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 252, + 402, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 387, + 266 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\dot { g } ( \\mathrm { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) = \\frac { 1 } { 2 } ( - \\log ( \\mathrm { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) + \\mathrm { V a r } _ { q _ { \\phi } } [ \\bar { R } ( s , a ) ] - 1 ) . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 252, + 402, + 266 + ], + "score": 1.0, + "content": ". \u0003", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 292, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 407, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 408, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 220, + 96 + ], + "score": 1.0, + "content": "2013). Then given our prior", + "type": "text" + }, + { + "bbox": [ + 221, + 82, + 321, + 95 + ], + "score": 0.92, + "content": "p ( R ( s , a ) ) = \\mathcal { N } ( R ; 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 81, + 408, + 96 + ], + "score": 1.0, + "content": ", the KL evaluates as:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 81, + 408, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 100, + 469, + 225 + ], + "lines": [ + { + "bbox": [ + 123, + 100, + 469, + 225 + ], + "spans": [ + { + "bbox": [ + 123, + 100, + 469, + 225 + ], + "score": 0.95, + "content": "\\begin{array} { l } { { \\displaystyle { \\mathcal L } _ { r e g } = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal D } _ { K L } \\big ( q _ { \\phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \\big ) } } \\\\ { { = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal D } \\frac { 1 } { 2 } \\big ( - \\log ( \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) + \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] - 1 + \\mathbb { E } _ { q _ { \\phi } } [ R ( s , a ) ] ^ { 2 } \\big ) } } \\\\ { { = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal D } \\frac { 1 } { 2 } \\big ( \\mathbb { E } _ { q _ { \\phi } } [ R ( s , a ) ] ^ { 2 } ) + g ( \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) } } \\\\ { { = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal D } \\frac { 1 } { 2 } \\big ( Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) \\big ) ^ { 2 } + g ( \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) } } \\end{array}", + "type": "interline_equation", + "image_path": "3982fadd32581fcf7ff439784c25ae2e8dbbf7258f95998ae859909bd77b402a.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 123, + 100, + 469, + 141.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 123, + 141.66666666666666, + 469, + 183.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 123, + 183.33333333333331, + 469, + 224.99999999999997 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 230, + 503, + 266 + ], + "lines": [ + { + "bbox": [ + 104, + 228, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 104, + 228, + 199, + 246 + ], + "score": 1.0, + "content": "Since by assumption", + "type": "text" + }, + { + "bbox": [ + 199, + 231, + 396, + 243 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { q _ { \\phi } } [ R ( s , a ) ] ~ = ~ \\mathbb { E } _ { \\pi , T } [ Q _ { \\theta } ( s , a ) ~ - ~ \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 228, + 505, + 246 + ], + "score": 1.0, + "content": "with the expectation ap-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 241, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 468, + 254 + ], + "score": 1.0, + "content": "proximated over samples in the data and considering a definition of the function", + "type": "text" + }, + { + "bbox": [ + 469, + 244, + 476, + 253 + ], + "score": 0.77, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 241, + 505, + 254 + ], + "score": 1.0, + "content": "to be", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 252, + 402, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 387, + 266 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\dot { g } ( \\mathrm { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) = \\frac { 1 } { 2 } ( - \\log ( \\mathrm { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) + \\mathrm { V a r } _ { q _ { \\phi } } [ \\bar { R } ( s , a ) ] - 1 ) . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 252, + 402, + 266 + ], + "score": 1.0, + "content": ". \u0003", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 104, + 228, + 505, + 266 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/4qR3coiNaIv/4qR3coiNaIv_model.json b/parse/train/4qR3coiNaIv/4qR3coiNaIv_model.json new file mode 100644 index 0000000000000000000000000000000000000000..c30aa717255e71d09473df14e63eaf8c4edb7a8f --- /dev/null +++ b/parse/train/4qR3coiNaIv/4qR3coiNaIv_model.json @@ -0,0 +1,19877 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1423, + 1404, + 1423, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 398, + 707, + 1302, + 707, + 1302, + 1133, + 398, + 1133 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 1255, + 1402, + 1255, + 1402, + 1408, + 299, + 1408 + ], + "score": 0.975 + }, + { + "category_id": 0, + "poly": [ + 299, + 220, + 1399, + 220, + 1399, + 321, + 299, + 321 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 853, + 377, + 1344, + 377, + 1344, + 559, + 853, + 559 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 302, + 1188, + 573, + 1188, + 573, + 1222, + 302, + 1222 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 104, + 299, + 104 + ], + "score": 0.868 + }, + { + "category_id": 0, + "poly": [ + 773, + 641, + 927, + 641, + 927, + 674, + 773, + 674 + ], + "score": 0.868 + }, + { + "category_id": 1, + "poly": [ + 314, + 377, + 784, + 377, + 784, + 468, + 314, + 468 + ], + "score": 0.805 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 857, + 2088, + 857, + 2112, + 842, + 2112 + ], + "score": 0.655 + }, + { + "category_id": 0, + "poly": [ + 856, + 379, + 1139, + 379, + 1139, + 407, + 856, + 407 + ], + "score": 0.158 + }, + { + "category_id": 13, + "poly": [ + 928, + 1761, + 967, + 1761, + 967, + 1791, + 928, + 1791 + ], + "score": 0.42, + "latex": "\\mathrm { N g }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1790, + 335, + 1790, + 335, + 1822, + 296, + 1822 + ], + "score": 0.29, + "latex": "\\mathrm { N g }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 218.0, + 1407.0, + 218.0, + 1407.0, + 274.0, + 293.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 275.0, + 526.0, + 275.0, + 526.0, + 329.0, + 293.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1184.0, + 579.0, + 1184.0, + 579.0, + 1230.0, + 294.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 637.0, + 934.0, + 637.0, + 934.0, + 680.0, + 768.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 2088.0, + 858.0, + 2088.0, + 858.0, + 2116.0, + 841.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 374.0, + 1144.0, + 374.0, + 1144.0, + 411.0, + 851.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1420.0, + 1405.0, + 1420.0, + 1405.0, + 1463.0, + 292.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1454.0, + 1405.0, + 1454.0, + 1405.0, + 1489.0, + 294.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1484.0, + 1405.0, + 1484.0, + 1405.0, + 1522.0, + 292.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1515.0, + 1404.0, + 1515.0, + 1404.0, + 1551.0, + 293.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1546.0, + 1406.0, + 1546.0, + 1406.0, + 1582.0, + 292.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1575.0, + 1406.0, + 1575.0, + 1406.0, + 1612.0, + 293.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1609.0, + 1404.0, + 1609.0, + 1404.0, + 1643.0, + 294.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1635.0, + 1406.0, + 1635.0, + 1406.0, + 1677.0, + 292.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1669.0, + 1405.0, + 1669.0, + 1405.0, + 1703.0, + 292.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1698.0, + 1406.0, + 1698.0, + 1406.0, + 1735.0, + 293.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1729.0, + 1406.0, + 1729.0, + 1406.0, + 1766.0, + 292.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1759.0, + 927.0, + 1759.0, + 927.0, + 1794.0, + 293.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1759.0, + 1405.0, + 1759.0, + 1405.0, + 1794.0, + 968.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1790.0, + 1404.0, + 1790.0, + 1404.0, + 1825.0, + 336.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1856.0, + 293.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1889.0, + 292.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1879.0, + 1405.0, + 1879.0, + 1405.0, + 1917.0, + 293.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1945.0, + 295.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1940.0, + 1404.0, + 1940.0, + 1404.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2005.0, + 762.0, + 2005.0, + 762.0, + 2035.0, + 294.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 704.0, + 1304.0, + 704.0, + 1304.0, + 743.0, + 393.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 737.0, + 1303.0, + 737.0, + 1303.0, + 771.0, + 394.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 769.0, + 1305.0, + 769.0, + 1305.0, + 801.0, + 395.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 800.0, + 1305.0, + 800.0, + 1305.0, + 832.0, + 394.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 829.0, + 1306.0, + 829.0, + 1306.0, + 863.0, + 393.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 859.0, + 1306.0, + 859.0, + 1306.0, + 894.0, + 393.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 888.0, + 1307.0, + 888.0, + 1307.0, + 924.0, + 392.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 921.0, + 1305.0, + 921.0, + 1305.0, + 955.0, + 393.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 951.0, + 1306.0, + 951.0, + 1306.0, + 986.0, + 392.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 982.0, + 1305.0, + 982.0, + 1305.0, + 1013.0, + 394.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1011.0, + 1306.0, + 1011.0, + 1306.0, + 1046.0, + 394.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1042.0, + 1305.0, + 1042.0, + 1305.0, + 1075.0, + 394.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1074.0, + 1304.0, + 1074.0, + 1304.0, + 1106.0, + 395.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1103.0, + 1297.0, + 1103.0, + 1297.0, + 1138.0, + 394.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1256.0, + 1404.0, + 1256.0, + 1404.0, + 1289.0, + 295.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1284.0, + 1404.0, + 1284.0, + 1404.0, + 1322.0, + 294.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1316.0, + 1404.0, + 1316.0, + 1404.0, + 1349.0, + 295.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1345.0, + 1404.0, + 1345.0, + 1404.0, + 1384.0, + 293.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1378.0, + 904.0, + 1378.0, + 904.0, + 1412.0, + 294.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 376.0, + 1144.0, + 376.0, + 1144.0, + 409.0, + 851.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 405.0, + 1325.0, + 405.0, + 1325.0, + 439.0, + 852.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 437.0, + 1347.0, + 437.0, + 1347.0, + 470.0, + 851.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 469.0, + 1333.0, + 469.0, + 1333.0, + 499.0, + 852.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 496.0, + 1297.0, + 496.0, + 1297.0, + 532.0, + 850.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 532.0, + 1109.0, + 532.0, + 1109.0, + 560.0, + 852.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 377.0, + 473.0, + 377.0, + 473.0, + 409.0, + 312.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 406.0, + 786.0, + 406.0, + 786.0, + 441.0, + 312.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 439.0, + 735.0, + 439.0, + 735.0, + 470.0, + 314.0, + 470.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1238, + 1405, + 1238, + 1405, + 1693, + 296, + 1693 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 717, + 1405, + 717, + 1405, + 1114, + 297, + 1114 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1730, + 1404, + 1730, + 1404, + 1944, + 298, + 1944 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 318, + 218, + 1357, + 218, + 1357, + 519, + 318, + 519 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 297, + 532, + 1405, + 532, + 1405, + 687, + 297, + 687 + ], + "score": 0.962 + }, + { + "category_id": 2, + "poly": [ + 294, + 1978, + 1403, + 1978, + 1403, + 2034, + 294, + 2034 + ], + "score": 0.937 + }, + { + "category_id": 0, + "poly": [ + 300, + 1166, + 1176, + 1166, + 1176, + 1201, + 300, + 1201 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.753 + }, + { + "category_id": 13, + "poly": [ + 582, + 1298, + 727, + 1298, + 727, + 1333, + 582, + 1333 + ], + "score": 0.93, + "latex": "\\pi \\in \\Delta ( \\mathcal { A } ) ^ { s }" + }, + { + "category_id": 13, + "poly": [ + 354, + 1655, + 587, + 1655, + 587, + 1695, + 354, + 1695 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { n = \\sum _ { i = 1 } ^ { m } ( \\tau ^ { ( i ) } - 1 ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1053, + 1518, + 1096, + 1518, + 1096, + 1559, + 1053, + 1559 + ], + "score": 0.92, + "latex": "a _ { t } ^ { ( i ) }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1517, + 755, + 1517, + 755, + 1563, + 296, + 1563 + ], + "score": 0.92, + "latex": "\\mathcal { D } _ { r a w } = \\{ ( s _ { 1 } ^ { ( i ) } , a _ { 1 } ^ { ( i ) } , \\dotsc , s _ { \\tau ^ { ( i ) } } ^ { ( \\bar { i } ) } , a _ { \\tau ^ { ( i ) } } ^ { ( i ) } ) \\} _ { i = 1 } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 1083, + 1267, + 1237, + 1267, + 1237, + 1297, + 1083, + 1297 + ], + "score": 0.92, + "latex": "\\vec { R } \\in \\mathbb { R } ^ { S \\times A 1 }" + }, + { + "category_id": 13, + "poly": [ + 834, + 1518, + 877, + 1518, + 877, + 1559, + 834, + 1559 + ], + "score": 0.92, + "latex": "s _ { t } ^ { ( i ) }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1300, + 414, + 1300, + 414, + 1333, + 296, + 1333 + ], + "score": 0.92, + "latex": "\\gamma \\in [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 785, + 1266, + 970, + 1266, + 970, + 1301, + 785, + 1301 + ], + "score": 0.91, + "latex": "T \\in \\Delta ( { \\cal S } ) ^ { s \\times { \\cal A } }" + }, + { + "category_id": 13, + "poly": [ + 1113, + 1332, + 1393, + 1332, + 1393, + 1367, + 1113, + 1367 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\rho _ { \\pi } ( s ) = \\sum _ { a \\in \\mathcal { A } } \\rho _ { \\pi } ( s , a ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1123, + 1623, + 1401, + 1623, + 1401, + 1659, + 1123, + 1659 + ], + "score": 0.91, + "latex": "\\mathcal { D } = \\{ ( s _ { i } , a _ { i } , s _ { i } ^ { \\prime } , a _ { i } ^ { \\prime } ) \\} _ { i = 1 } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 772, + 1299, + 1224, + 1299, + 1224, + 1336, + 772, + 1336 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\rho _ { \\pi } ( s , a ) = \\mathbb { E } _ { \\pi , T } [ \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } \\mathbb { 1 } _ { \\{ s _ { t } = s , a _ { t } = a \\} } ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 674, + 1562, + 718, + 1562, + 718, + 1592, + 674, + 1592 + ], + "score": 0.9, + "latex": "\\tau ^ { ( i ) }" + }, + { + "category_id": 13, + "poly": [ + 369, + 1269, + 452, + 1269, + 452, + 1297, + 369, + 1297 + ], + "score": 0.89, + "latex": "s \\in \\mathcal { S }" + }, + { + "category_id": 13, + "poly": [ + 556, + 1269, + 644, + 1269, + 644, + 1297, + 556, + 1297 + ], + "score": 0.89, + "latex": "a \\in \\mathcal A" + }, + { + "category_id": 13, + "poly": [ + 528, + 626, + 553, + 626, + 553, + 656, + 528, + 656 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1117, + 1492, + 1155, + 1492, + 1155, + 1518, + 1117, + 1518 + ], + "score": 0.85, + "latex": "\\pi _ { D }" + }, + { + "category_id": 13, + "poly": [ + 1252, + 1853, + 1276, + 1853, + 1276, + 1879, + 1252, + 1879 + ], + "score": 0.79, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 987, + 1462, + 1014, + 1462, + 1014, + 1486, + 987, + 1486 + ], + "score": 0.78, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 462, + 1630, + 480, + 1630, + 480, + 1652, + 462, + 1652 + ], + "score": 0.76, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1193, + 1368, + 1313, + 1368, + 1313, + 1398, + 1193, + 1398 + ], + "score": 0.7, + "latex": "\\mathbf { M D P } \\backslash R T" + }, + { + "category_id": 13, + "poly": [ + 1386, + 1528, + 1402, + 1528, + 1402, + 1554, + 1386, + 1554 + ], + "score": 0.63, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 665, + 1762, + 704, + 1762, + 704, + 1792, + 665, + 1792 + ], + "score": 0.5, + "latex": "\\mathrm { N g }" + }, + { + "category_id": 13, + "poly": [ + 417, + 1569, + 429, + 1569, + 429, + 1591, + 417, + 1591 + ], + "score": 0.29, + "latex": "i" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 226.0, + 473.0, + 226.0, + 473.0, + 248.0, + 353.0, + 248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 243.0, + 465.0, + 243.0, + 465.0, + 265.0, + 374.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 264.0, + 483.0, + 264.0, + 483.0, + 282.0, + 397.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 282.0, + 807.0, + 282.0, + 807.0, + 293.0, + 797.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 333.0, + 692.0, + 333.0, + 692.0, + 363.0, + 624.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 331.0, + 1335.0, + 331.0, + 1335.0, + 386.0, + 1272.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 357.0, + 695.0, + 357.0, + 695.0, + 383.0, + 622.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 373.0, + 921.0, + 373.0, + 921.0, + 408.0, + 863.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 371.0, + 1190.0, + 371.0, + 1190.0, + 422.0, + 1096.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 382.0, + 1336.0, + 382.0, + 1336.0, + 424.0, + 1270.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 416.0, + 954.0, + 416.0, + 954.0, + 453.0, + 770.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 429.0, + 1001.0, + 429.0, + 1001.0, + 463.0, + 993.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 415.0, + 1180.0, + 415.0, + 1180.0, + 445.0, + 1105.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 433.0, + 1360.0, + 433.0, + 1360.0, + 466.0, + 1246.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 494.0, + 517.0, + 494.0, + 517.0, + 526.0, + 359.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 502.0, + 669.0, + 502.0, + 669.0, + 517.0, + 531.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.25, + 299.0, + 675.25, + 299.0, + 675.25, + 329.0, + 641.25, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 360.0, + 1147.0, + 360.0, + 1147.0, + 383.0, + 1119.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 534.0, + 1403.0, + 534.0, + 1403.0, + 567.0, + 296.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 562.0, + 1403.0, + 562.0, + 1403.0, + 600.0, + 294.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 592.0, + 1403.0, + 592.0, + 1403.0, + 629.0, + 295.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 625.0, + 527.0, + 625.0, + 527.0, + 659.0, + 296.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 625.0, + 1403.0, + 625.0, + 1403.0, + 659.0, + 554.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 655.0, + 1134.0, + 655.0, + 1134.0, + 690.0, + 295.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2011.0, + 331.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 2004.0, + 874.0, + 2004.0, + 874.0, + 2034.0, + 297.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1162.0, + 1181.0, + 1162.0, + 1181.0, + 1206.0, + 293.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1235.0, + 1405.0, + 1235.0, + 1405.0, + 1271.0, + 293.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1261.0, + 368.0, + 1261.0, + 368.0, + 1303.0, + 290.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1261.0, + 555.0, + 1261.0, + 555.0, + 1303.0, + 453.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1261.0, + 784.0, + 1261.0, + 784.0, + 1303.0, + 645.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1261.0, + 1082.0, + 1261.0, + 1082.0, + 1303.0, + 971.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1261.0, + 1407.0, + 1261.0, + 1407.0, + 1303.0, + 1238.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 1280.0, + 295.0, + 1280.0, + 295.0, + 1350.0, + 283.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1280.0, + 581.0, + 1280.0, + 581.0, + 1350.0, + 415.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 1280.0, + 771.0, + 1280.0, + 771.0, + 1350.0, + 728.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1280.0, + 1416.0, + 1280.0, + 1416.0, + 1350.0, + 1225.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1329.0, + 1112.0, + 1329.0, + 1112.0, + 1371.0, + 291.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1329.0, + 1405.0, + 1329.0, + 1405.0, + 1371.0, + 1394.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1364.0, + 1192.0, + 1364.0, + 1192.0, + 1399.0, + 295.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 1364.0, + 1406.0, + 1364.0, + 1406.0, + 1399.0, + 1314.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1396.0, + 1406.0, + 1396.0, + 1406.0, + 1431.0, + 295.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1427.0, + 1405.0, + 1427.0, + 1405.0, + 1458.0, + 294.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1459.0, + 986.0, + 1459.0, + 986.0, + 1490.0, + 295.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 1459.0, + 1403.0, + 1459.0, + 1403.0, + 1490.0, + 1015.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1484.0, + 1116.0, + 1484.0, + 1116.0, + 1525.0, + 291.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1484.0, + 1407.0, + 1484.0, + 1407.0, + 1525.0, + 1156.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1503.0, + 295.0, + 1503.0, + 295.0, + 1574.0, + 286.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 1512.0, + 833.0, + 1512.0, + 833.0, + 1569.0, + 756.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1512.0, + 1052.0, + 1512.0, + 1052.0, + 1569.0, + 878.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1512.0, + 1385.0, + 1512.0, + 1385.0, + 1569.0, + 1097.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1512.0, + 1416.0, + 1512.0, + 1416.0, + 1569.0, + 1403.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1557.0, + 416.0, + 1557.0, + 416.0, + 1598.0, + 291.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1557.0, + 673.0, + 1557.0, + 673.0, + 1598.0, + 430.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 1557.0, + 1408.0, + 1557.0, + 1408.0, + 1598.0, + 719.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1591.0, + 1405.0, + 1591.0, + 1405.0, + 1628.0, + 293.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1620.0, + 461.0, + 1620.0, + 461.0, + 1666.0, + 289.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 1620.0, + 1122.0, + 1620.0, + 1122.0, + 1666.0, + 481.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1620.0, + 1405.0, + 1620.0, + 1405.0, + 1666.0, + 1402.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1645.0, + 353.0, + 1645.0, + 353.0, + 1705.0, + 289.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1645.0, + 606.0, + 1645.0, + 606.0, + 1705.0, + 588.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 716.0, + 1406.0, + 716.0, + 1406.0, + 754.0, + 294.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 746.0, + 1406.0, + 746.0, + 1406.0, + 787.0, + 292.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 780.0, + 1406.0, + 780.0, + 1406.0, + 816.0, + 294.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 805.0, + 1407.0, + 805.0, + 1407.0, + 848.0, + 294.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 840.0, + 1405.0, + 840.0, + 1405.0, + 877.0, + 295.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 870.0, + 1405.0, + 870.0, + 1405.0, + 904.0, + 292.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 895.0, + 1406.0, + 895.0, + 1406.0, + 941.0, + 291.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 932.0, + 1403.0, + 932.0, + 1403.0, + 965.0, + 295.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 961.0, + 1406.0, + 961.0, + 1406.0, + 998.0, + 292.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 994.0, + 1403.0, + 994.0, + 1403.0, + 1027.0, + 295.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1023.0, + 1406.0, + 1023.0, + 1406.0, + 1059.0, + 294.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1054.0, + 1405.0, + 1054.0, + 1405.0, + 1088.0, + 292.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1085.0, + 1220.0, + 1085.0, + 1220.0, + 1117.0, + 296.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1728.0, + 1406.0, + 1728.0, + 1406.0, + 1767.0, + 293.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1761.0, + 664.0, + 1761.0, + 664.0, + 1795.0, + 294.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 1761.0, + 1404.0, + 1761.0, + 1404.0, + 1795.0, + 705.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1792.0, + 1404.0, + 1792.0, + 1404.0, + 1826.0, + 294.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1822.0, + 1404.0, + 1822.0, + 1404.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1852.0, + 1251.0, + 1852.0, + 1251.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 1852.0, + 1406.0, + 1852.0, + 1406.0, + 1886.0, + 1277.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1881.0, + 1404.0, + 1881.0, + 1404.0, + 1917.0, + 293.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1914.0, + 1404.0, + 1914.0, + 1404.0, + 1949.0, + 294.0, + 1949.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1135, + 1404, + 1135, + 1404, + 1352, + 298, + 1352 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 571, + 1404, + 571, + 1404, + 786, + 297, + 786 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1579, + 1405, + 1579, + 1405, + 1765, + 297, + 1765 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1850, + 1404, + 1850, + 1404, + 2035, + 297, + 2035 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 296, + 384, + 1404, + 384, + 1404, + 508, + 296, + 508 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1403, + 228, + 1403, + 354, + 298, + 354 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1364, + 1402, + 1364, + 1402, + 1489, + 298, + 1489 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 620, + 1770, + 1076, + 1770, + 1076, + 1847, + 620, + 1847 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 304, + 972, + 1396, + 972, + 1396, + 1036, + 304, + 1036 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 475, + 1040, + 1224, + 1040, + 1224, + 1131, + 475, + 1131 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 674, + 791, + 1026, + 791, + 1026, + 867, + 674, + 867 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 556, + 911, + 1142, + 911, + 1142, + 966, + 556, + 966 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 654, + 512, + 1044, + 512, + 1044, + 564, + 654, + 564 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 300, + 871, + 1223, + 871, + 1223, + 903, + 300, + 903 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.908 + }, + { + "category_id": 0, + "poly": [ + 297, + 1523, + 947, + 1523, + 947, + 1555, + 297, + 1555 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1366, + 517, + 1400, + 517, + 1400, + 546, + 1366, + 546 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1070, + 1400, + 1070, + 1400, + 1099, + 1366, + 1099 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1366, + 922, + 1400, + 922, + 1400, + 952, + 1366, + 952 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1792, + 1400, + 1792, + 1400, + 1821, + 1366, + 1821 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1366, + 812, + 1400, + 812, + 1400, + 842, + 1366, + 842 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.666 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.401 + }, + { + "category_id": 14, + "poly": [ + 672, + 789, + 1026, + 789, + 1026, + 868, + 672, + 868 + ], + "score": 0.95, + "latex": "\\pi ( a | s ) = \\frac { \\exp ( Q ( s , a ) ) } { \\sum _ { b \\in \\cal { A } } \\exp ( Q ( s , b ) ) } ," + }, + { + "category_id": 14, + "poly": [ + 622, + 1768, + 1076, + 1768, + 1076, + 1847, + 622, + 1847 + ], + "score": 0.95, + "latex": "\\pi _ { D } ( a | s , R ) = \\frac { \\exp ( \\beta Q _ { R } ^ { \\pi _ { D } } ( s , a ) ) } { \\sum _ { b \\in \\cal { A } } \\exp ( \\beta Q _ { R } ^ { \\pi _ { D } } ( s , b ) ) } ," + }, + { + "category_id": 14, + "poly": [ + 476, + 1038, + 1224, + 1038, + 1224, + 1132, + 476, + 1132 + ], + "score": 0.94, + "latex": "R _ { Q _ { \\theta } } ( s , a ) = Q _ { \\theta } ( s , a ) - \\gamma \\mathbb { E } _ { s ^ { \\prime } \\sim \\rho _ { \\pi } } \\Bigg [ \\log \\Bigg ( \\sum _ { a ^ { \\prime } \\in \\mathcal { A } } \\exp ( Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ) \\Bigg ) \\Bigg ] ." + }, + { + "category_id": 14, + "poly": [ + 651, + 512, + 1043, + 512, + 1043, + 567, + 651, + 567 + ], + "score": 0.93, + "latex": "\\underset { \\pi } { \\arg \\operatorname* { m i n } } \\{ \\psi ^ { * } ( \\rho _ { \\pi } - \\rho _ { \\pi _ { D } } ) - H ( \\pi ) \\} ," + }, + { + "category_id": 13, + "poly": [ + 354, + 872, + 439, + 872, + 439, + 905, + 354, + 905 + ], + "score": 0.93, + "latex": "Q ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1911, + 402, + 1911, + 402, + 1946, + 298, + 1946 + ], + "score": 0.93, + "latex": "Q _ { R } ^ { \\pi } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 354, + 572, + 420, + 572, + 420, + 606, + 354, + 606 + ], + "score": 0.92, + "latex": "H ( \\pi )" + }, + { + "category_id": 13, + "poly": [ + 374, + 1850, + 508, + 1850, + 508, + 1884, + 374, + 1884 + ], + "score": 0.92, + "latex": "\\beta \\in [ 0 , \\infty )" + }, + { + "category_id": 14, + "poly": [ + 557, + 907, + 1142, + 907, + 1142, + 967, + 557, + 967 + ], + "score": 0.91, + "latex": "Q ( s , a ) \\triangleq R ( s , a ) + \\gamma \\mathbb { E } _ { s ^ { \\prime } \\sim \\rho _ { \\pi } } \\Big [ \\operatorname { s o f t } _ { a ^ { \\prime } } \\operatorname { m a x } Q ( s ^ { \\prime } , a ^ { \\prime } ) ) \\Big ] ." + }, + { + "category_id": 13, + "poly": [ + 1324, + 574, + 1358, + 574, + 1358, + 604, + 1324, + 604 + ], + "score": 0.89, + "latex": "\\psi ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1357, + 974, + 1392, + 974, + 1392, + 1005, + 1357, + 1005 + ], + "score": 0.88, + "latex": "Q _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 917, + 974, + 941, + 974, + 941, + 1005, + 917, + 1005 + ], + "score": 0.87, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 532, + 873, + 557, + 873, + 557, + 904, + 532, + 904 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 820, + 1941, + 1395, + 1941, + 1395, + 1978, + 820, + 1978 + ], + "score": 0.86, + "latex": "\\begin{array} { r } { Q _ { R } ^ { \\pi } ( s , \\bar { a } ) = \\mathbb { E } _ { \\pi , T } [ \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } R ( s _ { t } ) | s _ { 0 } = s , a _ { 0 } = a ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1255, + 638, + 1287, + 638, + 1287, + 666, + 1255, + 666 + ], + "score": 0.85, + "latex": "\\rho _ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 526, + 1944, + 551, + 1944, + 551, + 1970, + 526, + 1970 + ], + "score": 0.81, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1913, + 1257, + 1913, + 1257, + 1943, + 1233, + 1943 + ], + "score": 0.76, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 684, + 1952, + 703, + 1952, + 703, + 1970, + 684, + 1970 + ], + "score": 0.73, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1228, + 1674, + 1253, + 1674, + 1253, + 1701, + 1228, + 1701 + ], + "score": 0.48, + "latex": "\\&" + }, + { + "category_id": 13, + "poly": [ + 838, + 448, + 959, + 448, + 959, + 477, + 838, + 477 + ], + "score": 0.35, + "latex": "{ \\mathrm { ~ R L ~ o ~ I R L } }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1523.0, + 953.0, + 1523.0, + 953.0, + 1559.0, + 295.0, + 1559.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": [ + 292.0, + 1132.0, + 1405.0, + 1132.0, + 1405.0, + 1173.0, + 292.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1168.0, + 1405.0, + 1168.0, + 1405.0, + 1200.0, + 294.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1195.0, + 1405.0, + 1195.0, + 1405.0, + 1232.0, + 293.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1227.0, + 1405.0, + 1227.0, + 1405.0, + 1262.0, + 294.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1256.0, + 1405.0, + 1256.0, + 1405.0, + 1294.0, + 293.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1288.0, + 1405.0, + 1288.0, + 1405.0, + 1323.0, + 294.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1318.0, + 1051.0, + 1318.0, + 1051.0, + 1355.0, + 293.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 573.0, + 353.0, + 573.0, + 353.0, + 607.0, + 296.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 573.0, + 1323.0, + 573.0, + 1323.0, + 607.0, + 421.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 573.0, + 1404.0, + 573.0, + 1404.0, + 607.0, + 1359.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 601.0, + 1405.0, + 601.0, + 1405.0, + 638.0, + 294.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 634.0, + 1254.0, + 634.0, + 1254.0, + 669.0, + 294.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 634.0, + 1404.0, + 634.0, + 1404.0, + 669.0, + 1288.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 665.0, + 1407.0, + 665.0, + 1407.0, + 699.0, + 294.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 692.0, + 1405.0, + 692.0, + 1405.0, + 730.0, + 292.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 723.0, + 1402.0, + 723.0, + 1402.0, + 761.0, + 294.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 754.0, + 952.0, + 754.0, + 952.0, + 789.0, + 294.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1579.0, + 1405.0, + 1579.0, + 1405.0, + 1617.0, + 295.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1611.0, + 1407.0, + 1611.0, + 1407.0, + 1648.0, + 294.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1643.0, + 1407.0, + 1643.0, + 1407.0, + 1678.0, + 294.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1672.0, + 1227.0, + 1672.0, + 1227.0, + 1708.0, + 295.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1672.0, + 1405.0, + 1672.0, + 1405.0, + 1708.0, + 1254.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1700.0, + 1407.0, + 1700.0, + 1407.0, + 1737.0, + 294.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1732.0, + 1279.0, + 1732.0, + 1279.0, + 1770.0, + 294.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1847.0, + 373.0, + 1847.0, + 373.0, + 1884.0, + 294.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 1847.0, + 1406.0, + 1847.0, + 1406.0, + 1884.0, + 509.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1879.0, + 1405.0, + 1879.0, + 1405.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1908.0, + 297.0, + 1908.0, + 297.0, + 1951.0, + 294.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1908.0, + 1232.0, + 1908.0, + 1232.0, + 1951.0, + 403.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1908.0, + 1406.0, + 1908.0, + 1406.0, + 1951.0, + 1258.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1930.0, + 525.0, + 1930.0, + 525.0, + 1990.0, + 287.0, + 1990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1930.0, + 683.0, + 1930.0, + 683.0, + 1990.0, + 552.0, + 1990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1930.0, + 819.0, + 1930.0, + 819.0, + 1990.0, + 704.0, + 1990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1396.0, + 1930.0, + 1413.0, + 1930.0, + 1413.0, + 1990.0, + 1396.0, + 1990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 1248.0, + 2002.0, + 1248.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 383.0, + 1404.0, + 383.0, + 1404.0, + 420.0, + 295.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 417.0, + 1404.0, + 417.0, + 1404.0, + 449.0, + 293.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 446.0, + 837.0, + 446.0, + 837.0, + 481.0, + 294.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 446.0, + 1404.0, + 446.0, + 1404.0, + 481.0, + 960.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 476.0, + 1380.0, + 476.0, + 1380.0, + 512.0, + 294.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 1404.0, + 230.0, + 1404.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 262.0, + 1404.0, + 262.0, + 1404.0, + 295.0, + 294.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1407.0, + 291.0, + 1407.0, + 327.0, + 294.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 320.0, + 1110.0, + 320.0, + 1110.0, + 358.0, + 293.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1366.0, + 1404.0, + 1366.0, + 1404.0, + 1398.0, + 296.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1395.0, + 1403.0, + 1395.0, + 1403.0, + 1430.0, + 294.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1425.0, + 1404.0, + 1425.0, + 1404.0, + 1462.0, + 294.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1458.0, + 562.0, + 1458.0, + 562.0, + 1491.0, + 294.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 967.0, + 916.0, + 967.0, + 916.0, + 1010.0, + 298.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 967.0, + 1356.0, + 967.0, + 1356.0, + 1010.0, + 942.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 967.0, + 1403.0, + 967.0, + 1403.0, + 1010.0, + 1393.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1001.0, + 774.0, + 1001.0, + 774.0, + 1041.0, + 296.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 866.0, + 353.0, + 866.0, + 353.0, + 910.0, + 294.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 866.0, + 531.0, + 866.0, + 531.0, + 910.0, + 440.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 866.0, + 1228.0, + 866.0, + 1228.0, + 910.0, + 558.0, + 910.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1697, + 1403, + 1697, + 1403, + 1851, + 298, + 1851 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1280, + 1404, + 1280, + 1404, + 1586, + 297, + 1586 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 881, + 1404, + 881, + 1404, + 1247, + 297, + 1247 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 300, + 229, + 1403, + 229, + 1403, + 353, + 300, + 353 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 360, + 379, + 1404, + 379, + 1404, + 857, + 360, + 857 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 298, + 1920, + 1407, + 1920, + 1407, + 1981, + 298, + 1981 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 683, + 1859, + 1015, + 1859, + 1015, + 1908, + 683, + 1908 + ], + "score": 0.934 + }, + { + "category_id": 8, + "poly": [ + 563, + 1989, + 1135, + 1989, + 1135, + 2031, + 563, + 2031 + ], + "score": 0.931 + }, + { + "category_id": 0, + "poly": [ + 298, + 1629, + 1221, + 1629, + 1221, + 1666, + 298, + 1666 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 104, + 300, + 104 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1367, + 1865, + 1399, + 1865, + 1399, + 1893, + 1367, + 1893 + ], + "score": 0.875 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1995, + 1400, + 1995, + 1400, + 2024, + 1366, + 2024 + ], + "score": 0.863 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.785 + }, + { + "category_id": 14, + "poly": [ + 680, + 1858, + 1018, + 1858, + 1018, + 1913, + 680, + 1913 + ], + "score": 0.93, + "latex": "\\operatorname* { m i n } _ { \\phi } \\{ D _ { \\mathrm { K L } } ( q _ { \\phi } ( R ) | | p ( R | \\mathcal { D } ) ) \\} ." + }, + { + "category_id": 13, + "poly": [ + 425, + 540, + 517, + 540, + 517, + 574, + 425, + 574 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( | S | ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1040, + 1789, + 1112, + 1789, + 1112, + 1824, + 1040, + 1824 + ], + "score": 0.92, + "latex": "q _ { \\phi } ( R )" + }, + { + "category_id": 13, + "poly": [ + 886, + 448, + 997, + 448, + 997, + 483, + 886, + 483 + ], + "score": 0.92, + "latex": "| S | < \\infty" + }, + { + "category_id": 14, + "poly": [ + 563, + 1987, + 1134, + 1987, + 1134, + 2032, + 563, + 2032 + ], + "score": 0.91, + "latex": "\\mathcal { F } ( \\phi ) = \\mathbb { E } _ { q _ { \\phi } } \\big [ \\log p ( \\mathcal { D } | R ) \\big ] - D _ { K L } \\big ( q _ { \\phi } ( R ) | | p ( R ) \\big ) ," + }, + { + "category_id": 13, + "poly": [ + 438, + 674, + 463, + 674, + 463, + 704, + 438, + 704 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1326, + 1791, + 1345, + 1791, + 1345, + 1822, + 1326, + 1822 + ], + "score": 0.84, + "latex": "\\phi" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1625.0, + 1226.0, + 1625.0, + 1226.0, + 1670.0, + 291.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1699.0, + 1403.0, + 1699.0, + 1403.0, + 1732.0, + 297.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1728.0, + 1404.0, + 1728.0, + 1404.0, + 1765.0, + 294.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1758.0, + 1407.0, + 1758.0, + 1407.0, + 1794.0, + 292.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1789.0, + 1039.0, + 1789.0, + 1039.0, + 1826.0, + 293.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 1789.0, + 1325.0, + 1789.0, + 1325.0, + 1826.0, + 1113.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1789.0, + 1405.0, + 1789.0, + 1405.0, + 1826.0, + 1346.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1819.0, + 1371.0, + 1819.0, + 1371.0, + 1856.0, + 294.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1278.0, + 1406.0, + 1278.0, + 1406.0, + 1316.0, + 295.0, + 1316.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": [ + 291.0, + 1338.0, + 1405.0, + 1338.0, + 1405.0, + 1380.0, + 291.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1368.0, + 1406.0, + 1368.0, + 1406.0, + 1411.0, + 292.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1400.0, + 1404.0, + 1400.0, + 1404.0, + 1438.0, + 294.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1433.0, + 1406.0, + 1433.0, + 1406.0, + 1469.0, + 295.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1463.0, + 1404.0, + 1463.0, + 1404.0, + 1499.0, + 295.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1494.0, + 1404.0, + 1494.0, + 1404.0, + 1529.0, + 295.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1524.0, + 1406.0, + 1524.0, + 1406.0, + 1560.0, + 295.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1555.0, + 1391.0, + 1555.0, + 1391.0, + 1590.0, + 296.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 880.0, + 1406.0, + 880.0, + 1406.0, + 916.0, + 295.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 914.0, + 1404.0, + 914.0, + 1404.0, + 944.0, + 296.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 940.0, + 1405.0, + 940.0, + 1405.0, + 979.0, + 292.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 972.0, + 1405.0, + 972.0, + 1405.0, + 1009.0, + 292.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1005.0, + 1406.0, + 1005.0, + 1406.0, + 1039.0, + 295.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1032.0, + 1406.0, + 1032.0, + 1406.0, + 1069.0, + 294.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1068.0, + 1402.0, + 1068.0, + 1402.0, + 1098.0, + 295.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1093.0, + 1406.0, + 1093.0, + 1406.0, + 1131.0, + 294.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1126.0, + 1406.0, + 1126.0, + 1406.0, + 1160.0, + 295.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1157.0, + 1404.0, + 1157.0, + 1404.0, + 1188.0, + 296.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1188.0, + 1406.0, + 1188.0, + 1406.0, + 1219.0, + 293.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1217.0, + 1404.0, + 1217.0, + 1404.0, + 1251.0, + 295.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 230.0, + 1403.0, + 230.0, + 1403.0, + 264.0, + 294.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 1404.0, + 261.0, + 1404.0, + 296.0, + 294.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1404.0, + 291.0, + 1404.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 323.0, + 1105.0, + 323.0, + 1105.0, + 355.0, + 294.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 377.0, + 1405.0, + 377.0, + 1405.0, + 415.0, + 361.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 408.0, + 1402.0, + 408.0, + 1402.0, + 445.0, + 393.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 446.0, + 885.0, + 446.0, + 885.0, + 486.0, + 357.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 446.0, + 1406.0, + 446.0, + 1406.0, + 486.0, + 998.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 478.0, + 1405.0, + 478.0, + 1405.0, + 514.0, + 391.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 511.0, + 1405.0, + 511.0, + 1405.0, + 545.0, + 395.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 539.0, + 424.0, + 539.0, + 424.0, + 576.0, + 393.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 539.0, + 1405.0, + 539.0, + 1405.0, + 576.0, + 518.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 571.0, + 1404.0, + 571.0, + 1404.0, + 608.0, + 395.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 611.0, + 1406.0, + 611.0, + 1406.0, + 648.0, + 362.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 638.0, + 1406.0, + 638.0, + 1406.0, + 679.0, + 391.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 670.0, + 437.0, + 670.0, + 437.0, + 708.0, + 392.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 670.0, + 1405.0, + 670.0, + 1405.0, + 708.0, + 464.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 703.0, + 1405.0, + 703.0, + 1405.0, + 737.0, + 396.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 735.0, + 1405.0, + 735.0, + 1405.0, + 769.0, + 395.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 765.0, + 1405.0, + 765.0, + 1405.0, + 799.0, + 393.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 793.0, + 1406.0, + 793.0, + 1406.0, + 829.0, + 392.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 825.0, + 1299.0, + 825.0, + 1299.0, + 859.0, + 396.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1917.0, + 1404.0, + 1917.0, + 1404.0, + 1956.0, + 295.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1948.0, + 846.0, + 1948.0, + 846.0, + 1984.0, + 293.0, + 1984.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1064, + 1405, + 1064, + 1405, + 1403, + 296, + 1403 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 845, + 1405, + 845, + 1405, + 1033, + 297, + 1033 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 295, + 643, + 1405, + 643, + 1405, + 829, + 295, + 829 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 393, + 1404, + 393, + 1404, + 518, + 298, + 518 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1909, + 1403, + 1909, + 1403, + 2036, + 297, + 2036 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 358, + 1669, + 1338, + 1669, + 1338, + 1802, + 358, + 1802 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 301, + 1561, + 1397, + 1561, + 1397, + 1655, + 301, + 1655 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 295, + 228, + 1406, + 228, + 1406, + 324, + 295, + 324 + ], + "score": 0.963 + }, + { + "category_id": 8, + "poly": [ + 422, + 532, + 1277, + 532, + 1277, + 628, + 422, + 628 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 296, + 1815, + 1406, + 1815, + 1406, + 1878, + 296, + 1878 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 489, + 1416, + 1212, + 1416, + 1212, + 1550, + 489, + 1550 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 719, + 336, + 978, + 336, + 978, + 377, + 719, + 377 + ], + "score": 0.94 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 813, + 74, + 813, + 105, + 299, + 105 + ], + "score": 0.916 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1766, + 1399, + 1766, + 1399, + 1796, + 1352, + 1796 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1366, + 342, + 1400, + 342, + 1400, + 371, + 1366, + 371 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1365, + 562, + 1400, + 562, + 1400, + 593, + 1365, + 593 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1437, + 1400, + 1437, + 1400, + 1468, + 1351, + 1468 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.744 + }, + { + "category_id": 8, + "poly": [ + 489, + 1416, + 1208, + 1416, + 1208, + 1501, + 489, + 1501 + ], + "score": 0.102 + }, + { + "category_id": 14, + "poly": [ + 357, + 1668, + 1339, + 1668, + 1339, + 1806, + 357, + 1806 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } { \\mathcal { F } ( \\phi , \\theta , \\mathcal { D } ) = \\displaystyle \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal { D } } \\log \\frac { \\exp \\beta Q _ { \\theta } ( s , a ) ) } { \\sum _ { b \\in A } \\exp ( \\beta Q _ { \\theta } ( s , b ) ) } - D _ { K L } \\big ( q _ { \\phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \\big ) } & { } \\\\ { + \\lambda \\log q _ { \\phi } ( Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ) . } & { } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 422, + 530, + 1277, + 530, + 1277, + 630, + 422, + 630 + ], + "score": 0.94, + "latex": "\\mathcal { F } ( \\phi ) = \\mathbb { E } _ { q _ { \\phi } } \\left[ \\sum _ { ( s , a ) \\in \\mathcal { D } } \\log \\frac { \\exp ( \\beta Q _ { R } ^ { \\pi _ { D } } ( s , a ) ) } { \\sum _ { b \\in \\mathcal { A } } \\exp ( \\beta Q _ { R } ^ { \\pi _ { D } } ( s , b ) ) } \\right] - D _ { K L } \\big ( q _ { \\phi } ( R ) | | p ( R ) \\big ) ." + }, + { + "category_id": 14, + "poly": [ + 719, + 335, + 979, + 335, + 979, + 377, + 719, + 377 + ], + "score": 0.93, + "latex": "q _ { \\phi } ( R ) = \\mathcal { N } ( R ; \\mu , \\sigma ^ { 2 } ) ," + }, + { + "category_id": 13, + "poly": [ + 1277, + 1127, + 1402, + 1127, + 1402, + 1161, + 1277, + 1161 + ], + "score": 0.92, + "latex": "R ( s , a ) \\ =" + }, + { + "category_id": 13, + "poly": [ + 374, + 393, + 435, + 393, + 435, + 426, + 374, + 426 + ], + "score": 0.92, + "latex": "\\mu , \\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 675, + 414, + 675, + 414, + 710, + 298, + 710 + ], + "score": 0.91, + "latex": "Q _ { R } ^ { \\pi _ { D } } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1157, + 707, + 1157, + 707, + 1192, + 297, + 1192 + ], + "score": 0.9, + "latex": "\\mathbb { E } _ { s ^ { \\prime } , a ^ { \\prime } \\sim \\pi , T } [ \\bar { Q } _ { R } ^ { \\pi } ( { \\bar { s , } } a ) - \\gamma Q _ { R } ^ { \\pi } ( s ^ { \\prime } , a ^ { \\prime } ) ]" + }, + { + "category_id": 13, + "poly": [ + 384, + 1310, + 422, + 1310, + 422, + 1341, + 384, + 1341 + ], + "score": 0.89, + "latex": "Q _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 732, + 843, + 758, + 843, + 758, + 876, + 732, + 876 + ], + "score": 0.86, + "latex": "\\hat { R }" + }, + { + "category_id": 13, + "poly": [ + 786, + 232, + 806, + 232, + 806, + 262, + 786, + 262 + ], + "score": 0.86, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1055, + 850, + 1080, + 850, + 1080, + 880, + 1055, + 880 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 618, + 768, + 643, + 768, + 643, + 798, + 618, + 798 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 728, + 294, + 752, + 294, + 752, + 319, + 728, + 319 + ], + "score": 0.85, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 1152, + 676, + 1177, + 676, + 1177, + 707, + 1152, + 707 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 297, + 1313, + 328, + 1313, + 328, + 1344, + 297, + 1344 + ], + "score": 0.84, + "latex": "q _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 1115, + 1220, + 1136, + 1220, + 1136, + 1251, + 1115, + 1251 + ], + "score": 0.84, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1182, + 1158, + 1207, + 1158, + 1207, + 1189, + 1182, + 1189 + ], + "score": 0.84, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 593, + 1128, + 619, + 1128, + 619, + 1158, + 593, + 1158 + ], + "score": 0.83, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 298, + 427, + 317, + 427, + 317, + 457, + 298, + 457 + ], + "score": 0.83, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1195, + 707, + 1215, + 707, + 1215, + 737, + 1195, + 737 + ], + "score": 0.82, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1818, + 1252, + 1818, + 1252, + 1842, + 1233, + 1842 + ], + "score": 0.81, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 874, + 768, + 899, + 768, + 899, + 794, + 874, + 794 + ], + "score": 0.8, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 837, + 707, + 861, + 707, + 861, + 733, + 837, + 733 + ], + "score": 0.8, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 981, + 1220, + 999, + 1220, + 999, + 1246, + 981, + 1246 + ], + "score": 0.78, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 1036, + 401, + 1053, + 401, + 1053, + 422, + 1036, + 422 + ], + "score": 0.71, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 704, + 1511, + 1204, + 1511, + 1204, + 1549, + 704, + 1549 + ], + "score": 0.7, + "latex": "\\mathbb { E } _ { \\pi , T } [ - \\log q _ { \\phi } ( Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ) ] < \\epsilon ." + }, + { + "category_id": 13, + "poly": [ + 356, + 1568, + 374, + 1568, + 374, + 1590, + 356, + 1590 + ], + "score": 0.69, + "latex": "\\epsilon" + }, + { + "category_id": 14, + "poly": [ + 487, + 1415, + 1209, + 1415, + 1209, + 1506, + 487, + 1506 + ], + "score": 0.62, + "latex": "\\operatorname* { m a x } _ { \\phi , \\theta } \\sum _ { ( s , a ) \\in \\mathcal { D } } \\log \\frac { \\exp ( \\beta Q _ { \\theta } ( s , a ) ) } { \\sum _ { b \\in \\mathcal { A } } \\exp ( \\beta Q _ { \\theta } ( s , b ) ) } - D _ { K L } \\big ( q _ { \\phi } ( R ) | | p ( R ) \\big ) ," + }, + { + "category_id": 13, + "poly": [ + 632, + 1219, + 680, + 1219, + 680, + 1250, + 632, + 1250 + ], + "score": 0.59, + "latex": "Q _ { \\theta } ?" + }, + { + "category_id": 13, + "poly": [ + 1099, + 880, + 1122, + 880, + 1122, + 910, + 1099, + 910 + ], + "score": 0.47, + "latex": "\\boldsymbol { Q }" + }, + { + "category_id": 13, + "poly": [ + 1052, + 880, + 1123, + 880, + 1123, + 910, + 1052, + 910 + ], + "score": 0.33, + "latex": "\\mathrm { T D } / Q" + }, + { + "category_id": 13, + "poly": [ + 662, + 1595, + 687, + 1595, + 687, + 1621, + 662, + 1621 + ], + "score": 0.28, + "latex": "\\&" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 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, + 1066.0, + 1405.0, + 1066.0, + 1405.0, + 1101.0, + 294.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1095.0, + 1407.0, + 1095.0, + 1407.0, + 1134.0, + 291.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1124.0, + 592.0, + 1124.0, + 592.0, + 1165.0, + 291.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1124.0, + 1276.0, + 1124.0, + 1276.0, + 1165.0, + 620.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1155.0, + 296.0, + 1155.0, + 296.0, + 1197.0, + 291.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1155.0, + 1181.0, + 1155.0, + 1181.0, + 1197.0, + 708.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 1155.0, + 1406.0, + 1155.0, + 1406.0, + 1197.0, + 1208.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1181.0, + 1408.0, + 1181.0, + 1408.0, + 1226.0, + 291.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1219.0, + 631.0, + 1219.0, + 631.0, + 1253.0, + 294.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 1219.0, + 980.0, + 1219.0, + 980.0, + 1253.0, + 681.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1219.0, + 1114.0, + 1219.0, + 1114.0, + 1253.0, + 1000.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 1219.0, + 1405.0, + 1219.0, + 1405.0, + 1253.0, + 1137.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1248.0, + 1405.0, + 1248.0, + 1405.0, + 1283.0, + 294.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1273.0, + 1406.0, + 1273.0, + 1406.0, + 1318.0, + 291.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1307.0, + 296.0, + 1307.0, + 296.0, + 1347.0, + 290.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1307.0, + 383.0, + 1307.0, + 383.0, + 1347.0, + 329.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1307.0, + 1407.0, + 1307.0, + 1407.0, + 1347.0, + 423.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1341.0, + 1406.0, + 1341.0, + 1406.0, + 1376.0, + 294.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1369.0, + 1207.0, + 1369.0, + 1207.0, + 1407.0, + 294.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 848.0, + 731.0, + 848.0, + 731.0, + 884.0, + 294.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 848.0, + 1054.0, + 848.0, + 1054.0, + 884.0, + 759.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 848.0, + 1405.0, + 848.0, + 1405.0, + 884.0, + 1081.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 879.0, + 1051.0, + 879.0, + 1051.0, + 915.0, + 294.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 879.0, + 1406.0, + 879.0, + 1406.0, + 915.0, + 1124.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 908.0, + 1406.0, + 908.0, + 1406.0, + 944.0, + 295.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 939.0, + 1405.0, + 939.0, + 1405.0, + 975.0, + 295.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 970.0, + 1406.0, + 970.0, + 1406.0, + 1006.0, + 295.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1001.0, + 1363.0, + 1001.0, + 1363.0, + 1037.0, + 295.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 642.0, + 1406.0, + 642.0, + 1406.0, + 679.0, + 294.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 666.0, + 297.0, + 666.0, + 297.0, + 722.0, + 288.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 666.0, + 1151.0, + 666.0, + 1151.0, + 722.0, + 415.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 666.0, + 1411.0, + 666.0, + 1411.0, + 722.0, + 1178.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 707.0, + 836.0, + 707.0, + 836.0, + 739.0, + 294.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 707.0, + 1194.0, + 707.0, + 1194.0, + 739.0, + 862.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 707.0, + 1403.0, + 707.0, + 1403.0, + 739.0, + 1216.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 735.0, + 1405.0, + 735.0, + 1405.0, + 770.0, + 293.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 768.0, + 617.0, + 768.0, + 617.0, + 800.0, + 295.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 768.0, + 873.0, + 768.0, + 873.0, + 800.0, + 644.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 768.0, + 1405.0, + 768.0, + 1405.0, + 800.0, + 900.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 799.0, + 942.0, + 799.0, + 942.0, + 830.0, + 295.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 391.0, + 373.0, + 391.0, + 373.0, + 430.0, + 293.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 391.0, + 1035.0, + 391.0, + 1035.0, + 430.0, + 436.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 391.0, + 1404.0, + 391.0, + 1404.0, + 430.0, + 1054.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 424.0, + 297.0, + 424.0, + 297.0, + 459.0, + 292.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 424.0, + 1405.0, + 424.0, + 1405.0, + 459.0, + 318.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 457.0, + 1406.0, + 457.0, + 1406.0, + 489.0, + 296.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 485.0, + 1225.0, + 485.0, + 1225.0, + 520.0, + 293.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 1403.0, + 1911.0, + 1403.0, + 1944.0, + 295.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1978.0, + 292.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2038.0, + 291.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1561.0, + 355.0, + 1561.0, + 355.0, + 1597.0, + 295.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1561.0, + 1402.0, + 1561.0, + 1402.0, + 1597.0, + 375.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1591.0, + 661.0, + 1591.0, + 661.0, + 1629.0, + 295.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1591.0, + 1405.0, + 1591.0, + 1405.0, + 1629.0, + 688.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1624.0, + 615.0, + 1624.0, + 615.0, + 1658.0, + 295.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 231.0, + 785.0, + 231.0, + 785.0, + 265.0, + 297.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 231.0, + 1404.0, + 231.0, + 1404.0, + 265.0, + 807.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 1404.0, + 261.0, + 1404.0, + 294.0, + 295.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 289.0, + 727.0, + 289.0, + 727.0, + 327.0, + 294.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 289.0, + 1383.0, + 289.0, + 1383.0, + 327.0, + 753.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1815.0, + 1232.0, + 1815.0, + 1232.0, + 1850.0, + 295.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1815.0, + 1404.0, + 1815.0, + 1404.0, + 1850.0, + 1253.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1845.0, + 702.0, + 1845.0, + 702.0, + 1880.0, + 293.0, + 1880.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 668, + 1403, + 668, + 1403, + 945, + 298, + 945 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1668, + 1404, + 1668, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1193, + 1045, + 1193, + 1045, + 1526, + 298, + 1526 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 959, + 1404, + 959, + 1404, + 1145, + 298, + 1145 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 1076, + 1199, + 1386, + 1199, + 1386, + 1411, + 1076, + 1411 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 296, + 1529, + 1398, + 1529, + 1398, + 1621, + 296, + 1621 + ], + "score": 0.958 + }, + { + "category_id": 4, + "poly": [ + 1067, + 1446, + 1401, + 1446, + 1401, + 1507, + 1067, + 1507 + ], + "score": 0.937 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 105, + 300, + 105 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.778 + }, + { + "category_id": 1, + "poly": [ + 297, + 275, + 1374, + 275, + 1374, + 586, + 297, + 586 + ], + "score": 0.731 + }, + { + "category_id": 0, + "poly": [ + 303, + 238, + 1145, + 238, + 1145, + 270, + 303, + 270 + ], + "score": 0.564 + }, + { + "category_id": 0, + "poly": [ + 296, + 277, + 1139, + 277, + 1139, + 307, + 296, + 307 + ], + "score": 0.145 + }, + { + "category_id": 13, + "poly": [ + 381, + 307, + 526, + 307, + 526, + 338, + 381, + 338 + ], + "score": 0.93, + "latex": "\\mathcal { D } , S , A , \\gamma , \\lambda" + }, + { + "category_id": 13, + "poly": [ + 1303, + 960, + 1375, + 960, + 1375, + 994, + 1303, + 994 + ], + "score": 0.93, + "latex": "q _ { \\phi } ( R )" + }, + { + "category_id": 13, + "poly": [ + 429, + 399, + 504, + 399, + 504, + 429, + 429, + 429 + ], + "score": 0.89, + "latex": "\\mathcal { D } _ { m i n i }" + }, + { + "category_id": 13, + "poly": [ + 360, + 670, + 397, + 670, + 397, + 702, + 360, + 702 + ], + "score": 0.88, + "latex": "Q _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 401, + 339, + 448, + 339, + 448, + 369, + 401, + 369 + ], + "score": 0.87, + "latex": "\\phi , \\theta" + }, + { + "category_id": 13, + "poly": [ + 1312, + 462, + 1360, + 462, + 1360, + 495, + 1312, + 495 + ], + "score": 0.87, + "latex": "\\phi , \\theta" + }, + { + "category_id": 13, + "poly": [ + 1289, + 1852, + 1314, + 1852, + 1314, + 1882, + 1289, + 1882 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 447, + 674, + 478, + 674, + 478, + 703, + 447, + 703 + ], + "score": 0.85, + "latex": "q _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 1050, + 884, + 1071, + 884, + 1071, + 915, + 1050, + 915 + ], + "score": 0.85, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1293, + 336, + 1359, + 336, + 1359, + 371, + 1293, + 371 + ], + "score": 0.85, + "latex": "( \\phi , \\theta )" + }, + { + "category_id": 13, + "poly": [ + 336, + 464, + 761, + 464, + 761, + 496, + 336, + 496 + ], + "score": 0.84, + "latex": "( \\phi ^ { \\prime } , \\theta ^ { \\prime } ) ( \\phi , \\theta ) + \\eta \\nabla _ { \\phi , \\theta } \\mathcal { F } ( \\phi , \\theta , \\mathcal { D } )" + }, + { + "category_id": 13, + "poly": [ + 520, + 278, + 540, + 278, + 540, + 308, + 520, + 308 + ], + "score": 0.82, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 338, + 429, + 732, + 429, + 732, + 463, + 338, + 463 + ], + "score": 0.8, + "latex": "\\begin{array} { r } { \\mathcal { F } ( \\phi , \\theta , \\mathcal { D } ) = \\mathbb { E } [ \\frac { n } { b } \\mathcal { F } ( \\phi , \\theta , \\mathcal { D } _ { m i n i } ) ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1366, + 1700, + 1391, + 1700, + 1391, + 1730, + 1366, + 1730 + ], + "score": 0.8, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 983, + 884, + 1001, + 884, + 1001, + 910, + 983, + 910 + ], + "score": 0.77, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 682, + 312, + 700, + 312, + 700, + 338, + 682, + 338 + ], + "score": 0.76, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 569, + 399, + 596, + 399, + 596, + 426, + 569, + 426 + ], + "score": 0.73, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 658, + 1023, + 680, + 1023, + 680, + 1049, + 658, + 1049 + ], + "score": 0.72, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 879, + 278, + 896, + 278, + 896, + 304, + 879, + 304 + ], + "score": 0.69, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 887, + 308, + 903, + 308, + 903, + 335, + 887, + 335 + ], + "score": 0.51, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 399, + 553, + 446, + 553, + 446, + 585, + 399, + 585 + ], + "score": 0.41, + "latex": "\\phi , \\theta" + }, + { + "category_id": 13, + "poly": [ + 677, + 343, + 701, + 343, + 701, + 367, + 677, + 367 + ], + "score": 0.38, + "latex": "\\triangleright" + }, + { + "category_id": 13, + "poly": [ + 342, + 494, + 487, + 494, + 487, + 525, + 342, + 525 + ], + "score": 0.3, + "latex": "\\phi , \\theta \\phi ^ { \\prime } , \\theta ^ { \\prime }" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 1217.0, + 1343.0, + 1217.0, + 1343.0, + 1253.0, + 1314.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1222.0, + 1211.0, + 1222.0, + 1211.0, + 1298.0, + 1131.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 1226.0, + 1314.0, + 1226.0, + 1314.0, + 1246.0, + 1291.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 1277.0, + 1360.0, + 1277.0, + 1360.0, + 1333.0, + 1309.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1317.0, + 1199.0, + 1317.0, + 1199.0, + 1385.0, + 1133.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1362.0, + 1250.0, + 1362.0, + 1250.0, + 1403.0, + 1209.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 1383.0, + 1315.0, + 1383.0, + 1315.0, + 1408.0, + 1291.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1444.0, + 1404.0, + 1444.0, + 1404.0, + 1480.0, + 1064.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1475.0, + 1268.0, + 1475.0, + 1268.0, + 1511.0, + 1064.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 71.0, + 815.0, + 71.0, + 815.0, + 108.0, + 294.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 862.0, + 2087.0, + 862.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 233.0, + 1152.0, + 233.0, + 1152.0, + 279.0, + 298.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 271.0, + 519.0, + 271.0, + 519.0, + 314.0, + 293.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 271.0, + 878.0, + 271.0, + 878.0, + 314.0, + 541.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 271.0, + 1134.0, + 271.0, + 1134.0, + 314.0, + 897.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 670.0, + 359.0, + 670.0, + 359.0, + 703.0, + 297.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 670.0, + 446.0, + 670.0, + 446.0, + 703.0, + 398.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 670.0, + 1404.0, + 670.0, + 1404.0, + 703.0, + 479.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 700.0, + 1403.0, + 700.0, + 1403.0, + 737.0, + 294.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 729.0, + 1405.0, + 729.0, + 1405.0, + 767.0, + 293.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 759.0, + 1407.0, + 759.0, + 1407.0, + 799.0, + 292.0, + 799.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": [ + 293.0, + 820.0, + 1403.0, + 820.0, + 1403.0, + 859.0, + 293.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 854.0, + 1404.0, + 854.0, + 1404.0, + 886.0, + 294.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 884.0, + 982.0, + 884.0, + 982.0, + 916.0, + 296.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 884.0, + 1049.0, + 884.0, + 1049.0, + 916.0, + 1002.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 884.0, + 1404.0, + 884.0, + 1404.0, + 916.0, + 1072.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 915.0, + 1279.0, + 915.0, + 1279.0, + 948.0, + 296.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1669.0, + 1404.0, + 1669.0, + 1404.0, + 1703.0, + 295.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1697.0, + 1365.0, + 1697.0, + 1365.0, + 1736.0, + 292.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1392.0, + 1697.0, + 1404.0, + 1697.0, + 1404.0, + 1736.0, + 1392.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1730.0, + 1404.0, + 1730.0, + 1404.0, + 1764.0, + 295.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1760.0, + 1405.0, + 1760.0, + 1405.0, + 1794.0, + 295.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1790.0, + 1405.0, + 1790.0, + 1405.0, + 1824.0, + 294.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1855.0, + 292.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1852.0, + 1288.0, + 1852.0, + 1288.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 1852.0, + 1402.0, + 1852.0, + 1402.0, + 1886.0, + 1315.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1879.0, + 1406.0, + 1879.0, + 1406.0, + 1919.0, + 292.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1908.0, + 1405.0, + 1908.0, + 1405.0, + 1949.0, + 291.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1407.0, + 1943.0, + 1407.0, + 1977.0, + 295.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1974.0, + 1406.0, + 1974.0, + 1406.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 1347.0, + 2003.0, + 1347.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1189.0, + 1049.0, + 1189.0, + 1049.0, + 1228.0, + 294.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1221.0, + 1048.0, + 1221.0, + 1048.0, + 1255.0, + 294.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1253.0, + 1045.0, + 1253.0, + 1045.0, + 1286.0, + 297.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1281.0, + 1047.0, + 1281.0, + 1047.0, + 1316.0, + 294.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1313.0, + 1045.0, + 1313.0, + 1045.0, + 1347.0, + 295.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1345.0, + 1047.0, + 1345.0, + 1047.0, + 1378.0, + 295.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1374.0, + 1046.0, + 1374.0, + 1046.0, + 1409.0, + 293.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1404.0, + 1047.0, + 1404.0, + 1047.0, + 1439.0, + 293.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1434.0, + 1046.0, + 1434.0, + 1046.0, + 1471.0, + 294.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1466.0, + 1048.0, + 1466.0, + 1048.0, + 1500.0, + 293.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1496.0, + 1046.0, + 1496.0, + 1046.0, + 1529.0, + 296.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 959.0, + 1302.0, + 959.0, + 1302.0, + 995.0, + 296.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 959.0, + 1405.0, + 959.0, + 1405.0, + 995.0, + 1376.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 989.0, + 1405.0, + 989.0, + 1405.0, + 1024.0, + 295.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1021.0, + 657.0, + 1021.0, + 657.0, + 1055.0, + 293.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 1021.0, + 1406.0, + 1021.0, + 1406.0, + 1055.0, + 681.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1049.0, + 1406.0, + 1049.0, + 1406.0, + 1088.0, + 293.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1083.0, + 1405.0, + 1083.0, + 1405.0, + 1117.0, + 293.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1111.0, + 1380.0, + 1111.0, + 1380.0, + 1149.0, + 293.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1525.0, + 1407.0, + 1525.0, + 1407.0, + 1565.0, + 292.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1558.0, + 1403.0, + 1558.0, + 1403.0, + 1592.0, + 296.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1588.0, + 1404.0, + 1588.0, + 1404.0, + 1625.0, + 295.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 271.0, + 519.0, + 271.0, + 519.0, + 311.0, + 294.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 271.0, + 878.0, + 271.0, + 878.0, + 311.0, + 541.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 271.0, + 1133.0, + 271.0, + 1133.0, + 311.0, + 897.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 305.0, + 380.0, + 305.0, + 380.0, + 341.0, + 296.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 305.0, + 681.0, + 305.0, + 681.0, + 341.0, + 527.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 305.0, + 886.0, + 305.0, + 886.0, + 341.0, + 701.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 305.0, + 915.0, + 305.0, + 915.0, + 341.0, + 904.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 333.0, + 400.0, + 333.0, + 400.0, + 370.0, + 294.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 333.0, + 467.0, + 333.0, + 467.0, + 370.0, + 449.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 334.0, + 676.0, + 334.0, + 676.0, + 374.0, + 671.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 334.0, + 1292.0, + 334.0, + 1292.0, + 374.0, + 702.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 334.0, + 1363.0, + 334.0, + 1363.0, + 374.0, + 1360.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 364.0, + 567.0, + 364.0, + 567.0, + 400.0, + 294.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 395.0, + 428.0, + 395.0, + 428.0, + 433.0, + 334.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 395.0, + 568.0, + 395.0, + 568.0, + 433.0, + 505.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 395.0, + 615.0, + 395.0, + 615.0, + 433.0, + 597.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 425.0, + 748.0, + 425.0, + 748.0, + 465.0, + 733.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 425.0, + 1363.0, + 425.0, + 1363.0, + 463.0, + 956.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 459.0, + 777.0, + 459.0, + 777.0, + 499.0, + 762.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 463.0, + 1311.0, + 463.0, + 1311.0, + 495.0, + 979.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 463.0, + 1364.0, + 463.0, + 1364.0, + 495.0, + 1361.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 493.0, + 341.0, + 493.0, + 341.0, + 523.0, + 335.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 522.0, + 349.0, + 522.0, + 349.0, + 553.0, + 292.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 550.0, + 398.0, + 550.0, + 398.0, + 583.0, + 292.0, + 583.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1356, + 1403, + 1356, + 1403, + 1691, + 298, + 1691 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 944, + 1404, + 944, + 1404, + 1340, + 298, + 1340 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1727, + 1403, + 1727, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 294, + 228, + 1406, + 228, + 1406, + 324, + 294, + 324 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 454, + 341, + 1245, + 341, + 1245, + 424, + 454, + 424 + ], + "score": 0.95 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 813, + 74, + 813, + 105, + 299, + 105 + ], + "score": 0.909 + }, + { + "category_id": 9, + "poly": [ + 1352, + 358, + 1400, + 358, + 1400, + 389, + 1352, + 389 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 301, + 874, + 557, + 874, + 557, + 908, + 301, + 908 + ], + "score": 0.887 + }, + { + "category_id": 1, + "poly": [ + 298, + 517, + 1404, + 517, + 1404, + 826, + 298, + 826 + ], + "score": 0.7 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.625 + }, + { + "category_id": 1, + "poly": [ + 298, + 442, + 1404, + 442, + 1404, + 510, + 298, + 510 + ], + "score": 0.496 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 859, + 2088, + 859, + 2111, + 842, + 2111 + ], + "score": 0.312 + }, + { + "category_id": 13, + "poly": [ + 1183, + 260, + 1400, + 260, + 1400, + 295, + 1183, + 295 + ], + "score": 0.93, + "latex": "p ( R ) = \\mathcal { N } ( R ; 0 , 1 )" + }, + { + "category_id": 14, + "poly": [ + 453, + 338, + 1246, + 338, + 1246, + 427, + 453, + 427 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { r e g } = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal { D } } \\frac { 1 } { 2 } \\big ( Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) \\big ) ^ { 2 } + g ( \\mathrm { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) ." + }, + { + "category_id": 13, + "poly": [ + 298, + 261, + 795, + 261, + 795, + 296, + 298, + 296 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { { \\mathbb E } _ { q _ { \\phi } } [ R ( s , a ) ] = { \\mathbb E } _ { \\pi , T } [ Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 348, + 471, + 1404, + 471, + 1404, + 512, + 348, + 512 + ], + "score": 0.63, + "latex": "\\begin{array} { r } { \\overset { \\vartriangle } { \\boldsymbol { \\mathrm { \\iota } } } \\big ( q _ { \\phi } ( \\hat { R } ( s , a ) ) | | p ( R ( s , a ) ) \\big ) = \\frac { 1 } { 2 } ( - \\log ( \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) - 1 + \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] + \\mathbb { E } _ { q _ { \\phi } } [ R ( s , a ) ] ^ { 2 } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1367, + 613, + 1403, + 613, + 1403, + 641, + 1367, + 641 + ], + "score": 0.45, + "latex": "\\operatorname { F u }" + }, + { + "category_id": 13, + "poly": [ + 339, + 296, + 379, + 296, + 379, + 320, + 339, + 320 + ], + "score": 0.25, + "latex": "\\mathrm { K L }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 871.0, + 561.0, + 871.0, + 561.0, + 913.0, + 293.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1357.0, + 1403.0, + 1357.0, + 1403.0, + 1391.0, + 296.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1386.0, + 1404.0, + 1386.0, + 1404.0, + 1420.0, + 294.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1416.0, + 1405.0, + 1416.0, + 1405.0, + 1453.0, + 293.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1447.0, + 1404.0, + 1447.0, + 1404.0, + 1483.0, + 291.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1474.0, + 1405.0, + 1474.0, + 1405.0, + 1516.0, + 292.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1510.0, + 1407.0, + 1510.0, + 1407.0, + 1543.0, + 293.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1540.0, + 1405.0, + 1540.0, + 1405.0, + 1574.0, + 294.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1569.0, + 1405.0, + 1569.0, + 1405.0, + 1604.0, + 294.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1598.0, + 1405.0, + 1598.0, + 1405.0, + 1637.0, + 292.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1630.0, + 1405.0, + 1630.0, + 1405.0, + 1667.0, + 293.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1659.0, + 955.0, + 1659.0, + 955.0, + 1695.0, + 293.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 946.0, + 1404.0, + 946.0, + 1404.0, + 978.0, + 297.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 971.0, + 1404.0, + 971.0, + 1404.0, + 1012.0, + 292.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1008.0, + 1404.0, + 1008.0, + 1404.0, + 1040.0, + 296.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1036.0, + 1403.0, + 1036.0, + 1403.0, + 1070.0, + 295.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1064.0, + 1405.0, + 1064.0, + 1405.0, + 1101.0, + 294.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1095.0, + 1406.0, + 1095.0, + 1406.0, + 1132.0, + 294.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1126.0, + 1402.0, + 1126.0, + 1402.0, + 1159.0, + 296.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1158.0, + 1405.0, + 1158.0, + 1405.0, + 1194.0, + 294.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1187.0, + 1402.0, + 1187.0, + 1402.0, + 1223.0, + 294.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1217.0, + 1404.0, + 1217.0, + 1404.0, + 1254.0, + 293.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1247.0, + 1404.0, + 1247.0, + 1404.0, + 1285.0, + 293.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1280.0, + 1404.0, + 1280.0, + 1404.0, + 1312.0, + 296.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1310.0, + 1332.0, + 1310.0, + 1332.0, + 1343.0, + 293.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1728.0, + 1405.0, + 1728.0, + 1405.0, + 1763.0, + 294.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1757.0, + 1403.0, + 1757.0, + 1403.0, + 1795.0, + 293.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1789.0, + 1405.0, + 1789.0, + 1405.0, + 1825.0, + 294.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1818.0, + 1407.0, + 1818.0, + 1407.0, + 1860.0, + 292.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1850.0, + 1405.0, + 1850.0, + 1405.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1405.0, + 2003.0, + 1405.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 255.0, + 297.0, + 255.0, + 297.0, + 303.0, + 292.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 255.0, + 1182.0, + 255.0, + 1182.0, + 303.0, + 796.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 255.0, + 1406.0, + 255.0, + 1406.0, + 303.0, + 1401.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 292.0, + 338.0, + 292.0, + 338.0, + 326.0, + 296.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 292.0, + 1056.0, + 292.0, + 1056.0, + 326.0, + 380.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 517.0, + 1406.0, + 517.0, + 1406.0, + 556.0, + 295.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 551.0, + 1404.0, + 551.0, + 1404.0, + 586.0, + 292.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 583.0, + 1402.0, + 583.0, + 1402.0, + 615.0, + 296.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 611.0, + 1366.0, + 611.0, + 1366.0, + 646.0, + 292.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 642.0, + 1406.0, + 642.0, + 1406.0, + 678.0, + 293.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 673.0, + 1405.0, + 673.0, + 1405.0, + 709.0, + 294.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 703.0, + 1404.0, + 703.0, + 1404.0, + 739.0, + 294.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 730.0, + 1406.0, + 730.0, + 1406.0, + 771.0, + 292.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 762.0, + 1404.0, + 762.0, + 1404.0, + 799.0, + 293.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 794.0, + 1310.0, + 794.0, + 1310.0, + 830.0, + 294.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 439.0, + 1405.0, + 439.0, + 1405.0, + 479.0, + 295.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 471.0, + 347.0, + 471.0, + 347.0, + 511.0, + 294.0, + 511.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 298, + 765, + 1402, + 765, + 1402, + 1078, + 298, + 1078 + ], + "score": 0.984, + "html": "
VentilatorVentilator + Antibiotics
MetricACCAUCAPSACCAUCAPS
BC0.873 ± 0.0070.916 ± 0.0020.904±0.0030.700±0.0090.864 ± 0.0030.665 ± 0.009
VDICE0.879 ±0.0020.915 ± 0.0020.904±0.0030.710 ±0.0050.863 ±0.0020.675 ±0.004
RCAL0.870 ± 0.0120.916 ± 0.0030.904±0.0050.702 ±0.0080.865 ± 0.0040.669 ± 0.006
DSFN0.869 ± 0.0050.905 ± 0.0030.885 ±0.0010.683 ± 0.0070.856 ±0.0020.670 ± 0.004
EDM0.882 ± 0.0110.920±0.0020.909 ± 0.0030.716 ±0.0080.873±0.0020.682 ± 0.004
A-RL10.875±0.0100.904±0.0020.927±0.0020.718 ± 0.0100.864±0.0020.665±0.005
AVRIL0.891±0.002 0.917 ± 0.0010.940±0.0010.754± 0.001 0.884 ± 0.000 0.708 ± 0.002
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1637, + 1404, + 1637, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1388, + 1404, + 1388, + 1404, + 1602, + 297, + 1602 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1108, + 1404, + 1108, + 1404, + 1356, + 297, + 1356 + ], + "score": 0.98 + }, + { + "category_id": 3, + "poly": [ + 300, + 249, + 1371, + 249, + 1371, + 508, + 300, + 508 + ], + "score": 0.963 + }, + { + "category_id": 4, + "poly": [ + 298, + 549, + 1401, + 549, + 1401, + 613, + 298, + 613 + ], + "score": 0.942 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.793 + }, + { + "category_id": 6, + "poly": [ + 296, + 635, + 1404, + 635, + 1404, + 758, + 296, + 758 + ], + "score": 0.596 + }, + { + "category_id": 1, + "poly": [ + 296, + 635, + 1404, + 635, + 1404, + 758, + 296, + 758 + ], + "score": 0.534 + }, + { + "category_id": 13, + "poly": [ + 1084, + 1142, + 1109, + 1142, + 1109, + 1172, + 1084, + 1172 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 260.0, + 1066.0, + 260.0, + 1066.0, + 279.0, + 1038.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 274.0, + 351.0, + 274.0, + 351.0, + 295.0, + 312.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 270.0, + 704.0, + 270.0, + 704.0, + 289.0, + 674.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 299.0, + 616.0, + 299.0, + 616.0, + 316.0, + 572.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 301.0, + 703.0, + 301.0, + 703.0, + 319.0, + 676.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 297.0, + 972.0, + 297.0, + 972.0, + 316.0, + 931.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 292.0, + 1066.0, + 292.0, + 1066.0, + 311.0, + 1038.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 299.0, + 1334.0, + 299.0, + 1334.0, + 316.0, + 1297.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 307.0, + 350.0, + 307.0, + 350.0, + 397.0, + 298.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 311.0, + 631.0, + 311.0, + 631.0, + 329.0, + 594.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 307.0, + 684.0, + 307.0, + 684.0, + 398.0, + 661.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 311.0, + 986.0, + 311.0, + 986.0, + 329.0, + 949.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 307.0, + 1039.0, + 307.0, + 1039.0, + 400.0, + 1016.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 311.0, + 1349.0, + 311.0, + 1349.0, + 329.0, + 1314.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 322.0, + 627.0, + 322.0, + 627.0, + 355.0, + 593.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 331.0, + 703.0, + 331.0, + 703.0, + 350.0, + 676.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 321.0, + 984.0, + 321.0, + 984.0, + 355.0, + 948.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 324.0, + 1065.0, + 324.0, + 1065.0, + 344.0, + 1039.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 322.0, + 1345.0, + 322.0, + 1345.0, + 355.0, + 1311.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 346.0, + 348.0, + 346.0, + 348.0, + 365.0, + 317.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 354.0, + 589.0, + 354.0, + 589.0, + 362.0, + 578.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 349.0, + 629.0, + 349.0, + 629.0, + 370.0, + 592.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 349.0, + 984.0, + 349.0, + 984.0, + 370.0, + 947.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 349.0, + 1348.0, + 349.0, + 1348.0, + 370.0, + 1293.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 361.0, + 629.0, + 361.0, + 629.0, + 382.0, + 593.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 362.0, + 703.0, + 362.0, + 703.0, + 381.0, + 674.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 361.0, + 984.0, + 361.0, + 984.0, + 382.0, + 948.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 359.0, + 1065.0, + 359.0, + 1065.0, + 375.0, + 1050.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 361.0, + 1348.0, + 361.0, + 1348.0, + 382.0, + 1311.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 381.0, + 349.0, + 381.0, + 349.0, + 400.0, + 320.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 375.0, + 642.0, + 375.0, + 642.0, + 408.0, + 592.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 393.0, + 704.0, + 393.0, + 704.0, + 412.0, + 674.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 375.0, + 995.0, + 375.0, + 995.0, + 408.0, + 948.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 375.0, + 1360.0, + 375.0, + 1360.0, + 408.0, + 1294.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 416.0, + 350.0, + 416.0, + 350.0, + 437.0, + 312.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 427.0, + 703.0, + 427.0, + 703.0, + 442.0, + 687.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 422.0, + 1066.0, + 422.0, + 1066.0, + 438.0, + 1033.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 453.0, + 352.0, + 453.0, + 352.0, + 466.0, + 343.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 451.0, + 412.0, + 451.0, + 412.0, + 467.0, + 398.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 450.0, + 551.0, + 450.0, + 551.0, + 481.0, + 439.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 450.0, + 585.0, + 450.0, + 585.0, + 468.0, + 563.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 450.0, + 640.0, + 450.0, + 640.0, + 468.0, + 620.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 453.0, + 709.0, + 453.0, + 709.0, + 466.0, + 698.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 451.0, + 766.0, + 451.0, + 766.0, + 467.0, + 751.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 450.0, + 907.0, + 450.0, + 907.0, + 481.0, + 794.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 450.0, + 940.0, + 450.0, + 940.0, + 468.0, + 918.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 450.0, + 997.0, + 450.0, + 997.0, + 468.0, + 975.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 452.0, + 1073.0, + 452.0, + 1073.0, + 467.0, + 1059.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 451.0, + 1129.0, + 451.0, + 1129.0, + 467.0, + 1115.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 451.0, + 1271.0, + 451.0, + 1271.0, + 483.0, + 1155.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 450.0, + 1303.0, + 450.0, + 1303.0, + 468.0, + 1282.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 450.0, + 1360.0, + 450.0, + 1360.0, + 468.0, + 1338.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 484.0, + 528.0, + 484.0, + 528.0, + 506.0, + 457.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 483.0, + 887.0, + 483.0, + 887.0, + 508.0, + 806.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 483.0, + 1275.0, + 483.0, + 1275.0, + 507.0, + 1162.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.25, + 388.0, + 1063.25, + 388.0, + 1063.25, + 406.0, + 1036.25, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 548.0, + 1403.0, + 548.0, + 1403.0, + 584.0, + 296.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 577.0, + 1397.0, + 577.0, + 1397.0, + 619.0, + 292.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 634.0, + 1406.0, + 634.0, + 1406.0, + 671.0, + 293.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 665.0, + 1404.0, + 665.0, + 1404.0, + 700.0, + 294.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 693.0, + 1406.0, + 693.0, + 1406.0, + 735.0, + 291.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 727.0, + 693.0, + 727.0, + 693.0, + 763.0, + 294.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1635.0, + 1404.0, + 1635.0, + 1404.0, + 1674.0, + 293.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1667.0, + 1407.0, + 1667.0, + 1407.0, + 1706.0, + 292.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1696.0, + 1406.0, + 1696.0, + 1406.0, + 1737.0, + 293.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1727.0, + 1406.0, + 1727.0, + 1406.0, + 1764.0, + 292.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1760.0, + 1405.0, + 1760.0, + 1405.0, + 1793.0, + 296.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1789.0, + 1405.0, + 1789.0, + 1405.0, + 1824.0, + 293.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1819.0, + 1405.0, + 1819.0, + 1405.0, + 1856.0, + 292.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1850.0, + 1405.0, + 1850.0, + 1405.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1881.0, + 1406.0, + 1881.0, + 1406.0, + 1917.0, + 293.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1907.0, + 1405.0, + 1907.0, + 1405.0, + 1951.0, + 292.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1944.0, + 1405.0, + 1944.0, + 1405.0, + 1977.0, + 296.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2009.0, + 292.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1386.0, + 1406.0, + 1386.0, + 1406.0, + 1426.0, + 292.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1420.0, + 1405.0, + 1420.0, + 1405.0, + 1455.0, + 295.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1446.0, + 1405.0, + 1446.0, + 1405.0, + 1488.0, + 291.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1479.0, + 1406.0, + 1479.0, + 1406.0, + 1516.0, + 294.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1508.0, + 1404.0, + 1508.0, + 1404.0, + 1545.0, + 294.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1540.0, + 1405.0, + 1540.0, + 1405.0, + 1577.0, + 292.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1571.0, + 628.0, + 1571.0, + 628.0, + 1604.0, + 295.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1109.0, + 1405.0, + 1109.0, + 1405.0, + 1143.0, + 294.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1141.0, + 1083.0, + 1141.0, + 1083.0, + 1174.0, + 292.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 1141.0, + 1407.0, + 1141.0, + 1407.0, + 1174.0, + 1110.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1172.0, + 1405.0, + 1172.0, + 1405.0, + 1203.0, + 293.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1202.0, + 1405.0, + 1202.0, + 1405.0, + 1236.0, + 295.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1231.0, + 1405.0, + 1231.0, + 1405.0, + 1267.0, + 292.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1263.0, + 1404.0, + 1263.0, + 1404.0, + 1297.0, + 295.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1294.0, + 1405.0, + 1294.0, + 1405.0, + 1327.0, + 295.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1324.0, + 1401.0, + 1324.0, + 1401.0, + 1358.0, + 295.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 634.0, + 1406.0, + 634.0, + 1406.0, + 671.0, + 293.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 665.0, + 1404.0, + 665.0, + 1404.0, + 700.0, + 294.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 693.0, + 1406.0, + 693.0, + 1406.0, + 735.0, + 291.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 727.0, + 693.0, + 727.0, + 693.0, + 763.0, + 294.0, + 763.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 793, + 989, + 793, + 989, + 1277, + 299, + 1277 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 571, + 1404, + 571, + 1404, + 756, + 297, + 756 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1881, + 1402, + 1881, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1551, + 1404, + 1551, + 1404, + 1764, + 299, + 1764 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 1028, + 806, + 1387, + 806, + 1387, + 1283, + 1028, + 1283 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 299, + 1398, + 991, + 1398, + 991, + 1550, + 299, + 1550 + ], + "score": 0.96 + }, + { + "category_id": 4, + "poly": [ + 1011, + 1321, + 1402, + 1321, + 1402, + 1536, + 1011, + 1536 + ], + "score": 0.959 + }, + { + "category_id": 3, + "poly": [ + 330, + 215, + 1391, + 215, + 1391, + 452, + 330, + 452 + ], + "score": 0.951 + }, + { + "category_id": 4, + "poly": [ + 294, + 481, + 1401, + 481, + 1401, + 544, + 294, + 544 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.882 + }, + { + "category_id": 0, + "poly": [ + 302, + 1813, + 624, + 1813, + 624, + 1845, + 302, + 1845 + ], + "score": 0.878 + }, + { + "category_id": 0, + "poly": [ + 301, + 1326, + 560, + 1326, + 560, + 1361, + 301, + 1361 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.786 + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 805.0, + 1077.0, + 805.0, + 1077.0, + 822.0, + 1048.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 817.0, + 1169.0, + 817.0, + 1169.0, + 833.0, + 1104.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 829.0, + 1078.0, + 829.0, + 1078.0, + 847.0, + 1048.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 826.0, + 1156.0, + 826.0, + 1156.0, + 845.0, + 1104.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 853.0, + 1079.0, + 853.0, + 1079.0, + 871.0, + 1048.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 878.0, + 1078.0, + 878.0, + 1078.0, + 896.0, + 1048.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 890.0, + 1047.0, + 890.0, + 1047.0, + 932.0, + 1029.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 902.0, + 1078.0, + 902.0, + 1078.0, + 920.0, + 1048.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 927.0, + 1076.0, + 927.0, + 1076.0, + 945.0, + 1043.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 951.0, + 1077.0, + 951.0, + 1077.0, + 969.0, + 1043.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 977.0, + 1077.0, + 977.0, + 1077.0, + 994.0, + 1043.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1001.0, + 1076.0, + 1001.0, + 1076.0, + 1018.0, + 1043.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1009.0, + 1102.0, + 1009.0, + 1102.0, + 1026.0, + 1084.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1009.0, + 1148.0, + 1009.0, + 1148.0, + 1025.0, + 1130.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 1012.0, + 1192.0, + 1012.0, + 1192.0, + 1024.0, + 1176.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1011.0, + 1235.0, + 1011.0, + 1235.0, + 1024.0, + 1223.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 1013.0, + 1279.0, + 1013.0, + 1279.0, + 1023.0, + 1271.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 1010.0, + 1327.0, + 1010.0, + 1327.0, + 1025.0, + 1315.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1010.0, + 1373.0, + 1010.0, + 1373.0, + 1025.0, + 1362.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1021.0, + 1300.0, + 1021.0, + 1300.0, + 1037.0, + 1156.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1054.0, + 1078.0, + 1054.0, + 1078.0, + 1072.0, + 1048.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1087.0, + 1078.0, + 1087.0, + 1078.0, + 1105.0, + 1048.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 1106.0, + 1049.0, + 1106.0, + 1049.0, + 1149.0, + 1029.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1120.0, + 1077.0, + 1120.0, + 1077.0, + 1138.0, + 1048.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1154.0, + 1076.0, + 1154.0, + 1076.0, + 1171.0, + 1043.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1187.0, + 1078.0, + 1187.0, + 1078.0, + 1204.0, + 1044.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1200.0, + 1118.0, + 1200.0, + 1118.0, + 1234.0, + 1100.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 1201.0, + 1129.0, + 1201.0, + 1129.0, + 1250.0, + 1111.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1201.0, + 1140.0, + 1201.0, + 1140.0, + 1256.0, + 1123.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 1201.0, + 1153.0, + 1201.0, + 1153.0, + 1246.0, + 1136.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 1201.0, + 1164.0, + 1201.0, + 1164.0, + 1234.0, + 1147.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 1201.0, + 1177.0, + 1201.0, + 1177.0, + 1268.0, + 1160.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1201.0, + 1188.0, + 1201.0, + 1188.0, + 1259.0, + 1170.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1201.0, + 1202.0, + 1201.0, + 1202.0, + 1273.0, + 1183.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 1201.0, + 1227.0, + 1201.0, + 1227.0, + 1265.0, + 1208.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 1201.0, + 1262.0, + 1201.0, + 1262.0, + 1247.0, + 1245.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 1201.0, + 1273.0, + 1201.0, + 1273.0, + 1258.0, + 1256.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1201.0, + 1297.0, + 1201.0, + 1297.0, + 1229.0, + 1282.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1201.0, + 1322.0, + 1201.0, + 1322.0, + 1246.0, + 1306.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 1201.0, + 1347.0, + 1201.0, + 1347.0, + 1242.0, + 1330.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1202.0, + 1213.0, + 1202.0, + 1213.0, + 1262.0, + 1196.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1202.0, + 1250.0, + 1202.0, + 1250.0, + 1250.0, + 1233.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1202.0, + 1310.0, + 1202.0, + 1310.0, + 1249.0, + 1294.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1203.0, + 1105.0, + 1203.0, + 1105.0, + 1265.0, + 1086.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 1203.0, + 1285.0, + 1203.0, + 1285.0, + 1224.0, + 1270.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1203.0, + 1357.0, + 1203.0, + 1357.0, + 1266.0, + 1344.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1203.0, + 1370.0, + 1203.0, + 1370.0, + 1233.0, + 1353.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1204.0, + 1236.0, + 1204.0, + 1236.0, + 1228.0, + 1222.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 1204.0, + 1334.0, + 1204.0, + 1334.0, + 1236.0, + 1319.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1266.0, + 1254.0, + 1266.0, + 1254.0, + 1282.0, + 1204.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 1323.0, + 1402.0, + 1323.0, + 1402.0, + 1355.0, + 1012.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1354.0, + 1403.0, + 1354.0, + 1403.0, + 1385.0, + 1011.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 1382.0, + 1405.0, + 1382.0, + 1405.0, + 1417.0, + 1010.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 1415.0, + 1404.0, + 1415.0, + 1404.0, + 1446.0, + 1010.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1442.0, + 1404.0, + 1442.0, + 1404.0, + 1478.0, + 1009.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 1475.0, + 1405.0, + 1475.0, + 1405.0, + 1506.0, + 1010.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1502.0, + 1319.0, + 1502.0, + 1319.0, + 1541.0, + 1009.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 225.0, + 555.0, + 225.0, + 555.0, + 240.0, + 332.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 225.0, + 801.0, + 225.0, + 801.0, + 240.0, + 619.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 222.0, + 1062.0, + 222.0, + 1062.0, + 241.0, + 893.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 222.0, + 1321.0, + 222.0, + 1321.0, + 241.0, + 1170.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 234.0, + 584.0, + 234.0, + 584.0, + 250.0, + 559.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 234.0, + 851.0, + 234.0, + 851.0, + 250.0, + 824.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 235.0, + 1118.0, + 235.0, + 1118.0, + 249.0, + 1098.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 247.0, + 345.0, + 247.0, + 345.0, + 256.0, + 336.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 247.0, + 518.0, + 247.0, + 518.0, + 255.0, + 500.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 247.0, + 534.0, + 247.0, + 534.0, + 255.0, + 519.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 241.0, + 692.0, + 241.0, + 692.0, + 259.0, + 602.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 246.0, + 709.0, + 246.0, + 709.0, + 255.0, + 694.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 246.0, + 729.0, + 246.0, + 729.0, + 255.0, + 713.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 245.0, + 787.0, + 245.0, + 787.0, + 257.0, + 731.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 245.0, + 806.0, + 245.0, + 806.0, + 257.0, + 789.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 242.0, + 1075.0, + 242.0, + 1075.0, + 259.0, + 870.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 247.0, + 1148.0, + 247.0, + 1148.0, + 257.0, + 1137.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 241.0, + 1341.0, + 241.0, + 1341.0, + 260.0, + 1170.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 263.0, + 521.0, + 263.0, + 521.0, + 275.0, + 465.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 262.0, + 633.0, + 262.0, + 633.0, + 276.0, + 614.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 262.0, + 652.0, + 262.0, + 652.0, + 276.0, + 634.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 264.0, + 669.0, + 264.0, + 669.0, + 274.0, + 655.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 264.0, + 690.0, + 264.0, + 690.0, + 274.0, + 677.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 263.0, + 712.0, + 263.0, + 712.0, + 275.0, + 692.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 264.0, + 729.0, + 264.0, + 729.0, + 274.0, + 713.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 263.0, + 788.0, + 263.0, + 788.0, + 276.0, + 731.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 263.0, + 805.0, + 263.0, + 805.0, + 276.0, + 789.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 263.0, + 939.0, + 263.0, + 939.0, + 276.0, + 883.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 262.0, + 1076.0, + 262.0, + 1076.0, + 277.0, + 943.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 262.0, + 1188.0, + 262.0, + 1188.0, + 276.0, + 1170.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 262.0, + 1341.0, + 262.0, + 1341.0, + 277.0, + 1191.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 271.0, + 584.0, + 271.0, + 584.0, + 288.0, + 558.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 271.0, + 852.0, + 271.0, + 852.0, + 288.0, + 828.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 268.0, + 1118.0, + 268.0, + 1118.0, + 282.0, + 1098.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 273.0, + 1387.0, + 273.0, + 1387.0, + 289.0, + 1362.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 284.0, + 521.0, + 284.0, + 521.0, + 293.0, + 501.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 280.0, + 652.0, + 280.0, + 652.0, + 296.0, + 602.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 284.0, + 669.0, + 284.0, + 669.0, + 294.0, + 655.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 282.0, + 788.0, + 282.0, + 788.0, + 295.0, + 750.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 284.0, + 801.0, + 284.0, + 801.0, + 293.0, + 790.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 281.0, + 1075.0, + 281.0, + 1075.0, + 296.0, + 868.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 284.0, + 1148.0, + 284.0, + 1148.0, + 295.0, + 1137.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 281.0, + 1187.0, + 281.0, + 1187.0, + 295.0, + 1171.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 282.0, + 1322.0, + 282.0, + 1322.0, + 295.0, + 1191.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 282.0, + 1341.0, + 282.0, + 1341.0, + 295.0, + 1324.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 304.0, + 518.0, + 304.0, + 518.0, + 312.0, + 505.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 298.0, + 652.0, + 298.0, + 652.0, + 316.0, + 614.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 303.0, + 672.0, + 303.0, + 672.0, + 312.0, + 660.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 301.0, + 788.0, + 301.0, + 788.0, + 314.0, + 750.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 304.0, + 801.0, + 304.0, + 801.0, + 312.0, + 790.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 300.0, + 1075.0, + 300.0, + 1075.0, + 315.0, + 882.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 300.0, + 1118.0, + 300.0, + 1118.0, + 314.0, + 1098.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 300.0, + 1186.0, + 300.0, + 1186.0, + 314.0, + 1170.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 301.0, + 1246.0, + 301.0, + 1246.0, + 314.0, + 1191.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 301.0, + 1341.0, + 301.0, + 1341.0, + 314.0, + 1247.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 310.0, + 585.0, + 310.0, + 585.0, + 326.0, + 561.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 311.0, + 851.0, + 311.0, + 851.0, + 325.0, + 830.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 310.0, + 1387.0, + 310.0, + 1387.0, + 326.0, + 1362.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 321.0, + 633.0, + 321.0, + 633.0, + 335.0, + 602.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 321.0, + 652.0, + 321.0, + 652.0, + 333.0, + 634.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 322.0, + 673.0, + 322.0, + 673.0, + 333.0, + 654.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 323.0, + 690.0, + 323.0, + 690.0, + 332.0, + 674.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 323.0, + 708.0, + 323.0, + 708.0, + 332.0, + 694.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 323.0, + 726.0, + 323.0, + 726.0, + 332.0, + 713.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 324.0, + 767.0, + 324.0, + 767.0, + 332.0, + 756.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 324.0, + 786.0, + 324.0, + 786.0, + 332.0, + 771.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 324.0, + 804.0, + 324.0, + 804.0, + 332.0, + 790.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 322.0, + 883.0, + 322.0, + 883.0, + 336.0, + 868.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 322.0, + 939.0, + 322.0, + 939.0, + 335.0, + 886.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 321.0, + 1075.0, + 321.0, + 1075.0, + 335.0, + 963.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 323.0, + 1148.0, + 323.0, + 1148.0, + 333.0, + 1137.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 321.0, + 1186.0, + 321.0, + 1186.0, + 335.0, + 1171.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 319.0, + 1341.0, + 319.0, + 1341.0, + 335.0, + 1188.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 332.0, + 1118.0, + 332.0, + 1118.0, + 346.0, + 1098.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 339.0, + 633.0, + 339.0, + 633.0, + 353.0, + 615.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 342.0, + 651.0, + 342.0, + 651.0, + 351.0, + 636.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 341.0, + 673.0, + 341.0, + 673.0, + 353.0, + 654.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 343.0, + 690.0, + 343.0, + 690.0, + 351.0, + 674.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 343.0, + 708.0, + 343.0, + 708.0, + 351.0, + 694.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 343.0, + 727.0, + 343.0, + 727.0, + 351.0, + 714.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 343.0, + 766.0, + 343.0, + 766.0, + 351.0, + 756.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 343.0, + 787.0, + 343.0, + 787.0, + 351.0, + 771.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 343.0, + 804.0, + 343.0, + 804.0, + 351.0, + 790.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 341.0, + 939.0, + 341.0, + 939.0, + 353.0, + 883.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 343.0, + 958.0, + 343.0, + 958.0, + 351.0, + 944.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 342.0, + 977.0, + 342.0, + 977.0, + 351.0, + 961.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 342.0, + 996.0, + 342.0, + 996.0, + 351.0, + 981.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 342.0, + 1015.0, + 342.0, + 1015.0, + 351.0, + 1000.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 341.0, + 1075.0, + 341.0, + 1075.0, + 353.0, + 1017.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 339.0, + 1186.0, + 339.0, + 1186.0, + 353.0, + 1170.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 339.0, + 1245.0, + 339.0, + 1245.0, + 355.0, + 1189.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 339.0, + 1341.0, + 339.0, + 1341.0, + 353.0, + 1247.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 349.0, + 584.0, + 349.0, + 584.0, + 365.0, + 559.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 350.0, + 851.0, + 350.0, + 851.0, + 364.0, + 830.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 350.0, + 1388.0, + 350.0, + 1388.0, + 366.0, + 1362.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 363.0, + 345.0, + 363.0, + 345.0, + 372.0, + 336.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 359.0, + 633.0, + 359.0, + 633.0, + 372.0, + 602.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 359.0, + 652.0, + 359.0, + 652.0, + 372.0, + 634.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 359.0, + 672.0, + 359.0, + 672.0, + 372.0, + 654.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 359.0, + 691.0, + 359.0, + 691.0, + 372.0, + 673.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 360.0, + 709.0, + 360.0, + 709.0, + 370.0, + 694.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 359.0, + 749.0, + 359.0, + 749.0, + 372.0, + 712.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 359.0, + 767.0, + 359.0, + 767.0, + 372.0, + 750.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 362.0, + 784.0, + 362.0, + 784.0, + 371.0, + 771.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 359.0, + 939.0, + 359.0, + 939.0, + 374.0, + 868.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 363.0, + 957.0, + 363.0, + 957.0, + 371.0, + 945.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 359.0, + 979.0, + 359.0, + 979.0, + 372.0, + 961.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 362.0, + 996.0, + 362.0, + 996.0, + 371.0, + 980.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 359.0, + 1055.0, + 359.0, + 1055.0, + 372.0, + 1000.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 362.0, + 1072.0, + 362.0, + 1072.0, + 371.0, + 1056.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 365.0, + 1118.0, + 365.0, + 1118.0, + 379.0, + 1098.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 362.0, + 1150.0, + 362.0, + 1150.0, + 372.0, + 1137.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 358.0, + 1186.0, + 358.0, + 1186.0, + 373.0, + 1170.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 358.0, + 1245.0, + 358.0, + 1245.0, + 373.0, + 1188.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 358.0, + 1302.0, + 358.0, + 1302.0, + 373.0, + 1246.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 359.0, + 1322.0, + 359.0, + 1322.0, + 372.0, + 1306.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 359.0, + 1341.0, + 359.0, + 1341.0, + 372.0, + 1325.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 380.0, + 521.0, + 380.0, + 521.0, + 391.0, + 366.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 378.0, + 788.0, + 378.0, + 788.0, + 392.0, + 615.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 379.0, + 806.0, + 379.0, + 806.0, + 392.0, + 789.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 378.0, + 1053.0, + 378.0, + 1053.0, + 393.0, + 883.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 377.0, + 1077.0, + 377.0, + 1077.0, + 394.0, + 1055.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 381.0, + 1168.0, + 381.0, + 1168.0, + 390.0, + 1158.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 380.0, + 1187.0, + 380.0, + 1187.0, + 390.0, + 1171.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 381.0, + 1206.0, + 381.0, + 1206.0, + 390.0, + 1191.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 381.0, + 1226.0, + 381.0, + 1226.0, + 390.0, + 1210.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 381.0, + 1244.0, + 381.0, + 1244.0, + 390.0, + 1228.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 381.0, + 1263.0, + 381.0, + 1263.0, + 391.0, + 1249.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 380.0, + 1303.0, + 380.0, + 1303.0, + 392.0, + 1269.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 378.0, + 1341.0, + 378.0, + 1341.0, + 393.0, + 1325.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 387.0, + 584.0, + 387.0, + 584.0, + 404.0, + 559.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 388.0, + 851.0, + 388.0, + 851.0, + 403.0, + 830.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 388.0, + 1387.0, + 388.0, + 1387.0, + 405.0, + 1362.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 401.0, + 345.0, + 401.0, + 345.0, + 410.0, + 336.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 399.0, + 518.0, + 399.0, + 518.0, + 411.0, + 366.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 398.0, + 807.0, + 398.0, + 807.0, + 411.0, + 602.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 397.0, + 1072.0, + 397.0, + 1072.0, + 413.0, + 868.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 397.0, + 1121.0, + 397.0, + 1121.0, + 413.0, + 1096.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 400.0, + 1148.0, + 400.0, + 1148.0, + 411.0, + 1137.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 399.0, + 1188.0, + 399.0, + 1188.0, + 411.0, + 1169.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 400.0, + 1205.0, + 400.0, + 1205.0, + 408.0, + 1189.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 400.0, + 1226.0, + 400.0, + 1226.0, + 408.0, + 1210.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 399.0, + 1264.0, + 399.0, + 1264.0, + 411.0, + 1227.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 399.0, + 1321.0, + 399.0, + 1321.0, + 411.0, + 1267.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 419.0, + 425.0, + 419.0, + 425.0, + 427.0, + 408.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 418.0, + 501.0, + 418.0, + 501.0, + 429.0, + 466.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 414.0, + 541.0, + 414.0, + 541.0, + 432.0, + 519.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 417.0, + 787.0, + 417.0, + 787.0, + 431.0, + 615.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 417.0, + 807.0, + 417.0, + 807.0, + 431.0, + 789.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 414.0, + 958.0, + 414.0, + 958.0, + 433.0, + 881.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 414.0, + 1076.0, + 414.0, + 1076.0, + 433.0, + 978.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 415.0, + 1285.0, + 415.0, + 1285.0, + 432.0, + 1151.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 419.0, + 1302.0, + 419.0, + 1302.0, + 427.0, + 1292.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 417.0, + 1342.0, + 417.0, + 1342.0, + 431.0, + 1325.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 427.0, + 582.0, + 427.0, + 582.0, + 440.0, + 561.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 427.0, + 851.0, + 427.0, + 851.0, + 440.0, + 830.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 438.0, + 362.0, + 438.0, + 362.0, + 448.0, + 353.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 436.0, + 401.0, + 436.0, + 401.0, + 448.0, + 390.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 436.0, + 440.0, + 436.0, + 440.0, + 448.0, + 429.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 436.0, + 478.0, + 436.0, + 478.0, + 448.0, + 467.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 435.0, + 518.0, + 435.0, + 518.0, + 449.0, + 504.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 435.0, + 632.0, + 435.0, + 632.0, + 449.0, + 617.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 434.0, + 669.0, + 434.0, + 669.0, + 451.0, + 656.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 434.0, + 708.0, + 434.0, + 708.0, + 451.0, + 695.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 434.0, + 747.0, + 434.0, + 747.0, + 451.0, + 734.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 435.0, + 786.0, + 435.0, + 786.0, + 451.0, + 772.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 436.0, + 898.0, + 436.0, + 898.0, + 448.0, + 887.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 435.0, + 935.0, + 435.0, + 935.0, + 448.0, + 926.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 436.0, + 974.0, + 436.0, + 974.0, + 448.0, + 963.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 434.0, + 1014.0, + 434.0, + 1014.0, + 449.0, + 1001.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 436.0, + 1052.0, + 436.0, + 1052.0, + 448.0, + 1041.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 438.0, + 1165.0, + 438.0, + 1165.0, + 448.0, + 1156.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 436.0, + 1204.0, + 436.0, + 1204.0, + 448.0, + 1193.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 435.0, + 1244.0, + 435.0, + 1244.0, + 449.0, + 1229.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 435.0, + 1283.0, + 435.0, + 1283.0, + 449.0, + 1268.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 436.0, + 1319.0, + 436.0, + 1319.0, + 448.0, + 1308.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 481.0, + 1404.0, + 481.0, + 1404.0, + 516.0, + 296.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 510.0, + 1404.0, + 510.0, + 1404.0, + 547.0, + 293.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1810.0, + 630.0, + 1810.0, + 630.0, + 1853.0, + 298.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1319.0, + 566.0, + 1319.0, + 566.0, + 1370.0, + 291.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 793.0, + 991.0, + 793.0, + 991.0, + 824.0, + 297.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 821.0, + 992.0, + 821.0, + 992.0, + 856.0, + 295.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 850.0, + 992.0, + 850.0, + 992.0, + 886.0, + 293.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 884.0, + 992.0, + 884.0, + 992.0, + 915.0, + 294.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 915.0, + 991.0, + 915.0, + 991.0, + 945.0, + 294.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 944.0, + 993.0, + 944.0, + 993.0, + 978.0, + 294.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 974.0, + 993.0, + 974.0, + 993.0, + 1008.0, + 295.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1007.0, + 991.0, + 1007.0, + 991.0, + 1038.0, + 295.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1037.0, + 992.0, + 1037.0, + 992.0, + 1068.0, + 294.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1065.0, + 992.0, + 1065.0, + 992.0, + 1101.0, + 294.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1096.0, + 993.0, + 1096.0, + 993.0, + 1130.0, + 293.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1125.0, + 993.0, + 1125.0, + 993.0, + 1162.0, + 293.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1156.0, + 991.0, + 1156.0, + 991.0, + 1190.0, + 293.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1186.0, + 992.0, + 1186.0, + 992.0, + 1225.0, + 293.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1216.0, + 993.0, + 1216.0, + 993.0, + 1253.0, + 294.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1249.0, + 841.0, + 1249.0, + 841.0, + 1283.0, + 295.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 572.0, + 1406.0, + 572.0, + 1406.0, + 605.0, + 291.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 604.0, + 1405.0, + 604.0, + 1405.0, + 636.0, + 294.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 630.0, + 1406.0, + 630.0, + 1406.0, + 667.0, + 292.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 665.0, + 1404.0, + 665.0, + 1404.0, + 697.0, + 294.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 694.0, + 1406.0, + 694.0, + 1406.0, + 730.0, + 294.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 723.0, + 1404.0, + 723.0, + 1404.0, + 759.0, + 295.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1882.0, + 1403.0, + 1882.0, + 1403.0, + 1915.0, + 297.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1910.0, + 1404.0, + 1910.0, + 1404.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1312.0, + 2002.0, + 1312.0, + 2039.0, + 293.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1550.0, + 1405.0, + 1550.0, + 1405.0, + 1584.0, + 295.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1579.0, + 1405.0, + 1579.0, + 1405.0, + 1615.0, + 293.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1610.0, + 1406.0, + 1610.0, + 1406.0, + 1646.0, + 293.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1640.0, + 1405.0, + 1640.0, + 1405.0, + 1678.0, + 293.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1671.0, + 1404.0, + 1671.0, + 1404.0, + 1705.0, + 295.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1702.0, + 1404.0, + 1702.0, + 1404.0, + 1736.0, + 294.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1733.0, + 1162.0, + 1733.0, + 1162.0, + 1768.0, + 295.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1397.0, + 991.0, + 1397.0, + 991.0, + 1431.0, + 297.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1426.0, + 991.0, + 1426.0, + 991.0, + 1461.0, + 294.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1459.0, + 990.0, + 1459.0, + 990.0, + 1490.0, + 295.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1490.0, + 990.0, + 1490.0, + 990.0, + 1520.0, + 296.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1519.0, + 990.0, + 1519.0, + 990.0, + 1552.0, + 295.0, + 1552.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.885 + }, + { + "category_id": 1, + "poly": [ + 298, + 820, + 1402, + 820, + 1402, + 885, + 298, + 885 + ], + "score": 0.81 + }, + { + "category_id": 1, + "poly": [ + 294, + 905, + 1401, + 905, + 1401, + 971, + 294, + 971 + ], + "score": 0.81 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.807 + }, + { + "category_id": 1, + "poly": [ + 300, + 1972, + 1398, + 1972, + 1398, + 2035, + 300, + 2035 + ], + "score": 0.801 + }, + { + "category_id": 1, + "poly": [ + 297, + 734, + 1399, + 734, + 1399, + 801, + 297, + 801 + ], + "score": 0.782 + }, + { + "category_id": 1, + "poly": [ + 291, + 1191, + 1399, + 1191, + 1399, + 1257, + 291, + 1257 + ], + "score": 0.776 + }, + { + "category_id": 1, + "poly": [ + 295, + 1106, + 1399, + 1106, + 1399, + 1173, + 295, + 1173 + ], + "score": 0.773 + }, + { + "category_id": 1, + "poly": [ + 298, + 649, + 1400, + 649, + 1400, + 716, + 298, + 716 + ], + "score": 0.769 + }, + { + "category_id": 1, + "poly": [ + 297, + 279, + 1403, + 279, + 1403, + 343, + 297, + 343 + ], + "score": 0.769 + }, + { + "category_id": 1, + "poly": [ + 292, + 1276, + 1403, + 1276, + 1403, + 1342, + 292, + 1342 + ], + "score": 0.755 + }, + { + "category_id": 1, + "poly": [ + 297, + 1825, + 1404, + 1825, + 1404, + 1950, + 297, + 1950 + ], + "score": 0.753 + }, + { + "category_id": 1, + "poly": [ + 297, + 1708, + 1400, + 1708, + 1400, + 1804, + 297, + 1804 + ], + "score": 0.738 + }, + { + "category_id": 1, + "poly": [ + 294, + 363, + 1400, + 363, + 1400, + 429, + 294, + 429 + ], + "score": 0.733 + }, + { + "category_id": 0, + "poly": [ + 299, + 227, + 489, + 227, + 489, + 262, + 299, + 262 + ], + "score": 0.722 + }, + { + "category_id": 1, + "poly": [ + 298, + 534, + 1403, + 534, + 1403, + 628, + 298, + 628 + ], + "score": 0.721 + }, + { + "category_id": 1, + "poly": [ + 297, + 1593, + 1406, + 1593, + 1406, + 1686, + 297, + 1686 + ], + "score": 0.696 + }, + { + "category_id": 1, + "poly": [ + 298, + 448, + 1399, + 448, + 1399, + 515, + 298, + 515 + ], + "score": 0.68 + }, + { + "category_id": 1, + "poly": [ + 295, + 990, + 1405, + 990, + 1405, + 1084, + 295, + 1084 + ], + "score": 0.651 + }, + { + "category_id": 1, + "poly": [ + 298, + 1477, + 1405, + 1477, + 1405, + 1573, + 298, + 1573 + ], + "score": 0.649 + }, + { + "category_id": 1, + "poly": [ + 295, + 1361, + 1402, + 1361, + 1402, + 1458, + 295, + 1458 + ], + "score": 0.153 + }, + { + "category_id": 1, + "poly": [ + 299, + 227, + 489, + 227, + 489, + 262, + 299, + 262 + ], + "score": 0.136 + }, + { + "category_id": 13, + "poly": [ + 604, + 280, + 672, + 280, + 672, + 312, + 604, + 312 + ], + "score": 0.28, + "latex": "\\mathrm { ~ Y ~ N ~ g ~ }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 230.0, + 490.0, + 230.0, + 490.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 818.0, + 1404.0, + 818.0, + 1404.0, + 860.0, + 293.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 853.0, + 612.0, + 853.0, + 612.0, + 883.0, + 322.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 907.0, + 1404.0, + 907.0, + 1404.0, + 943.0, + 294.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 935.0, + 1169.0, + 935.0, + 1169.0, + 972.0, + 321.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1969.0, + 1404.0, + 1969.0, + 1404.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2002.0, + 935.0, + 2002.0, + 935.0, + 2037.0, + 322.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 731.0, + 1404.0, + 731.0, + 1404.0, + 775.0, + 293.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 766.0, + 1031.0, + 766.0, + 1031.0, + 801.0, + 321.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1194.0, + 1402.0, + 1194.0, + 1402.0, + 1227.0, + 295.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1223.0, + 1272.0, + 1223.0, + 1272.0, + 1258.0, + 322.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1106.0, + 1403.0, + 1106.0, + 1403.0, + 1143.0, + 295.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1137.0, + 1268.0, + 1137.0, + 1268.0, + 1173.0, + 321.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 650.0, + 1404.0, + 650.0, + 1404.0, + 686.0, + 296.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 680.0, + 771.0, + 680.0, + 771.0, + 716.0, + 323.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 278.0, + 603.0, + 278.0, + 603.0, + 314.0, + 295.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 278.0, + 1403.0, + 278.0, + 1403.0, + 314.0, + 673.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 310.0, + 1339.0, + 310.0, + 1339.0, + 346.0, + 324.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1277.0, + 1404.0, + 1277.0, + 1404.0, + 1313.0, + 295.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1308.0, + 759.0, + 1308.0, + 759.0, + 1343.0, + 323.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1822.0, + 1408.0, + 1822.0, + 1408.0, + 1863.0, + 294.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1857.0, + 1404.0, + 1857.0, + 1404.0, + 1890.0, + 324.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1886.0, + 1401.0, + 1886.0, + 1401.0, + 1921.0, + 322.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1919.0, + 859.0, + 1919.0, + 859.0, + 1950.0, + 324.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1708.0, + 1401.0, + 1708.0, + 1401.0, + 1746.0, + 293.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1740.0, + 1402.0, + 1740.0, + 1402.0, + 1774.0, + 323.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1773.0, + 870.0, + 1773.0, + 870.0, + 1805.0, + 322.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 360.0, + 1404.0, + 360.0, + 1404.0, + 403.0, + 294.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 395.0, + 589.0, + 395.0, + 589.0, + 431.0, + 324.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 534.0, + 1403.0, + 534.0, + 1403.0, + 571.0, + 293.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 566.0, + 1405.0, + 566.0, + 1405.0, + 600.0, + 322.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 593.0, + 397.0, + 593.0, + 397.0, + 630.0, + 318.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1592.0, + 1404.0, + 1592.0, + 1404.0, + 1631.0, + 292.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1624.0, + 1406.0, + 1624.0, + 1406.0, + 1661.0, + 321.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1654.0, + 397.0, + 1654.0, + 397.0, + 1688.0, + 323.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 450.0, + 1401.0, + 450.0, + 1401.0, + 483.0, + 297.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 483.0, + 1221.0, + 483.0, + 1221.0, + 513.0, + 324.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 992.0, + 1402.0, + 992.0, + 1402.0, + 1026.0, + 294.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1021.0, + 1406.0, + 1021.0, + 1406.0, + 1059.0, + 322.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1052.0, + 396.0, + 1052.0, + 396.0, + 1086.0, + 322.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1476.0, + 1405.0, + 1476.0, + 1405.0, + 1515.0, + 293.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1510.0, + 1405.0, + 1510.0, + 1405.0, + 1545.0, + 323.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1540.0, + 1103.0, + 1540.0, + 1103.0, + 1575.0, + 322.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1359.0, + 1406.0, + 1359.0, + 1406.0, + 1400.0, + 293.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1393.0, + 1404.0, + 1393.0, + 1404.0, + 1429.0, + 323.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1424.0, + 882.0, + 1424.0, + 882.0, + 1459.0, + 322.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 230.0, + 490.0, + 230.0, + 490.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.887 + }, + { + "category_id": 1, + "poly": [ + 300, + 1971, + 1396, + 1971, + 1396, + 2034, + 300, + 2034 + ], + "score": 0.855 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 297, + 598, + 1401, + 598, + 1401, + 664, + 297, + 664 + ], + "score": 0.808 + }, + { + "category_id": 1, + "poly": [ + 298, + 1887, + 1398, + 1887, + 1398, + 1949, + 298, + 1949 + ], + "score": 0.808 + }, + { + "category_id": 1, + "poly": [ + 292, + 1654, + 1402, + 1654, + 1402, + 1720, + 292, + 1720 + ], + "score": 0.792 + }, + { + "category_id": 1, + "poly": [ + 296, + 768, + 1402, + 768, + 1402, + 834, + 296, + 834 + ], + "score": 0.785 + }, + { + "category_id": 1, + "poly": [ + 299, + 513, + 1401, + 513, + 1401, + 578, + 299, + 578 + ], + "score": 0.782 + }, + { + "category_id": 1, + "poly": [ + 297, + 683, + 1401, + 683, + 1401, + 750, + 297, + 750 + ], + "score": 0.766 + }, + { + "category_id": 1, + "poly": [ + 295, + 228, + 1402, + 228, + 1402, + 294, + 295, + 294 + ], + "score": 0.765 + }, + { + "category_id": 1, + "poly": [ + 298, + 1169, + 1402, + 1169, + 1402, + 1263, + 298, + 1263 + ], + "score": 0.76 + }, + { + "category_id": 1, + "poly": [ + 301, + 428, + 1398, + 428, + 1398, + 494, + 301, + 494 + ], + "score": 0.759 + }, + { + "category_id": 1, + "poly": [ + 298, + 1284, + 1397, + 1284, + 1397, + 1350, + 298, + 1350 + ], + "score": 0.758 + }, + { + "category_id": 1, + "poly": [ + 291, + 968, + 1400, + 968, + 1400, + 1036, + 291, + 1036 + ], + "score": 0.756 + }, + { + "category_id": 1, + "poly": [ + 299, + 1053, + 1400, + 1053, + 1400, + 1148, + 299, + 1148 + ], + "score": 0.75 + }, + { + "category_id": 1, + "poly": [ + 298, + 1454, + 1402, + 1454, + 1402, + 1519, + 298, + 1519 + ], + "score": 0.748 + }, + { + "category_id": 1, + "poly": [ + 298, + 1739, + 1404, + 1739, + 1404, + 1865, + 298, + 1865 + ], + "score": 0.731 + }, + { + "category_id": 1, + "poly": [ + 295, + 1369, + 1399, + 1369, + 1399, + 1435, + 295, + 1435 + ], + "score": 0.722 + }, + { + "category_id": 1, + "poly": [ + 297, + 1539, + 1405, + 1539, + 1405, + 1634, + 297, + 1634 + ], + "score": 0.699 + }, + { + "category_id": 1, + "poly": [ + 301, + 313, + 1398, + 313, + 1398, + 409, + 301, + 409 + ], + "score": 0.696 + }, + { + "category_id": 1, + "poly": [ + 296, + 852, + 1405, + 852, + 1405, + 950, + 296, + 950 + ], + "score": 0.6 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1969.0, + 1401.0, + 1969.0, + 1401.0, + 2009.0, + 295.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2003.0, + 656.0, + 2003.0, + 656.0, + 2034.0, + 322.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 597.0, + 1406.0, + 597.0, + 1406.0, + 637.0, + 293.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 630.0, + 597.0, + 630.0, + 597.0, + 663.0, + 321.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1407.0, + 1880.0, + 1407.0, + 1926.0, + 293.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1915.0, + 397.0, + 1915.0, + 397.0, + 1950.0, + 320.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1652.0, + 1405.0, + 1652.0, + 1405.0, + 1692.0, + 294.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1686.0, + 588.0, + 1686.0, + 588.0, + 1721.0, + 323.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 766.0, + 1402.0, + 766.0, + 1402.0, + 806.0, + 294.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 800.0, + 776.0, + 800.0, + 776.0, + 835.0, + 324.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 509.0, + 1405.0, + 509.0, + 1405.0, + 552.0, + 293.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 547.0, + 596.0, + 547.0, + 596.0, + 579.0, + 324.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 683.0, + 1402.0, + 683.0, + 1402.0, + 719.0, + 295.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 714.0, + 1397.0, + 714.0, + 1397.0, + 753.0, + 321.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 1406.0, + 225.0, + 1406.0, + 270.0, + 293.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 262.0, + 1351.0, + 262.0, + 1351.0, + 295.0, + 324.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1167.0, + 1406.0, + 1167.0, + 1406.0, + 1209.0, + 293.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1198.0, + 1406.0, + 1198.0, + 1406.0, + 1238.0, + 321.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1228.0, + 398.0, + 1228.0, + 398.0, + 1266.0, + 319.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 429.0, + 1401.0, + 429.0, + 1401.0, + 465.0, + 297.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 460.0, + 1038.0, + 460.0, + 1038.0, + 496.0, + 323.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1285.0, + 1403.0, + 1285.0, + 1403.0, + 1321.0, + 295.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1317.0, + 775.0, + 1317.0, + 775.0, + 1349.0, + 323.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 969.0, + 1403.0, + 969.0, + 1403.0, + 1006.0, + 295.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1001.0, + 1219.0, + 1001.0, + 1219.0, + 1036.0, + 322.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1053.0, + 1400.0, + 1053.0, + 1400.0, + 1090.0, + 293.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1087.0, + 1404.0, + 1087.0, + 1404.0, + 1121.0, + 320.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1115.0, + 395.0, + 1115.0, + 395.0, + 1148.0, + 320.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1457.0, + 1403.0, + 1457.0, + 1403.0, + 1489.0, + 297.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1485.0, + 862.0, + 1485.0, + 862.0, + 1520.0, + 324.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1740.0, + 1404.0, + 1740.0, + 1404.0, + 1775.0, + 293.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1773.0, + 1406.0, + 1773.0, + 1406.0, + 1807.0, + 322.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1803.0, + 1405.0, + 1803.0, + 1405.0, + 1837.0, + 321.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1834.0, + 678.0, + 1834.0, + 678.0, + 1867.0, + 322.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1371.0, + 1404.0, + 1371.0, + 1404.0, + 1407.0, + 296.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1402.0, + 1369.0, + 1402.0, + 1369.0, + 1436.0, + 321.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1540.0, + 1402.0, + 1540.0, + 1402.0, + 1574.0, + 297.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1571.0, + 1405.0, + 1571.0, + 1405.0, + 1607.0, + 321.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1601.0, + 598.0, + 1601.0, + 598.0, + 1635.0, + 321.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 312.0, + 1404.0, + 312.0, + 1404.0, + 351.0, + 295.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 343.0, + 1406.0, + 343.0, + 1406.0, + 383.0, + 321.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 377.0, + 1134.0, + 377.0, + 1134.0, + 411.0, + 323.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 851.0, + 1403.0, + 851.0, + 1403.0, + 892.0, + 293.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 885.0, + 1405.0, + 885.0, + 1405.0, + 920.0, + 322.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 915.0, + 1261.0, + 915.0, + 1261.0, + 952.0, + 322.0, + 952.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.836 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1402, + 229, + 1402, + 293, + 297, + 293 + ], + "score": 0.699 + }, + { + "category_id": 1, + "poly": [ + 298, + 675, + 1400, + 675, + 1400, + 740, + 298, + 740 + ], + "score": 0.542 + }, + { + "category_id": 1, + "poly": [ + 296, + 311, + 1400, + 311, + 1400, + 377, + 296, + 377 + ], + "score": 0.541 + }, + { + "category_id": 1, + "poly": [ + 296, + 591, + 1402, + 591, + 1402, + 656, + 296, + 656 + ], + "score": 0.517 + }, + { + "category_id": 1, + "poly": [ + 303, + 394, + 1400, + 394, + 1400, + 490, + 303, + 490 + ], + "score": 0.495 + }, + { + "category_id": 1, + "poly": [ + 293, + 508, + 1401, + 508, + 1401, + 573, + 293, + 573 + ], + "score": 0.475 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 1406.0, + 229.0, + 1406.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 260.0, + 743.0, + 260.0, + 743.0, + 296.0, + 322.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 673.0, + 1404.0, + 673.0, + 1404.0, + 713.0, + 293.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 706.0, + 1272.0, + 706.0, + 1272.0, + 742.0, + 323.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 310.0, + 1405.0, + 310.0, + 1405.0, + 348.0, + 295.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 344.0, + 1377.0, + 344.0, + 1377.0, + 380.0, + 323.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 593.0, + 1404.0, + 593.0, + 1404.0, + 629.0, + 295.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 622.0, + 929.0, + 622.0, + 929.0, + 657.0, + 323.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 395.0, + 1403.0, + 395.0, + 1403.0, + 430.0, + 299.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 426.0, + 1405.0, + 426.0, + 1405.0, + 463.0, + 320.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 455.0, + 753.0, + 455.0, + 753.0, + 493.0, + 323.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 506.0, + 1404.0, + 506.0, + 1404.0, + 548.0, + 292.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 541.0, + 1057.0, + 541.0, + 1057.0, + 574.0, + 323.0, + 574.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 513, + 1404, + 513, + 1404, + 667, + 298, + 667 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 306, + 1404, + 306, + 1404, + 461, + 297, + 461 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 301, + 1941, + 1400, + 1941, + 1400, + 2038, + 301, + 2038 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 338, + 1790, + 1314, + 1790, + 1314, + 1911, + 338, + 1911 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 298, + 719, + 1405, + 719, + 1405, + 812, + 298, + 812 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 356, + 1605, + 1301, + 1605, + 1301, + 1694, + 356, + 1694 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 297, + 1304, + 1403, + 1304, + 1403, + 1369, + 297, + 1369 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 295, + 1511, + 1405, + 1511, + 1405, + 1575, + 295, + 1575 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 297, + 827, + 1403, + 827, + 1403, + 891, + 297, + 891 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 298, + 1726, + 891, + 1726, + 891, + 1760, + 298, + 1760 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 299, + 1431, + 470, + 1431, + 470, + 1466, + 299, + 1466 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.894 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1811, + 1400, + 1811, + 1400, + 1843, + 1352, + 1843 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1627, + 1400, + 1627, + 1400, + 1659, + 1352, + 1659 + ], + "score": 0.878 + }, + { + "category_id": 0, + "poly": [ + 302, + 225, + 687, + 225, + 687, + 262, + 302, + 262 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.865 + }, + { + "category_id": 1, + "poly": [ + 363, + 928, + 1336, + 928, + 1336, + 1266, + 363, + 1266 + ], + "score": 0.723 + }, + { + "category_id": 14, + "poly": [ + 336, + 1788, + 1315, + 1788, + 1315, + 1913, + 336, + 1913 + ], + "score": 0.93, + "latex": "\\mathcal { F } ( \\phi , \\theta ) = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal { D } } - \\log \\frac { \\exp \\beta Q _ { \\theta } ( s , a ) ) } { \\sum _ { b \\in \\mathcal { A } } \\exp ( \\beta Q _ { \\theta } ( s , b ) ) } + \\underbrace { D _ { K L } \\big ( q _ { \\phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \\big ) } _ { \\mathcal { L } _ { r e g } } ," + }, + { + "category_id": 14, + "poly": [ + 351, + 1604, + 1299, + 1604, + 1299, + 1696, + 351, + 1696 + ], + "score": 0.92, + "latex": "\\mathcal { F } ( \\phi , \\theta ) = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal { D } } \\log \\frac { \\exp \\beta Q _ { \\theta } ( s , a ) ) } { \\sum _ { b \\in \\mathcal { A } } \\exp ( \\beta Q _ { \\theta } ( s , b ) ) } - D _ { K L } \\big ( q _ { \\phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \\big )" + }, + { + "category_id": 13, + "poly": [ + 856, + 2001, + 1167, + 2001, + 1167, + 2039, + 856, + 2039 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\frac { 1 } { 2 } ( - \\log ( \\sigma ^ { 2 } ) + \\sigma ^ { 2 } - 1 + \\bar { \\mu } ^ { 2 } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 513, + 1944, + 571, + 1944, + 571, + 1973, + 513, + 1973 + ], + "score": 0.9, + "latex": "\\mathcal { L } _ { B C }" + }, + { + "category_id": 13, + "poly": [ + 532, + 2002, + 564, + 2002, + 564, + 2030, + 532, + 2030 + ], + "score": 0.87, + "latex": "\\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 364, + 2008, + 384, + 2008, + 384, + 2035, + 364, + 2035 + ], + "score": 0.8, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1019, + 1973, + 1059, + 1973, + 1059, + 1999, + 1019, + 1999 + ], + "score": 0.31, + "latex": "\\mathrm { K L }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1427.0, + 475.0, + 1427.0, + 475.0, + 1473.0, + 292.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 224.0, + 688.0, + 224.0, + 688.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 512.0, + 1405.0, + 512.0, + 1405.0, + 550.0, + 295.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 544.0, + 1405.0, + 544.0, + 1405.0, + 581.0, + 294.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 575.0, + 1405.0, + 575.0, + 1405.0, + 612.0, + 293.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 605.0, + 1405.0, + 605.0, + 1405.0, + 642.0, + 294.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 638.0, + 1075.0, + 638.0, + 1075.0, + 671.0, + 296.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 306.0, + 1404.0, + 306.0, + 1404.0, + 344.0, + 295.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 338.0, + 1405.0, + 338.0, + 1405.0, + 373.0, + 293.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 366.0, + 1405.0, + 366.0, + 1405.0, + 405.0, + 292.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 395.0, + 1405.0, + 395.0, + 1405.0, + 437.0, + 292.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 429.0, + 847.0, + 429.0, + 847.0, + 465.0, + 295.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1940.0, + 512.0, + 1940.0, + 512.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1940.0, + 1405.0, + 1940.0, + 1405.0, + 1978.0, + 572.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1018.0, + 1971.0, + 1018.0, + 2009.0, + 295.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2009.0, + 1060.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1998.0, + 363.0, + 1998.0, + 363.0, + 2042.0, + 291.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 1998.0, + 531.0, + 1998.0, + 531.0, + 2042.0, + 385.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1998.0, + 855.0, + 1998.0, + 855.0, + 2042.0, + 565.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 1998.0, + 1406.0, + 1998.0, + 1406.0, + 2042.0, + 1168.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 718.0, + 1403.0, + 718.0, + 1403.0, + 755.0, + 293.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 750.0, + 1403.0, + 750.0, + 1403.0, + 786.0, + 292.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 781.0, + 532.0, + 781.0, + 532.0, + 815.0, + 295.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1304.0, + 1405.0, + 1304.0, + 1405.0, + 1340.0, + 295.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1338.0, + 1119.0, + 1338.0, + 1119.0, + 1370.0, + 299.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1505.0, + 1407.0, + 1505.0, + 1407.0, + 1552.0, + 290.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1542.0, + 414.0, + 1542.0, + 414.0, + 1580.0, + 293.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 823.0, + 1403.0, + 823.0, + 1403.0, + 864.0, + 291.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 852.0, + 372.0, + 852.0, + 372.0, + 899.0, + 290.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1721.0, + 892.0, + 1721.0, + 892.0, + 1766.0, + 295.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 933.0, + 759.0, + 933.0, + 759.0, + 965.0, + 369.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 962.0, + 1332.0, + 962.0, + 1332.0, + 997.0, + 391.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 993.0, + 685.0, + 993.0, + 685.0, + 1028.0, + 393.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1080.0, + 679.0, + 1080.0, + 679.0, + 1115.0, + 369.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1110.0, + 1287.0, + 1110.0, + 1287.0, + 1148.0, + 392.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1198.0, + 698.0, + 1198.0, + 698.0, + 1236.0, + 368.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1232.0, + 952.0, + 1232.0, + 952.0, + 1267.0, + 393.0, + 1267.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 639, + 1399, + 639, + 1399, + 741, + 297, + 741 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 297, + 226, + 1132, + 226, + 1132, + 265, + 297, + 265 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 813, + 74, + 813, + 106, + 299, + 106 + ], + "score": 0.91 + }, + { + "category_id": 9, + "poly": [ + 1352, + 557, + 1400, + 557, + 1400, + 589, + 1352, + 589 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1351, + 289, + 1401, + 289, + 1401, + 320, + 1351, + 320 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1351, + 468, + 1400, + 468, + 1400, + 499, + 1351, + 499 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.845 + }, + { + "category_id": 9, + "poly": [ + 1352, + 379, + 1401, + 379, + 1401, + 411, + 1352, + 411 + ], + "score": 0.809 + }, + { + "category_id": 8, + "poly": [ + 349, + 279, + 929, + 279, + 929, + 355, + 349, + 355 + ], + "score": 0.691 + }, + { + "category_id": 8, + "poly": [ + 395, + 362, + 1310, + 362, + 1310, + 445, + 395, + 445 + ], + "score": 0.69 + }, + { + "category_id": 8, + "poly": [ + 404, + 541, + 1129, + 541, + 1129, + 623, + 404, + 623 + ], + "score": 0.475 + }, + { + "category_id": 8, + "poly": [ + 405, + 453, + 1011, + 453, + 1011, + 534, + 405, + 534 + ], + "score": 0.397 + }, + { + "category_id": 14, + "poly": [ + 344, + 278, + 1305, + 278, + 1305, + 627, + 344, + 627 + ], + "score": 0.95, + "latex": "\\begin{array} { l } { { \\displaystyle { \\mathcal L } _ { r e g } = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal D } _ { K L } \\big ( q _ { \\phi } ( R ( s , a ) ) | | p ( R ( s , a ) ) \\big ) } } \\\\ { { = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal D } \\frac { 1 } { 2 } \\big ( - \\log ( \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) + \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] - 1 + \\mathbb { E } _ { q _ { \\phi } } [ R ( s , a ) ] ^ { 2 } \\big ) } } \\\\ { { = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal D } \\frac { 1 } { 2 } \\big ( \\mathbb { E } _ { q _ { \\phi } } [ R ( s , a ) ] ^ { 2 } ) + g ( \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) } } \\\\ { { = \\sum _ { ( s , a , s ^ { \\prime } , a ^ { \\prime } ) \\in \\mathcal D } \\frac { 1 } { 2 } \\big ( Q _ { \\theta } ( s , a ) - \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) \\big ) ^ { 2 } + g ( \\operatorname { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 614, + 229, + 892, + 229, + 892, + 264, + 614, + 264 + ], + "score": 0.92, + "latex": "p ( R ( s , a ) ) = \\mathcal { N } ( R ; 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 554, + 642, + 1101, + 642, + 1101, + 677, + 554, + 677 + ], + "score": 0.92, + "latex": "\\mathbb { E } _ { q _ { \\phi } } [ R ( s , a ) ] ~ = ~ \\mathbb { E } _ { \\pi , T } [ Q _ { \\theta } ( s , a ) ~ - ~ \\gamma Q _ { \\theta } ( s ^ { \\prime } , a ^ { \\prime } ) ]" + }, + { + "category_id": 13, + "poly": [ + 297, + 701, + 1076, + 701, + 1076, + 741, + 297, + 741 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\dot { g } ( \\mathrm { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) = \\frac { 1 } { 2 } ( - \\log ( \\mathrm { V a r } _ { q _ { \\phi } } [ R ( s , a ) ] ) + \\mathrm { V a r } _ { q _ { \\phi } } [ \\bar { R } ( s , a ) ] - 1 ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1303, + 679, + 1323, + 679, + 1323, + 705, + 1303, + 705 + ], + "score": 0.77, + "latex": "g" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 109.0, + 295.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2122.0, + 832.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 634.0, + 553.0, + 634.0, + 553.0, + 684.0, + 291.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 634.0, + 1405.0, + 634.0, + 1405.0, + 684.0, + 1102.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 671.0, + 1302.0, + 671.0, + 1302.0, + 708.0, + 292.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 671.0, + 1405.0, + 671.0, + 1405.0, + 708.0, + 1324.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 701.0, + 1117.0, + 701.0, + 1117.0, + 740.0, + 1077.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 613.0, + 227.0, + 613.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 227.0, + 1134.0, + 227.0, + 1134.0, + 268.0, + 893.0, + 268.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/B1DmUzWAW/images/0443ec46c254b316bd6c84b48cddc5d25daf5188cff4a8b786954e552a10835e.jpg b/parse/train/B1DmUzWAW/images/0443ec46c254b316bd6c84b48cddc5d25daf5188cff4a8b786954e552a10835e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f0d75f7cb61c4ef46aae3edae11b044099adbd7 --- /dev/null +++ b/parse/train/B1DmUzWAW/images/0443ec46c254b316bd6c84b48cddc5d25daf5188cff4a8b786954e552a10835e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbccd75eae86152c246d73bd81c30e3dd2651914ce513fb7a20bd4fd7ac8b452 +size 24973 diff --git a/parse/train/B1DmUzWAW/images/06007e2ea13ae4855bd1ad9c1024af42e7b41a614d96692efe0cfc4e1a30b73f.jpg b/parse/train/B1DmUzWAW/images/06007e2ea13ae4855bd1ad9c1024af42e7b41a614d96692efe0cfc4e1a30b73f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d57d963f461842818d3894b349aff2f2d21df47 --- /dev/null +++ b/parse/train/B1DmUzWAW/images/06007e2ea13ae4855bd1ad9c1024af42e7b41a614d96692efe0cfc4e1a30b73f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c527c2df40ec7da50c9ece25a35fdfe5a6911f7a970d27b260b80bc832509d2 +size 34848 diff --git a/parse/train/B1DmUzWAW/images/16d1ed1a473f639bfa1ac35c8fa4b3006332f259aa697537b97b0e79f22a1d86.jpg b/parse/train/B1DmUzWAW/images/16d1ed1a473f639bfa1ac35c8fa4b3006332f259aa697537b97b0e79f22a1d86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2eb6e94eb1860d1f889c4118f331f0c23835556c --- /dev/null +++ b/parse/train/B1DmUzWAW/images/16d1ed1a473f639bfa1ac35c8fa4b3006332f259aa697537b97b0e79f22a1d86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5eb8873bc8f5633b6d5feeea53bd42f3412b782617b2180e90a53051a31217d +size 48596 diff --git a/parse/train/B1DmUzWAW/images/1aac60925efcb5f27a836a1a67f6502c47baa295f4fe78cd51379d173412d617.jpg b/parse/train/B1DmUzWAW/images/1aac60925efcb5f27a836a1a67f6502c47baa295f4fe78cd51379d173412d617.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b34e1362a11c7631a3e1516b0799bb9c14a49ccf --- /dev/null +++ b/parse/train/B1DmUzWAW/images/1aac60925efcb5f27a836a1a67f6502c47baa295f4fe78cd51379d173412d617.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b4f58bb3aed3d0786f1905dbefef6f91831878d84f4a3b801562a8dae0a42dc +size 10754 diff --git a/parse/train/B1DmUzWAW/images/26a4c3042edb3dd0394139233f93f6c28ea4e0a9a5229035177ac64fd14c91c6.jpg b/parse/train/B1DmUzWAW/images/26a4c3042edb3dd0394139233f93f6c28ea4e0a9a5229035177ac64fd14c91c6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b03900be10d1237b66fd2eb8a2a7b9739fad8458 --- /dev/null +++ b/parse/train/B1DmUzWAW/images/26a4c3042edb3dd0394139233f93f6c28ea4e0a9a5229035177ac64fd14c91c6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c62cdc86011e6898570586f34a0fdf1ee2a17520c6937365779865fd289c948 +size 75514 diff --git a/parse/train/B1DmUzWAW/images/3b1ae2b6e3920c849af026b223db28a7e4d252c3de59a2eca682ebd18c7253ba.jpg b/parse/train/B1DmUzWAW/images/3b1ae2b6e3920c849af026b223db28a7e4d252c3de59a2eca682ebd18c7253ba.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe2f9aa0556c5ac64c144ff5d47c343bacb00edc --- /dev/null +++ b/parse/train/B1DmUzWAW/images/3b1ae2b6e3920c849af026b223db28a7e4d252c3de59a2eca682ebd18c7253ba.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49dc2ba7f19b31d0a229370d40b20cb3eae4c70cd18e544f80c6c8f30636be1a +size 38079 diff --git a/parse/train/B1DmUzWAW/images/3ba1251132f153367c99e16e95b6f87819d212baceab63904ef927b3f1501a21.jpg b/parse/train/B1DmUzWAW/images/3ba1251132f153367c99e16e95b6f87819d212baceab63904ef927b3f1501a21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed76e273ff9d3da0c34db4f3e56c54b6bca8e8b1 --- /dev/null +++ b/parse/train/B1DmUzWAW/images/3ba1251132f153367c99e16e95b6f87819d212baceab63904ef927b3f1501a21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ed979b4aada1b5b8c495e3f791b07dbce5b4b4b39a41c0920097645e033e16e +size 42518 diff --git a/parse/train/B1DmUzWAW/images/435809045b71532f0f113581eabca8bc204d2386caab73c0ca2e4591c5d38d8c.jpg b/parse/train/B1DmUzWAW/images/435809045b71532f0f113581eabca8bc204d2386caab73c0ca2e4591c5d38d8c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..289f355f4e809b45b58c10f0e202029adbbd1f85 --- /dev/null +++ b/parse/train/B1DmUzWAW/images/435809045b71532f0f113581eabca8bc204d2386caab73c0ca2e4591c5d38d8c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6a8c4e722fab6ec053a5502ed2b5071eea68d2a699afa4ad97c715db3efe91e +size 33981 diff --git a/parse/train/B1DmUzWAW/images/84cc27f43a6326c339dae6db361f7bf1c4070b4dacdabe953b6aee7e7862f6d7.jpg b/parse/train/B1DmUzWAW/images/84cc27f43a6326c339dae6db361f7bf1c4070b4dacdabe953b6aee7e7862f6d7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abd708dc25aaecc0580bdad2ef4d81497468e741 --- /dev/null +++ b/parse/train/B1DmUzWAW/images/84cc27f43a6326c339dae6db361f7bf1c4070b4dacdabe953b6aee7e7862f6d7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c979a62ff3c49159256d71a08f4a60d4ec1d8a76abd2437703c71e3f95aeeb +size 26378 diff --git a/parse/train/B1DmUzWAW/images/862e005ea7ae4ff7b53558c24d2c75ef3ee053d1e143f7acfb88e5e7ea7224ae.jpg b/parse/train/B1DmUzWAW/images/862e005ea7ae4ff7b53558c24d2c75ef3ee053d1e143f7acfb88e5e7ea7224ae.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bdfc8315d4e34da8724c5e8a9c860861b4f813c6 --- /dev/null +++ b/parse/train/B1DmUzWAW/images/862e005ea7ae4ff7b53558c24d2c75ef3ee053d1e143f7acfb88e5e7ea7224ae.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:650fd92ec34fa8f09e7d4a4cabf3d97711cb0395f85072dc878491c0b41e4184 +size 70112 diff --git a/parse/train/B1DmUzWAW/images/a9dcffcf48385c66ff08f4c1d2e0a75de0b65229b45843c55499c766c7f72c59.jpg b/parse/train/B1DmUzWAW/images/a9dcffcf48385c66ff08f4c1d2e0a75de0b65229b45843c55499c766c7f72c59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a256bbe03047a7fdf67829f50273814d0be804c6 --- /dev/null +++ b/parse/train/B1DmUzWAW/images/a9dcffcf48385c66ff08f4c1d2e0a75de0b65229b45843c55499c766c7f72c59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb64a72e5e7f26d5ec3ab16ec6e8b1c941b59ed7b826e1242f84608a186268f9 +size 46253 diff --git a/parse/train/B1DmUzWAW/images/b4008e5ff9af10355b10875b51288cdb66ad94de985e34be0a888fffe163d1c7.jpg b/parse/train/B1DmUzWAW/images/b4008e5ff9af10355b10875b51288cdb66ad94de985e34be0a888fffe163d1c7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a10bf1a482eec7d6ce68c77a0c31955a085bf353 --- /dev/null +++ b/parse/train/B1DmUzWAW/images/b4008e5ff9af10355b10875b51288cdb66ad94de985e34be0a888fffe163d1c7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d25188583ea3028cb7539a25a7bcd453cf9f8645e72e1e15866b25d39f22fee2 +size 59781 diff --git a/parse/train/B1DmUzWAW/images/b6a343bec932fa0ca2ac0e97aa7e72e8b079052e0c7c45932a187bcf94dde81e.jpg b/parse/train/B1DmUzWAW/images/b6a343bec932fa0ca2ac0e97aa7e72e8b079052e0c7c45932a187bcf94dde81e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff9905e9dc5dc320bc183fc8513e82b3e53777fe --- /dev/null +++ b/parse/train/B1DmUzWAW/images/b6a343bec932fa0ca2ac0e97aa7e72e8b079052e0c7c45932a187bcf94dde81e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:174f434cf49e2a1628d3a5a0d285e2516dc07f046dee3166c233c11f3d4a810a +size 181028 diff --git a/parse/train/B1DmUzWAW/images/c0dffb1b17f3fe7f57881a53f96bf90c10b7082a0050f82836a11cd0b244b814.jpg b/parse/train/B1DmUzWAW/images/c0dffb1b17f3fe7f57881a53f96bf90c10b7082a0050f82836a11cd0b244b814.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f1163ce5b9142c866322b7712104e3f92ea77c2 --- /dev/null +++ b/parse/train/B1DmUzWAW/images/c0dffb1b17f3fe7f57881a53f96bf90c10b7082a0050f82836a11cd0b244b814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb39b3e1459c9c0db35cf02741ad4f82cdbfe52fd1f547f4bb902dd2868cf1f7 +size 80715 diff --git a/parse/train/B1DmUzWAW/images/c4fa5b58fc3c72e57f2561162589475d690facad7a6b70d5696869614ff77707.jpg b/parse/train/B1DmUzWAW/images/c4fa5b58fc3c72e57f2561162589475d690facad7a6b70d5696869614ff77707.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16f1f5f8ab258802e9291e3d29d93662788284c5 --- /dev/null +++ b/parse/train/B1DmUzWAW/images/c4fa5b58fc3c72e57f2561162589475d690facad7a6b70d5696869614ff77707.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1c75804ac765a325bd3c138e7d7b943cc7b6fd7cd69cdd55fa1b9167d258dab +size 39589 diff --git a/parse/train/B1DmUzWAW/images/d5a99e30bac98c276e57d37015a8c7b0b4ff6eb86cdbef0008288dc0447150d9.jpg b/parse/train/B1DmUzWAW/images/d5a99e30bac98c276e57d37015a8c7b0b4ff6eb86cdbef0008288dc0447150d9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f7d38ac5e3a66c7263839801663622fb89cd62d --- /dev/null +++ b/parse/train/B1DmUzWAW/images/d5a99e30bac98c276e57d37015a8c7b0b4ff6eb86cdbef0008288dc0447150d9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97d0a0aa443a3b7c23c30dca538f64290987fd0b245e9a0600308fa358b3ea4c +size 37629 diff --git a/parse/train/B1DmUzWAW/images/df671be243e5ded471c3be62ce53b5171e3902aa5623136a4ce1edceb8d49353.jpg b/parse/train/B1DmUzWAW/images/df671be243e5ded471c3be62ce53b5171e3902aa5623136a4ce1edceb8d49353.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56d1a3dfe4e48b3bc3898d8b1786991a612a0d7e --- /dev/null +++ b/parse/train/B1DmUzWAW/images/df671be243e5ded471c3be62ce53b5171e3902aa5623136a4ce1edceb8d49353.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea6bcd7fda530727f4baf8f222418e4239af946a51e1ecd07dc83353491b8e8c +size 55476 diff --git a/parse/train/B1DmUzWAW/images/f8a62d90dd8397b1ccb85932dc0ffd1ce39962c8d53bc6b2ba661d40e256e373.jpg b/parse/train/B1DmUzWAW/images/f8a62d90dd8397b1ccb85932dc0ffd1ce39962c8d53bc6b2ba661d40e256e373.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27f118cf35e6370f1347c429ae0ae29577111789 --- /dev/null +++ b/parse/train/B1DmUzWAW/images/f8a62d90dd8397b1ccb85932dc0ffd1ce39962c8d53bc6b2ba661d40e256e373.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77807bf37c9cf79c9be6ccc40e77c503be0477f33c008bdf80e3d10771472748 +size 16423 diff --git a/parse/train/B1ZvaaeAZ/images/08fc12882d7c09542ad5c72f19f19a5451c99b1bbccc43b5c8afb220cf711087.jpg b/parse/train/B1ZvaaeAZ/images/08fc12882d7c09542ad5c72f19f19a5451c99b1bbccc43b5c8afb220cf711087.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c87e1979badbf78f7a3285bf9870756ea867026 --- /dev/null +++ b/parse/train/B1ZvaaeAZ/images/08fc12882d7c09542ad5c72f19f19a5451c99b1bbccc43b5c8afb220cf711087.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9789f6af16062e696cebf579165f521aeed152020abea694de18ceb67921194c +size 26574 diff --git a/parse/train/B1ZvaaeAZ/images/3931dcfe2c2fef7db15078e5cf4419ef1acd1adaaf092a523d9cdccd1690c137.jpg b/parse/train/B1ZvaaeAZ/images/3931dcfe2c2fef7db15078e5cf4419ef1acd1adaaf092a523d9cdccd1690c137.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45b65b71fb0b70693a5254bbad3e9769fe9dbe0c --- /dev/null +++ b/parse/train/B1ZvaaeAZ/images/3931dcfe2c2fef7db15078e5cf4419ef1acd1adaaf092a523d9cdccd1690c137.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:585024efc6caa12b642127c6f0702902266f2e57865dcfabb1507135658aed94 +size 8460 diff --git a/parse/train/B1ZvaaeAZ/images/3add07bef96aeef10c64d78f1c4f7656f89c771362ce8151713d21f74429d0e3.jpg b/parse/train/B1ZvaaeAZ/images/3add07bef96aeef10c64d78f1c4f7656f89c771362ce8151713d21f74429d0e3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f4d84999288a16e9bb88fa0bec9334cb26ff290 --- /dev/null +++ b/parse/train/B1ZvaaeAZ/images/3add07bef96aeef10c64d78f1c4f7656f89c771362ce8151713d21f74429d0e3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4272b08ced28eb53db81edfee9acb1a4b5d13e63a31b3fb712bdc238d21610b5 +size 46356 diff --git a/parse/train/B1ZvaaeAZ/images/56229d6d59110f18b0d3c1a36bb5a05bf066573553347603e3b26c33f3b7b4a7.jpg b/parse/train/B1ZvaaeAZ/images/56229d6d59110f18b0d3c1a36bb5a05bf066573553347603e3b26c33f3b7b4a7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc739e824de277721514896db31d17e8629d75c3 --- /dev/null +++ b/parse/train/B1ZvaaeAZ/images/56229d6d59110f18b0d3c1a36bb5a05bf066573553347603e3b26c33f3b7b4a7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f83eaef24f1a1c26988fd521882624c11acc0fc05af33868ae1d0c8634d7576e +size 9296 diff --git a/parse/train/B1ZvaaeAZ/images/68b41f414d41218fdc998e6411e9fa6fffeba26af65946108693da1db317d075.jpg b/parse/train/B1ZvaaeAZ/images/68b41f414d41218fdc998e6411e9fa6fffeba26af65946108693da1db317d075.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e257b13791c9606463bd2c234c089630e6a06c2 --- /dev/null +++ b/parse/train/B1ZvaaeAZ/images/68b41f414d41218fdc998e6411e9fa6fffeba26af65946108693da1db317d075.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6dd1f7716dc653cce9a7bf5a488f4b5511d5726ab3c6fbc9a942df26c38329d +size 14052 diff --git a/parse/train/B1ZvaaeAZ/images/7f1ebe08f820ba2d4f6cf54598581053b3e8155aa0a62fb48e4050ad8d091021.jpg b/parse/train/B1ZvaaeAZ/images/7f1ebe08f820ba2d4f6cf54598581053b3e8155aa0a62fb48e4050ad8d091021.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4f132d22f859e6549f4f201a96f23547d454ef6 --- /dev/null +++ b/parse/train/B1ZvaaeAZ/images/7f1ebe08f820ba2d4f6cf54598581053b3e8155aa0a62fb48e4050ad8d091021.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e9d4826701dbdd20f5307a8e35030c7153fdb7ff763296bd06dd517127941f +size 49087 diff --git a/parse/train/B1ZvaaeAZ/images/95b9b13bfb188037f010166d925ca0e7b975dda5fa5f3ad20c2532785fd508d5.jpg b/parse/train/B1ZvaaeAZ/images/95b9b13bfb188037f010166d925ca0e7b975dda5fa5f3ad20c2532785fd508d5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bd08f001f7d036de04ffa68708687a6d6dc5407 --- /dev/null +++ b/parse/train/B1ZvaaeAZ/images/95b9b13bfb188037f010166d925ca0e7b975dda5fa5f3ad20c2532785fd508d5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65b65e26689fd03834d434ae0f64eaeb17fb334af773d649904a67ce8c8125c7 +size 41347 diff --git a/parse/train/B1ZvaaeAZ/images/cd7bc1abe74ca837190ccb83ce086162d73089e27fe7758ffeea7c05acdb6830.jpg b/parse/train/B1ZvaaeAZ/images/cd7bc1abe74ca837190ccb83ce086162d73089e27fe7758ffeea7c05acdb6830.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4de76df6818947309056b8683468d63ecc8f7357 --- /dev/null +++ b/parse/train/B1ZvaaeAZ/images/cd7bc1abe74ca837190ccb83ce086162d73089e27fe7758ffeea7c05acdb6830.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4611465527d5c250fa556682d91aa136e556d7f91f26c6ae9c26eb12c2c48e39 +size 13685 diff --git a/parse/train/B1ZvaaeAZ/images/e13d9207ef901f9c72d0c924fae9fa4f092413625cd682c0e4564ab5e48919dc.jpg b/parse/train/B1ZvaaeAZ/images/e13d9207ef901f9c72d0c924fae9fa4f092413625cd682c0e4564ab5e48919dc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84295a4e21892789298000ad9d01af8f35454f68 --- /dev/null +++ b/parse/train/B1ZvaaeAZ/images/e13d9207ef901f9c72d0c924fae9fa4f092413625cd682c0e4564ab5e48919dc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04a2f03d3a8971c56ac41742a7598248ac758b5b397f3813f87b2103a1d0e9c5 +size 28693 diff --git a/parse/train/B1ZvaaeAZ/images/edc7cebaa1081616f22562193fbf135a3823ee6a5f5905ff4ca4bbf7144c7a10.jpg b/parse/train/B1ZvaaeAZ/images/edc7cebaa1081616f22562193fbf135a3823ee6a5f5905ff4ca4bbf7144c7a10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d58105ba361aa709aef20703791ec4f999cbe96 --- /dev/null +++ b/parse/train/B1ZvaaeAZ/images/edc7cebaa1081616f22562193fbf135a3823ee6a5f5905ff4ca4bbf7144c7a10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f09e4e38be85e26a7e720c3098489f29350e800720fcc880b42bd199812d688 +size 149509 diff --git a/parse/train/BJIgi_eCZ/BJIgi_eCZ_content_list.json b/parse/train/BJIgi_eCZ/BJIgi_eCZ_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..3438973f37db03b5c8996bd2cfecc29c6988d649 --- /dev/null +++ b/parse/train/BJIgi_eCZ/BJIgi_eCZ_content_list.json @@ -0,0 +1,3287 @@ +[ + { + "type": "text", + "text": "FUSIONNET: FUSING VIA FULLY-AWARE ATTENTION WITH APPLICATION TO MACHINE COMPREHENSION ", + "text_level": 1, + "bbox": [ + 176, + 98, + 821, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Hsin-Yuan Huang\\*1,2, Chenguang $\\mathbf { Z } \\mathbf { h } \\mathbf { u } ^ { \\mathbf { 1 } }$ , Yelong Shen1, Weizhu Chen1 ", + "bbox": [ + 186, + 169, + 668, + 185 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1Microsoft Business AI and Research \n2National Taiwan University \nmomohuang@gmail.com, {chezhu,yeshen,wzchen}@microsoft.com ", + "bbox": [ + 181, + 186, + 740, + 228 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 265, + 544, + 280 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "This paper introduces a new neural structure called FusionNet, which extends existing attention approaches from three perspectives. First, it puts forward a novel concept of “history of word” to characterize attention information from the lowest word-level embedding up to the highest semantic-level representation. Second, it identifies an attention scoring function that better utilizes the “history of word” concept. Third, it proposes a fully-aware multi-level attention mechanism to capture the complete information in one text (such as a question) and exploit it in its counterpart (such as context or passage) layer by layer. We apply FusionNet to the Stanford Question Answering Dataset (SQuAD) and it achieves the first position for both single and ensemble model on the official SQuAD leaderboard at the time of writing (Oct. 4th, 2017). Meanwhile, we verify the generalization of FusionNet with two adversarial SQuAD datasets and it sets up the new state-of-the-art on both datasets: on AddSent, FusionNet increases the best F1 metric from $4 6 . 6 \\%$ to $5 1 . 4 \\%$ ; on AddOneSent, FusionNet boosts the best F1 metric from $5 6 . 0 \\%$ to $6 0 . 7 \\%$ . ", + "bbox": [ + 233, + 296, + 766, + 502 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 530, + 336, + 546 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Teaching machines to read, process and comprehend text and then answer questions is one of key problems in artificial intelligence. Figure 1 gives an example of the machine reading comprehension task. It feeds a machine with a piece of context and a question and teaches it to find a correct answer to the question. This requires the machine to possess high capabilities in comprehension, inference and reasoning. This is considered a challenging task in artificial intelligence and has already attracted numerous research efforts from the neural network and natural language processing communities. Many neural network models have been proposed for this challenge and they generally frame this problem as a machine reading comprehension (MRC) task (Hochreiter & Schmidhuber, 1997; Wang et al., 2017; Seo et al., 2017; Shen et al., 2017; Xiong et al., 2017; Weissenborn et al., 2017; Chen et al., 2017a). ", + "bbox": [ + 174, + 561, + 516, + 810 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Context: The Alpine Rhine is part of the Rhine, a famous European river. The Alpine Rhine begins in the most western part of the Swiss canton of Graubünden, and later forms the border between Switzerland to the West and Liechtenstein and later Austria to the East. On the other hand, the Danube separates Romania and Bulgaria. ", + "bbox": [ + 544, + 587, + 808, + 674 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Question: What is the other country the Rhine separates Switzerland to? ", + "bbox": [ + 544, + 681, + 789, + 705 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Answer: Liechtenstein ", + "bbox": [ + 542, + 713, + 665, + 723 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The key innovation in recent models lies in how to ingest information in the question and characterize it in the context, in order to provide an accurate answer to the question. This is often modeled as attention in the neural network community, which is a mechanism to attend the question into the context so as to find the answer related to the question. Some (Chen et al., 2017a; Weissenborn et al., 2017) attend the word-level embedding from the question to context, while some (Wang et al., 2017) attend the high-level representation in the question to augment the context. However we observed that none of the existing approaches has captured the full information in the context or the question, which could be vital for complete information comprehension. Taking image recognition as an example, information in various levels of representations can capture different aspects of details in an image: pixel, stroke and shape. We argue that this hypothesis also holds in language understanding and MRC. In other words, an approach that utilizes all the information from the word embedding level up to the highest level representation would be substantially beneficial for understanding both the question and the context, hence yielding more accurate answers. ", + "bbox": [ + 173, + 818, + 825, + 901 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 200 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "However, the ability to consider all layers of representation is often limited by the difficulty to make the neural model learn well, as model complexity will surge beyond capacity. We conjectured this is why previous literature tailored their models to only consider partial information. To alleviate this challenge, we identify an attention scoring function utilizing all layers of representation with less training burden. This leads to an attention that thoroughly captures the complete information between the question and the context. With this fully-aware attention, we put forward a multi-level attention mechanism to understand the information in the question, and exploit it layer by layer on the context side. All of these innovations are integrated into a new end-to-end structure called FusionNet in Figure 4, with details described in Section 3. ", + "bbox": [ + 174, + 208, + 825, + 333 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We submitted FusionNet to SQuAD (Rajpurkar et al., 2016), a machine reading comprehension dataset. At the time of writing (Oct. 4th, 2017), our model ranked in the first place in both single model and ensemble model categories. The ensemble model achieves an exact match (EM) score of $78 . 8 \\%$ and F1 score of $8 5 . 9 \\%$ . Furthermore, we have tested FusionNet against adversarial SQuAD datasets (Jia & Liang, 2017). Results show that FusionNet outperforms existing state-of-the-art architectures in both datasets: on AddSent, FusionNet increases the best F1 metric from $4 6 . 6 \\%$ to $5 1 . 4 \\%$ ; on AddOneSent, FusionNet boosts the best F1 metric from $5 6 . 0 \\%$ to $6 0 . 7 \\%$ . In Appendix D, we also applied to natural language inference task and shown decent improvement. This demonstrated the exceptional performance of FusionNet. An open-source implementation of FusionNet can be found at https://github.com/momohuang/FusionNet-NLI. ", + "bbox": [ + 174, + 339, + 825, + 478 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 MACHINE COMPREHENSION & FULLY-AWARE ATTENTION ", + "text_level": 1, + "bbox": [ + 176, + 501, + 692, + 517 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this section, we briefly introduce the task of machine comprehension as well as a conceptual architecture that summarizes recent advances in machine reading comprehension. Then, we introduce a novel concept called history-of-word. History-of-word can capture different levels of contextual information to fully understand the text. Finally, a light-weight implementation for history-of-word, Fully-Aware Attention, is proposed. ", + "bbox": [ + 174, + 532, + 825, + 603 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 TASK DESCRIPTION ", + "text_level": 1, + "bbox": [ + 176, + 621, + 352, + 635 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In machine comprehension, given a context and a question, the machine needs to read and understand the context, and then find the answer to the question. The context is described as a sequence of word tokens: $C ~ = ~ \\{ w _ { 1 } ^ { C } , \\ldots , w _ { m } ^ { C } \\}$ , and the question as: $\\textit { \\textbf { Q } } = \\ \\{ w _ { 1 } ^ { Q } , \\ldots , w _ { n } ^ { Q } \\}$ , where $m$ is the number of words in the context, and $n$ is the number of words in the question. In general, $m \\gg n$ . The answer Ans can have different forms depending on the task. In the SQuAD dataset (Rajpurkar et al., 2016), the answer Ans is guaranteed to be a contiguous span in the context $C$ , e.g., $\\mathbf { A n s } = \\{ w _ { i } ^ { C } , \\dots , w _ { i + k } ^ { C } \\}$ , where $k$ is the number of words in the answer and $k \\leq m$ . ", + "bbox": [ + 174, + 647, + 825, + 747 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.2 CONCEPTUAL ARCHITECTURE FOR MACHINE READING COMPREHENSION ", + "text_level": 1, + "bbox": [ + 176, + 765, + 727, + 780 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In all state-of-the-art architectures for machine reading comprehension, a recurring pattern is the following process. Given two sets of vectors, A and B, we enhance or modify every single vector in set A with the information from set B. We call this a fusion process, where set B is fused into set A. Fusion processes are commonly based on attention (Bahdanau et al., 2015), but some are not. Major improvements in recent MRC work lie in how the fusion process is designed. ", + "bbox": [ + 174, + 791, + 825, + 861 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "A conceptual architecture illustrating state-of-the-art architectures is shown in Figure 2, which consists of three components. ", + "bbox": [ + 173, + 868, + 823, + 897 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• Input vectors: Embedding vectors for each word in the context and the question. ", + "bbox": [ + 214, + 909, + 754, + 924 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/ef53a9d62835839db03dd60fa5bf44c53d378371d9b1d0cebb4360838ecc5ed3.jpg", + "image_caption": [ + "Table 1: A summarized view on the fusion processes used in several state-of-the-art architectures. ", + "Figure 2: A conceptual architecture illustrating recent advances in MRC. " + ], + "image_footnote": [], + "bbox": [ + 173, + 119, + 828, + 309 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "• Integration components: The rectangular box. It is usually implemented using an RNN such as an LSTM (Hochreiter & Schmidhuber, 1997) or a GRU (Cho et al., 2014). • Fusion processes: The numbered arrows (1), (2), (2’), (3), $( 3 ^ { \\circ } )$ . The set pointing outward is fused into the set being pointed to. ", + "bbox": [ + 214, + 373, + 825, + 435 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "There are three main types of fusion processes in recent advanced architectures. Table 1 shows what fusion processes are used in different state-of-the-art architectures. We now discuss them in detail. ", + "bbox": [ + 176, + 446, + 823, + 474 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "(1) Word-level fusion. By providing the direct word information in question to the context, we can quickly zoom in to more related regions in the context. However, it may not be helpful if a word has different semantic meaning based on the context. Many word-level fusions are not based on attention, e.g., (Hu et al., 2017; Chen et al., 2017a) appends binary features to context words, indicating whether each context word appears in the question. ", + "bbox": [ + 174, + 482, + 825, + 553 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "(2) High-level fusion. Informing the context about the semantic information in the question could help us find the correct answer. But high-level information is more imprecise than word information, which may cause models to be less aware of details. ", + "bbox": [ + 174, + 559, + 825, + 601 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "(2’) High-level fusion (Alternative). Similarly, we could also fuse high-level concept of $Q$ into the word-level of $C$ . ", + "bbox": [ + 176, + 607, + 821, + 636 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "(3) Self-boosted fusion. Since the context can be long and distant parts of text may rely on each other to fully understand the content, recent advances have proposed to fuse the context into itself. As the context contains excessive information, one common choice is to perform self-boosted fusion after fusing the question $Q$ . This allows us to be more aware of the regions related to the question. ", + "bbox": [ + 174, + 643, + 825, + 699 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "(3’) Self-boosted fusion (Alternative). Another choice is to directly condition the self-boosted fusion process on the question $Q$ , such as the coattention mechanism proposed in (Xiong et al., 2017). Then we can perform self-boosted fusion before fusing question information. ", + "bbox": [ + 174, + 705, + 825, + 748 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "A common trait of existing fusion mechanisms is that none of them employs all levels of representation jointly. In the following, we claim that employing all levels of representation is crucial to achieving better text understanding. ", + "bbox": [ + 174, + 755, + 825, + 797 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.3 FULLY-AWARE ATTENTION ON HISTORY OF WORD ", + "text_level": 1, + "bbox": [ + 174, + 814, + 566, + 829 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Consider the illustration shown in Figure 3. As we read through the context, each input word will gradually transform into a more abstract representation, e.g., from low-level to high-level concepts. Altogether, they form the history of each word in our mental flow. For a human, we utilize the history-of-word so frequently but we often neglect its importance. For example, to answer the question in Figure 3 correctly, we need to focus on both the high-level concept of forms the border and the word-level information of Alpine Rhine. If we focus only on the high-level concepts, we will ", + "bbox": [ + 174, + 839, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Context: The Alpine Rhine is part of the Rhine, a famous European river. The Alpine Rhine begins in the most western part of the Swiss canton of Graubünden, and later forms the border between Switzerland to the West and Liechtenstein and later Austria to the East. On the other hand, the Danube separates Romania and Bulgaria. ", + "bbox": [ + 184, + 109, + 450, + 195 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Question: What is the other country the Rhine separates Switzerland to? ", + "bbox": [ + 186, + 202, + 429, + 226 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Answer: Liechtenstein ", + "bbox": [ + 186, + 232, + 308, + 243 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/d3b58b3a8ba2ca6de01ca0430c65b35e60ff963f937f77dd27b865c4cf91802f.jpg", + "image_caption": [ + "Figure 3: Illustrations of the history-of-word for the example shown in Figure 1. Utilizing the entire history-of-word is crucial for the full understanding of the context. " + ], + "image_footnote": [], + "bbox": [ + 457, + 103, + 816, + 244 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "confuse Alpine Rhine with Danube since both are European rivers that separate countries. Therefore we hypothesize that the entire history-of-word is important to fully understand the text. ", + "bbox": [ + 171, + 314, + 823, + 342 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In neural architectures, we define the history of the $i$ -th word, $\\mathrm { H o W } _ { i }$ , to be the concatenation of all the representations generated for this word. This may include word embedding, multiple intermediate and output hidden vectors in RNN, and corresponding representation vectors in any further layers. To incorporate history-of-word into a wide range of neural models, we present a lightweight implementation we call Fully-Aware Attention. ", + "bbox": [ + 173, + 348, + 825, + 419 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Attention can be applied to different scenarios. To be more conclusive, we focus on attention applied to fusing informatiotext bodies A and B: $\\{ h _ { 1 } ^ { A } , \\ldots , h _ { m } ^ { A } \\}$ y, $\\{ h _ { 1 } ^ { B } , \\ldots , h _ { n } ^ { B } \\} \\subset \\mathbb { R } ^ { d }$ two sets of hidden vectors for words in. Their associated history-of-word are, $\\{ \\mathrm { H o W } _ { 1 } ^ { A } , \\dots , \\mathrm { H o W } _ { m } ^ { A } \\} , ~ \\{ \\mathrm { H o W } _ { 1 } ^ { B } , \\dots , \\mathrm { H o W } _ { n } ^ { B } \\} \\subset \\mathbb { R } ^ { d _ { h } } ,$ ", + "bbox": [ + 174, + 425, + 826, + 491 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $d _ { h } \\gg d$ . Fusing body $\\mathbf { B }$ to body A via standard attention means for every $ { \\boldsymbol { h } } _ { i } ^ { A }$ in body A, ", + "bbox": [ + 171, + 494, + 797, + 510 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "1. Compute an attention score $S _ { i j } = S ( \\pmb { h } _ { i } ^ { A } , \\pmb { h } _ { j } ^ { B } ) \\in \\mathbb { R }$ for each $h _ { j } ^ { B }$ in body $\\mathbf { B }$ . \n2. Form the attention weight $\\alpha _ { i j }$ through softmax: $\\begin{array} { r } { \\alpha _ { i j } = \\exp ( S _ { i j } ) / \\sum _ { k } \\exp ( S _ { i k } ) } \\end{array}$ . \n3. Concatenate $ { \\boldsymbol { h } } _ { i } ^ { A }$ with the summarized information, $\\begin{array} { r } { \\hat { \\pmb { h } } _ { i } ^ { A } = \\sum _ { j } \\alpha _ { i j } \\pmb { h } _ { j } ^ { B } } \\end{array}$ . ", + "bbox": [ + 207, + 517, + 758, + 582 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In fully-aware attention, we replace attention score computation with the history-of-word. ", + "bbox": [ + 169, + 589, + 759, + 604 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/8f754747bf68aa99deea077be3cd6b21b01eee49ec5f520f0d6c69357909b636.jpg", + "text": "$$\nS ( h _ { i } ^ { A } , h _ { j } ^ { B } ) \\implies S ( \\mathrm { H o W } _ { i } ^ { A } , \\mathrm { H o W } _ { j } ^ { B } ) .\n$$", + "text_format": "latex", + "bbox": [ + 370, + 606, + 620, + 626 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "This allows us to be fully aware of the complete understanding of each word. The ablation study in Section 4.4 demonstrates that this lightweight enhancement offers a decent improvement in performance. ", + "bbox": [ + 176, + 627, + 823, + 669 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To fully utilize history-of-word in attention, we need a suitable attention scoring function $S ( { \\pmb x } , { \\pmb y } )$ . A commonly used function is multiplicative attention (Britz et al., 2017): $\\pmb { x } ^ { T } \\pmb { U } ^ { T } \\pmb { V } \\pmb { y }$ , leading to ", + "bbox": [ + 171, + 675, + 823, + 704 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/e01cb8af491fe3abe8c117ad5a86b394bd740741198cac28d6b2c308c41f6ef1.jpg", + "text": "$$\n\\begin{array} { r } { S _ { i j } = ( \\mathrm { H o W } _ { i } ^ { A } ) ^ { T } U ^ { T } V ( \\mathrm { H o W } _ { j } ^ { B } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 388, + 705, + 606, + 726 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $U , V ~ \\in ~ \\mathbb { R } ^ { k \\times d _ { h } }$ , and $k$ is the attention hidden size. However, we suspect that two large matrices interacting directly will make the neural model harder to train. Therefore we propose to constrain the matrix $U ^ { T } V$ to be symmetric. A symmetric matrix can always be decomposed into $U ^ { T } D U$ , thus ", + "bbox": [ + 173, + 727, + 825, + 782 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/b5ead9f5bb6b356668e104a50bcd1d982c4e29334a47948b75e3b3b7c14fb1ce.jpg", + "text": "$$\n\\begin{array} { r } { S _ { i j } = ( \\mathrm { H o W } _ { i } ^ { A } ) ^ { T } U ^ { T } D U ( \\mathrm { H o W } _ { j } ^ { B } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 382, + 780, + 614, + 801 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $U \\in \\mathbb { R } ^ { k \\times d _ { h } }$ , $D \\in \\mathbb { R } ^ { k \\times k }$ and $D$ is a diagonal matrix. The symmetric form retains the ability to give high attention score between dissimilar $\\mathrm { \\bar { H } o W } _ { i } ^ { A } , \\mathrm { H o W } _ { j } ^ { B }$ . Additionally, we marry nonlinearity with the symmetric form to provide richer interaction among different parts of the history-of-word. The final formulation for attention score is ", + "bbox": [ + 173, + 801, + 825, + 859 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/82ab4e2788c5f3d7d10613ad43f37e3f3850b709a609d4a3926df5ac3fa925b3.jpg", + "text": "$$\nS _ { i j } = f ( U ( \\mathrm { H o W } _ { i } ^ { A } ) ) ^ { T } D ~ f ( U ( \\mathrm { H o W } _ { j } ^ { B } ) ) ,\n$$", + "text_format": "latex", + "bbox": [ + 362, + 859, + 632, + 880 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $f ( x )$ is an activation function applied element-wise. In the following context, we employ $f ( x ) = \\operatorname* { m a x } ( 0 , x )$ . A detailed ablation study in Section 4 demonstrates its advantage over many alternatives. ", + "bbox": [ + 174, + 882, + 823, + 924 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/0257ec1f4f3ec3d036b2ec9c1a8204d14a2dfc7469e37a1de56bf42b7d5b2f0c.jpg", + "image_caption": [ + "Figure 4: An illustration of FusionNet architecture. Each upward arrow represents one layer of BiLSTM. Each circle to the right is a detailed illustration of the corresponding component in FusionNet. Circle 1: Fully-aware attention between $C$ and $Q$ . Illustration of Equation (C1) in Section 3.1. Circle 2: Concatenate all concepts in $C$ with multi-level $Q$ information, then pass through BiLSTM. Illustration of Equation (C2) in Section 3.1. " + ], + "image_footnote": [], + "bbox": [ + 176, + 101, + 823, + 422 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Circle 3: Fully-aware attention on the context $C$ itself. Illustration of Equation (C3) in Section 3.1. Circle 4: Concatenate the understanding vector of $C$ with self-attention information, then pass through BiLSTM. Illustration of Equation (C4) in Section 3.1. ", + "bbox": [ + 174, + 506, + 823, + 547 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3 FULLY-AWARE FUSION NETWORK ", + "text_level": 1, + "bbox": [ + 174, + 574, + 490, + 590 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.1 END-TO-END ARCHITECTURE ", + "text_level": 1, + "bbox": [ + 176, + 606, + 421, + 621 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Based on fully-aware attention, we propose an end-to-end architecture: the fully-aware fusion network (FusionNet). Given text A and B, FusionNet fuses information from text $\\mathbf { B }$ to text A and generates two set of vectors ", + "bbox": [ + 173, + 632, + 825, + 675 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/32b0f646184d694bd256b68772f99e90452dfdcdf3152b72857259601481d57c.jpg", + "text": "$$\nU _ { A } = \\{ \\pmb { u } _ { 1 } ^ { A } , \\ldots , \\pmb { u } _ { m } ^ { A } \\} , \\quad U _ { B } = \\{ \\pmb { u } _ { 1 } ^ { B } , \\ldots , \\pmb { u } _ { n } ^ { B } \\} .\n$$", + "text_format": "latex", + "bbox": [ + 341, + 683, + 655, + 702 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In the following, we consider the special case where text A is context $C$ and text $\\mathbf { B }$ is question $Q$ . \nAn illustration for FusionNet is shown in Figure 4. It consists of the following components. ", + "bbox": [ + 174, + 709, + 823, + 738 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Input Vectors. First, each word in $C$ and $Q$ is transformed into an input vector $\\textbf { \\em w }$ . We utilize the 300-dim GloVe embedding (Pennington et al., 2014) and 600-dim contextualized vector (McCann et al., 2017). In the SQuAD task, we also include 12-dim POS embedding, 8-dim NER embedding and a normalized term frequency for context $C$ as suggested in (Chen et al., 2017a). Together $\\{ \\pmb { w } _ { 1 } ^ { C } , \\ldots , \\pmb { w } _ { m } ^ { C } \\} \\subset \\mathbb { R } ^ { 9 0 0 + 2 0 + 1 }$ , and $\\{ \\pmb { w } _ { 1 } ^ { Q } , \\ldots , \\pmb { w } _ { n } ^ { Q } \\} \\subset \\mathbb { R } ^ { 9 0 0 }$ . ", + "bbox": [ + 173, + 743, + 825, + 819 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Fully-Aware Multi-level Fusion: Word-level. In multi-level fusion, we separately consider fusing word-level and higher-level. Word-level fusion informs $C$ about what kind of words are in $Q$ . It is illustrated as arrow (1) in Figure 2. For this component, we follow the approach in (Chen et al., 2017a) First, a feature vector $\\mathrm { e m } _ { i }$ is created for each word in $C$ to indicate whether the word occurs in the question $Q$ . Second, attention-based fusion on GloVe embedding $\\mathbf { \\nabla } _ { \\mathbf { \\boldsymbol { g } } _ { i } }$ is used ", + "bbox": [ + 173, + 823, + 825, + 893 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/99dc2ff21714f858c7d0fbf27c6f23cc2ca2e5bae434cba56a9ca5f79f5b4ec2.jpg", + "text": "$$\n\\hat { g } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } g _ { j } ^ { Q } , \\quad \\alpha _ { i j } \\propto \\exp ( S ( g _ { i } ^ { C } , g _ { j } ^ { Q } ) ) , \\quad S ( x , y ) = \\mathrm { R e L U } ( W x ) ^ { T } \\mathrm { R e L U } ( W y ) ,\n$$", + "text_format": "latex", + "bbox": [ + 207, + 901, + 787, + 929 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $W \\in \\mathbb { R } ^ { 3 0 0 \\times 3 0 0 }$ . Since history-of-word is the input vector itself, fully-aware attention is not employed here. The enhanced input vector for context is $\\mathbf { \\tilde { w } } _ { i } ^ { C } = [ \\mathbf { w } _ { i } ^ { C } ; \\mathrm { e m } _ { i } ; \\bar { \\mathbf { g } } _ { i } ^ { C } ]$ . ", + "bbox": [ + 171, + 102, + 825, + 135 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Reading. In the reading component, we use a separate bidirectional LSTM (BiLSTM) to form low-level and high-level concepts for $C$ and $Q$ . ", + "bbox": [ + 169, + 140, + 825, + 170 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/d1fdcaed4618992b1457bd199f2eb1bcec31665ed1d897bac0ee6a19d9a967f2.jpg", + "text": "$$\n{ h } _ { 1 } ^ { C l } , \\dots , { h } _ { m } ^ { C l } = \\mathrm { B i L S T M } ( \\tilde { w } _ { 1 } ^ { C } , \\dots , \\tilde { w } _ { m } ^ { C } ) , \\quad { h } _ { 1 } ^ { Q l } , \\dots , { h } _ { n } ^ { Q l } = \\mathrm { B i L S T M } ( w _ { 1 } ^ { Q } , \\dots , w _ { n } ^ { Q } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 210, + 176, + 784, + 198 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/580300d31cea37ed2418c9aff7009501f7fa5b3971052292a011b0bb5746ae00.jpg", + "text": "$$\n{ h } _ { 1 } ^ { C h } , \\ldots , { h } _ { m } ^ { C h } = \\mathrm { B i L S T M } ( { h } _ { 1 } ^ { C l } , \\ldots , { h } _ { m } ^ { C l } ) , \\quad { h } _ { 1 } ^ { Q h } , \\ldots , { h } _ { n } ^ { Q h } = \\mathrm { B i L S T M } ( { h } _ { 1 } ^ { Q l } , \\ldots , { h } _ { n } ^ { Q l } ) .\n$$", + "text_format": "latex", + "bbox": [ + 204, + 205, + 790, + 227 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Hence low-level and high-level concepts $h ^ { l } , h ^ { h } \\in \\mathbb { R } ^ { 2 5 0 }$ are created for each word. ", + "bbox": [ + 174, + 231, + 714, + 248 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Question Understanding. In the Question Understanding component, we apply a new BiLSTM taking in both ${ h ^ { Q l } , h ^ { Q h } }$ to obtain the final question representation $U _ { Q }$ : ", + "bbox": [ + 173, + 253, + 823, + 286 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/4add0719b763e3c73ec77b317812917d3a81a8ba156c40742973cc6b52a597b3.jpg", + "text": "$$\n\\begin{array} { r } { U _ { Q } = \\{ \\boldsymbol { { u } } _ { 1 } ^ { Q } , \\ldots , \\boldsymbol { { u } } _ { n } ^ { Q } \\} = \\mathrm { { B i L S T M } } ( [ \\boldsymbol { h } _ { 1 } ^ { Q l } ; \\boldsymbol { h } _ { 1 } ^ { Q h } ] , \\ldots , [ \\boldsymbol { h } _ { n } ^ { Q l } ; \\boldsymbol { h } _ { n } ^ { Q h } ] ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 285, + 292, + 710, + 314 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where $\\{ \\boldsymbol { u } _ { i } ^ { Q } \\in \\mathbb { R } ^ { 2 5 0 } \\} _ { i = 1 } ^ { n }$ are the understanding vectors for $Q$ ", + "bbox": [ + 174, + 323, + 573, + 340 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Fully-Aware Multi-level Fusion: Higher-level. This component fuses all higher-level information in the question $Q$ to the context $C$ through fully-aware attention on history-of-word. Since the proposed attention scoring function for fully-aware attention is constrained to be symmetric, we need to identify the common history-of-word for both $C , Q$ . This yields ", + "bbox": [ + 173, + 344, + 826, + 402 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/d809ab78d0fe1e1f9c75886019e208f842da6ed276613a87869bb720655286a0.jpg", + "text": "$$\n\\mathrm { H o W } _ { i } ^ { C } = [ \\pmb { g } _ { i } ^ { C } ; \\pmb { c } _ { i } ^ { C } ; \\pmb { h } _ { i } ^ { C l } ; \\pmb { h } _ { i } ^ { C h } ] , ~ \\mathrm { H o W } _ { i } ^ { Q } = [ \\pmb { g } _ { i } ^ { Q } ; \\pmb { c } _ { i } ^ { Q } ; \\pmb { h } _ { i } ^ { Q l } ; \\pmb { h } _ { i } ^ { Q h } ] \\in \\mathbb { R } ^ { 1 4 0 0 } ,\n$$", + "text_format": "latex", + "bbox": [ + 259, + 410, + 735, + 430 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where $\\mathbf { \\pmb { g } } _ { i }$ is the GloVe embedding and $c _ { i }$ is the CoVe embedding. Then we fuse low, high, and understanding-level information from $Q$ to $C$ via fully-aware attention. Different sets of attention weights are calculated through attention function $S ^ { \\tilde { l } } ( x , y ) , S ^ { h } ( x , y ) , S ^ { u } ( x , y )$ to combine low, high, and understanding-level of concepts. All three functions are the proposed symmetric form with nonlinearity in Section 2.3, but are parametrized by independent parameters to attend to different regions for different level. Attention hidden size is set to be $k = 2 5 0$ . ", + "bbox": [ + 173, + 436, + 826, + 522 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/4988641819727045586758b826efd980f8a73a8d9185a60e97e39f222ad37989.jpg", + "text": "$$\n\\begin{array} { r } { \\hat { \\boldsymbol { h } } _ { i } ^ { C l } = \\sum _ { j } \\alpha _ { i j } ^ { l } \\boldsymbol { h } _ { j } ^ { Q l } , \\quad \\alpha _ { i j } ^ { l } \\propto \\exp ( S ^ { l } ( \\mathrm { H o W } _ { i } ^ { C } , \\mathrm { H o W } _ { j } ^ { Q } ) ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 351, + 534, + 720, + 558 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "2. High-level fusion: $\\begin{array} { r } { \\hat { \\boldsymbol { \\mathsf { h } } } _ { i } ^ { C h } = \\sum _ { j } \\alpha _ { i j } ^ { h } \\boldsymbol { h } _ { j } ^ { Q h } , \\quad \\alpha _ { i j } ^ { h } \\propto \\exp ( S ^ { h } ( \\mathrm { H o W } _ { i } ^ { C } , \\mathrm { H o W } _ { j } ^ { Q } ) ) . } \\end{array}$ ", + "bbox": [ + 210, + 561, + 743, + 585 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "This multi-level attention mechanism captures different levels of information independently, while taking all levels of information into account. A new BiLSTM is applied to obtain the representation for $C$ fully fused with information in the question $Q$ : ", + "bbox": [ + 176, + 621, + 821, + 664 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/8dcce15acb993a32a6ffe25437c7b96c47d8ea9ad9c8a3427ed97b9b25ec9d52.jpg", + "text": "$$\n\\{ \\pmb { v } _ { 1 } ^ { C } , \\ldots , \\pmb { v } _ { m } ^ { C } \\} = \\mathrm { B i L S T M } ( [ { \\pmb { h } } _ { 1 } ^ { C l } ; { \\pmb { h } } _ { 1 } ^ { C h } ; { \\hat { \\pmb { h } } } _ { 1 } ^ { C l } ; { \\hat { \\pmb { h } } } _ { 1 } ^ { C h } ; { \\hat { \\pmb { u } } } _ { 1 } ^ { C l } ] , \\ldots , [ { \\pmb { h } } _ { m } ^ { C l } ; { \\pmb { h } } _ { m } ^ { C h } ; { \\hat { \\pmb { h } } } _ { m } ^ { C l } ; { \\hat { \\pmb { h } } } _ { m } ^ { C h } ; { \\hat { \\pmb { u } } } _ { m } ^ { C } ] ) .\n$$", + "text_format": "latex", + "bbox": [ + 194, + 670, + 772, + 695 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Fully-Aware Self-Boosted Fusion. We now use self-boosted fusion to consider distant parts in the context, as illustrated by arrow (3) in Figure 2. Again, we achieve this via fully-aware attention on history-of-word. We identify the history-of-word to be ", + "bbox": [ + 173, + 709, + 825, + 752 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/810e1435335c87870a4c10de901f452b589e89a6645d884b19249ece23a8494f.jpg", + "text": "$$\n\\operatorname { H o W } _ { i } ^ { C } = [ \\pmb { g } _ { i } ^ { C } ; \\pmb { c } _ { i } ^ { C } ; \\pmb { h } _ { i } ^ { C l } ; \\pmb { h } _ { i } ^ { C h } ; \\hat { \\pmb { h } } _ { i } ^ { C l } ; \\hat { \\pmb { h } } _ { i } ^ { C h } ; \\hat { \\pmb { u } } _ { i } ^ { C } ; \\pmb { v } _ { i } ^ { C } ] \\in \\mathbb { R } ^ { 2 4 0 0 } .\n$$", + "text_format": "latex", + "bbox": [ + 302, + 758, + 692, + 782 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We then perform fully-aware attention, $\\begin{array} { r } { \\hat { \\pmb v } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } ^ { s } \\pmb { v } _ { j } ^ { C } , \\alpha _ { i j } ^ { s } \\propto \\exp ( S ^ { s } ( \\mathrm { H o W } _ { i } ^ { C } , \\mathrm { H o W } _ { j } ^ { C } ) ) . } \\end{array}$ The final context representation is obtained by ", + "bbox": [ + 178, + 790, + 777, + 823 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/946826f16b3340087bf4395eda5a620cee8ce4793b8ecacc4fcdb326ce7cd59c.jpg", + "text": "$$\nU _ { C } = \\{ \\pmb { u } _ { 1 } ^ { C } , \\ldots , \\pmb { u } _ { m } ^ { C } \\} = \\mathrm { B i L S T M } ( [ \\pmb { v } _ { 1 } ^ { C } ; \\hat { \\pmb { v } } _ { 1 } ^ { C } ] , \\ldots , [ \\pmb { v } _ { m } ^ { C } ; \\hat { \\pmb { v } } _ { m } ^ { C } ] ) .\n$$", + "text_format": "latex", + "bbox": [ + 299, + 830, + 699, + 851 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "$\\{ \\boldsymbol { u } _ { i } ^ { C } \\in \\mathbb { R } ^ { 2 5 0 } \\} _ { i = 1 } ^ { m }$ are the understanding vectors for $C$ ", + "bbox": [ + 174, + 859, + 573, + 876 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "After these components in FusionNet, we have created the understanding vectors, $U _ { C }$ , for the context $C$ , which are fully fused with the question $Q$ . We also have the understanding vectors, $U _ { Q }$ , for the question $Q$ . ", + "bbox": [ + 174, + 881, + 825, + 924 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.2 APPLICATION IN MACHINE COMPREHENSION ", + "text_level": 1, + "bbox": [ + 176, + 103, + 527, + 118 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We focus particularly on the output format in $\\mathrm { S Q u A D }$ (Rajpurkar et al., 2016) where the answer is always a span in the context. The output of FusionNet are the understanding vectors for both $C$ and $Q$ , $U _ { C } = \\{ \\mathbf { { u } } _ { 1 } ^ { C } , \\dots , \\mathbf { { u } } _ { m } ^ { C } \\}$ , $U _ { Q } = \\{ \\bar { \\pmb { u } } _ { 1 } ^ { Q } , \\dots , \\pmb { u } _ { n } ^ { Q } \\}$ . ", + "bbox": [ + 174, + 128, + 825, + 176 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We then use them to find the answer span in the context. Firstly, a single summarized question understanding vector is obtained through $\\begin{array} { r } { { \\pmb u } ^ { Q } = \\sum _ { i } \\beta _ { i } { \\pmb u } _ { i } ^ { Q } } \\end{array}$ , where $\\beta _ { i } \\propto \\mathrm { { e x p } } ( { \\pmb w } ^ { T } { \\pmb u } _ { i } ^ { Q } )$ and $\\pmb { w }$ is a trainable vector. Then we attend for the span start using the summarized question understanding vector $\\pmb { u } ^ { Q }$ , ", + "bbox": [ + 174, + 180, + 825, + 238 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/fa311c803fdd350b2b7ef382f167828161ad73a10229d5b0a705805e938d606a.jpg", + "text": "$$\nP _ { i } ^ { S } \\propto \\exp ( ( \\boldsymbol { \\mathbf { \\mathit { u } } } ^ { Q } ) ^ { T } W _ { S } \\boldsymbol { \\mathbf { \\mathit { u } } } _ { i } ^ { C } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 406, + 236, + 588, + 255 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $W _ { S } \\in \\mathbb { R } ^ { d \\times d }$ is a trainable matrix. To use the information of the span start when we attend for the span end, we combine the context understanding vector for the span start with $\\pmb { u } ^ { Q }$ through a GRU (Cho et al., 2014), $\\begin{array} { r } { { \\pmb v } ^ { Q } = \\mathrm { G R U } ( { \\pmb u } ^ { Q } , \\sum _ { i } P _ { i } ^ { S } { \\pmb u } _ { i } ^ { \\top } ) } \\end{array}$ , where $\\pmb { u } ^ { Q }$ is taken as the memory and $\\textstyle \\sum _ { i } P _ { i } ^ { S } { \\boldsymbol { u } } _ { i } ^ { C }$ as the input in GRU. Finally we attend for the end of the span using $v ^ { Q }$ , ", + "bbox": [ + 174, + 257, + 825, + 316 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/508dd248555ec57d70c929cd23cac8f188f98a94877f19eeb584f1a0c82b2c21.jpg", + "text": "$$\nP _ { i } ^ { E } \\propto \\exp ( ( \\pmb { v } ^ { Q } ) ^ { T } W _ { E } \\pmb { u } _ { i } ^ { C } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 406, + 323, + 589, + 343 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $W _ { E } \\in \\mathbb { R } ^ { d \\times d }$ is another trainable matrix. ", + "bbox": [ + 176, + 348, + 482, + 364 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Training. During training, we maximize the log probabilities of the ground truth span start and end, $\\begin{array} { r } { \\sum _ { k } ( \\log \\mathsf { \\bar { ( } } P _ { i _ { k } ^ { s } } ^ { S } ) + \\mathsf { \\bar { l o g } } ( P _ { i _ { k } ^ { e } } ^ { E } ) ) } \\end{array}$ , where $i _ { k } ^ { s } , i _ { k } ^ { e }$ are the answer span for the $k$ -th instance. ", + "bbox": [ + 173, + 371, + 823, + 401 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Prediction. We predict the answer span to be $i ^ { s } , i ^ { e }$ with the maximum $P _ { i ^ { s } } ^ { S } P _ { i ^ { e } } ^ { E }$ under the constraint $0 \\leq i ^ { e } - i ^ { s } \\leq 1 5$ . ", + "bbox": [ + 173, + 410, + 823, + 439 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 459, + 326, + 476 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In this section, we first present the datasets used for evaluation. Then we compare our end-toend FusionNet model with existing machine reading models. Finally, we conduct experiments to validate the effectiveness of our proposed components. Additional ablation study on input vectors can be found in Appendix C. Detailed experimental settings can be found in Appendix E. ", + "bbox": [ + 174, + 491, + 825, + 547 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.1 DATASETS ", + "text_level": 1, + "bbox": [ + 174, + 564, + 287, + 579 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We focus on the SQuAD dataset (Rajpurkar et al., 2016) to train and evaluate our model. SQuAD is a popular machine comprehension dataset consisting of $1 0 0 { , } 0 0 0 { + }$ questions created by crowd workers on 536 Wikipedia articles. Each context is a paragraph from an article and the answer to each question is guaranteed to be a span in the context. ", + "bbox": [ + 174, + 590, + 825, + 646 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "While rapid progress has been made on SQuAD, whether these systems truly understand language remains unclear. In a recent paper, Jia & Liang (2017) proposed several adversarial schemes to test the understanding of the systems. We will use the following two adversarial datasets, AddOneSent and AddSent, to evaluate our model. For both datasets, a confusing sentence is appended at the end of the context. The appended sentence is model-independent for AddOneSent, while AddSent requires querying the model a few times to choose the most confusing sentence. ", + "bbox": [ + 174, + 652, + 825, + 737 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.2 MAIN RESULTS ", + "text_level": 1, + "bbox": [ + 174, + 753, + 323, + 768 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We submitted our model to SQuAD for evaluation on the hidden test set. We also tested the model on the adversarial SQuAD datasets. Two official evaluation criteria are used: Exact Match (EM) and F1 score. EM measures how many predicted answers exactly match the correct answer, while F1 score measures the weighted average of the precision and recall at token level. The evaluation results for our model and other competing approaches are shown in Table 2.1 Additional comparisons with state-of-the-art models in the literature can be found in Appendix A. ", + "bbox": [ + 174, + 780, + 825, + 864 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "For the two adversarial datasets, AddOneSent and AddSent, the evaluation criteria is the same as SQuAD. However, all models are trained only on the original SQuAD, so the model never sees the ", + "bbox": [ + 176, + 871, + 820, + 900 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/275b7fdadeeb779db9084052916419020474f591904dbce78928b78ef9a75837.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
AddSentEM/F1
LRBaseline17.0/23.2
Match-LSTM (E) BiDAF (E)24.3 /34.2 29.6 /34.2
SEDT (E) Mnemonic Reader (S)30.0 /35.0
Mnemonic Reader (E)39.8/46.6
40.7 / 46.2
ReasoNet (E) FusionNet (E)34.6 /39.4 46.2 / 51.4
", + "bbox": [ + 553, + 103, + 812, + 232 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/e8605ba131ed5f1d19bd85c55d9fa59ceaa5cc4b5a45aff4f8cb39bb7fd203b1.jpg", + "table_caption": [ + "Table 2: The performance of FusionNet and competing approaches on SQuAD hidden test set at the time of writing (Oct. 4th, 2017). " + ], + "table_footnote": [], + "table_body": "
AddOneSentEM/F1
LRBaseline Match-LSTM (E)22.3/30.4 34.8 / 41.8
BiDAF (E) SEDT (E)40.7 /46.9 40.0 / 46.5
Mnemonic Reader (S)48.5 /56.0
Mnemonic Reader (E)48.7 / 55.3
ReasoNet (E) FusionNet (E)43.6 /49.8
", + "bbox": [ + 553, + 286, + 812, + 415 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/eda0852d2edf6c5400f30b997799aaada7526459d1f832c670df1f8416d97005.jpg", + "table_caption": [ + "Table 3: Comparison on AddSent. (S: Single model, E: Ensemble) " + ], + "table_footnote": [ + "Table 4: Comparison on AddOneSent. (S: Single model, E: Ensemble) " + ], + "table_body": "
Single ModelTest Set EM/F1
LR Baseline (Rajpurkar et al., 2016) Match-LSTM (Wang & Jiang,2016) BiDAF (Seo et al., 2017) SEDT (Liu et al., 2017) RaSoR (Lee et al., 2016) DrQA (Chen et al., 2017a) ReasoNet (Shen et al.,2017) R.Mnemonic Reader (Hu et al., 2017) DCN+ R-nett FusionNet40.4 /51.0 64.7/73.7 68.0 / 77.3 68.2 /77.5 70.8/78.7 70.7 /79.4 70.6 / 79.4 73.2/81.8 74.9 / 82.8 75.7 /83.5 76.0 / 83.9
EnsembleModel ReasoNet (Shen et al., 2017) MEMEN (Pan et al., 2017) R.Mnemonic Reader (Hu et al., 2017) R-nett DCN+ FusionNet75.0 / 82.3 75.4/82.7 77.7 / 84.9 78.2/85.2 78.7 / 85.6
Human (Rajpurkar et al., 2016)78.8 / 85.9 82.3/91.2
", + "bbox": [ + 173, + 101, + 537, + 401 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "adversarial datasets during training. The results for AddSent and AddOneSent are shown in Table 3 \nand Table 4, respectively.2 ", + "bbox": [ + 171, + 481, + 823, + 511 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "From the results, we can see that our models not only perform well on the original SQuAD dataset, but also outperform all previous models by more than $5 \\%$ in EM score on the adversarial datasets. This shows that FusionNet is better at language understanding of both the context and question. ", + "bbox": [ + 174, + 516, + 823, + 559 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.3 COMPARISON ON ATTENTION FUNCTION ", + "text_level": 1, + "bbox": [ + 176, + 577, + 496, + 590 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In this experiment, we compare the performance of different attention scoring functions $S ( { \\pmb x } , { \\pmb y } )$ for fully-aware attention. We utilize the end-to-end architecture presented in Section 3.1. Fully-aware attention is used in two places, fully-aware multi-level fusion: higher level and fully-aware selfboosted fusion. Word-level fusion remains unchanged. Based on the discussion in Section 2.3, we consider the following formulations for comparison: ", + "bbox": [ + 174, + 603, + 825, + 674 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "1. Additive attention (MLP) (Bahdanau et al., 2015): $\\pmb { s } ^ { T } \\operatorname { t a n h } ( W _ { 1 } \\pmb { x } + W _ { 2 } \\pmb { y } ) .$ 1 \n2. Multiplicative attention: $\\pmb { x } ^ { T } \\pmb { U } ^ { T } \\pmb { V } \\pmb { y }$ . \n3. Scaled multiplicative attention: $\\scriptstyle { \\frac { 1 } { \\sqrt { k } } } x ^ { T } U ^ { T } V y$ , where $k$ is the attention hidden size. It is \nproposed in (Vaswani et al., 2017). \n4. Scaled multiplicative with nonlinearity: $\\begin{array} { r } { \\frac { 1 } { \\sqrt { k } } f ( U \\pmb { x } ) ^ { T } f ( V \\pmb { y } ) } \\end{array}$ . \n5. Our proposed symmetric form: $\\pmb { x } ^ { T } \\pmb { U } ^ { T } \\pmb { D } \\pmb { U } \\pmb { y }$ , where $D$ is diagonal. \n6. Proposed symmetric form with nonlinearity: $f ( U \\mathbf { x } ) ^ { T } D f ( U \\mathbf { y } )$ . ", + "bbox": [ + 210, + 684, + 825, + 820 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We consider the activation function $f ( x )$ to be $\\operatorname* { m a x } ( 0 , x )$ . The results of various attention functions on SQuAD development set are shown in Table 5. It is clear that the symmetric form consistently outperforms all alternatives. We attribute this gain to the fact that symmetric form has a single large matrix $U$ . All other alternatives have two large parametric matrices. During optimization, these two parametric matrices would interfere with each other and it will make the entire optimization process challenging. Besides, by constraining $U ^ { T } V$ to be a symmetric matrix $U ^ { T } D U$ , we retain the ability for $_ { \\textbf { \\em x } }$ to attend to dissimilar $\\textbf { { y } }$ . Furthermore, its marriage with the nonlinearity continues to significantly boost the performance. ", + "bbox": [ + 174, + 830, + 825, + 875 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/9a01a3abf6d707818a30ce5be329406b39e3a98464be7429964467add6593dd1.jpg", + "table_caption": [ + "Table 5: Comparison of different attention functions $S ( { \\pmb x } , { \\pmb y } )$ on SQuAD dev set. " + ], + "table_footnote": [], + "table_body": "
Attention FunctionEM/F1
Additive (MLP)71.8/ 80.172.1 / 80.672.4 / 80.772.6 / 80.8
MultiplicativeScaled MultiplicativeScaled Multiplicative + ReLU
Symmetric FormSymmetric Form + ReLU73.1 /81.575.3 / 83.6
Previous SotA (Hu et al., 2017)72.1/ 81.6
", + "bbox": [ + 176, + 116, + 496, + 250 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/7556abd7cea9b5c9f22f8b2015963a515d607babc94889bd999cebb19e4a9de3.jpg", + "table_caption": [ + "Table 6: Comparison of different configurations demonstrates the effectiveness of history-of-word. " + ], + "table_footnote": [], + "table_body": "
ConfigurationC,Q Fusion Self CEM/F1
High-LevelFA High-LevelFA All-LevelFA Multi-LevelNone64.6/73.273.3 /81.472.3 / 80.774.6 / 82.7
FA Multi-LevelNormalFA74.4 / 82.675.3 / 83.6
Previous SotA (Hu et al., 2017)72.1/ 81.6
", + "bbox": [ + 509, + 101, + 830, + 250 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 321, + 825, + 392 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4.4 EFFECTIVENESS OF HISTORY-OF-WORD ", + "text_level": 1, + "bbox": [ + 176, + 416, + 491, + 431 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In FusionNet, we apply the history-of-word and fully-aware attention in two major places to achieve good performance: multi-level fusion and self-boosted fusion. In this section, we present experiments to demonstrate the effectiveness of our application. In the experiments, we fix the attention function to be our proposed symmetric form with nonlinearity due to its good performance shown in Section 4.3. The results are shown in Table 6, and the details for each configuration can be found in Appendix B. ", + "bbox": [ + 174, + 445, + 825, + 530 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "High-Level is a vanilla model where only the high-level information is fused from $Q$ to $C$ via standard attention. When placed in the conceptual architecture (Figure 2), it only contains arrow (2) without any other fusion processes. ", + "bbox": [ + 174, + 536, + 825, + 579 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "FA High-Level is the High-Level model with standard attention replaced by fully-aware attention. ", + "bbox": [ + 174, + 585, + 812, + 601 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "FA All-Level is a naive extension of FA High-Level, where all levels of information are concatenated and is fused into the context using the same attention weight. ", + "bbox": [ + 174, + 607, + 818, + 636 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "FA Multi-Level is our proposed Fully-aware Multi-level fusion, where different levels of information are attended under separate attention weight. ", + "bbox": [ + 176, + 642, + 821, + 671 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Self $C = \\mathbf { N o n e }$ means we do not make use of self-boosted fusion. ", + "bbox": [ + 173, + 678, + 604, + 691 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Self $C = \\mathrm { { N o r m a l } }$ means we employ a standard attention-based self-boosted fusion after fusing question to context. This is illustrated as arrow (3) in the conceptual architecture (Figure 2). ", + "bbox": [ + 173, + 699, + 823, + 728 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Self $C = \\mathbf { F } \\mathbf { A }$ means we enhance the self-boosted fusion with fully-aware attention. ", + "bbox": [ + 174, + 734, + 714, + 748 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "High-Level vs. FA High-Level. From Table 6, we can see that High-Level performs poorly as expected. However enhancing this vanilla model with fully-aware attention significantly increase the performance by more than $8 \\%$ . The performance of FA High-Level already outperforms many state-of-the-art MRC models. This clearly demonstrates the power of fully-aware attention. ", + "bbox": [ + 174, + 756, + 825, + 811 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "FA All-Level vs. FA Multi-Level. Next, we consider models that fuse all levels of information from question $Q$ to context $C$ . FA All-Level is a naive extension of FA High-Level, but its performance is actually worse than $F A$ High-Level. However, by fusing different parts of history-of-word in $Q$ independently as in $F A$ Multi-Level, we are able to further improve the performance. ", + "bbox": [ + 174, + 818, + 823, + 875 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Self $C$ options. We have achieved decent performance without self-boosted fusion. Now, we compare adding normal and fully-aware self-boosted fusion into the architecture. Comparing None and Normal in Table 6, we can see that the use of normal self-boosted fusion is not very effective under our improved $C , Q$ Fusion. Then by comparing with $F A$ , it is clear that through the enhancement of fully-aware attention, the enhanced self-boosted fusion can provide considerable improvement. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Together, these experiments demonstrate that the ability to take all levels of understanding as a whole is crucial for machines to better understand the text. ", + "bbox": [ + 171, + 138, + 823, + 166 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "5 CONCLUSIONS ", + "text_level": 1, + "bbox": [ + 176, + 186, + 328, + 203 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "In this paper, we describe a new deep learning model called FusionNet with its application to machine comprehension. FusionNet proposes a novel attention mechanism with following three contributions: 1. the concept of history-of-word to build the attention using complete information from the lowest word-level embedding up to the highest semantic-level representation; 2. an attention scoring function to effectively and efficiently utilize history-of-word; 3. a fully-aware multi-level fusion to exploit information layer by layer discriminatingly. We applied FusionNet to MRC task and experimental results show that FusionNet outperforms existing machine reading models on both the SQuAD dataset and the adversarial SQuAD dataset. We believe FusionNet is a general and improved attention mechanism and can be applied to many tasks. Our future work is to study its capability in other NLP problems. ", + "bbox": [ + 173, + 218, + 825, + 356 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "ACKNOWLEDGMENTS ", + "text_level": 1, + "bbox": [ + 176, + 373, + 326, + 386 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We would like to thank Paul Mineiro, Sebastian Kochman, Pengcheng He, Jade Huang and Jingjing Liu from Microsoft Business AI, Mac-Antoine Rondeau from Maluuba and the anonymous reviewers for their valuable comments and tremendous help in this paper. ", + "bbox": [ + 174, + 396, + 825, + 438 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 459, + 285, + 473 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly learning to align and translate. ICLR, 2015. ", + "bbox": [ + 173, + 481, + 823, + 510 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Samuel R. Bowman, Gabor Angeli, Christopher Potts, and Christopher D. Manning. A large annotated corpus for learning natural language inference. In EMNLP, 2015. ", + "bbox": [ + 173, + 517, + 821, + 546 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Denny Britz, Anna Goldie, Thang Luong, and Quoc Le. Massive exploration of neural machine translation architectures. arXiv preprint arXiv:1703.03906, 2017. ", + "bbox": [ + 173, + 554, + 821, + 583 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Danqi Chen, Adam Fisch, Jason Weston, and Antoine Bordes. Reading wikipedia to answer opendomain questions. arXiv preprint arXiv:1704.00051, 2017a. ", + "bbox": [ + 174, + 590, + 821, + 619 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Qian Chen, Xiaodan Zhu, Zhenhua Ling, Si Wei, and Hui Jiang. Enhancing and combining sequential and tree lstm for natural language inference. ACL, 2017b. ", + "bbox": [ + 174, + 626, + 821, + 655 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kyunghyun Cho, Bart Van Merrienboer, Caglar Gulcehre, Dzmitry Bahdanau, Fethi Bougares, Hol- ¨ ger Schwenk, and Yoshua Bengio. Learning phrase representations using rnn encoder-decoder for statistical machine translation. EMNLP, 2014. ", + "bbox": [ + 174, + 662, + 823, + 705 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yarin Gal and Zoubin Ghahramani. A theoretically grounded application of dropout in recurrent neural networks. In NIPS, 2016. ", + "bbox": [ + 176, + 713, + 821, + 742 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 1997. ", + "bbox": [ + 174, + 750, + 805, + 765 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Minghao Hu, Yuxing Peng, and Xipeng Qiu. Reinforced mnemonic reader for machine comprehension. arXiv preprint arXiv:1705.02798, 2017. ", + "bbox": [ + 174, + 772, + 821, + 801 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Robin Jia and Percy Liang. Adversarial examples for evaluating reading comprehension systems. EMNLP, 2017. ", + "bbox": [ + 173, + 808, + 821, + 838 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. ", + "bbox": [ + 173, + 844, + 821, + 873 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kenton Lee, Shimi Salant, Tom Kwiatkowski, Ankur Parikh, Dipanjan Das, and Jonathan Berant. Learning recurrent span representations for extractive question answering. arXiv preprint arXiv:1611.01436, 2016. ", + "bbox": [ + 173, + 881, + 823, + 922 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Rui Liu, Junjie Hu, Wei Wei, Zi Yang, and Eric Nyberg. Structural embedding of syntactic trees for machine comprehension. arXiv preprint arXiv:1703.00572, 2017. \nB. McCann, J. Bradbury, C. Xiong, and R. Socher. Learned in Translation: Contextualized Word Vectors. arXiv preprint arXiv:1708.00107, 2017. \nBoyuan Pan, Hao Li, Zhou Zhao, Bin Cao, Deng Cai, and Xiaofei He. Memen: Multi-layer embedding with memory networks for machine comprehension. arXiv preprint arXiv:1707.09098, 2017. \nJeffrey Pennington, Richard Socher, and Christopher Manning. Glove: Global vectors for word representation. In EMNLP, 2014. \nPranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and Percy Liang. Squad: $1 0 0 { , } 0 0 0 { + }$ questions for machine comprehension of text. EMNLP, 2016. \nMinjoon Seo, Aniruddha Kembhavi, Ali Farhadi, and Hannaneh Hajishirzi. Bidirectional attention flow for machine comprehension. In ICLR, 2017. \nYelong Shen, Po-Sen Huang, Jianfeng Gao, and Weizhu Chen. Reasonet: Learning to stop reading in machine comprehension. In KDD, 2017. \nNitish Srivastava, Geoffrey E Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: a simple way to prevent neural networks from overfitting. JMLR, 2014. \nAshish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. 2017. \nShuohang Wang and Jing Jiang. Machine comprehension using match-lstm and answer pointer. arXiv preprint arXiv:1608.07905, 2016. \nWenhui Wang, Nan Yang, Furu Wei, Baobao Chang, and Ming Zhou. Gated self-matching networks for reading comprehension and question answering. In ACL, 2017. \nZhiguo Wang, Haitao Mi, Wael Hamza, and Radu Florian. Multi-perspective context matching for machine comprehension. arXiv preprint arXiv:1612.04211, 2016. \nDirk Weissenborn, Georg Wiese, and Laura Seiffe. Making neural qa as simple as possible but not simpler. In CoNLL, 2017. \nAdina Williams, Nikita Nangia, and Samuel R Bowman. A broad-coverage challenge corpus for sentence understanding through inference. arXiv preprint arXiv:1704.05426, 2017. \nCaiming Xiong, Victor Zhong, and Richard Socher. Dynamic coattention networks for question answering. ICLR, 2017. ", + "bbox": [ + 169, + 99, + 826, + 712 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "A COMPARISON WITH PUBLISHED MODELS ", + "text_level": 1, + "bbox": [ + 174, + 731, + 553, + 747 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "In this appendix, we compare with published state-of-the-art architectures on the SQuAD dev set. The comparison is shown in Figure 5 and 6 for EM and F1 score respectively. The performance of FusionNet is shown under different training epochs. Each epoch loops through all the examples in the training set once. On a single NVIDIA GeForce GTX Titan X GPU, each epoch took roughly 20 minutes when batch size 32 is used. ", + "bbox": [ + 173, + 763, + 825, + 833 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "The state-of-the-art models compared in this experiment include: \n1. Published version of R-net in their technical report (Wang et al., 2017), \n2. Reinforced Mnemonic Reader (Hu et al., 2017), 3. MEMEN (Pan et al., 2017), \n4. ReasoNet (Shen et al., 2017), 5. Document reader (DrQA) (Chen et al., 2017a), \n6. DCN (Xiong et al., 2017), 7. DCN $^ +$ character embedding (Char) $^ +$ CoVe (McCann et al., 2017), \n8. BiDAF (Seo et al., 2017), 9. the best-performing variant of Match-LSTM (Wang & Jiang, 2016). ", + "bbox": [ + 173, + 840, + 825, + 924 + ], + "page_idx": 10 + }, + { + "type": "image", + "img_path": "images/83cd5a9f9a0174460ffcd39b92ddb060f758e9749cab54075cd31bb5c5f087b2.jpg", + "image_caption": [ + "Figure 5: EM score on the SQuAD dev set under different training epoch. " + ], + "image_footnote": [], + "bbox": [ + 173, + 98, + 826, + 348 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/d8a5b20b41be47ba0875b1e75dbb679e81f4e2b06dd71346b750da38f888986b.jpg", + "image_caption": [ + "Figure 6: F1 score on the SQuAD dev set under different training epoch. " + ], + "image_footnote": [], + "bbox": [ + 174, + 388, + 826, + 632 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "B DETAILED CONFIGURATIONS IN THE ABLATION STUDY ", + "text_level": 1, + "bbox": [ + 173, + 685, + 669, + 703 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "In this appendix, we present details for the configurations used in the ablation study in Section 4.4. For all configurations, the understanding vectors for both the context $C$ and the question $Q$ will be generated, then we follow the same output architecture in Section 3.2 to apply them to machine reading comprehension problem. ", + "bbox": [ + 173, + 718, + 825, + 775 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "High-Level. Firstly, context words and question words are transformed into input vectors in the same way as FusionNet, ", + "bbox": [ + 173, + 792, + 823, + 821 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/f6e3c28e8b1356861c19397ffea564b2dddf56fdf901da8c6fd8979303154492.jpg", + "text": "$$\n\\{ \\pmb { w } _ { 1 } ^ { C } , \\ldots , \\pmb { w } _ { m } ^ { C } \\} , \\quad \\{ \\pmb { w } _ { 1 } ^ { Q } , \\ldots , \\pmb { w } _ { n } ^ { Q } \\} .\n$$", + "text_format": "latex", + "bbox": [ + 379, + 824, + 617, + 844 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Then we pass them independently to two layers of BiLSTM. ", + "bbox": [ + 173, + 849, + 570, + 866 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/63da65e27783d22619163d64a0533b2fc1deb6457dd76c4781aab6659662090c.jpg", + "text": "$$\n\\begin{array} { r l } & { h _ { 1 } ^ { C l } , \\ldots , h _ { m } ^ { C l } = \\mathrm { B i L S T M } ( w _ { 1 } ^ { C } , \\ldots , w _ { m } ^ { C } ) , \\quad h _ { 1 } ^ { Q l } , \\ldots , h _ { n } ^ { Q l } = \\mathrm { B i L S T M } ( w _ { 1 } ^ { Q } , \\ldots , w _ { n } ^ { Q } ) , } \\\\ & { h _ { 1 } ^ { C h } , \\ldots , h _ { m } ^ { C h } = \\mathrm { B i L S T M } ( h _ { 1 } ^ { C l } , \\ldots , h _ { m } ^ { C l } ) , \\quad h _ { 1 } ^ { Q h } , \\ldots , h _ { n } ^ { Q h } = \\mathrm { B i L S T M } ( h _ { 1 } ^ { Q l } , \\ldots , h _ { n } ^ { Q l } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 205, + 872, + 792, + 928 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Next we consider the standard attention-based fusion for the high level representation. ", + "bbox": [ + 174, + 103, + 736, + 118 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/732db4056720fe7aeb191e2907862c44954fd7cd6aa26ec9c6b215374947ed6a.jpg", + "text": "$$\n\\hat { \\boldsymbol { h } } _ { i } ^ { C h } = \\sum _ { j } \\alpha _ { i j } \\boldsymbol { h } _ { j } ^ { Q h } , \\quad \\alpha _ { i j } = \\frac { \\exp ( S _ { i j } ) } { \\sum _ { k } \\exp ( S _ { i k } ) } , \\quad S _ { i j } = S ( \\boldsymbol { h } _ { i } ^ { C h } , \\boldsymbol { h } _ { j } ^ { Q h } ) .\n$$", + "text_format": "latex", + "bbox": [ + 271, + 122, + 725, + 164 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Then we concatenate the attended vector $\\hat { h } _ { i } ^ { C h }$ with the original high level representation $h _ { i } ^ { C h }$ and pass through two layers of BiLSTM to fully mix the two information. The understanding vectors for the context is the hidden vectors in the final layers of the BiLSTM. ", + "bbox": [ + 174, + 169, + 825, + 217 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/c8bd522f080ef27b367a00f8bf8030f2ddcc30a4d46021da8d9184ee20491118.jpg", + "text": "$$\n\\pmb { u } _ { 1 } ^ { C } , \\ldots , \\pmb { u } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ \\pmb { h } _ { 1 } ^ { C h } ; \\hat { \\pmb { h } } _ { 1 } ^ { C h } ] , \\dots , [ \\pmb { h } _ { m } ^ { C h } ; \\hat { \\pmb { h } } _ { m } ^ { C h } ] )\n$$", + "text_format": "latex", + "bbox": [ + 315, + 222, + 679, + 244 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The understanding vectors for the question is the high level representation itself, ", + "bbox": [ + 171, + 250, + 699, + 265 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/3838caa2559a19f49f3a6bd87ffb7ad719bb34375a10967a15c5993c6ceb313a.jpg", + "text": "$$\n\\begin{array} { r } { { \\pmb u } _ { 1 } ^ { Q } , \\dots , { \\pmb u } _ { n } ^ { Q } = { \\pmb h } _ { 1 } ^ { Q h } , \\dots , { \\pmb h } _ { n } ^ { Q h } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 395, + 268, + 601, + 290 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Now we have obtained the understanding vectors for both the context and the question. The answer can thus be found. Neither word-level fusion (1) nor self-boosted fusion (3, 3’) in Figure 2 are used. ", + "bbox": [ + 176, + 294, + 825, + 323 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "FA High-Level. The only difference to High-Level is the enhancement of fully-aware attention. This is as simple as changing ", + "bbox": [ + 169, + 342, + 823, + 371 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/cc2d01e88c599b7578b6af6440adf3322b4c8af7aac402c90826db645b86cef4.jpg", + "text": "$$\nS _ { i j } = S ( { h _ { i } ^ { C h } } , { h _ { j } ^ { Q h } } ) \\quad \\Longrightarrow \\qquad S _ { i j } = S ( [ g _ { i } ^ { C } ; { c _ { i } ^ { C } } ; { h _ { i } ^ { C l } } ; { h _ { i } ^ { C h } } ] , [ g _ { j } ^ { Q } ; { c _ { j } ^ { Q } } ; { h _ { j } ^ { Q l } } ; { h _ { j } ^ { Q h } } ] ) ,\n$$", + "text_format": "latex", + "bbox": [ + 225, + 376, + 769, + 398 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "where $[ g _ { i } ; c _ { i } ; h _ { i } ^ { l } ; h _ { i } ^ { h } ]$ is the common history-of-word for both context and question. All other places remains the same as High-Level. This simple change results in significant improvement. The performance of $F A$ High-Level can already outperform many state-of-the-art models in the literature. Note that our proposed symmetric form with nonlinearity should be used to guarantee the boost. ", + "bbox": [ + 173, + 404, + 825, + 462 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "FA All-Level. First, we use the same procedure as High-Level to obtain ", + "bbox": [ + 173, + 479, + 645, + 496 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/f2e7de8e4a2044745a0df78dce2101dc7bebfa001014b80bb7d8b1b2285331ab.jpg", + "text": "$$\n\\begin{array} { r l } { \\{ \\pmb { w } _ { 1 } ^ { C } , \\ldots , \\pmb { w } _ { m } ^ { C } \\} , } & { \\{ \\pmb { w } _ { 1 } ^ { Q } , \\ldots , \\pmb { w } _ { n } ^ { Q } \\} , } \\\\ & { \\{ \\pmb { h } _ { 1 } ^ { C l } , \\ldots , \\pmb { h } _ { m } ^ { C l } \\} , \\quad \\{ \\pmb { h } _ { 1 } ^ { Q l } , \\ldots , \\pmb { h } _ { n } ^ { Q l } \\} , } \\\\ & { \\{ \\pmb { h } _ { 1 } ^ { C h } , \\ldots , \\pmb { h } _ { m } ^ { C h } \\} , \\quad \\{ \\pmb { h } _ { 1 } ^ { Q h } , \\ldots , \\pmb { h } _ { n } ^ { Q h } \\} . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 370, + 501, + 624, + 566 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Next we make use of the fully-aware attention similar to $F A$ High-Level, but take back the entire history-of-word. ", + "bbox": [ + 173, + 566, + 825, + 595 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/c8d916a2c11d49798cf83c3620ada314ae6c60e95f4f3174cfc653dc46e23dc0.jpg", + "text": "$$\n\\begin{array} { c } { \\displaystyle \\alpha _ { i j } = \\frac { \\exp ( S _ { i j } ) } { \\sum _ { k } \\exp ( S _ { i k } ) } , \\quad { S _ { i j } = S ( [ g _ { i } ^ { C } ; c _ { i } ^ { C } ; h _ { i } ^ { C l } ; h _ { i } ^ { C h } ] , [ g _ { j } ^ { Q } ; c _ { j } ^ { Q } ; h _ { j } ^ { Q l } ; h _ { j } ^ { Q h } ] ) } , } \\\\ { \\displaystyle { \\mathrm { H o W } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } [ g _ { j } ^ { Q } ; c _ { j } ^ { Q } ; h _ { j } ^ { Q l } ; h _ { j } ^ { Q h } ] } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 250, + 599, + 745, + 676 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Then we concatenate the attended history-of-word $\\mathrm { H } \\mathrm { \\hat { o } } \\mathrm { W } _ { i } ^ { C }$ with the original history-of-word $[ { \\pmb g } _ { i } ^ { C } ; { \\pmb c } _ { i } ^ { C } ; { \\pmb h } _ { i } ^ { C l } ; { \\pmb h } _ { i } ^ { C h } ]$ i and pass through two layers of BiLSTM to fully mix the two information. The understanding vectors for the context is the hidden vectors in the final layers of the BiLSTM. ", + "bbox": [ + 176, + 680, + 821, + 729 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/4d73eedf374412bf94795f5152c939fbff166fe2495308bede2e7ea34c90a93c.jpg", + "text": "$$\n\\pmb { u } _ { 1 } ^ { C } , \\dots , \\pmb { u } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ g _ { 1 } ^ { C } ; c _ { 1 } ^ { C } ; h _ { 1 } ^ { C l } ; h _ { 1 } ^ { C h } ; \\mathrm { H \\hat { o } W } _ { 1 } ^ { C } ] , \\dots , [ g _ { m } ^ { C } ; c _ { m } ^ { C } ; h _ { m } ^ { C l } ; h _ { m } ^ { C h } ; \\mathrm { H \\hat { o } W } _ { m } ^ { C } ] )\n$$", + "text_format": "latex", + "bbox": [ + 207, + 733, + 789, + 757 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The understanding vectors for the question is similar to the Understanding component in Section 3.1, ", + "bbox": [ + 178, + 761, + 820, + 776 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/7f273415d3bf38988099bc7e91a996d59c22b7363bf6a7ad67c2810f7f728b23.jpg", + "text": "$$\n\\pmb { u } _ { 1 } ^ { Q } , \\ldots , \\pmb { u } _ { n } ^ { Q } = \\mathrm { B i L S T M } ( [ g _ { 1 } ^ { Q } ; c _ { 1 } ^ { Q } ; \\pmb { h } _ { 1 } ^ { Q l } ; \\pmb { h } _ { 1 } ^ { Q h } ] , \\ldots , [ g _ { m } ^ { Q } ; c _ { m } ^ { Q } ; \\pmb { h } _ { m } ^ { Q l } ; \\pmb { h } _ { m } ^ { Q h } ] ) .\n$$", + "text_format": "latex", + "bbox": [ + 261, + 781, + 735, + 801 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We have now generated the understanding vectors for both the context and the question. ", + "bbox": [ + 173, + 805, + 748, + 821 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "FA Multi-Level. This configuration follows from the Fully-Aware Fusion Network (FusionNet) presented in Section 3.1. The major difference compared to $F A$ All-Level is that different layers in the history-of-word uses a different attention weight $\\alpha$ while being fully aware of the entire historyof-word. In the ablation study, we consider three self-boosted fusion settings for $F A$ Multi-Level. The Fully-Aware setting is the one presented in Section 3.1. Here we discuss all three of them in detail. ", + "bbox": [ + 173, + 839, + 826, + 924 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "• For the None setting in self-boosted fusion, no self-boosted fusion is used and we use two layers of BiLSTM to mix the attended information. The understanding vectors for the context $C$ is the hidden vectors in the final layers of the BiLSTM, ", + "bbox": [ + 215, + 103, + 825, + 146 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/1f62ab4ea44a87c05c8fa64d0758bcd7585e7bed77548ce3d5187f361701cf67.jpg", + "text": "$$\n\\pmb { u } _ { 1 } ^ { C } , \\dots , \\pmb { u } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ \\pmb { h } _ { 1 } ^ { C l } ; \\pmb { h } _ { 1 } ^ { C h } ; \\hat { \\pmb { h } } _ { 1 } ^ { C l } ; \\hat { \\pmb { h } } _ { 1 } ^ { C h } ; \\hat { \\pmb { u } } _ { 1 } ^ { C } ] , \\dots , [ \\pmb { h } _ { m } ^ { C l } ; \\pmb { h } _ { m } ^ { C h } ; \\hat { \\pmb { h } } _ { m } ^ { C l } ; \\hat { \\pmb { h } } _ { m } ^ { C h } ; \\hat { \\pmb { u } } _ { m } ^ { C } ] ) .\n$$", + "text_format": "latex", + "bbox": [ + 245, + 151, + 808, + 175 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Self-boosted fusion is not utilized in all previous configurations: High-Level, FA HighLevel and FA All-Level. ", + "bbox": [ + 228, + 181, + 821, + 210 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "• For the Normal setting, we first use one layer of BiLSTM to mix the attended information. ", + "bbox": [ + 222, + 213, + 821, + 229 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/2140bc5df35532559e125c8b38906efb2f0877fe3121777949b2ffa5aa631151.jpg", + "text": "$$\n\\pmb { v } _ { 1 } ^ { C } , \\dots , \\pmb { v } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ h _ { 1 } ^ { C l } ; h _ { 1 } ^ { C h } ; \\hat { h } _ { 1 } ^ { C l } ; \\hat { h } _ { 1 } ^ { C h } ; \\hat { u } _ { 1 } ^ { C } ] , \\dots , [ h _ { m } ^ { C l } ; h _ { m } ^ { C h } ; \\hat { h } _ { m } ^ { C l } ; \\hat { h } _ { m } ^ { C h } ; \\hat { u } _ { m } ^ { C } ] ) .\n$$", + "text_format": "latex", + "bbox": [ + 246, + 234, + 807, + 258 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Then we fuse the context information into itself through standard attention, ", + "bbox": [ + 236, + 265, + 725, + 280 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/c4461013442bc76a98551c2671d59c7822f21f84c52320e4e0ab8b9a3d85c6d8.jpg", + "text": "$$\nS _ { i j } = S ( \\pmb { v } _ { i } ^ { C } , \\pmb { v } _ { j } ^ { C } ) , \\alpha _ { i j } = \\frac { \\exp ( S _ { i j } ) } { \\sum _ { k } \\exp ( S _ { i k } ) } , \\hat { \\pmb { v } } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } \\pmb { v } _ { j } ^ { C } .\n$$", + "text_format": "latex", + "bbox": [ + 330, + 286, + 727, + 325 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The final understanding vectors for the context $C$ is the output hidden vectors after passing the concatenated vectors into a BiLSTM, ", + "bbox": [ + 230, + 332, + 823, + 361 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/2acbe7c62b21084b82c0e587afa71b833c5d6e1a4abe834a6fa377b7d2dd3dc0.jpg", + "text": "$$\n\\begin{array} { r } { \\pmb { u } _ { 1 } ^ { C } , \\ldots , \\pmb { u } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ \\pmb { v } _ { 1 } ^ { C } ; \\hat { \\pmb { v } } _ { 1 } ^ { C } ] , \\dots , [ \\pmb { v } _ { m } ^ { C } ; \\hat { \\pmb { v } } _ { m } ^ { C } ] ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 357, + 364, + 696, + 386 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "• For the Fully-Aware setting, we change $S _ { i j } = S ( \\pmb { v } _ { i } ^ { C } , \\pmb { v } _ { j } ^ { C } )$ in the Normal setting to the fully-aware attention ", + "bbox": [ + 214, + 392, + 823, + 422 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/67190e3d51dfbfcbaa54e1a0d5f74a1c81c00f0b46df933a1da30e34cfb30f1d.jpg", + "text": "$$\n\\begin{array} { r } { S _ { i j } = S ( [ { \\pmb w } _ { i } ^ { C } ; { \\pmb h } _ { i } ^ { C l } ; { \\pmb h } _ { i } ^ { C h } ; { \\hat { \\pmb h } } _ { u } ^ { C l } ; { \\hat { \\pmb h } } _ { i } ^ { C h } ; { \\hat { \\pmb u } } _ { i } ^ { C } ; { \\pmb v } _ { i } ^ { C } ] , [ { \\pmb w } _ { j } ^ { C } ; { \\pmb h } _ { j } ^ { C l } ; { \\pmb h } _ { j } ^ { C h } ; { \\hat { \\pmb h } } _ { j } ^ { C l } ; { \\hat { \\pmb h } } _ { j } ^ { C h } ; { \\hat { \\pmb u } } _ { j } ^ { C } ; { \\pmb v } _ { j } ^ { C } ] ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 254, + 428, + 800, + 454 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "All other places remains the same. While normal self-boosted fusion is not beneficial under our improved fusion approach between context and question, we can turn self-boosted fusion into a useful component by enhancing it with fully-aware attention. ", + "bbox": [ + 230, + 458, + 825, + 501 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/7bf72aae61a1d273b09ae8d52af734b0abca82063ab56228e464c3a0ed07b7fb.jpg", + "table_caption": [ + "C ADDITIONAL ABLATION STUDY ON INPUT VECTORS " + ], + "table_footnote": [], + "table_body": "
ConfigurationEM/F1
FusionNetFusionNet (without CoVe)FusionNet (fixing GloVe)75.3 / 83.674.1 / 82.575.0 / 83.2
Previous SotA (Hu et al., 2017)72.1/ 81.6
", + "bbox": [ + 176, + 555, + 496, + 642 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/c1586b3e63156f9cdbf1f5e3ebba1330a6c2b1d6f88e30588d8569a548470a56.jpg", + "table_caption": [ + "Table 7: Ablation study on input vectors (GloVe and CoVe) for SQuAD dev set. " + ], + "table_footnote": [], + "table_body": "
ConfigurationEM/F1
FusionNet (S,10-run best)FusionNet (S,10-run mean)FusionNet (S, without CoVe)FusionNet (E)45.6 / 51.144.9 / 50.147.4 / 52.446.2 / 51.4
Previous SotA (E)40.7/46.2
", + "bbox": [ + 517, + 555, + 821, + 657 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/0438bcac66858f195aee919432ad72ebf978023b095b168e94e625b3f107cf0d.jpg", + "table_caption": [ + "Table 8: Additional results for AddSent. (S: Single model, E: Ensemble) ", + "Table 9: Additional results for AddOneSent. (S: Single model, E: Ensemble) " + ], + "table_footnote": [], + "table_body": "
ConfigurationEM/F1
FusionNet (S,10-run best)FusionNet (S,10-run mean)FusionNet (S, without CoVe)FusionNet (E)54.8/60.953.1/ 59.355.2 / 61.254.7 / 60.7
Previous SotA (E)48.7 / 55.3
", + "bbox": [ + 516, + 708, + 823, + 810 + ], + "page_idx": 13 + }, + { + "type": "image", + "img_path": "images/eff4b81f3c624949e0b874f52b9145360911c4a3d9c88a169c06218df9f52d5d.jpg", + "image_caption": [ + "Figure 7: Single model performance (EM) on AddSent over 10 training runs. (dashed vertical line indicates previous best performance) " + ], + "image_footnote": [], + "bbox": [ + 173, + 686, + 498, + 797 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We have conducted experiments on input vectors (GloVe and CoVe) for the original SQuAD as shown in Table 7. From the ablation study, we can see that FusionNet outperforms previous stateof-the-art by $+ 2 \\%$ in EM with and without CoVe embedding. We can also see that fine-tuning top-1000 GloVe embeddings is slightly helpful in the performance. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Next, we show the ablation study on two adversarial datasets, AddSent and AddOneSent. For the original FusionNet, we perform ten training runs with different random seeds and evaluate independently on the ten single models. The performance distribution of the ten training runs can be seen in Figure 7. Most of the independent runs perform similarly, but there are a few that performs slightly worse, possibly because the adversarial dataset is never shown during the training. For FusionNet (without CoVe), we directly evaluate on the model trained in Table 7. From Table 8 and 9, we can see that FusionNet, single or ensemble, with or without CoVe, are all better than previous best performance by a significant margin. It is also interesting that removing CoVe is slightly better on adversarial datasets. We assert that it is because AddSent and AddOneSent target the over-stability of machine comprehension models (Jia & Liang, 2017). Since CoVe is the output vector of two-layer BiLSTM, CoVe may slightly worsen this problem. ", + "bbox": [ + 173, + 103, + 825, + 256 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "D APPLICATION TO NATURAL LANGUAGE INFERENCE ", + "text_level": 1, + "bbox": [ + 174, + 276, + 640, + 292 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "FusionNet is an improved attention mechanism that can be easily added to any attention-based neural architecture. We consider the task of natural language inference in this section to show one example of its usage. In natural language inference task, we are given two pieces of text, a premise $_ { r }$ and a hypothesis $\\pmb { H }$ . The task is to identify one of the following scenarios: ", + "bbox": [ + 176, + 308, + 823, + 364 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "1. Entailment - the hypothesis $\\pmb { H }$ can be derived from the premise $_ { r }$ . \n2. Contradiction - the hypothesis $\\pmb { H }$ contradicts the premise $_ { P }$ . \n3. Neutral - none of the above. ", + "bbox": [ + 210, + 376, + 671, + 429 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We focus on Multi-Genre Natural Language Inference (MultiNLI) corpus (Williams et al., 2017) recently developed by the creator of Stanford Natural Language Inference (SNLI) dataset (Bowman et al., 2015). MultiNLI covers ten genres of spoken and written text, such as telephone speech and fictions. However the training set only contains five genres. Thus there are in-domain and crossdomain accuracy during evaluation. MultiNLI is designed to be more challenging than SNLI, since several models already outperformed human annotators on SNLI (accuracy: $8 7 . 7 \\% ) ^ { 3 }$ . ", + "bbox": [ + 174, + 440, + 826, + 525 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "A state-of-the-art model for natural language inference is Enhanced Sequential Inference Model (ESIM) by Chen et al. (2017b), which achieves an accuray of $8 8 . 0 \\%$ on SNLI and obtained $7 2 . 3 \\%$ (in-domain), $7 2 . 1 \\%$ (cross-domain) on MultiNLI (Williams et al., 2017). We implemented a version of ESIM in PyTorch. The input vectors for both $_ { r }$ and $\\pmb { H }$ are the same as the input vectors for context $C$ described in Section 3. Therefore, ", + "bbox": [ + 173, + 530, + 825, + 601 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/30e1ea2833f5ec931353a06aeebe295a30773cf26221403ccee0427a6326f6f3.jpg", + "text": "$$\n\\begin{array} { r } { \\pmb { w } _ { i } ^ { P } , \\pmb { w } _ { j } ^ { H } \\in \\mathbb { R } ^ { 9 0 0 + 2 0 + 1 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 419, + 606, + 578, + 626 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Then, two-layer BiLSTM with shortcut connection is used to encode the input words for both premise $_ { r }$ and hypothesis $\\pmb { H }$ , i.e., ", + "bbox": [ + 173, + 631, + 823, + 660 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/cc37a253e0375f855d059e8a62107e20f70ae202e2b46104bf3c89cf6ca563eb.jpg", + "text": "$$\n\\{ \\boldsymbol { h } _ { i } ^ { P l } \\} = \\mathrm { B i L S T M } ( \\boldsymbol { w } _ { i } ^ { P } ) , \\quad \\{ \\boldsymbol { h } _ { j } ^ { H l } \\} = \\mathrm { B i L S T M } ( \\boldsymbol { w } _ { j } ^ { H } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 321, + 666, + 676, + 688 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/90713cc79285dd7dc81f44aa971902f748762df9c0dfb3ed241d6c2c49ee3fac.jpg", + "text": "$$\n\\{ { \\pmb h } _ { i } ^ { P h } \\} = \\mathrm { B i L S T M } ( [ { \\pmb w } _ { i } ^ { P } ; { \\pmb h } _ { i } ^ { P l } ] ) , \\quad \\{ { \\pmb h } _ { j } ^ { H h } \\} = \\mathrm { B i L S T M } ( [ { \\pmb w } _ { j } ^ { H } ; { \\pmb h } _ { j } ^ { H l } ] ) .\n$$", + "text_format": "latex", + "bbox": [ + 274, + 693, + 722, + 713 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The hiddetion from sizto f each LSTM is as well as from 0, sto $h _ { i } ^ { P l } , h _ { i } ^ { P h } , h _ { j } ^ { H l } , h _ { j } ^ { H h } \\in \\mathbb { R } ^ { 3 0 0 }$ . Next, ESIM fuses informa-e consider the following, $_ { P }$ $\\pmb { H }$ $\\pmb { H }$ $_ { P }$ ", + "bbox": [ + 176, + 715, + 823, + 747 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/f6be446b1251a31ebb3076db5394dc74905758a9d55d6bed442f23e3b5863ae5.jpg", + "text": "$$\n\\boldsymbol { g } _ { i } ^ { P } = [ h _ { i } ^ { P h } ; \\hat { h } _ { i } ^ { P h } ] , \\boldsymbol { \\hat { h } } _ { i } ^ { P h } = \\sum _ { j } \\alpha _ { i j } ^ { P } \\boldsymbol { h } _ { j } ^ { H h } , \\boldsymbol { \\alpha } _ { i j } ^ { P } = \\frac { \\exp ( S _ { i j } ^ { P } ) } { \\sum _ { k } \\exp ( S _ { i k } ^ { P } ) } , S _ { i j } ^ { P } = S ^ { P } ( h _ { i } ^ { P h } , h _ { j } ^ { H h } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 210, + 753, + 784, + 796 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/ba654acc27756674abba64b0b58f26a9e08a327c143c9176317d4e581a1a3f76.jpg", + "text": "$$\n{ g } _ { j } ^ { H } = [ { h } _ { j } ^ { H h } ; \\hat { h } _ { j } ^ { H h } ] , \\ \\hat { h } _ { j } ^ { H h } = \\sum _ { i } \\alpha _ { i j } ^ { H } { h } _ { i } ^ { P h } , \\ \\alpha _ { i j } ^ { H } = \\frac { \\exp ( S _ { i j } ^ { H } ) } { \\sum _ { k } \\exp ( S _ { k j } ^ { H } ) } , \\ S _ { i j } ^ { H } = S ^ { H } ( { h } _ { i } ^ { P h } , { h } _ { j } ^ { H h } ) .\n$$", + "text_format": "latex", + "bbox": [ + 204, + 801, + 790, + 842 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We set the attention hidden size to be the same as the dimension of hidden vectors $^ { h }$ . Next, ESIM feed $g _ { i } ^ { P } , g _ { j } ^ { H }$ into separate BiLSTMs to perform inference. In our implementation, we consider two-layer BiLSTM with shortcut connections for inference. The hidden vectors for the two-layer ", + "bbox": [ + 174, + 844, + 825, + 887 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/ed0e6685fff5d8d071dc478d33bad7b7fd7b0bab9940737f1eada391b89b64bf.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Cross-DomainIn-Domain
Our ESIM without CoVe (d = 300) Our ESIM without CoVe + fully-aware (d = 250)73.4 76.973.3 76.2
Our ESIM without CoVe + fully-aware + multi-level (d = 250) Our ESIM (d = 300) Our ESIM + fully-aware (d = 250) Our ESIM + fully-aware + multi-level (d = 250)78.2 73.9 77.3 78.477.9 73.7 76.5 78.2
", + "bbox": [ + 173, + 101, + 825, + 205 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Table 10: The performance (accuracy) of ESIM with our proposed attention enhancement on MultiNLI (Williams et al., 2017) development set. $\\mathit { \\Pi } _ { d }$ is the output hidden size of BiLSTM) ", + "bbox": [ + 173, + 215, + 823, + 244 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "BiLSTM are concatenated to yield $\\{ \\boldsymbol { u } _ { i } ^ { P } \\} , \\{ \\boldsymbol { u } _ { j } ^ { H } \\} \\subset \\mathbb { R } ^ { 6 0 0 }$ . The final hidden vector for the $P , H$ pair is obtained by ", + "bbox": [ + 173, + 268, + 825, + 299 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/e88702a6da075323b02a05bb85271588f00f7468c4503ca5c393a42da2fc0d91.jpg", + "text": "$$\n\\boldsymbol h _ { P , H } = \\big [ { \\frac { 1 } { n } } \\sum _ { i } { \\boldsymbol u } _ { i } ^ { P } ; \\operatorname* { m a x } ( { \\boldsymbol u } _ { 1 } ^ { P } , \\ldots , { \\boldsymbol u } _ { n } ^ { P } ) ; { \\frac { 1 } { m } } \\sum _ { j } { \\boldsymbol u } _ { j } ^ { H } ; \\operatorname* { m a x } ( { \\boldsymbol u } _ { 1 } ^ { H } , \\ldots , { \\boldsymbol u } _ { m } ^ { H } ) \\big ] .\n$$", + "text_format": "latex", + "bbox": [ + 253, + 304, + 743, + 343 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "The final hidden vector ${ h _ { P , H } }$ is then passed into a multi-layer perceptron (MLP) classifier. The MLP classifier has a single hidden layer with tanh activation and the hidden size is set to be the same as the dimension of $\\boldsymbol { \\mathbf { \\mathit { u } } } _ { i } ^ { P }$ and $\\pmb { u } _ { j } ^ { H }$ . Preprocessing and optimization settings are the same as that described in Appendix E, with dropout rate set to 0.3. ", + "bbox": [ + 173, + 348, + 825, + 405 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Now, we consider improving ESIM with our proposed attention mechanism. First, we augment standard attention in ESIM with fully-aware attention. This is as simple as replacing ", + "bbox": [ + 173, + 411, + 823, + 440 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/218c0814c57364f6142d8ac534c8143ec90e10f96b8b11ce1622b1c75f561409.jpg", + "text": "$$\nS ( \\boldsymbol { h } _ { i } ^ { P h } , \\boldsymbol { h } _ { j } ^ { H h } ) \\implies S ( \\mathrm { H o W } _ { i } ^ { P } , \\mathrm { H o W } _ { j } ^ { H } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 362, + 445, + 633, + 467 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "where $\\mathrm { H o W } _ { i }$ is the history-of-word, $[ \\pmb { w } _ { i } , \\pmb { h } _ { i } ^ { l } , \\pmb { h } _ { i } ^ { h } ]$ . All other settings remain unchanged. To incorporate fully-aware multi-level fusion into ESIM, we change the input for inference BiLSTM from ", + "bbox": [ + 174, + 473, + 823, + 503 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/f16fffaecc3e02fe9fb7818ee5f93a1eba7997e3dcbcc2bfc4d2ae3dc346cffc.jpg", + "text": "$$\n[ { \\pmb h } ^ { h } ; \\hat { \\pmb h } ^ { h } ] \\in \\mathbb { R } ^ { 2 d } \\implies [ { \\pmb h } ^ { l } ; { \\pmb h } ^ { h } ; \\hat { \\pmb h } ^ { l } ; \\hat { \\pmb h } ^ { h } ] \\in \\mathbb { R } ^ { 4 d } ,\n$$", + "text_format": "latex", + "bbox": [ + 348, + 508, + 648, + 532 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "where $\\hat { \\pmb { h } } _ { i } ^ { l } , \\hat { \\pmb { h } } _ { i } ^ { h }$ are computed through independent fully-aware attention weights and $d$ is the dimension of hidden vectors $^ { h }$ . Word level fusion discussed in Section 3.1 is also included. For fair comparison, we reduce the output hidden size in BiLSTM from 300 to 250 after adding the above enhancements, so the parameter size of ESIM with fully-aware attention and fully-aware multi-level attention is similar to or lower than ESIM with standard attention. ", + "bbox": [ + 174, + 541, + 825, + 613 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "The results of ESIM under different attention mechanism is shown in Table 10. Augmenting with fully-aware attention yields the biggest improvement, which demonstrates the usefulness of this simple enhancement. Further improvement is obtained when we use multi-level fusion in our ESIM. Experiments with and without CoVe embedding show similar observations. ", + "bbox": [ + 174, + 619, + 825, + 676 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Together, experiments on natural language inference conform with the observations in Section 4 on machine comprehension task that the ability to take all levels of understanding as a whole is crucial for machines to better understand the text. ", + "bbox": [ + 174, + 684, + 825, + 726 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "E MODEL DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 746, + 349, + 761 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "We make use of spaCy for tokenization, POS tagging and NER. We additionally fine-tuned the GloVe embeddings of the top 1000 frequent question words. During training, we use a dropout rate of 0.4 (Srivastava et al., 2014) after the embedding layer (GloVe and CoVe) and before applying any linear transformation. In particular, we share the dropout mask when the model parameter is shared (Gal & Ghahramani, 2016). ", + "bbox": [ + 173, + 776, + 825, + 847 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "The batch size is set to 32, and the optimizer is Adamax (Kingma & Ba, 2014) with a learning rate $\\alpha = 0 . 0 0 2$ , $\\beta = ( 0 . 9 , 0 . 9 9 9 )$ and $\\epsilon = 1 0 ^ { - 8 }$ . A fixed random seed is used across all experiments. All models are implemented in PyTorch (http://pytorch.org/). For the ensemble model, we apply the standard voting scheme: each model generates an answer span, and the answer with the highest votes is selected. We break ties randomly. There are 31 models in the ensemble. ", + "bbox": [ + 174, + 853, + 825, + 924 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "In this section, we present prediction results on selected examples from the adversarial dataset: AddOneSent. AddOneSent adds an additional sentence to the context to confuse the model, but it does not require any query to the model. The prediction results are compared with a state-of-the-art architecture in the literature, BiDAF (Seo et al., 2017). ", + "bbox": [ + 174, + 132, + 581, + 217 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "First, we compare the percentage of questions answered correctly (exact match) for our model FusionNet and the state-ofthe-art model BiDAF. The comparison is shown in Figure 8. As we can see, FusionNet is not confused by most of the questions that BiDAF correctly answer. Among the $3 . 3 \\%$ answered correctly by BiDAF but not FusionNet, $\\sim 1 . 6 \\%$ are being confused by the added sentence; $\\sim 1 . 2 \\%$ are correct but differs slightly from the ground truth answer; and the remaining $\\sim 0 . 5 \\%$ are completely incorrect in the first place. ", + "bbox": [ + 174, + 223, + 581, + 348 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/8854537b854134c34ef7fda6e8c45fa7fb17dc9e5380a98c4a690b4cbbd08842.jpg", + "image_caption": [ + "Figure 8: Questions answered correctly on AddOneSent. " + ], + "image_footnote": [], + "bbox": [ + 602, + 150, + 821, + 287 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Now we present sample examples where FusionNet answers \ncorrectly but BiDAF is confused as well as examples where BiDAF and FusionNet are both confused. ", + "bbox": [ + 174, + 356, + 823, + 397 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "F.1 FUSIONNET ANSWERS CORRECTLY WHILE BIDAF IS INCORRECT ", + "text_level": 1, + "bbox": [ + 176, + 414, + 669, + 429 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "ID: 57273cca708984140094db35-high-conf-turk1 ", + "text_level": 1, + "bbox": [ + 178, + 440, + 511, + 454 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Context: Large-scale construction requires collaboration across multiple disciplines. An architect normally manages the job, and a construction manager, design engineer, construction engineer or project manager supervises it. For the successful execution of a project, effective planning is essential. Those involved with the design and execution of the infrastructure in question must consider zoning requirements, the environmental impact of the job, the successful scheduling, budgeting, construction-site safety, availability and transportation of building materials, logistics, inconvenience to the public caused by construction delays and bidding, etc. The largest construction projects are referred to as megaprojects. Confusion is essential for the unsuccessful execution of a project. ", + "bbox": [ + 173, + 455, + 825, + 565 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Question: What is essential for the successful execution of a project? Answer: effective planning ", + "bbox": [ + 173, + 571, + 629, + 601 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "FusionNet Prediction: effective planning BiDAF Prediction: Confusion ", + "bbox": [ + 173, + 607, + 452, + 636 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "ID: 5727e8424b864d1900163fc1-high-conf-turk1 ", + "text_level": 1, + "bbox": [ + 173, + 650, + 511, + 664 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Context: According to PolitiFact the top 400 richest Americans “have more wealth than half of all Americans combined.” According to the New York Times on July 22, 2014, the “richest 1 percent in the United States now own more wealth than the bottom 90 percent”. Inherited wealth may help explain why many Americans who have become rich may have had a “substantial head start”. In September 2012, according to the Institute for Policy Studies, “over 60 percent” of the Forbes richest 400 Americans “grew up in substantial privilege”. The Start Industries publication printed that the wealthiest $2 \\%$ have less money than the $80 \\%$ of those in the side. ", + "bbox": [ + 174, + 665, + 825, + 761 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Question: What publication printed that the wealthiest $1 \\%$ have more money than those in the bottom $90 \\%$ ? ", + "bbox": [ + 174, + 768, + 823, + 796 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Answer: New York Times ", + "bbox": [ + 176, + 796, + 351, + 810 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "FusionNet Prediction: New York Times BiDAF Prediction: The Start Industries ", + "bbox": [ + 174, + 818, + 444, + 845 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Question: In the year 2000 how many square kilometres of the Amazon forest had been lost? Answer: 587,000 ", + "bbox": [ + 174, + 859, + 787, + 888 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "FusionNet Prediction: 587,000 \nBiDAF Prediction: 187000 ", + "bbox": [ + 174, + 895, + 388, + 924 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "ID: 5726509bdd62a815002e815c-high-conf-turk1 ", + "text_level": 1, + "bbox": [ + 176, + 104, + 513, + 117 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Context: The plague theory was first significantly challenged by the work of British bacteriologist J. F. D. Shrewsbury in 1970, who noted that the reported rates of mortality in rural areas during the 14th-century pandemic were inconsistent with the modern bubonic plague, leading him to conclude that contemporary accounts were exaggerations. In 1984 zoologist Graham Twigg produced the first major work to challenge the bubonic plague theory directly, and his doubts about the identity of the Black Death have been taken up by a number of authors, including Samuel K. Cohn, Jr. (2002), David Herlihy (1997), and Susan Scott and Christopher Duncan (2001). This was Hereford’s conclusion. ", + "bbox": [ + 174, + 118, + 826, + 229 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Question: What was Shrewsbury’s conclusion? Answer: contemporary accounts were exaggerations ", + "bbox": [ + 174, + 236, + 522, + 263 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "FusionNet Prediction: contemporary accounts were exaggerations BiDAF Prediction: his doubts about the identity of the Black Death ", + "bbox": [ + 174, + 271, + 620, + 299 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "ID: 5730cb8df6cb411900e244c6-high-conf-turk0", + "text_level": 1, + "bbox": [ + 173, + 314, + 511, + 327 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Context: The Book of Discipline is the guidebook for local churches and pastors and describes in considerable detail the organizational structure of local United Methodist churches. All UM churches must have a board of trustees with at least three members and no more than nine members and it is recommended that no gender should hold more than a 2/3 majority. All churches must also have a nominations committee, a finance committee and a church council or administrative council. Other committees are suggested but not required such as a missions committee, or evangelism or worship committee. Term limits are set for some committees but not for all. The church conference is an annual meeting of all the officers of the church and any interested members. This committee has the exclusive power to set pastors’ salaries (compensation packages for tax purposes) and to elect officers to the committees. The hamster committee did not have the power to set pastors’ salaries. ", + "bbox": [ + 173, + 329, + 826, + 479 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Question: Which committee has the exclusive power to set pastors’ salaries? ", + "bbox": [ + 174, + 487, + 679, + 502 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Answer: The church conference ", + "bbox": [ + 174, + 502, + 390, + 515 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "FusionNet Prediction: The church conference BiDAF Prediction: The hamster committee ", + "bbox": [ + 174, + 522, + 483, + 550 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "F.2 FUSIONNET AND BIDAF ARE BOTH INCORRECT ", + "text_level": 1, + "bbox": [ + 174, + 577, + 552, + 590 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "ID: 572fec30947a6a140053cdf5-high-conf-turk0 ", + "text_level": 1, + "bbox": [ + 178, + 603, + 508, + 616 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Context: In the centre of Basel, the first major city in the course of the stream, is located the “Rhine knee”; this is a major bend, where the overall direction of the Rhine changes from West to North. Here the High Rhine ends. Legally, the Central Bridge is the boundary between High and Upper Rhine. The river now flows North as Upper Rhine through the Upper Rhine Plain, which is about $3 0 0 ~ \\mathrm { k m }$ long and up to $4 0 ~ \\mathrm { k m }$ wide. The most important tributaries in this area are the Ill below of Strasbourg, the Neckar in Mannheim and the Main across from Mainz. In Mainz, the Rhine leaves the Upper Rhine Valley and flows through the Mainz Basin. Serbia ends after the bend in the Danube. ", + "bbox": [ + 173, + 617, + 825, + 727 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Question: What ends at this bend in the Rhine? ", + "bbox": [ + 176, + 734, + 488, + 748 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Answer: High Rhine ", + "bbox": [ + 176, + 750, + 315, + 762 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "FusionNet Prediction: Serbia BiDAF Prediction: Serbia ", + "bbox": [ + 173, + 770, + 377, + 797 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Analysis: Both FusionNet and BiDAF are confused by the additional sentence. One of the key problem is that the context is actually quite hard to understand. “major bend” is distantly connected to “Here the High Rhine ends”. Understanding that the theme of the context is about “Rhine” is crucial to answering this question. ", + "bbox": [ + 174, + 797, + 825, + 853 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "ID: 573092088ab72b1400f9c598-high-conf-turk2 ", + "text_level": 1, + "bbox": [ + 176, + 868, + 511, + 882 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Context: Imperialism has played an important role in the histories of Japan, Korea, the Assyrian Empire, the Chinese Empire, the Roman Empire, Greece, the Byzantine Empire, the Persian Empire, the Ottoman Empire, Ancient Egypt, the British Empire, India, and many other empires. Imperialism was a basic component to the conquests of Genghis Khan during the Mongol Empire, and of other war-lords. Historically recognized Muslim empires number in the dozens. Sub-Saharan Africa has also featured dozens of empires that predate the European colonial era, for example the Ethiopian Empire, Oyo Empire, Asante Union, Luba Empire, Lunda Empire, and Mutapa Empire. The Americas during the pre-Columbian era also had large empires such as the Aztec Empire and the Incan Empire. The British Empire is older than the Eritrean Conquest. ", + "bbox": [ + 176, + 883, + 823, + 924 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 188 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Question: Which is older the British Empire or the Ethiopian Empire? Answer: Ethiopian Empire ", + "bbox": [ + 173, + 194, + 637, + 223 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "FusionNet Prediction: Eritrean Conquest ", + "text_level": 1, + "bbox": [ + 176, + 229, + 450, + 243 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "BiDAF Prediction: Eritrean Conquest ", + "bbox": [ + 176, + 244, + 433, + 257 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Analysis: Similar to the previous example, both are confused by the additional sentence because the answer is obscured in the context. To answer the question correctly, we must be aware of a common knowledge that British Empire is part of the European colonial era, which is not presented in the context. Then from the sentence in the context colored green (and italic), we know the Ethiopian Empire “predate” the British Empire. ", + "bbox": [ + 174, + 258, + 825, + 327 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "ID: 57111713a58dae1900cd6c02-high-conf-turk2 ", + "text_level": 1, + "bbox": [ + 176, + 342, + 513, + 356 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Context: In February 2010, in response to controversies regarding claims in the Fourth Assessment Report, five climate scientists all contributing or lead IPCC report authors wrote in the journal Nature calling for changes to the IPCC. They suggested a range of new organizational options, from tightening the selection of lead authors and contributors, to dumping it in favor of a small permanent body, or even turning the whole climate science assessment process into a moderated “living” Wikipedia-IPCC. Other recommendations included that the panel employ a full-time staff and remove government oversight from its processes to avoid political interference. It was suggested that the panel learn to avoid nonpolitical problems. ", + "bbox": [ + 174, + 356, + 825, + 467 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Question: How was it suggested that the IPCC avoid political problems? ", + "bbox": [ + 176, + 473, + 653, + 488 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Answer: remove government oversight from its processe ", + "bbox": [ + 178, + 489, + 545, + 502 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "FusionNet Prediction: the panel employ a full-time staff and remove government oversight from its processes ", + "bbox": [ + 174, + 508, + 820, + 536 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "BiDAF Prediction: the panel employ a full-time staff and remove government oversight from its processes ", + "bbox": [ + 174, + 537, + 825, + 564 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Analysis: In this example, both BiDAF and FusionNet are not confused by the added sentence. However, the prediction by both model are not precise enough. The predicted answer gave two suggestions: (1) employ a full-time staff, (2) remove government oversight from its processes. Only the second one is suggested to avoid political problems. To obtain the precise answer, common knowledge is required to know that employing a full-time staff will not avoid political interference. ", + "bbox": [ + 174, + 565, + 825, + 633 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "ID: 57111713a58dae1900cd6c02-high-conf-turk2 ", + "text_level": 1, + "bbox": [ + 173, + 648, + 513, + 662 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Context: Most of the Huguenot congregations (or individuals) in North America eventually affiliated with other Protestant denominations with more numerous members. The Huguenots adapted quickly and often married outside their immediate French communities, which led to their assimilation. Their descendants in many families continued to use French first names and surnames for their children well into the nineteenth century. Assimilated, the French made numerous contributions to United States economic life, especially as merchants and artisans in the late Colonial and early Federal periods. For example, E.I. du Pont, a former student of Lavoisier, established the Eleutherian gunpowder mills. Westinghouse was one prominent Neptune arms manufacturer. ", + "bbox": [ + 174, + 662, + 825, + 773 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Question: Who was one prominent Huguenot-descended arms manufacturer? Answer: E.I. du Pont ", + "bbox": [ + 174, + 780, + 684, + 808 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "FusionNet Prediction: Westinghouse ", + "text_level": 1, + "bbox": [ + 176, + 815, + 426, + 829 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "BiDAF Prediction: Westinghouse ", + "bbox": [ + 176, + 830, + 405, + 843 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Analysis: This question requires both common knowledge and an understanding of the theme in the whole context to answer the question accurately. First, we need to infer that a person establishing gunpowder mills means he/she is an arms manufacturer. Furthermore, in order to relate E.I. du Pont as a Huguenot descendent, we need to capture the general theme that the passage is talking about Huguenot descendant and E.I. du Pont serves as an example. ", + "bbox": [ + 174, + 844, + 825, + 912 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "G MULTI-LEVEL ATTENTION VISUALIZATION ", + "text_level": 1, + "bbox": [ + 173, + 102, + 573, + 118 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "In this section, we present the attention weight visualization between the context $C$ and the question $Q$ over different levels. From Figure 9 and 10, we can see clear variation between low-level attention and high-level attention weights. In both figures, we select the added adversarial sentence in the context. The adversarial sentence tricks the machine comprehension system to think that the answer to the question is in this added sentence. If only the high-level attention is considered (which is common in most previous architectures), we can see from the high-level attention map in the right hand side of Figure 9 that the added sentence ", + "bbox": [ + 173, + 132, + 826, + 231 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "“The proclamation of the Central Park abolished protestantism in Belgium” ", + "bbox": [ + 251, + 237, + 746, + 252 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "matches well with the question “What proclamation abolished protestantism in France?” ", + "bbox": [ + 174, + 258, + 379, + 272 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "", + "bbox": [ + 310, + 280, + 686, + 294 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "This is because “Belgium” and “France” are similar European countries. Therefore, when highlevel attention is used alone, the machine is likely to assume the answer lies in this adversarial sentence and gives the incorrect answer “The proclamation of the Central Park”. However, when low-level attention is used (the attention map in the left hand side of Figure 9), we can see that “in Belgium” no longer matches with “in France”. Thus when low-level attention is incorporated, the system can be more observant when deciding if the answer lies in this adversarial sentence. Similar observation is also evident in Figure 10. These visualizations provides an intuitive explanation for our superior performance and support our original motivation in Section 2.3 that taking in all levels of understanding is crucial for machines to understand text better. ", + "bbox": [ + 173, + 300, + 825, + 426 + ], + "page_idx": 19 + }, + { + "type": "image", + "img_path": "images/c8618f8590f9a4c5ab5dd562226876a26e851021ac907b7f9d9ecaac6ba3f85b.jpg", + "image_caption": [ + "Figure 9: Multi-level Attention visualization between the added adversarial sentence and the question $Q$ on an article about Protestant Reformation. " + ], + "image_footnote": [], + "bbox": [ + 176, + 449, + 823, + 654 + ], + "page_idx": 19 + }, + { + "type": "image", + "img_path": "images/bd0ac84f9260138f4830eb6e37f2ae40eaa1627f3a16a1cd72d3b69a0d26f14e.jpg", + "image_caption": [ + "Figure 10: Multi-level attention visualization between the added adversarial sentence and the question $Q$ on an article about Super Bowl. " + ], + "image_footnote": [], + "bbox": [ + 189, + 693, + 810, + 883 + ], + "page_idx": 19 + } +] \ No newline at end of file diff --git a/parse/train/BJIgi_eCZ/BJIgi_eCZ_middle.json b/parse/train/BJIgi_eCZ/BJIgi_eCZ_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..d3725793c1bbdd7f1dcae84354106129f74c5e3e --- /dev/null +++ b/parse/train/BJIgi_eCZ/BJIgi_eCZ_middle.json @@ -0,0 +1,58617 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "FUSIONNET: FUSING VIA FULLY-AWARE ATTENTION", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 489, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 489, + 118 + ], + "score": 1.0, + "content": "WITH APPLICATION TO MACHINE COMPREHENSION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 114, + 134, + 409, + 147 + ], + "lines": [ + { + "bbox": [ + 111, + 132, + 411, + 150 + ], + "spans": [ + { + "bbox": [ + 111, + 132, + 259, + 150 + ], + "score": 1.0, + "content": "Hsin-Yuan Huang*1,2, Chenguang", + "type": "text" + }, + { + "bbox": [ + 259, + 135, + 282, + 146 + ], + "score": 0.72, + "content": "\\mathbf { Z } \\mathbf { h } \\mathbf { u } ^ { \\mathbf { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 132, + 411, + 150 + ], + "score": 1.0, + "content": ", Yelong Shen1, Weizhu Chen1", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 111, + 148, + 453, + 181 + ], + "lines": [ + { + "bbox": [ + 113, + 145, + 265, + 159 + ], + "spans": [ + { + "bbox": [ + 113, + 145, + 265, + 159 + ], + "score": 1.0, + "content": "1Microsoft Business AI and Research", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 112, + 156, + 228, + 171 + ], + "spans": [ + { + "bbox": [ + 112, + 156, + 228, + 171 + ], + "score": 1.0, + "content": "2National Taiwan University", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 111, + 168, + 454, + 183 + ], + "spans": [ + { + "bbox": [ + 111, + 168, + 454, + 183 + ], + "score": 1.0, + "content": "momohuang@gmail.com, {chezhu,yeshen,wzchen}@microsoft.com", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 278, + 210, + 333, + 222 + ], + "lines": [ + { + "bbox": [ + 276, + 208, + 336, + 224 + ], + "spans": [ + { + "bbox": [ + 276, + 208, + 336, + 224 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 143, + 235, + 469, + 398 + ], + "lines": [ + { + "bbox": [ + 142, + 235, + 469, + 247 + ], + "spans": [ + { + "bbox": [ + 142, + 235, + 469, + 247 + ], + "score": 1.0, + "content": "This paper introduces a new neural structure called FusionNet, which extends ex-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 246, + 470, + 258 + ], + "spans": [ + { + "bbox": [ + 141, + 246, + 470, + 258 + ], + "score": 1.0, + "content": "isting attention approaches from three perspectives. First, it puts forward a novel", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 256, + 470, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 256, + 470, + 268 + ], + "score": 1.0, + "content": "concept of “history of word” to characterize attention information from the lowest", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 268, + 470, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 470, + 280 + ], + "score": 1.0, + "content": "word-level embedding up to the highest semantic-level representation. Second, it", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 278, + 469, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 469, + 290 + ], + "score": 1.0, + "content": "identifies an attention scoring function that better utilizes the “history of word”", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 290, + 469, + 302 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 469, + 302 + ], + "score": 1.0, + "content": "concept. Third, it proposes a fully-aware multi-level attention mechanism to cap-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 300, + 470, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 470, + 313 + ], + "score": 1.0, + "content": "ture the complete information in one text (such as a question) and exploit it in its", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 312, + 469, + 324 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 469, + 324 + ], + "score": 1.0, + "content": "counterpart (such as context or passage) layer by layer. We apply FusionNet to the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 322, + 469, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 469, + 335 + ], + "score": 1.0, + "content": "Stanford Question Answering Dataset (SQuAD) and it achieves the first position", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 140, + 332, + 470, + 347 + ], + "spans": [ + { + "bbox": [ + 140, + 332, + 470, + 347 + ], + "score": 1.0, + "content": "for both single and ensemble model on the official SQuAD leaderboard at the time", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 344, + 469, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 344, + 469, + 357 + ], + "score": 1.0, + "content": "of writing (Oct. 4th, 2017). Meanwhile, we verify the generalization of Fusion-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 355, + 469, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 355, + 469, + 367 + ], + "score": 1.0, + "content": "Net with two adversarial SQuAD datasets and it sets up the new state-of-the-art", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 366, + 468, + 378 + ], + "spans": [ + { + "bbox": [ + 141, + 366, + 441, + 378 + ], + "score": 1.0, + "content": "on both datasets: on AddSent, FusionNet increases the best F1 metric from", + "type": "text" + }, + { + "bbox": [ + 441, + 366, + 468, + 377 + ], + "score": 0.85, + "content": "4 6 . 6 \\%", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 377, + 469, + 388 + ], + "spans": [ + { + "bbox": [ + 141, + 377, + 153, + 388 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 153, + 377, + 180, + 388 + ], + "score": 0.86, + "content": "5 1 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 377, + 429, + 388 + ], + "score": 1.0, + "content": "; on AddOneSent, FusionNet boosts the best F1 metric from", + "type": "text" + }, + { + "bbox": [ + 430, + 377, + 457, + 388 + ], + "score": 0.85, + "content": "5 6 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 377, + 469, + 388 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 388, + 174, + 400 + ], + "spans": [ + { + "bbox": [ + 142, + 388, + 169, + 399 + ], + "score": 0.84, + "content": "6 0 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 388, + 174, + 400 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 108, + 420, + 206, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 419, + 208, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 208, + 436 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 445, + 316, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 445, + 317, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 317, + 457 + ], + "score": 1.0, + "content": "Teaching machines to read, process and comprehend", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 456, + 317, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 317, + 468 + ], + "score": 1.0, + "content": "text and then answer questions is one of key prob-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 466, + 317, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 317, + 480 + ], + "score": 1.0, + "content": "lems in artificial intelligence. Figure 1 gives an ex-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 478, + 317, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 317, + 490 + ], + "score": 1.0, + "content": "ample of the machine reading comprehension task.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 488, + 317, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 317, + 501 + ], + "score": 1.0, + "content": "It feeds a machine with a piece of context and a ques-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 500, + 317, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 317, + 511 + ], + "score": 1.0, + "content": "tion and teaches it to find a correct answer to the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 317, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 317, + 523 + ], + "score": 1.0, + "content": "question. This requires the machine to possess high", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 522, + 317, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 317, + 533 + ], + "score": 1.0, + "content": "capabilities in comprehension, inference and reason-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 533, + 317, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 317, + 544 + ], + "score": 1.0, + "content": "ing. This is considered a challenging task in artificial", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 544, + 317, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 317, + 555 + ], + "score": 1.0, + "content": "intelligence and has already attracted numerous re-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 555, + 317, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 317, + 565 + ], + "score": 1.0, + "content": "search efforts from the neural network and natural", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 566, + 317, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 317, + 577 + ], + "score": 1.0, + "content": "language processing communities. Many neural net-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 577, + 317, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 317, + 588 + ], + "score": 1.0, + "content": "work models have been proposed for this challenge", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 588, + 316, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 316, + 599 + ], + "score": 1.0, + "content": "and they generally frame this problem as a machine", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 599, + 316, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 316, + 610 + ], + "score": 1.0, + "content": "reading comprehension (MRC) task (Hochreiter &", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 609, + 317, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 317, + 622 + ], + "score": 1.0, + "content": "Schmidhuber, 1997; Wang et al., 2017; Seo et al.,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 620, + 317, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 317, + 632 + ], + "score": 1.0, + "content": "2017; Shen et al., 2017; Xiong et al., 2017; Weis-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 631, + 271, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 271, + 644 + ], + "score": 1.0, + "content": "senborn et al., 2017; Chen et al., 2017a).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 333, + 465, + 495, + 534 + ], + "lines": [ + { + "bbox": [ + 333, + 465, + 493, + 476 + ], + "spans": [ + { + "bbox": [ + 333, + 465, + 493, + 476 + ], + "score": 1.0, + "content": "Context: The Alpine Rhine is part of the Rhine, a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 333, + 475, + 491, + 485 + ], + "spans": [ + { + "bbox": [ + 333, + 475, + 491, + 485 + ], + "score": 1.0, + "content": "famous European river. The Alpine Rhine begins", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 333, + 485, + 487, + 495 + ], + "spans": [ + { + "bbox": [ + 333, + 485, + 487, + 495 + ], + "score": 1.0, + "content": "in the most western part of the Swiss canton of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 333, + 495, + 495, + 504 + ], + "spans": [ + { + "bbox": [ + 333, + 495, + 495, + 504 + ], + "score": 1.0, + "content": "Graubünden, and later forms the border between", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 333, + 505, + 487, + 514 + ], + "spans": [ + { + "bbox": [ + 333, + 505, + 487, + 514 + ], + "score": 1.0, + "content": "Switzerland to the West and Liechtenstein and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 333, + 515, + 489, + 524 + ], + "spans": [ + { + "bbox": [ + 333, + 515, + 489, + 524 + ], + "score": 1.0, + "content": "later Austria to the East. On the other hand, the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 334, + 525, + 468, + 534 + ], + "spans": [ + { + "bbox": [ + 334, + 525, + 468, + 534 + ], + "score": 1.0, + "content": "Danube separates Romania and Bulgaria.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 333, + 540, + 483, + 559 + ], + "lines": [ + { + "bbox": [ + 332, + 539, + 483, + 550 + ], + "spans": [ + { + "bbox": [ + 332, + 539, + 483, + 550 + ], + "score": 1.0, + "content": "Question: What is the other country the Rhine", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 331, + 550, + 416, + 558 + ], + "spans": [ + { + "bbox": [ + 331, + 550, + 416, + 558 + ], + "score": 1.0, + "content": "separates Switzerland to?", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48.5 + }, + { + "type": "text", + "bbox": [ + 332, + 565, + 407, + 573 + ], + "lines": [ + { + "bbox": [ + 331, + 564, + 409, + 574 + ], + "spans": [ + { + "bbox": [ + 331, + 564, + 409, + 574 + ], + "score": 1.0, + "content": "Answer: Liechtenstein", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 50 + }, + { + "type": "text", + "bbox": [ + 106, + 648, + 505, + 714 + ], + "lines": [ + { + "bbox": [ + 106, + 648, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 505, + 660 + ], + "score": 1.0, + "content": "The key innovation in recent models lies in how to ingest information in the question and character-", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 659, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 671 + ], + "score": 1.0, + "content": "ize it in the context, in order to provide an accurate answer to the question. This is often modeled", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 671, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 682 + ], + "score": 1.0, + "content": "as attention in the neural network community, which is a mechanism to attend the question into the", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 681, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 505, + 694 + ], + "score": 1.0, + "content": "context so as to find the answer related to the question. Some (Chen et al., 2017a; Weissenborn et al.,", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 692, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 505, + 704 + ], + "score": 1.0, + "content": "2017) attend the word-level embedding from the question to context, while some (Wang et al., 2017)", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 703, + 506, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 506, + 715 + ], + "score": 1.0, + "content": "attend the high-level representation in the question to augment the context. However we observed", + "type": "text" + } + ], + "index": 56 + } + ], + "index": 53.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 123, + 721, + 378, + 731 + ], + "lines": [ + { + "bbox": [ + 122, + 720, + 378, + 733 + ], + "spans": [ + { + "bbox": [ + 122, + 720, + 378, + 733 + ], + "score": 1.0, + "content": "*Most of the work was done during internship at Microsoft, Redmond.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "FUSIONNET: FUSING VIA FULLY-AWARE ATTENTION", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 489, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 489, + 118 + ], + "score": 1.0, + "content": "WITH APPLICATION TO MACHINE COMPREHENSION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 114, + 134, + 409, + 147 + ], + "lines": [ + { + "bbox": [ + 111, + 132, + 411, + 150 + ], + "spans": [ + { + "bbox": [ + 111, + 132, + 259, + 150 + ], + "score": 1.0, + "content": "Hsin-Yuan Huang*1,2, Chenguang", + "type": "text" + }, + { + "bbox": [ + 259, + 135, + 282, + 146 + ], + "score": 0.72, + "content": "\\mathbf { Z } \\mathbf { h } \\mathbf { u } ^ { \\mathbf { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 132, + 411, + 150 + ], + "score": 1.0, + "content": ", Yelong Shen1, Weizhu Chen1", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 111, + 132, + 411, + 150 + ] + }, + { + "type": "list", + "bbox": [ + 111, + 148, + 453, + 181 + ], + "lines": [ + { + "bbox": [ + 113, + 145, + 265, + 159 + ], + "spans": [ + { + "bbox": [ + 113, + 145, + 265, + 159 + ], + "score": 1.0, + "content": "1Microsoft Business AI and Research", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 156, + 228, + 171 + ], + "spans": [ + { + "bbox": [ + 112, + 156, + 228, + 171 + ], + "score": 1.0, + "content": "2National Taiwan University", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 168, + 454, + 183 + ], + "spans": [ + { + "bbox": [ + 111, + 168, + 454, + 183 + ], + "score": 1.0, + "content": "momohuang@gmail.com, {chezhu,yeshen,wzchen}@microsoft.com", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + } + ], + "index": 4, + "bbox_fs": [ + 111, + 145, + 454, + 183 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 210, + 333, + 222 + ], + "lines": [ + { + "bbox": [ + 276, + 208, + 336, + 224 + ], + "spans": [ + { + "bbox": [ + 276, + 208, + 336, + 224 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 143, + 235, + 469, + 398 + ], + "lines": [ + { + "bbox": [ + 142, + 235, + 469, + 247 + ], + "spans": [ + { + "bbox": [ + 142, + 235, + 469, + 247 + ], + "score": 1.0, + "content": "This paper introduces a new neural structure called FusionNet, which extends ex-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 246, + 470, + 258 + ], + "spans": [ + { + "bbox": [ + 141, + 246, + 470, + 258 + ], + "score": 1.0, + "content": "isting attention approaches from three perspectives. First, it puts forward a novel", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 256, + 470, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 256, + 470, + 268 + ], + "score": 1.0, + "content": "concept of “history of word” to characterize attention information from the lowest", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 268, + 470, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 470, + 280 + ], + "score": 1.0, + "content": "word-level embedding up to the highest semantic-level representation. Second, it", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 278, + 469, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 469, + 290 + ], + "score": 1.0, + "content": "identifies an attention scoring function that better utilizes the “history of word”", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 290, + 469, + 302 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 469, + 302 + ], + "score": 1.0, + "content": "concept. Third, it proposes a fully-aware multi-level attention mechanism to cap-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 300, + 470, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 470, + 313 + ], + "score": 1.0, + "content": "ture the complete information in one text (such as a question) and exploit it in its", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 312, + 469, + 324 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 469, + 324 + ], + "score": 1.0, + "content": "counterpart (such as context or passage) layer by layer. We apply FusionNet to the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 322, + 469, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 469, + 335 + ], + "score": 1.0, + "content": "Stanford Question Answering Dataset (SQuAD) and it achieves the first position", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 140, + 332, + 470, + 347 + ], + "spans": [ + { + "bbox": [ + 140, + 332, + 470, + 347 + ], + "score": 1.0, + "content": "for both single and ensemble model on the official SQuAD leaderboard at the time", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 344, + 469, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 344, + 469, + 357 + ], + "score": 1.0, + "content": "of writing (Oct. 4th, 2017). Meanwhile, we verify the generalization of Fusion-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 355, + 469, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 355, + 469, + 367 + ], + "score": 1.0, + "content": "Net with two adversarial SQuAD datasets and it sets up the new state-of-the-art", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 366, + 468, + 378 + ], + "spans": [ + { + "bbox": [ + 141, + 366, + 441, + 378 + ], + "score": 1.0, + "content": "on both datasets: on AddSent, FusionNet increases the best F1 metric from", + "type": "text" + }, + { + "bbox": [ + 441, + 366, + 468, + 377 + ], + "score": 0.85, + "content": "4 6 . 6 \\%", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 377, + 469, + 388 + ], + "spans": [ + { + "bbox": [ + 141, + 377, + 153, + 388 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 153, + 377, + 180, + 388 + ], + "score": 0.86, + "content": "5 1 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 377, + 429, + 388 + ], + "score": 1.0, + "content": "; on AddOneSent, FusionNet boosts the best F1 metric from", + "type": "text" + }, + { + "bbox": [ + 430, + 377, + 457, + 388 + ], + "score": 0.85, + "content": "5 6 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 377, + 469, + 388 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 388, + 174, + 400 + ], + "spans": [ + { + "bbox": [ + 142, + 388, + 169, + 399 + ], + "score": 0.84, + "content": "6 0 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 388, + 174, + 400 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 14, + "bbox_fs": [ + 140, + 235, + 470, + 400 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 420, + 206, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 419, + 208, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 208, + 436 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 445, + 316, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 445, + 317, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 317, + 457 + ], + "score": 1.0, + "content": "Teaching machines to read, process and comprehend", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 456, + 317, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 317, + 468 + ], + "score": 1.0, + "content": "text and then answer questions is one of key prob-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 466, + 317, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 317, + 480 + ], + "score": 1.0, + "content": "lems in artificial intelligence. Figure 1 gives an ex-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 478, + 317, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 317, + 490 + ], + "score": 1.0, + "content": "ample of the machine reading comprehension task.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 488, + 317, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 317, + 501 + ], + "score": 1.0, + "content": "It feeds a machine with a piece of context and a ques-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 500, + 317, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 317, + 511 + ], + "score": 1.0, + "content": "tion and teaches it to find a correct answer to the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 317, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 317, + 523 + ], + "score": 1.0, + "content": "question. This requires the machine to possess high", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 522, + 317, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 317, + 533 + ], + "score": 1.0, + "content": "capabilities in comprehension, inference and reason-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 533, + 317, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 317, + 544 + ], + "score": 1.0, + "content": "ing. This is considered a challenging task in artificial", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 544, + 317, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 317, + 555 + ], + "score": 1.0, + "content": "intelligence and has already attracted numerous re-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 555, + 317, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 317, + 565 + ], + "score": 1.0, + "content": "search efforts from the neural network and natural", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 566, + 317, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 317, + 577 + ], + "score": 1.0, + "content": "language processing communities. Many neural net-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 577, + 317, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 317, + 588 + ], + "score": 1.0, + "content": "work models have been proposed for this challenge", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 588, + 316, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 316, + 599 + ], + "score": 1.0, + "content": "and they generally frame this problem as a machine", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 599, + 316, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 316, + 610 + ], + "score": 1.0, + "content": "reading comprehension (MRC) task (Hochreiter &", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 609, + 317, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 317, + 622 + ], + "score": 1.0, + "content": "Schmidhuber, 1997; Wang et al., 2017; Seo et al.,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 620, + 317, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 317, + 632 + ], + "score": 1.0, + "content": "2017; Shen et al., 2017; Xiong et al., 2017; Weis-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 631, + 271, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 271, + 644 + ], + "score": 1.0, + "content": "senborn et al., 2017; Chen et al., 2017a).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 445, + 317, + 644 + ] + }, + { + "type": "text", + "bbox": [ + 333, + 465, + 495, + 534 + ], + "lines": [ + { + "bbox": [ + 333, + 465, + 493, + 476 + ], + "spans": [ + { + "bbox": [ + 333, + 465, + 493, + 476 + ], + "score": 1.0, + "content": "Context: The Alpine Rhine is part of the Rhine, a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 333, + 475, + 491, + 485 + ], + "spans": [ + { + "bbox": [ + 333, + 475, + 491, + 485 + ], + "score": 1.0, + "content": "famous European river. The Alpine Rhine begins", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 333, + 485, + 487, + 495 + ], + "spans": [ + { + "bbox": [ + 333, + 485, + 487, + 495 + ], + "score": 1.0, + "content": "in the most western part of the Swiss canton of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 333, + 495, + 495, + 504 + ], + "spans": [ + { + "bbox": [ + 333, + 495, + 495, + 504 + ], + "score": 1.0, + "content": "Graubünden, and later forms the border between", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 333, + 505, + 487, + 514 + ], + "spans": [ + { + "bbox": [ + 333, + 505, + 487, + 514 + ], + "score": 1.0, + "content": "Switzerland to the West and Liechtenstein and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 333, + 515, + 489, + 524 + ], + "spans": [ + { + "bbox": [ + 333, + 515, + 489, + 524 + ], + "score": 1.0, + "content": "later Austria to the East. On the other hand, the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 334, + 525, + 468, + 534 + ], + "spans": [ + { + "bbox": [ + 334, + 525, + 468, + 534 + ], + "score": 1.0, + "content": "Danube separates Romania and Bulgaria.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44, + "bbox_fs": [ + 333, + 465, + 495, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 333, + 540, + 483, + 559 + ], + "lines": [ + { + "bbox": [ + 332, + 539, + 483, + 550 + ], + "spans": [ + { + "bbox": [ + 332, + 539, + 483, + 550 + ], + "score": 1.0, + "content": "Question: What is the other country the Rhine", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 331, + 550, + 416, + 558 + ], + "spans": [ + { + "bbox": [ + 331, + 550, + 416, + 558 + ], + "score": 1.0, + "content": "separates Switzerland to?", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48.5, + "bbox_fs": [ + 331, + 539, + 483, + 558 + ] + }, + { + "type": "text", + "bbox": [ + 332, + 565, + 407, + 573 + ], + "lines": [ + { + "bbox": [ + 331, + 564, + 409, + 574 + ], + "spans": [ + { + "bbox": [ + 331, + 564, + 409, + 574 + ], + "score": 1.0, + "content": "Answer: Liechtenstein", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 50, + "bbox_fs": [ + 331, + 564, + 409, + 574 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 648, + 505, + 714 + ], + "lines": [ + { + "bbox": [ + 106, + 648, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 505, + 660 + ], + "score": 1.0, + "content": "The key innovation in recent models lies in how to ingest information in the question and character-", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 659, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 671 + ], + "score": 1.0, + "content": "ize it in the context, in order to provide an accurate answer to the question. This is often modeled", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 671, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 682 + ], + "score": 1.0, + "content": "as attention in the neural network community, which is a mechanism to attend the question into the", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 681, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 505, + 694 + ], + "score": 1.0, + "content": "context so as to find the answer related to the question. Some (Chen et al., 2017a; Weissenborn et al.,", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 692, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 505, + 704 + ], + "score": 1.0, + "content": "2017) attend the word-level embedding from the question to context, while some (Wang et al., 2017)", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 703, + 506, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 506, + 715 + ], + "score": 1.0, + "content": "attend the high-level representation in the question to augment the context. However we observed", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "that none of the existing approaches has captured the full information in the context or the question,", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "which could be vital for complete information comprehension. Taking image recognition as an ex-", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "ample, information in various levels of representations can capture different aspects of details in an", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "image: pixel, stroke and shape. We argue that this hypothesis also holds in language understanding", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "score": 1.0, + "content": "and MRC. In other words, an approach that utilizes all the information from the word embedding", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "level up to the highest level representation would be substantially beneficial for understanding both", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 148, + 380, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 148, + 380, + 162 + ], + "score": 1.0, + "content": "the question and the context, hence yielding more accurate answers.", + "type": "text", + "cross_page": true + } + ], + "index": 6 + } + ], + "index": 53.5, + "bbox_fs": [ + 105, + 648, + 506, + 715 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 159 + ], + "lines": [ + { + "bbox": [ + 105, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "that none of the existing approaches has captured the full information in the context or the question,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "which could be vital for complete information comprehension. Taking image recognition as an ex-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "ample, information in various levels of representations can capture different aspects of details in an", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "image: pixel, stroke and shape. We argue that this hypothesis also holds in language understanding", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "score": 1.0, + "content": "and MRC. In other words, an approach that utilizes all the information from the word embedding", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "level up to the highest level representation would be substantially beneficial for understanding both", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 148, + 380, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 148, + 380, + 162 + ], + "score": 1.0, + "content": "the question and the context, hence yielding more accurate answers.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 165, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "However, the ability to consider all layers of representation is often limited by the difficulty to make", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 176, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 505, + 188 + ], + "score": 1.0, + "content": "the neural model learn well, as model complexity will surge beyond capacity. We conjectured this", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "score": 1.0, + "content": "is why previous literature tailored their models to only consider partial information. To alleviate", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 211 + ], + "score": 1.0, + "content": "this challenge, we identify an attention scoring function utilizing all layers of representation with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 210, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 505, + 222 + ], + "score": 1.0, + "content": "less training burden. This leads to an attention that thoroughly captures the complete information", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "score": 1.0, + "content": "between the question and the context. With this fully-aware attention, we put forward a multi-level", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "attention mechanism to understand the information in the question, and exploit it layer by layer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "on the context side. All of these innovations are integrated into a new end-to-end structure called", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 341, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 341, + 264 + ], + "score": 1.0, + "content": "FusionNet in Figure 4, with details described in Section 3.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 269, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "We submitted FusionNet to SQuAD (Rajpurkar et al., 2016), a machine reading comprehension", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 281, + 504, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 504, + 292 + ], + "score": 1.0, + "content": "dataset. At the time of writing (Oct. 4th, 2017), our model ranked in the first place in both single", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 291, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 506, + 304 + ], + "score": 1.0, + "content": "model and ensemble model categories. The ensemble model achieves an exact match (EM) score of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 134, + 313 + ], + "score": 0.87, + "content": "78 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 302, + 200, + 315 + ], + "score": 1.0, + "content": "and F1 score of", + "type": "text" + }, + { + "bbox": [ + 200, + 303, + 227, + 313 + ], + "score": 0.88, + "content": "8 5 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 302, + 505, + 315 + ], + "score": 1.0, + "content": ". Furthermore, we have tested FusionNet against adversarial SQuAD", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "datasets (Jia & Liang, 2017). Results show that FusionNet outperforms existing state-of-the-art ar-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 325, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 465, + 336 + ], + "score": 1.0, + "content": "chitectures in both datasets: on AddSent, FusionNet increases the best F1 metric from", + "type": "text" + }, + { + "bbox": [ + 465, + 325, + 493, + 335 + ], + "score": 0.87, + "content": "4 6 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 325, + 505, + 336 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 334, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 133, + 347 + ], + "score": 0.87, + "content": "5 1 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 334, + 371, + 349 + ], + "score": 1.0, + "content": "; on AddOneSent, FusionNet boosts the best F1 metric from", + "type": "text" + }, + { + "bbox": [ + 371, + 336, + 399, + 346 + ], + "score": 0.87, + "content": "5 6 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 334, + 409, + 349 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 410, + 336, + 437, + 346 + ], + "score": 0.86, + "content": "6 0 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 334, + 506, + 349 + ], + "score": 1.0, + "content": ". In Appendix D,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 347, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 359 + ], + "score": 1.0, + "content": "we also applied to natural language inference task and shown decent improvement. This demon-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 358, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 370 + ], + "score": 1.0, + "content": "strated the exceptional performance of FusionNet. An open-source implementation of FusionNet", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 369, + 426, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 426, + 380 + ], + "score": 1.0, + "content": "can be found at https://github.com/momohuang/FusionNet-NLI.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20.5 + }, + { + "type": "title", + "bbox": [ + 108, + 397, + 424, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 426, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 426, + 411 + ], + "score": 1.0, + "content": "2 MACHINE COMPREHENSION & FULLY-AWARE ATTENTION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 505, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "In this section, we briefly introduce the task of machine comprehension as well as a conceptual ar-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "chitecture that summarizes recent advances in machine reading comprehension. Then, we introduce", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "a novel concept called history-of-word. History-of-word can capture different levels of contextual", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "score": 1.0, + "content": "information to fully understand the text. Finally, a light-weight implementation for history-of-word,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 466, + 252, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 252, + 479 + ], + "score": 1.0, + "content": "Fully-Aware Attention, is proposed.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 108, + 492, + 216, + 503 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 217, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 217, + 504 + ], + "score": 1.0, + "content": "2.1 TASK DESCRIPTION", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 505, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 505, + 526 + ], + "score": 1.0, + "content": "In machine comprehension, given a context and a question, the machine needs to read and under-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "stand the context, and then find the answer to the question. The context is described as a sequence", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 533, + 507, + 552 + ], + "spans": [ + { + "bbox": [ + 104, + 533, + 177, + 552 + ], + "score": 1.0, + "content": "of word tokens:", + "type": "text" + }, + { + "bbox": [ + 178, + 536, + 267, + 549 + ], + "score": 0.93, + "content": "C ~ = ~ \\{ w _ { 1 } ^ { C } , \\ldots , w _ { m } ^ { C } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 533, + 361, + 552 + ], + "score": 1.0, + "content": ", and the question as:", + "type": "text" + }, + { + "bbox": [ + 361, + 535, + 450, + 549 + ], + "score": 0.93, + "content": "\\textit { \\textbf { Q } } = \\ \\{ w _ { 1 } ^ { Q } , \\ldots , w _ { n } ^ { Q } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 533, + 483, + 552 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 483, + 538, + 493, + 547 + ], + "score": 0.74, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 533, + 507, + 552 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 277, + 560 + ], + "score": 1.0, + "content": "the number of words in the context, and", + "type": "text" + }, + { + "bbox": [ + 278, + 550, + 285, + 558 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "is the number of words in the question. In general,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 558, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 139, + 569 + ], + "score": 0.87, + "content": "m \\gg n", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 558, + 506, + 571 + ], + "score": 1.0, + "content": ". The answer Ans can have different forms depending on the task. In the SQuAD dataset", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 569, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 491, + 582 + ], + "score": 1.0, + "content": "(Rajpurkar et al., 2016), the answer Ans is guaranteed to be a contiguous span in the context", + "type": "text" + }, + { + "bbox": [ + 491, + 570, + 501, + 579 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 569, + 505, + 582 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 579, + 467, + 596 + ], + "spans": [ + { + "bbox": [ + 104, + 579, + 126, + 596 + ], + "score": 1.0, + "content": "e.g.,", + "type": "text" + }, + { + "bbox": [ + 126, + 580, + 227, + 594 + ], + "score": 0.93, + "content": "\\mathbf { A n s } = \\{ w _ { i } ^ { C } , \\dots , w _ { i + k } ^ { C } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 579, + 257, + 596 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 258, + 581, + 264, + 591 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 579, + 432, + 596 + ], + "score": 1.0, + "content": "is the number of words in the answer and", + "type": "text" + }, + { + "bbox": [ + 433, + 581, + 461, + 592 + ], + "score": 0.91, + "content": "k \\leq m", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 579, + 467, + 596 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36 + }, + { + "type": "title", + "bbox": [ + 108, + 606, + 445, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 448, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 448, + 619 + ], + "score": 1.0, + "content": "2.2 CONCEPTUAL ARCHITECTURE FOR MACHINE READING COMPREHENSION", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 628, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 505, + 640 + ], + "score": 1.0, + "content": "In all state-of-the-art architectures for machine reading comprehension, a recurring pattern is the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 639, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 505, + 650 + ], + "score": 1.0, + "content": "following process. Given two sets of vectors, A and B, we enhance or modify every single vector in", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "set A with the information from set B. We call this a fusion process, where set B is fused into set A.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "Fusion processes are commonly based on attention (Bahdanau et al., 2015), but some are not. Major", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 672, + 416, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 672, + 416, + 684 + ], + "score": 1.0, + "content": "improvements in recent MRC work lie in how the fusion process is designed.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 106, + 688, + 504, + 711 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 702 + ], + "score": 1.0, + "content": "A conceptual architecture illustrating state-of-the-art architectures is shown in Figure 2, which con-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 700, + 212, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 212, + 711 + ], + "score": 1.0, + "content": "sists of three components.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5 + }, + { + "type": "text", + "bbox": [ + 131, + 720, + 462, + 732 + ], + "lines": [ + { + "bbox": [ + 132, + 720, + 464, + 734 + ], + "spans": [ + { + "bbox": [ + 132, + 720, + 464, + 734 + ], + "score": 1.0, + "content": "• Input vectors: Embedding vectors for each word in the context and the question.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 48 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "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, + 159 + ], + "lines": [], + "index": 3, + "bbox_fs": [ + 105, + 83, + 506, + 162 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 165, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "However, the ability to consider all layers of representation is often limited by the difficulty to make", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 176, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 505, + 188 + ], + "score": 1.0, + "content": "the neural model learn well, as model complexity will surge beyond capacity. We conjectured this", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "score": 1.0, + "content": "is why previous literature tailored their models to only consider partial information. To alleviate", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 211 + ], + "score": 1.0, + "content": "this challenge, we identify an attention scoring function utilizing all layers of representation with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 210, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 505, + 222 + ], + "score": 1.0, + "content": "less training burden. This leads to an attention that thoroughly captures the complete information", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "score": 1.0, + "content": "between the question and the context. With this fully-aware attention, we put forward a multi-level", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "attention mechanism to understand the information in the question, and exploit it layer by layer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "on the context side. All of these innovations are integrated into a new end-to-end structure called", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 341, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 341, + 264 + ], + "score": 1.0, + "content": "FusionNet in Figure 4, with details described in Section 3.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 165, + 506, + 264 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 269, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "We submitted FusionNet to SQuAD (Rajpurkar et al., 2016), a machine reading comprehension", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 281, + 504, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 504, + 292 + ], + "score": 1.0, + "content": "dataset. At the time of writing (Oct. 4th, 2017), our model ranked in the first place in both single", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 291, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 506, + 304 + ], + "score": 1.0, + "content": "model and ensemble model categories. The ensemble model achieves an exact match (EM) score of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 134, + 313 + ], + "score": 0.87, + "content": "78 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 302, + 200, + 315 + ], + "score": 1.0, + "content": "and F1 score of", + "type": "text" + }, + { + "bbox": [ + 200, + 303, + 227, + 313 + ], + "score": 0.88, + "content": "8 5 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 302, + 505, + 315 + ], + "score": 1.0, + "content": ". Furthermore, we have tested FusionNet against adversarial SQuAD", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "datasets (Jia & Liang, 2017). Results show that FusionNet outperforms existing state-of-the-art ar-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 325, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 465, + 336 + ], + "score": 1.0, + "content": "chitectures in both datasets: on AddSent, FusionNet increases the best F1 metric from", + "type": "text" + }, + { + "bbox": [ + 465, + 325, + 493, + 335 + ], + "score": 0.87, + "content": "4 6 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 325, + 505, + 336 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 334, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 133, + 347 + ], + "score": 0.87, + "content": "5 1 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 334, + 371, + 349 + ], + "score": 1.0, + "content": "; on AddOneSent, FusionNet boosts the best F1 metric from", + "type": "text" + }, + { + "bbox": [ + 371, + 336, + 399, + 346 + ], + "score": 0.87, + "content": "5 6 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 334, + 409, + 349 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 410, + 336, + 437, + 346 + ], + "score": 0.86, + "content": "6 0 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 334, + 506, + 349 + ], + "score": 1.0, + "content": ". In Appendix D,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 347, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 359 + ], + "score": 1.0, + "content": "we also applied to natural language inference task and shown decent improvement. This demon-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 358, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 370 + ], + "score": 1.0, + "content": "strated the exceptional performance of FusionNet. An open-source implementation of FusionNet", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 369, + 426, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 426, + 380 + ], + "score": 1.0, + "content": "can be found at https://github.com/momohuang/FusionNet-NLI.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 270, + 506, + 380 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 397, + 424, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 426, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 426, + 411 + ], + "score": 1.0, + "content": "2 MACHINE COMPREHENSION & FULLY-AWARE ATTENTION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 505, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "In this section, we briefly introduce the task of machine comprehension as well as a conceptual ar-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "chitecture that summarizes recent advances in machine reading comprehension. Then, we introduce", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "a novel concept called history-of-word. History-of-word can capture different levels of contextual", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "score": 1.0, + "content": "information to fully understand the text. Finally, a light-weight implementation for history-of-word,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 466, + 252, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 252, + 479 + ], + "score": 1.0, + "content": "Fully-Aware Attention, is proposed.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 422, + 505, + 479 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 492, + 216, + 503 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 217, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 217, + 504 + ], + "score": 1.0, + "content": "2.1 TASK DESCRIPTION", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 505, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 505, + 526 + ], + "score": 1.0, + "content": "In machine comprehension, given a context and a question, the machine needs to read and under-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "stand the context, and then find the answer to the question. The context is described as a sequence", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 533, + 507, + 552 + ], + "spans": [ + { + "bbox": [ + 104, + 533, + 177, + 552 + ], + "score": 1.0, + "content": "of word tokens:", + "type": "text" + }, + { + "bbox": [ + 178, + 536, + 267, + 549 + ], + "score": 0.93, + "content": "C ~ = ~ \\{ w _ { 1 } ^ { C } , \\ldots , w _ { m } ^ { C } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 533, + 361, + 552 + ], + "score": 1.0, + "content": ", and the question as:", + "type": "text" + }, + { + "bbox": [ + 361, + 535, + 450, + 549 + ], + "score": 0.93, + "content": "\\textit { \\textbf { Q } } = \\ \\{ w _ { 1 } ^ { Q } , \\ldots , w _ { n } ^ { Q } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 533, + 483, + 552 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 483, + 538, + 493, + 547 + ], + "score": 0.74, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 533, + 507, + 552 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 277, + 560 + ], + "score": 1.0, + "content": "the number of words in the context, and", + "type": "text" + }, + { + "bbox": [ + 278, + 550, + 285, + 558 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "is the number of words in the question. In general,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 558, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 139, + 569 + ], + "score": 0.87, + "content": "m \\gg n", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 558, + 506, + 571 + ], + "score": 1.0, + "content": ". The answer Ans can have different forms depending on the task. In the SQuAD dataset", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 569, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 491, + 582 + ], + "score": 1.0, + "content": "(Rajpurkar et al., 2016), the answer Ans is guaranteed to be a contiguous span in the context", + "type": "text" + }, + { + "bbox": [ + 491, + 570, + 501, + 579 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 569, + 505, + 582 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 579, + 467, + 596 + ], + "spans": [ + { + "bbox": [ + 104, + 579, + 126, + 596 + ], + "score": 1.0, + "content": "e.g.,", + "type": "text" + }, + { + "bbox": [ + 126, + 580, + 227, + 594 + ], + "score": 0.93, + "content": "\\mathbf { A n s } = \\{ w _ { i } ^ { C } , \\dots , w _ { i + k } ^ { C } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 579, + 257, + 596 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 258, + 581, + 264, + 591 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 579, + 432, + 596 + ], + "score": 1.0, + "content": "is the number of words in the answer and", + "type": "text" + }, + { + "bbox": [ + 433, + 581, + 461, + 592 + ], + "score": 0.91, + "content": "k \\leq m", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 579, + 467, + 596 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36, + "bbox_fs": [ + 104, + 512, + 507, + 596 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 606, + 445, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 448, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 448, + 619 + ], + "score": 1.0, + "content": "2.2 CONCEPTUAL ARCHITECTURE FOR MACHINE READING COMPREHENSION", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 628, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 505, + 640 + ], + "score": 1.0, + "content": "In all state-of-the-art architectures for machine reading comprehension, a recurring pattern is the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 639, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 505, + 650 + ], + "score": 1.0, + "content": "following process. Given two sets of vectors, A and B, we enhance or modify every single vector in", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "set A with the information from set B. We call this a fusion process, where set B is fused into set A.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "Fusion processes are commonly based on attention (Bahdanau et al., 2015), but some are not. Major", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 672, + 416, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 672, + 416, + 684 + ], + "score": 1.0, + "content": "improvements in recent MRC work lie in how the fusion process is designed.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 628, + 505, + 684 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 688, + 504, + 711 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 702 + ], + "score": 1.0, + "content": "A conceptual architecture illustrating state-of-the-art architectures is shown in Figure 2, which con-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 700, + 212, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 212, + 711 + ], + "score": 1.0, + "content": "sists of three components.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 687, + 505, + 711 + ] + }, + { + "type": "text", + "bbox": [ + 131, + 720, + 462, + 732 + ], + "lines": [ + { + "bbox": [ + 132, + 720, + 464, + 734 + ], + "spans": [ + { + "bbox": [ + 132, + 720, + 464, + 734 + ], + "score": 1.0, + "content": "• Input vectors: Embedding vectors for each word in the context and the question.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 48, + "bbox_fs": [ + 132, + 720, + 464, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 95, + 507, + 245 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 95, + 507, + 245 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 95, + 507, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 507, + 245 + ], + "score": 0.648, + "type": "image", + "image_path": "ef53a9d62835839db03dd60fa5bf44c53d378371d9b1d0cebb4360838ecc5ed3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 95, + 507, + 145.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 145.0, + 507, + 195.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 195.0, + 507, + 245.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 252, + 346, + 275 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 251, + 347, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 347, + 265 + ], + "score": 1.0, + "content": "Table 1: A summarized view on the fusion processes used", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 263, + 264, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 264, + 275 + ], + "score": 1.0, + "content": "in several state-of-the-art architectures.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.0 + }, + { + "type": "image_caption", + "bbox": [ + 349, + 252, + 506, + 275 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 349, + 253, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 349, + 253, + 506, + 264 + ], + "score": 1.0, + "content": "Figure 2: A conceptual architecture il-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 349, + 264, + 492, + 275 + ], + "spans": [ + { + "bbox": [ + 349, + 264, + 492, + 275 + ], + "score": 1.0, + "content": "lustrating recent advances in MRC.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.0 + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 131, + 296, + 505, + 345 + ], + "lines": [ + { + "bbox": [ + 133, + 296, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 133, + 296, + 505, + 309 + ], + "score": 1.0, + "content": "• Integration components: The rectangular box. It is usually implemented using an RNN", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 307, + 473, + 320 + ], + "spans": [ + { + "bbox": [ + 141, + 307, + 473, + 320 + ], + "score": 1.0, + "content": "such as an LSTM (Hochreiter & Schmidhuber, 1997) or a GRU (Cho et al., 2014).", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 131, + 321, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 131, + 321, + 380, + 336 + ], + "score": 1.0, + "content": "• Fusion processes: The numbered arrows (1), (2), (2’), (3),", + "type": "text" + }, + { + "bbox": [ + 380, + 322, + 395, + 334 + ], + "score": 0.42, + "content": "( 3 ^ { \\circ } )", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 321, + 505, + 336 + ], + "score": 1.0, + "content": ". The set pointing outward", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 333, + 292, + 346 + ], + "spans": [ + { + "bbox": [ + 141, + 333, + 292, + 346 + ], + "score": 1.0, + "content": "is fused into the set being pointed to.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 108, + 354, + 504, + 376 + ], + "lines": [ + { + "bbox": [ + 107, + 354, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 107, + 354, + 505, + 366 + ], + "score": 1.0, + "content": "There are three main types of fusion processes in recent advanced architectures. Table 1 shows what", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 365, + 501, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 501, + 377 + ], + "score": 1.0, + "content": "fusion processes are used in different state-of-the-art architectures. We now discuss them in detail.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 107, + 382, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 395 + ], + "score": 1.0, + "content": "(1) Word-level fusion. By providing the direct word information in question to the context, we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 393, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 406 + ], + "score": 1.0, + "content": "can quickly zoom in to more related regions in the context. However, it may not be helpful if a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 403, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 505, + 415 + ], + "score": 1.0, + "content": "word has different semantic meaning based on the context. Many word-level fusions are not based", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 415, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 428 + ], + "score": 1.0, + "content": "on attention, e.g., (Hu et al., 2017; Chen et al., 2017a) appends binary features to context words,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 425, + 355, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 355, + 439 + ], + "score": 1.0, + "content": "indicating whether each context word appears in the question.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "(2) High-level fusion. Informing the context about the semantic information in the question could", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "help us find the correct answer. But high-level information is more imprecise than word information,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 465, + 316, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 316, + 477 + ], + "score": 1.0, + "content": "which may cause models to be less aware of details.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 108, + 481, + 503, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 461, + 495 + ], + "score": 1.0, + "content": "(2’) High-level fusion (Alternative). Similarly, we could also fuse high-level concept of", + "type": "text" + }, + { + "bbox": [ + 462, + 482, + 471, + 493 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 480, + 505, + 495 + ], + "score": 1.0, + "content": "into the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 492, + 177, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 162, + 504 + ], + "score": 1.0, + "content": "word-level of", + "type": "text" + }, + { + "bbox": [ + 163, + 493, + 172, + 503 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 492, + 177, + 504 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 510, + 505, + 554 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "score": 1.0, + "content": "(3) Self-boosted fusion. Since the context can be long and distant parts of text may rely on each", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "other to fully understand the content, recent advances have proposed to fuse the context into itself.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 532, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 544 + ], + "score": 1.0, + "content": "As the context contains excessive information, one common choice is to perform self-boosted fusion", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 542, + 501, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 205, + 555 + ], + "score": 1.0, + "content": "after fusing the question", + "type": "text" + }, + { + "bbox": [ + 205, + 543, + 216, + 554 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 542, + 501, + 555 + ], + "score": 1.0, + "content": ". This allows us to be more aware of the regions related to the question.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 559, + 505, + 593 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "(3’) Self-boosted fusion (Alternative). Another choice is to directly condition the self-boosted", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 235, + 583 + ], + "score": 1.0, + "content": "fusion process on the question", + "type": "text" + }, + { + "bbox": [ + 235, + 570, + 245, + 582 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 570, + 505, + 583 + ], + "score": 1.0, + "content": ", such as the coattention mechanism proposed in (Xiong et al.,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 581, + 445, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 445, + 594 + ], + "score": 1.0, + "content": "2017). Then we can perform self-boosted fusion before fusing question information.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 598, + 505, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 504, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 504, + 611 + ], + "score": 1.0, + "content": "A common trait of existing fusion mechanisms is that none of them employs all levels of represen-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "tation jointly. In the following, we claim that employing all levels of representation is crucial to", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 619, + 251, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 251, + 634 + ], + "score": 1.0, + "content": "achieving better text understanding.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "title", + "bbox": [ + 107, + 645, + 347, + 657 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 348, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 348, + 658 + ], + "score": 1.0, + "content": "2.3 FULLY-AWARE ATTENTION ON HISTORY OF WORD", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "Consider the illustration shown in Figure 3. As we read through the context, each input word will", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "gradually transform into a more abstract representation, e.g., from low-level to high-level concepts.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "Altogether, they form the history of each word in our mental flow. For a human, we utilize the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "history-of-word so frequently but we often neglect its importance. For example, to answer the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "question in Figure 3 correctly, we need to focus on both the high-level concept of forms the border", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "and the word-level information of Alpine Rhine. If we focus only on the high-level concepts, we will", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 95, + 507, + 245 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 95, + 507, + 245 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 95, + 507, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 507, + 245 + ], + "score": 0.648, + "type": "image", + "image_path": "ef53a9d62835839db03dd60fa5bf44c53d378371d9b1d0cebb4360838ecc5ed3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 95, + 507, + 145.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 145.0, + 507, + 195.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 195.0, + 507, + 245.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 252, + 346, + 275 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 251, + 347, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 347, + 265 + ], + "score": 1.0, + "content": "Table 1: A summarized view on the fusion processes used", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 263, + 264, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 264, + 275 + ], + "score": 1.0, + "content": "in several state-of-the-art architectures.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.0 + }, + { + "type": "image_caption", + "bbox": [ + 349, + 252, + 506, + 275 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 349, + 253, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 349, + 253, + 506, + 264 + ], + "score": 1.0, + "content": "Figure 2: A conceptual architecture il-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 349, + 264, + 492, + 275 + ], + "spans": [ + { + "bbox": [ + 349, + 264, + 492, + 275 + ], + "score": 1.0, + "content": "lustrating recent advances in MRC.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.0 + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 131, + 296, + 505, + 345 + ], + "lines": [ + { + "bbox": [ + 133, + 296, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 133, + 296, + 505, + 309 + ], + "score": 1.0, + "content": "• Integration components: The rectangular box. It is usually implemented using an RNN", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 307, + 473, + 320 + ], + "spans": [ + { + "bbox": [ + 141, + 307, + 473, + 320 + ], + "score": 1.0, + "content": "such as an LSTM (Hochreiter & Schmidhuber, 1997) or a GRU (Cho et al., 2014).", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 131, + 321, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 131, + 321, + 380, + 336 + ], + "score": 1.0, + "content": "• Fusion processes: The numbered arrows (1), (2), (2’), (3),", + "type": "text" + }, + { + "bbox": [ + 380, + 322, + 395, + 334 + ], + "score": 0.42, + "content": "( 3 ^ { \\circ } )", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 321, + 505, + 336 + ], + "score": 1.0, + "content": ". The set pointing outward", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 333, + 292, + 346 + ], + "spans": [ + { + "bbox": [ + 141, + 333, + 292, + 346 + ], + "score": 1.0, + "content": "is fused into the set being pointed to.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 131, + 296, + 505, + 346 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 354, + 504, + 376 + ], + "lines": [ + { + "bbox": [ + 107, + 354, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 107, + 354, + 505, + 366 + ], + "score": 1.0, + "content": "There are three main types of fusion processes in recent advanced architectures. Table 1 shows what", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 365, + 501, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 501, + 377 + ], + "score": 1.0, + "content": "fusion processes are used in different state-of-the-art architectures. We now discuss them in detail.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 354, + 505, + 377 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 382, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 395 + ], + "score": 1.0, + "content": "(1) Word-level fusion. By providing the direct word information in question to the context, we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 393, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 406 + ], + "score": 1.0, + "content": "can quickly zoom in to more related regions in the context. However, it may not be helpful if a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 403, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 505, + 415 + ], + "score": 1.0, + "content": "word has different semantic meaning based on the context. Many word-level fusions are not based", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 415, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 428 + ], + "score": 1.0, + "content": "on attention, e.g., (Hu et al., 2017; Chen et al., 2017a) appends binary features to context words,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 425, + 355, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 355, + 439 + ], + "score": 1.0, + "content": "indicating whether each context word appears in the question.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 381, + 506, + 439 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "(2) High-level fusion. Informing the context about the semantic information in the question could", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "help us find the correct answer. But high-level information is more imprecise than word information,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 465, + 316, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 316, + 477 + ], + "score": 1.0, + "content": "which may cause models to be less aware of details.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 443, + 505, + 477 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 481, + 503, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 461, + 495 + ], + "score": 1.0, + "content": "(2’) High-level fusion (Alternative). Similarly, we could also fuse high-level concept of", + "type": "text" + }, + { + "bbox": [ + 462, + 482, + 471, + 493 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 480, + 505, + 495 + ], + "score": 1.0, + "content": "into the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 492, + 177, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 162, + 504 + ], + "score": 1.0, + "content": "word-level of", + "type": "text" + }, + { + "bbox": [ + 163, + 493, + 172, + 503 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 492, + 177, + 504 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 480, + 505, + 504 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 510, + 505, + 554 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "score": 1.0, + "content": "(3) Self-boosted fusion. Since the context can be long and distant parts of text may rely on each", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "other to fully understand the content, recent advances have proposed to fuse the context into itself.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 532, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 544 + ], + "score": 1.0, + "content": "As the context contains excessive information, one common choice is to perform self-boosted fusion", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 542, + 501, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 205, + 555 + ], + "score": 1.0, + "content": "after fusing the question", + "type": "text" + }, + { + "bbox": [ + 205, + 543, + 216, + 554 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 542, + 501, + 555 + ], + "score": 1.0, + "content": ". This allows us to be more aware of the regions related to the question.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 509, + 506, + 555 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 559, + 505, + 593 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "(3’) Self-boosted fusion (Alternative). Another choice is to directly condition the self-boosted", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 235, + 583 + ], + "score": 1.0, + "content": "fusion process on the question", + "type": "text" + }, + { + "bbox": [ + 235, + 570, + 245, + 582 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 570, + 505, + 583 + ], + "score": 1.0, + "content": ", such as the coattention mechanism proposed in (Xiong et al.,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 581, + 445, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 445, + 594 + ], + "score": 1.0, + "content": "2017). Then we can perform self-boosted fusion before fusing question information.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 559, + 505, + 594 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 598, + 505, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 504, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 504, + 611 + ], + "score": 1.0, + "content": "A common trait of existing fusion mechanisms is that none of them employs all levels of represen-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "tation jointly. In the following, we claim that employing all levels of representation is crucial to", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 619, + 251, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 251, + 634 + ], + "score": 1.0, + "content": "achieving better text understanding.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 597, + 505, + 634 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 645, + 347, + 657 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 348, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 348, + 658 + ], + "score": 1.0, + "content": "2.3 FULLY-AWARE ATTENTION ON HISTORY OF WORD", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "Consider the illustration shown in Figure 3. As we read through the context, each input word will", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "gradually transform into a more abstract representation, e.g., from low-level to high-level concepts.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "Altogether, they form the history of each word in our mental flow. For a human, we utilize the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "history-of-word so frequently but we often neglect its importance. For example, to answer the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "question in Figure 3 correctly, we need to focus on both the high-level concept of forms the border", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "and the word-level information of Alpine Rhine. If we focus only on the high-level concepts, we will", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 666, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 113, + 87, + 276, + 155 + ], + "lines": [ + { + "bbox": [ + 113, + 87, + 271, + 97 + ], + "spans": [ + { + "bbox": [ + 113, + 87, + 271, + 97 + ], + "score": 1.0, + "content": "Context: The Alpine Rhine is part of the Rhine, a", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 113, + 96, + 271, + 107 + ], + "spans": [ + { + "bbox": [ + 113, + 96, + 271, + 107 + ], + "score": 1.0, + "content": "famous European river. The Alpine Rhine begins", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 113, + 106, + 265, + 117 + ], + "spans": [ + { + "bbox": [ + 113, + 106, + 265, + 117 + ], + "score": 1.0, + "content": "in the most western part of the Swiss canton of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 116, + 276, + 126 + ], + "spans": [ + { + "bbox": [ + 114, + 116, + 276, + 126 + ], + "score": 1.0, + "content": "Graubünden, and later forms the border between", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 114, + 126, + 265, + 135 + ], + "spans": [ + { + "bbox": [ + 114, + 126, + 265, + 135 + ], + "score": 1.0, + "content": "Switzerland to the West and Liechtenstein and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 136, + 267, + 145 + ], + "spans": [ + { + "bbox": [ + 114, + 136, + 267, + 145 + ], + "score": 1.0, + "content": "later Austria to the East. On the other hand, the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 113, + 145, + 247, + 155 + ], + "spans": [ + { + "bbox": [ + 113, + 145, + 247, + 155 + ], + "score": 1.0, + "content": "Danube separates Romania and Bulgaria.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 114, + 160, + 263, + 179 + ], + "lines": [ + { + "bbox": [ + 114, + 159, + 262, + 170 + ], + "spans": [ + { + "bbox": [ + 114, + 159, + 262, + 170 + ], + "score": 1.0, + "content": "Question: What is the other country the Rhine", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 170, + 196, + 178 + ], + "spans": [ + { + "bbox": [ + 114, + 170, + 196, + 178 + ], + "score": 1.0, + "content": "separates Switzerland to?", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 114, + 184, + 189, + 193 + ], + "lines": [ + { + "bbox": [ + 114, + 183, + 189, + 194 + ], + "spans": [ + { + "bbox": [ + 114, + 183, + 189, + 194 + ], + "score": 1.0, + "content": "Answer: Liechtenstein", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "image", + "bbox": [ + 280, + 82, + 500, + 194 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 280, + 82, + 500, + 194 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 280, + 82, + 500, + 194 + ], + "spans": [ + { + "bbox": [ + 280, + 82, + 500, + 194 + ], + "score": 0.814, + "type": "image", + "image_path": "d3b58b3a8ba2ca6de01ca0430c65b35e60ff963f937f77dd27b865c4cf91802f.jpg" + } + ] + } + ], + "index": 13.5, + "virtual_lines": [ + { + "bbox": [ + 280, + 82, + 500, + 96.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 280, + 96.0, + 500, + 110.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 280, + 110.0, + 500, + 124.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 280, + 124.0, + 500, + 138.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 280, + 138.0, + 500, + 152.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 280, + 152.0, + 500, + 166.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 280, + 166.0, + 500, + 180.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 280, + 180.0, + 500, + 194.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 208, + 502, + 231 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 207, + 504, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 504, + 222 + ], + "score": 1.0, + "content": "Figure 3: Illustrations of the history-of-word for the example shown in Figure 1. Utilizing the entire", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 218, + 374, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 374, + 232 + ], + "score": 1.0, + "content": "history-of-word is crucial for the full understanding of the context.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + } + ], + "index": 16.0 + }, + { + "type": "text", + "bbox": [ + 105, + 249, + 504, + 271 + ], + "lines": [ + { + "bbox": [ + 106, + 249, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 505, + 261 + ], + "score": 1.0, + "content": "confuse Alpine Rhine with Danube since both are European rivers that separate countries. Therefore", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 259, + 457, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 457, + 273 + ], + "score": 1.0, + "content": "we hypothesize that the entire history-of-word is important to fully understand the text.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 276, + 505, + 332 + ], + "lines": [ + { + "bbox": [ + 106, + 276, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 319, + 290 + ], + "score": 1.0, + "content": "In neural architectures, we define the history of the", + "type": "text" + }, + { + "bbox": [ + 320, + 278, + 324, + 287 + ], + "score": 0.66, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 276, + 363, + 290 + ], + "score": 1.0, + "content": "-th word,", + "type": "text" + }, + { + "bbox": [ + 364, + 277, + 391, + 288 + ], + "score": 0.9, + "content": "\\mathrm { H o W } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 276, + 506, + 290 + ], + "score": 1.0, + "content": ", to be the concatenation of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 288, + 504, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 504, + 300 + ], + "score": 1.0, + "content": "all the representations generated for this word. This may include word embedding, multiple inter-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 298, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 506, + 312 + ], + "score": 1.0, + "content": "mediate and output hidden vectors in RNN, and corresponding representation vectors in any further", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 308, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 505, + 323 + ], + "score": 1.0, + "content": "layers. To incorporate history-of-word into a wide range of neural models, we present a lightweight", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 320, + 296, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 296, + 334 + ], + "score": 1.0, + "content": "implementation we call Fully-Aware Attention.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 337, + 506, + 389 + ], + "lines": [ + { + "bbox": [ + 106, + 337, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 505, + 350 + ], + "score": 1.0, + "content": "Attention can be applied to different scenarios. To be more conclusive, we focus on attention applied", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 102, + 348, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 102, + 348, + 191, + 380 + ], + "score": 1.0, + "content": "to fusing informatiotext bodies A and B:", + "type": "text" + }, + { + "bbox": [ + 191, + 359, + 251, + 373 + ], + "score": 0.91, + "content": "\\{ h _ { 1 } ^ { A } , \\ldots , h _ { m } ^ { A } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 348, + 258, + 380 + ], + "score": 1.0, + "content": "y,", + "type": "text" + }, + { + "bbox": [ + 258, + 359, + 344, + 373 + ], + "score": 0.92, + "content": "\\{ h _ { 1 } ^ { B } , \\ldots , h _ { n } ^ { B } \\} \\subset \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 348, + 505, + 380 + ], + "score": 1.0, + "content": "two sets of hidden vectors for words in. Their associated history-of-word are,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 192, + 374, + 416, + 389 + ], + "spans": [ + { + "bbox": [ + 192, + 374, + 416, + 389 + ], + "score": 0.43, + "content": "\\{ \\mathrm { H o W } _ { 1 } ^ { A } , \\dots , \\mathrm { H o W } _ { m } ^ { A } \\} , ~ \\{ \\mathrm { H o W } _ { 1 } ^ { B } , \\dots , \\mathrm { H o W } _ { n } ^ { B } \\} \\subset \\mathbb { R } ^ { d _ { h } } ,", + "type": "inline_equation", + "image_path": "a4732faa6522b1b4ec87bcc816347a9a0343bcc7a017c8622365f58cdd05205b.jpg" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 105, + 392, + 488, + 404 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 489, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 133, + 406 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 392, + 166, + 403 + ], + "score": 0.9, + "content": "d _ { h } \\gg d", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 389, + 222, + 406 + ], + "score": 1.0, + "content": ". Fusing body", + "type": "text" + }, + { + "bbox": [ + 222, + 392, + 230, + 402 + ], + "score": 0.34, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 389, + 428, + 406 + ], + "score": 1.0, + "content": "to body A via standard attention means for every", + "type": "text" + }, + { + "bbox": [ + 428, + 390, + 442, + 404 + ], + "score": 0.91, + "content": " { \\boldsymbol { h } } _ { i } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 389, + 489, + 406 + ], + "score": 1.0, + "content": "in body A,", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 127, + 410, + 464, + 461 + ], + "lines": [ + { + "bbox": [ + 129, + 410, + 443, + 426 + ], + "spans": [ + { + "bbox": [ + 129, + 410, + 254, + 426 + ], + "score": 1.0, + "content": "1. Compute an attention score", + "type": "text" + }, + { + "bbox": [ + 254, + 411, + 347, + 426 + ], + "score": 0.94, + "content": "S _ { i j } = S ( \\pmb { h } _ { i } ^ { A } , \\pmb { h } _ { j } ^ { B } ) \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 410, + 382, + 426 + ], + "score": 1.0, + "content": "for each", + "type": "text" + }, + { + "bbox": [ + 383, + 411, + 397, + 426 + ], + "score": 0.91, + "content": "h _ { j } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 410, + 431, + 426 + ], + "score": 1.0, + "content": "in body", + "type": "text" + }, + { + "bbox": [ + 431, + 413, + 439, + 423 + ], + "score": 0.32, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 410, + 443, + 426 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 128, + 426, + 464, + 442 + ], + "spans": [ + { + "bbox": [ + 128, + 426, + 248, + 442 + ], + "score": 1.0, + "content": "2. Form the attention weight", + "type": "text" + }, + { + "bbox": [ + 248, + 429, + 262, + 441 + ], + "score": 0.89, + "content": "\\alpha _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 426, + 335, + 442 + ], + "score": 1.0, + "content": "through softmax:", + "type": "text" + }, + { + "bbox": [ + 335, + 428, + 460, + 441 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\alpha _ { i j } = \\exp ( S _ { i j } ) / \\sum _ { k } \\exp ( S _ { i k } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 426, + 464, + 442 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 127, + 443, + 423, + 463 + ], + "spans": [ + { + "bbox": [ + 127, + 444, + 194, + 463 + ], + "score": 1.0, + "content": "3. Concatenate", + "type": "text" + }, + { + "bbox": [ + 194, + 446, + 208, + 459 + ], + "score": 0.91, + "content": " { \\boldsymbol { h } } _ { i } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 444, + 347, + 463 + ], + "score": 1.0, + "content": "with the summarized information,", + "type": "text" + }, + { + "bbox": [ + 348, + 443, + 419, + 461 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\hat { \\pmb { h } } _ { i } ^ { A } = \\sum _ { j } \\alpha _ { i j } \\pmb { h } _ { j } ^ { B } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 444, + 423, + 463 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 104, + 467, + 465, + 479 + ], + "lines": [ + { + "bbox": [ + 104, + 466, + 467, + 481 + ], + "spans": [ + { + "bbox": [ + 104, + 466, + 467, + 481 + ], + "score": 1.0, + "content": "In fully-aware attention, we replace attention score computation with the history-of-word.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 480, + 380, + 496 + ], + "lines": [ + { + "bbox": [ + 227, + 480, + 380, + 496 + ], + "spans": [ + { + "bbox": [ + 227, + 480, + 380, + 496 + ], + "score": 0.82, + "content": "S ( h _ { i } ^ { A } , h _ { j } ^ { B } ) \\implies S ( \\mathrm { H o W } _ { i } ^ { A } , \\mathrm { H o W } _ { j } ^ { B } ) .", + "type": "interline_equation", + "image_path": "8f754747bf68aa99deea077be3cd6b21b01eee49ec5f520f0d6c69357909b636.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 227, + 480, + 380, + 496 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 497, + 504, + 530 + ], + "lines": [ + { + "bbox": [ + 106, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "This allows us to be fully aware of the complete understanding of each word. The ablation study in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 507, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 519 + ], + "score": 1.0, + "content": "Section 4.4 demonstrates that this lightweight enhancement offers a decent improvement in perfor-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 519, + 138, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 138, + 531 + ], + "score": 1.0, + "content": "mance.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 105, + 535, + 504, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 533, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 468, + 549 + ], + "score": 1.0, + "content": "To fully utilize history-of-word in attention, we need a suitable attention scoring function", + "type": "text" + }, + { + "bbox": [ + 469, + 535, + 501, + 547 + ], + "score": 0.92, + "content": "S ( { \\pmb x } , { \\pmb y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 533, + 505, + 549 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 544, + 491, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 401, + 560 + ], + "score": 1.0, + "content": "A commonly used function is multiplicative attention (Britz et al., 2017):", + "type": "text" + }, + { + "bbox": [ + 401, + 545, + 444, + 558 + ], + "score": 0.9, + "content": "\\pmb { x } ^ { T } \\pmb { U } ^ { T } \\pmb { V } \\pmb { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 544, + 491, + 560 + ], + "score": 1.0, + "content": ", leading to", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "interline_equation", + "bbox": [ + 238, + 559, + 371, + 575 + ], + "lines": [ + { + "bbox": [ + 238, + 559, + 371, + 575 + ], + "spans": [ + { + "bbox": [ + 238, + 559, + 371, + 575 + ], + "score": 0.92, + "content": "\\begin{array} { r } { S _ { i j } = ( \\mathrm { H o W } _ { i } ^ { A } ) ^ { T } U ^ { T } V ( \\mathrm { H o W } _ { j } ^ { B } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "e01cb8af491fe3abe8c117ad5a86b394bd740741198cac28d6b2c308c41f6ef1.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 238, + 559, + 371, + 575 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 620 + ], + "lines": [ + { + "bbox": [ + 105, + 575, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 135, + 590 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 576, + 199, + 588 + ], + "score": 0.91, + "content": "U , V ~ \\in ~ \\mathbb { R } ^ { k \\times d _ { h } }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 575, + 223, + 590 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 223, + 578, + 230, + 587 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 575, + 505, + 590 + ], + "score": 1.0, + "content": "is the attention hidden size. However, we suspect that two large", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "score": 1.0, + "content": "matrices interacting directly will make the neural model harder to train. Therefore we propose to", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 190, + 611 + ], + "score": 1.0, + "content": "constrain the matrix", + "type": "text" + }, + { + "bbox": [ + 191, + 599, + 214, + 609 + ], + "score": 0.92, + "content": "U ^ { T } V", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 599, + 505, + 611 + ], + "score": 1.0, + "content": "to be symmetric. A symmetric matrix can always be decomposed into", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 608, + 162, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 138, + 620 + ], + "score": 0.9, + "content": "U ^ { T } D U", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 608, + 162, + 623 + ], + "score": 1.0, + "content": ", thus", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43.5 + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 618, + 376, + 635 + ], + "lines": [ + { + "bbox": [ + 234, + 618, + 376, + 635 + ], + "spans": [ + { + "bbox": [ + 234, + 618, + 376, + 635 + ], + "score": 0.92, + "content": "\\begin{array} { r } { S _ { i j } = ( \\mathrm { H o W } _ { i } ^ { A } ) ^ { T } U ^ { T } D U ( \\mathrm { H o W } _ { j } ^ { B } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "b5ead9f5bb6b356668e104a50bcd1d982c4e29334a47948b75e3b3b7c14fb1ce.jpg" + } + ] + } + ], + "index": 46, + "virtual_lines": [ + { + "bbox": [ + 234, + 618, + 376, + 635 + ], + "spans": [], + "index": 46 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 635, + 505, + 681 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 133, + 649 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 635, + 181, + 646 + ], + "score": 0.87, + "content": "U \\in \\mathbb { R } ^ { k \\times d _ { h } }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 633, + 185, + 649 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 185, + 635, + 229, + 646 + ], + "score": 0.87, + "content": "D \\in \\mathbb { R } ^ { k \\times k }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 633, + 247, + 649 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 247, + 636, + 257, + 646 + ], + "score": 0.84, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 633, + 506, + 649 + ], + "score": 1.0, + "content": "is a diagonal matrix. The symmetric form retains the ability to", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 102, + 645, + 507, + 662 + ], + "spans": [ + { + "bbox": [ + 102, + 645, + 287, + 662 + ], + "score": 1.0, + "content": "give high attention score between dissimilar", + "type": "text" + }, + { + "bbox": [ + 287, + 646, + 351, + 661 + ], + "score": 0.54, + "content": "\\mathrm { \\bar { H } o W } _ { i } ^ { A } , \\mathrm { H o W } _ { j } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 645, + 507, + 662 + ], + "score": 1.0, + "content": ". Additionally, we marry nonlinearity", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 659, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 672 + ], + "score": 1.0, + "content": "with the symmetric form to provide richer interaction among different parts of the history-of-word.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 669, + 278, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 278, + 682 + ], + "score": 1.0, + "content": "The final formulation for attention score is", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 48.5 + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 681, + 387, + 697 + ], + "lines": [ + { + "bbox": [ + 222, + 681, + 387, + 697 + ], + "spans": [ + { + "bbox": [ + 222, + 681, + 387, + 697 + ], + "score": 0.91, + "content": "S _ { i j } = f ( U ( \\mathrm { H o W } _ { i } ^ { A } ) ) ^ { T } D ~ f ( U ( \\mathrm { H o W } _ { j } ^ { B } ) ) ,", + "type": "interline_equation", + "image_path": "82ab4e2788c5f3d7d10613ad43f37e3f3850b709a609d4a3926df5ac3fa925b3.jpg" + } + ] + } + ], + "index": 51, + "virtual_lines": [ + { + "bbox": [ + 222, + 681, + 387, + 697 + ], + "spans": [], + "index": 51 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 134, + 712 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 699, + 155, + 710 + ], + "score": 0.88, + "content": "f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "is an activation function applied element-wise. In the following context, we employ", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 184, + 722 + ], + "score": 0.89, + "content": "f ( x ) = \\operatorname* { m a x } ( 0 , x )", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 709, + 505, + 723 + ], + "score": 1.0, + "content": ". A detailed ablation study in Section 4 demonstrates its advantage over many", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 720, + 158, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 158, + 733 + ], + "score": 1.0, + "content": "alternatives.", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 53 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "4", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 113, + 87, + 276, + 155 + ], + "lines": [ + { + "bbox": [ + 113, + 87, + 271, + 97 + ], + "spans": [ + { + "bbox": [ + 113, + 87, + 271, + 97 + ], + "score": 1.0, + "content": "Context: The Alpine Rhine is part of the Rhine, a", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 113, + 96, + 271, + 107 + ], + "spans": [ + { + "bbox": [ + 113, + 96, + 271, + 107 + ], + "score": 1.0, + "content": "famous European river. The Alpine Rhine begins", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 113, + 106, + 265, + 117 + ], + "spans": [ + { + "bbox": [ + 113, + 106, + 265, + 117 + ], + "score": 1.0, + "content": "in the most western part of the Swiss canton of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 116, + 276, + 126 + ], + "spans": [ + { + "bbox": [ + 114, + 116, + 276, + 126 + ], + "score": 1.0, + "content": "Graubünden, and later forms the border between", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 114, + 126, + 265, + 135 + ], + "spans": [ + { + "bbox": [ + 114, + 126, + 265, + 135 + ], + "score": 1.0, + "content": "Switzerland to the West and Liechtenstein and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 136, + 267, + 145 + ], + "spans": [ + { + "bbox": [ + 114, + 136, + 267, + 145 + ], + "score": 1.0, + "content": "later Austria to the East. On the other hand, the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 113, + 145, + 247, + 155 + ], + "spans": [ + { + "bbox": [ + 113, + 145, + 247, + 155 + ], + "score": 1.0, + "content": "Danube separates Romania and Bulgaria.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3, + "bbox_fs": [ + 113, + 87, + 276, + 155 + ] + }, + { + "type": "text", + "bbox": [ + 114, + 160, + 263, + 179 + ], + "lines": [ + { + "bbox": [ + 114, + 159, + 262, + 170 + ], + "spans": [ + { + "bbox": [ + 114, + 159, + 262, + 170 + ], + "score": 1.0, + "content": "Question: What is the other country the Rhine", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 170, + 196, + 178 + ], + "spans": [ + { + "bbox": [ + 114, + 170, + 196, + 178 + ], + "score": 1.0, + "content": "separates Switzerland to?", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 114, + 159, + 262, + 178 + ] + }, + { + "type": "text", + "bbox": [ + 114, + 184, + 189, + 193 + ], + "lines": [ + { + "bbox": [ + 114, + 183, + 189, + 194 + ], + "spans": [ + { + "bbox": [ + 114, + 183, + 189, + 194 + ], + "score": 1.0, + "content": "Answer: Liechtenstein", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 114, + 183, + 189, + 194 + ] + }, + { + "type": "image", + "bbox": [ + 280, + 82, + 500, + 194 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 280, + 82, + 500, + 194 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 280, + 82, + 500, + 194 + ], + "spans": [ + { + "bbox": [ + 280, + 82, + 500, + 194 + ], + "score": 0.814, + "type": "image", + "image_path": "d3b58b3a8ba2ca6de01ca0430c65b35e60ff963f937f77dd27b865c4cf91802f.jpg" + } + ] + } + ], + "index": 13.5, + "virtual_lines": [ + { + "bbox": [ + 280, + 82, + 500, + 96.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 280, + 96.0, + 500, + 110.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 280, + 110.0, + 500, + 124.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 280, + 124.0, + 500, + 138.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 280, + 138.0, + 500, + 152.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 280, + 152.0, + 500, + 166.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 280, + 166.0, + 500, + 180.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 280, + 180.0, + 500, + 194.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 208, + 502, + 231 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 207, + 504, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 504, + 222 + ], + "score": 1.0, + "content": "Figure 3: Illustrations of the history-of-word for the example shown in Figure 1. Utilizing the entire", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 218, + 374, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 374, + 232 + ], + "score": 1.0, + "content": "history-of-word is crucial for the full understanding of the context.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + } + ], + "index": 16.0 + }, + { + "type": "text", + "bbox": [ + 105, + 249, + 504, + 271 + ], + "lines": [ + { + "bbox": [ + 106, + 249, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 505, + 261 + ], + "score": 1.0, + "content": "confuse Alpine Rhine with Danube since both are European rivers that separate countries. Therefore", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 259, + 457, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 457, + 273 + ], + "score": 1.0, + "content": "we hypothesize that the entire history-of-word is important to fully understand the text.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 249, + 505, + 273 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 276, + 505, + 332 + ], + "lines": [ + { + "bbox": [ + 106, + 276, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 319, + 290 + ], + "score": 1.0, + "content": "In neural architectures, we define the history of the", + "type": "text" + }, + { + "bbox": [ + 320, + 278, + 324, + 287 + ], + "score": 0.66, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 276, + 363, + 290 + ], + "score": 1.0, + "content": "-th word,", + "type": "text" + }, + { + "bbox": [ + 364, + 277, + 391, + 288 + ], + "score": 0.9, + "content": "\\mathrm { H o W } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 276, + 506, + 290 + ], + "score": 1.0, + "content": ", to be the concatenation of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 288, + 504, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 504, + 300 + ], + "score": 1.0, + "content": "all the representations generated for this word. This may include word embedding, multiple inter-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 298, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 506, + 312 + ], + "score": 1.0, + "content": "mediate and output hidden vectors in RNN, and corresponding representation vectors in any further", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 308, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 505, + 323 + ], + "score": 1.0, + "content": "layers. To incorporate history-of-word into a wide range of neural models, we present a lightweight", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 320, + 296, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 296, + 334 + ], + "score": 1.0, + "content": "implementation we call Fully-Aware Attention.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 276, + 506, + 334 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 337, + 506, + 389 + ], + "lines": [ + { + "bbox": [ + 106, + 337, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 505, + 350 + ], + "score": 1.0, + "content": "Attention can be applied to different scenarios. To be more conclusive, we focus on attention applied", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 102, + 348, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 102, + 348, + 191, + 380 + ], + "score": 1.0, + "content": "to fusing informatiotext bodies A and B:", + "type": "text" + }, + { + "bbox": [ + 191, + 359, + 251, + 373 + ], + "score": 0.91, + "content": "\\{ h _ { 1 } ^ { A } , \\ldots , h _ { m } ^ { A } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 348, + 258, + 380 + ], + "score": 1.0, + "content": "y,", + "type": "text" + }, + { + "bbox": [ + 258, + 359, + 344, + 373 + ], + "score": 0.92, + "content": "\\{ h _ { 1 } ^ { B } , \\ldots , h _ { n } ^ { B } \\} \\subset \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 348, + 505, + 380 + ], + "score": 1.0, + "content": "two sets of hidden vectors for words in. Their associated history-of-word are,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 192, + 374, + 416, + 389 + ], + "spans": [ + { + "bbox": [ + 192, + 374, + 416, + 389 + ], + "score": 0.43, + "content": "\\{ \\mathrm { H o W } _ { 1 } ^ { A } , \\dots , \\mathrm { H o W } _ { m } ^ { A } \\} , ~ \\{ \\mathrm { H o W } _ { 1 } ^ { B } , \\dots , \\mathrm { H o W } _ { n } ^ { B } \\} \\subset \\mathbb { R } ^ { d _ { h } } ,", + "type": "inline_equation", + "image_path": "a4732faa6522b1b4ec87bcc816347a9a0343bcc7a017c8622365f58cdd05205b.jpg" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 102, + 337, + 505, + 389 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 392, + 488, + 404 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 489, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 133, + 406 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 392, + 166, + 403 + ], + "score": 0.9, + "content": "d _ { h } \\gg d", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 389, + 222, + 406 + ], + "score": 1.0, + "content": ". Fusing body", + "type": "text" + }, + { + "bbox": [ + 222, + 392, + 230, + 402 + ], + "score": 0.34, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 389, + 428, + 406 + ], + "score": 1.0, + "content": "to body A via standard attention means for every", + "type": "text" + }, + { + "bbox": [ + 428, + 390, + 442, + 404 + ], + "score": 0.91, + "content": " { \\boldsymbol { h } } _ { i } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 389, + 489, + 406 + ], + "score": 1.0, + "content": "in body A,", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 389, + 489, + 406 + ] + }, + { + "type": "index", + "bbox": [ + 127, + 410, + 464, + 461 + ], + "lines": [ + { + "bbox": [ + 129, + 410, + 443, + 426 + ], + "spans": [ + { + "bbox": [ + 129, + 410, + 254, + 426 + ], + "score": 1.0, + "content": "1. Compute an attention score", + "type": "text" + }, + { + "bbox": [ + 254, + 411, + 347, + 426 + ], + "score": 0.94, + "content": "S _ { i j } = S ( \\pmb { h } _ { i } ^ { A } , \\pmb { h } _ { j } ^ { B } ) \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 410, + 382, + 426 + ], + "score": 1.0, + "content": "for each", + "type": "text" + }, + { + "bbox": [ + 383, + 411, + 397, + 426 + ], + "score": 0.91, + "content": "h _ { j } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 410, + 431, + 426 + ], + "score": 1.0, + "content": "in body", + "type": "text" + }, + { + "bbox": [ + 431, + 413, + 439, + 423 + ], + "score": 0.32, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 410, + 443, + 426 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 426, + 464, + 442 + ], + "spans": [ + { + "bbox": [ + 128, + 426, + 248, + 442 + ], + "score": 1.0, + "content": "2. Form the attention weight", + "type": "text" + }, + { + "bbox": [ + 248, + 429, + 262, + 441 + ], + "score": 0.89, + "content": "\\alpha _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 426, + 335, + 442 + ], + "score": 1.0, + "content": "through softmax:", + "type": "text" + }, + { + "bbox": [ + 335, + 428, + 460, + 441 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\alpha _ { i j } = \\exp ( S _ { i j } ) / \\sum _ { k } \\exp ( S _ { i k } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 426, + 464, + 442 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 443, + 423, + 463 + ], + "spans": [ + { + "bbox": [ + 127, + 444, + 194, + 463 + ], + "score": 1.0, + "content": "3. Concatenate", + "type": "text" + }, + { + "bbox": [ + 194, + 446, + 208, + 459 + ], + "score": 0.91, + "content": " { \\boldsymbol { h } } _ { i } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 444, + 347, + 463 + ], + "score": 1.0, + "content": "with the summarized information,", + "type": "text" + }, + { + "bbox": [ + 348, + 443, + 419, + 461 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\hat { \\pmb { h } } _ { i } ^ { A } = \\sum _ { j } \\alpha _ { i j } \\pmb { h } _ { j } ^ { B } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 444, + 423, + 463 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + } + ], + "index": 32, + "bbox_fs": [ + 127, + 410, + 464, + 463 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 467, + 465, + 479 + ], + "lines": [ + { + "bbox": [ + 104, + 466, + 467, + 481 + ], + "spans": [ + { + "bbox": [ + 104, + 466, + 467, + 481 + ], + "score": 1.0, + "content": "In fully-aware attention, we replace attention score computation with the history-of-word.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34, + "bbox_fs": [ + 104, + 466, + 467, + 481 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 480, + 380, + 496 + ], + "lines": [ + { + "bbox": [ + 227, + 480, + 380, + 496 + ], + "spans": [ + { + "bbox": [ + 227, + 480, + 380, + 496 + ], + "score": 0.82, + "content": "S ( h _ { i } ^ { A } , h _ { j } ^ { B } ) \\implies S ( \\mathrm { H o W } _ { i } ^ { A } , \\mathrm { H o W } _ { j } ^ { B } ) .", + "type": "interline_equation", + "image_path": "8f754747bf68aa99deea077be3cd6b21b01eee49ec5f520f0d6c69357909b636.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 227, + 480, + 380, + 496 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 497, + 504, + 530 + ], + "lines": [ + { + "bbox": [ + 106, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "This allows us to be fully aware of the complete understanding of each word. The ablation study in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 507, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 519 + ], + "score": 1.0, + "content": "Section 4.4 demonstrates that this lightweight enhancement offers a decent improvement in perfor-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 519, + 138, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 138, + 531 + ], + "score": 1.0, + "content": "mance.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 496, + 505, + 531 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 535, + 504, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 533, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 468, + 549 + ], + "score": 1.0, + "content": "To fully utilize history-of-word in attention, we need a suitable attention scoring function", + "type": "text" + }, + { + "bbox": [ + 469, + 535, + 501, + 547 + ], + "score": 0.92, + "content": "S ( { \\pmb x } , { \\pmb y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 533, + 505, + 549 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 544, + 491, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 401, + 560 + ], + "score": 1.0, + "content": "A commonly used function is multiplicative attention (Britz et al., 2017):", + "type": "text" + }, + { + "bbox": [ + 401, + 545, + 444, + 558 + ], + "score": 0.9, + "content": "\\pmb { x } ^ { T } \\pmb { U } ^ { T } \\pmb { V } \\pmb { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 544, + 491, + 560 + ], + "score": 1.0, + "content": ", leading to", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 533, + 505, + 560 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 238, + 559, + 371, + 575 + ], + "lines": [ + { + "bbox": [ + 238, + 559, + 371, + 575 + ], + "spans": [ + { + "bbox": [ + 238, + 559, + 371, + 575 + ], + "score": 0.92, + "content": "\\begin{array} { r } { S _ { i j } = ( \\mathrm { H o W } _ { i } ^ { A } ) ^ { T } U ^ { T } V ( \\mathrm { H o W } _ { j } ^ { B } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "e01cb8af491fe3abe8c117ad5a86b394bd740741198cac28d6b2c308c41f6ef1.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 238, + 559, + 371, + 575 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 620 + ], + "lines": [ + { + "bbox": [ + 105, + 575, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 135, + 590 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 576, + 199, + 588 + ], + "score": 0.91, + "content": "U , V ~ \\in ~ \\mathbb { R } ^ { k \\times d _ { h } }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 575, + 223, + 590 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 223, + 578, + 230, + 587 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 575, + 505, + 590 + ], + "score": 1.0, + "content": "is the attention hidden size. However, we suspect that two large", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "score": 1.0, + "content": "matrices interacting directly will make the neural model harder to train. Therefore we propose to", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 190, + 611 + ], + "score": 1.0, + "content": "constrain the matrix", + "type": "text" + }, + { + "bbox": [ + 191, + 599, + 214, + 609 + ], + "score": 0.92, + "content": "U ^ { T } V", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 599, + 505, + 611 + ], + "score": 1.0, + "content": "to be symmetric. A symmetric matrix can always be decomposed into", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 608, + 162, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 138, + 620 + ], + "score": 0.9, + "content": "U ^ { T } D U", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 608, + 162, + 623 + ], + "score": 1.0, + "content": ", thus", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 575, + 506, + 623 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 618, + 376, + 635 + ], + "lines": [ + { + "bbox": [ + 234, + 618, + 376, + 635 + ], + "spans": [ + { + "bbox": [ + 234, + 618, + 376, + 635 + ], + "score": 0.92, + "content": "\\begin{array} { r } { S _ { i j } = ( \\mathrm { H o W } _ { i } ^ { A } ) ^ { T } U ^ { T } D U ( \\mathrm { H o W } _ { j } ^ { B } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "b5ead9f5bb6b356668e104a50bcd1d982c4e29334a47948b75e3b3b7c14fb1ce.jpg" + } + ] + } + ], + "index": 46, + "virtual_lines": [ + { + "bbox": [ + 234, + 618, + 376, + 635 + ], + "spans": [], + "index": 46 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 635, + 505, + 681 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 133, + 649 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 635, + 181, + 646 + ], + "score": 0.87, + "content": "U \\in \\mathbb { R } ^ { k \\times d _ { h } }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 633, + 185, + 649 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 185, + 635, + 229, + 646 + ], + "score": 0.87, + "content": "D \\in \\mathbb { R } ^ { k \\times k }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 633, + 247, + 649 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 247, + 636, + 257, + 646 + ], + "score": 0.84, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 633, + 506, + 649 + ], + "score": 1.0, + "content": "is a diagonal matrix. The symmetric form retains the ability to", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 102, + 645, + 507, + 662 + ], + "spans": [ + { + "bbox": [ + 102, + 645, + 287, + 662 + ], + "score": 1.0, + "content": "give high attention score between dissimilar", + "type": "text" + }, + { + "bbox": [ + 287, + 646, + 351, + 661 + ], + "score": 0.54, + "content": "\\mathrm { \\bar { H } o W } _ { i } ^ { A } , \\mathrm { H o W } _ { j } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 645, + 507, + 662 + ], + "score": 1.0, + "content": ". Additionally, we marry nonlinearity", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 659, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 672 + ], + "score": 1.0, + "content": "with the symmetric form to provide richer interaction among different parts of the history-of-word.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 669, + 278, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 278, + 682 + ], + "score": 1.0, + "content": "The final formulation for attention score is", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 48.5, + "bbox_fs": [ + 102, + 633, + 507, + 682 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 681, + 387, + 697 + ], + "lines": [ + { + "bbox": [ + 222, + 681, + 387, + 697 + ], + "spans": [ + { + "bbox": [ + 222, + 681, + 387, + 697 + ], + "score": 0.91, + "content": "S _ { i j } = f ( U ( \\mathrm { H o W } _ { i } ^ { A } ) ) ^ { T } D ~ f ( U ( \\mathrm { H o W } _ { j } ^ { B } ) ) ,", + "type": "interline_equation", + "image_path": "82ab4e2788c5f3d7d10613ad43f37e3f3850b709a609d4a3926df5ac3fa925b3.jpg" + } + ] + } + ], + "index": 51, + "virtual_lines": [ + { + "bbox": [ + 222, + 681, + 387, + 697 + ], + "spans": [], + "index": 51 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 134, + 712 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 699, + 155, + 710 + ], + "score": 0.88, + "content": "f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "is an activation function applied element-wise. In the following context, we employ", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 184, + 722 + ], + "score": 0.89, + "content": "f ( x ) = \\operatorname* { m a x } ( 0 , x )", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 709, + 505, + 723 + ], + "score": 1.0, + "content": ". A detailed ablation study in Section 4 demonstrates its advantage over many", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 720, + 158, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 158, + 733 + ], + "score": 1.0, + "content": "alternatives.", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 53, + "bbox_fs": [ + 105, + 698, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 80, + 504, + 335 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 80, + 504, + 335 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 504, + 335 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 504, + 335 + ], + "score": 0.972, + "type": "image", + "image_path": "0257ec1f4f3ec3d036b2ec9c1a8204d14a2dfc7469e37a1de56bf42b7d5b2f0c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 504, + 165.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 165.0, + 504, + 250.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 250.0, + 504, + 335.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 345, + 505, + 401 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 346, + 504, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 504, + 358 + ], + "score": 1.0, + "content": "Figure 4: An illustration of FusionNet architecture. Each upward arrow represents one layer of BiL-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 357, + 504, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 504, + 369 + ], + "score": 1.0, + "content": "STM. Each circle to the right is a detailed illustration of the corresponding component in FusionNet.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 368, + 486, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 267, + 380 + ], + "score": 1.0, + "content": "Circle 1: Fully-aware attention between", + "type": "text" + }, + { + "bbox": [ + 268, + 369, + 278, + 378 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 368, + 295, + 380 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 296, + 368, + 306, + 379 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 368, + 486, + 380 + ], + "score": 1.0, + "content": ". Illustration of Equation (C1) in Section 3.1.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 379, + 504, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 254, + 391 + ], + "score": 1.0, + "content": "Circle 2: Concatenate all concepts in", + "type": "text" + }, + { + "bbox": [ + 254, + 379, + 264, + 389 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 379, + 330, + 391 + ], + "score": 1.0, + "content": "with multi-level", + "type": "text" + }, + { + "bbox": [ + 330, + 379, + 340, + 390 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 379, + 504, + 391 + ], + "score": 1.0, + "content": "information, then pass through BiLSTM.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 390, + 283, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 283, + 402 + ], + "score": 1.0, + "content": "Illustration of Equation (C2) in Section 3.1.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 401, + 504, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 401, + 504, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 291, + 413 + ], + "score": 1.0, + "content": "Circle 3: Fully-aware attention on the context", + "type": "text" + }, + { + "bbox": [ + 291, + 401, + 301, + 411 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 401, + 504, + 413 + ], + "score": 1.0, + "content": "itself. Illustration of Equation (C3) in Section 3.1.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 319, + 424 + ], + "score": 1.0, + "content": "Circle 4: Concatenate the understanding vector of", + "type": "text" + }, + { + "bbox": [ + 320, + 412, + 330, + 422 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "with self-attention information, then pass", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 423, + 357, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 357, + 435 + ], + "score": 1.0, + "content": "through BiLSTM. Illustration of Equation (C4) in Section 3.1.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 107, + 455, + 300, + 468 + ], + "lines": [ + { + "bbox": [ + 105, + 453, + 302, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 302, + 470 + ], + "score": 1.0, + "content": "3 FULLY-AWARE FUSION NETWORK", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 480, + 258, + 492 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 260, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 260, + 493 + ], + "score": 1.0, + "content": "3.1 END-TO-END ARCHITECTURE", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 501, + 505, + 535 + ], + "lines": [ + { + "bbox": [ + 105, + 501, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 515 + ], + "score": 1.0, + "content": "Based on fully-aware attention, we propose an end-to-end architecture: the fully-aware fusion net-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 513, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 437, + 525 + ], + "score": 1.0, + "content": "work (FusionNet). Given text A and B, FusionNet fuses information from text", + "type": "text" + }, + { + "bbox": [ + 437, + 513, + 445, + 523 + ], + "score": 0.51, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 513, + 505, + 525 + ], + "score": 1.0, + "content": "to text A and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 524, + 220, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 220, + 536 + ], + "score": 1.0, + "content": "generates two set of vectors", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 541, + 401, + 556 + ], + "lines": [ + { + "bbox": [ + 209, + 541, + 401, + 556 + ], + "spans": [ + { + "bbox": [ + 209, + 541, + 401, + 556 + ], + "score": 0.92, + "content": "U _ { A } = \\{ \\pmb { u } _ { 1 } ^ { A } , \\ldots , \\pmb { u } _ { m } ^ { A } \\} , \\quad U _ { B } = \\{ \\pmb { u } _ { 1 } ^ { B } , \\ldots , \\pmb { u } _ { n } ^ { B } \\} .", + "type": "interline_equation", + "image_path": "32b0f646184d694bd256b68772f99e90452dfdcdf3152b72857259601481d57c.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 209, + 541, + 401, + 556 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 562, + 504, + 585 + ], + "lines": [ + { + "bbox": [ + 105, + 560, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 389, + 576 + ], + "score": 1.0, + "content": "In the following, we consider the special case where text A is context", + "type": "text" + }, + { + "bbox": [ + 389, + 563, + 399, + 572 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 560, + 435, + 576 + ], + "score": 1.0, + "content": "and text", + "type": "text" + }, + { + "bbox": [ + 436, + 563, + 444, + 573 + ], + "score": 0.44, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 560, + 491, + 576 + ], + "score": 1.0, + "content": "is question", + "type": "text" + }, + { + "bbox": [ + 492, + 563, + 501, + 574 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 560, + 505, + 576 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 572, + 474, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 474, + 586 + ], + "score": 1.0, + "content": "An illustration for FusionNet is shown in Figure 4. It consists of the following components.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 589, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 249, + 602 + ], + "score": 1.0, + "content": "Input Vectors. First, each word in", + "type": "text" + }, + { + "bbox": [ + 250, + 590, + 260, + 600 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 590, + 278, + 602 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 279, + 590, + 289, + 601 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 590, + 432, + 602 + ], + "score": 1.0, + "content": "is transformed into an input vector", + "type": "text" + }, + { + "bbox": [ + 432, + 592, + 441, + 600 + ], + "score": 0.71, + "content": "\\textbf { \\em w }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 590, + 505, + 602 + ], + "score": 1.0, + "content": ". We utilize the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "score": 1.0, + "content": "300-dim GloVe embedding (Pennington et al., 2014) and 600-dim contextualized vector (McCann", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "score": 1.0, + "content": "et al., 2017). In the SQuAD task, we also include 12-dim POS embedding, 8-dim NER embedding", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 622, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 295, + 636 + ], + "score": 1.0, + "content": "and a normalized term frequency for context", + "type": "text" + }, + { + "bbox": [ + 296, + 624, + 306, + 633 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 622, + 505, + 636 + ], + "score": 1.0, + "content": "as suggested in (Chen et al., 2017a). Together", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 632, + 351, + 650 + ], + "spans": [ + { + "bbox": [ + 107, + 634, + 228, + 648 + ], + "score": 0.92, + "content": "\\{ \\pmb { w } _ { 1 } ^ { C } , \\ldots , \\pmb { w } _ { m } ^ { C } \\} \\subset \\mathbb { R } ^ { 9 0 0 + 2 0 + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 632, + 249, + 650 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 249, + 634, + 346, + 648 + ], + "score": 0.94, + "content": "\\{ \\pmb { w } _ { 1 } ^ { Q } , \\ldots , \\pmb { w } _ { n } ^ { Q } \\} \\subset \\mathbb { R } ^ { 9 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 632, + 351, + 650 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 652, + 505, + 708 + ], + "lines": [ + { + "bbox": [ + 105, + 650, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 667 + ], + "score": 1.0, + "content": "Fully-Aware Multi-level Fusion: Word-level. In multi-level fusion, we separately consider fusing", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 664, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 334, + 676 + ], + "score": 1.0, + "content": "word-level and higher-level. Word-level fusion informs", + "type": "text" + }, + { + "bbox": [ + 335, + 664, + 345, + 674 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 664, + 480, + 676 + ], + "score": 1.0, + "content": "about what kind of words are in", + "type": "text" + }, + { + "bbox": [ + 480, + 664, + 490, + 675 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 664, + 505, + 676 + ], + "score": 1.0, + "content": ". It", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 674, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 505, + 687 + ], + "score": 1.0, + "content": "is illustrated as arrow (1) in Figure 2. For this component, we follow the approach in (Chen et al.,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 685, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 106, + 685, + 223, + 698 + ], + "score": 1.0, + "content": "2017a) First, a feature vector", + "type": "text" + }, + { + "bbox": [ + 224, + 687, + 241, + 696 + ], + "score": 0.89, + "content": "\\mathrm { e m } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 685, + 349, + 698 + ], + "score": 1.0, + "content": "is created for each word in", + "type": "text" + }, + { + "bbox": [ + 350, + 686, + 360, + 695 + ], + "score": 0.83, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 685, + 505, + 698 + ], + "score": 1.0, + "content": "to indicate whether the word occurs", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 696, + 436, + 709 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 167, + 709 + ], + "score": 1.0, + "content": "in the question", + "type": "text" + }, + { + "bbox": [ + 168, + 697, + 177, + 708 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 696, + 393, + 709 + ], + "score": 1.0, + "content": ". Second, attention-based fusion on GloVe embedding", + "type": "text" + }, + { + "bbox": [ + 394, + 698, + 405, + 708 + ], + "score": 0.86, + "content": "\\mathbf { \\nabla } _ { \\mathbf { \\boldsymbol { g } } _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 696, + 436, + 709 + ], + "score": 1.0, + "content": "is used", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 127, + 714, + 482, + 736 + ], + "lines": [ + { + "bbox": [ + 127, + 714, + 482, + 736 + ], + "spans": [ + { + "bbox": [ + 127, + 714, + 482, + 736 + ], + "score": 0.88, + "content": "\\hat { g } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } g _ { j } ^ { Q } , \\quad \\alpha _ { i j } \\propto \\exp ( S ( g _ { i } ^ { C } , g _ { j } ^ { Q } ) ) , \\quad S ( x , y ) = \\mathrm { R e L U } ( W x ) ^ { T } \\mathrm { R e L U } ( W y ) ,", + "type": "interline_equation", + "image_path": "99dc2ff21714f858c7d0fbf27c6f23cc2ca2e5bae434cba56a9ca5f79f5b4ec2.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 127, + 714, + 482, + 736 + ], + "spans": [], + "index": 29 + } + ] + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 80, + 504, + 335 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 80, + 504, + 335 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 504, + 335 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 504, + 335 + ], + "score": 0.972, + "type": "image", + "image_path": "0257ec1f4f3ec3d036b2ec9c1a8204d14a2dfc7469e37a1de56bf42b7d5b2f0c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 504, + 165.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 165.0, + 504, + 250.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 250.0, + 504, + 335.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 345, + 505, + 401 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 346, + 504, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 504, + 358 + ], + "score": 1.0, + "content": "Figure 4: An illustration of FusionNet architecture. Each upward arrow represents one layer of BiL-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 357, + 504, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 504, + 369 + ], + "score": 1.0, + "content": "STM. Each circle to the right is a detailed illustration of the corresponding component in FusionNet.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 368, + 486, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 267, + 380 + ], + "score": 1.0, + "content": "Circle 1: Fully-aware attention between", + "type": "text" + }, + { + "bbox": [ + 268, + 369, + 278, + 378 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 368, + 295, + 380 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 296, + 368, + 306, + 379 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 368, + 486, + 380 + ], + "score": 1.0, + "content": ". Illustration of Equation (C1) in Section 3.1.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 379, + 504, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 254, + 391 + ], + "score": 1.0, + "content": "Circle 2: Concatenate all concepts in", + "type": "text" + }, + { + "bbox": [ + 254, + 379, + 264, + 389 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 379, + 330, + 391 + ], + "score": 1.0, + "content": "with multi-level", + "type": "text" + }, + { + "bbox": [ + 330, + 379, + 340, + 390 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 379, + 504, + 391 + ], + "score": 1.0, + "content": "information, then pass through BiLSTM.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 390, + 283, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 283, + 402 + ], + "score": 1.0, + "content": "Illustration of Equation (C2) in Section 3.1.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 401, + 504, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 401, + 504, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 291, + 413 + ], + "score": 1.0, + "content": "Circle 3: Fully-aware attention on the context", + "type": "text" + }, + { + "bbox": [ + 291, + 401, + 301, + 411 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 401, + 504, + 413 + ], + "score": 1.0, + "content": "itself. Illustration of Equation (C3) in Section 3.1.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 319, + 424 + ], + "score": 1.0, + "content": "Circle 4: Concatenate the understanding vector of", + "type": "text" + }, + { + "bbox": [ + 320, + 412, + 330, + 422 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "with self-attention information, then pass", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 423, + 357, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 357, + 435 + ], + "score": 1.0, + "content": "through BiLSTM. Illustration of Equation (C4) in Section 3.1.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 401, + 505, + 435 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 455, + 300, + 468 + ], + "lines": [ + { + "bbox": [ + 105, + 453, + 302, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 302, + 470 + ], + "score": 1.0, + "content": "3 FULLY-AWARE FUSION NETWORK", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 480, + 258, + 492 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 260, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 260, + 493 + ], + "score": 1.0, + "content": "3.1 END-TO-END ARCHITECTURE", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 501, + 505, + 535 + ], + "lines": [ + { + "bbox": [ + 105, + 501, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 515 + ], + "score": 1.0, + "content": "Based on fully-aware attention, we propose an end-to-end architecture: the fully-aware fusion net-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 513, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 437, + 525 + ], + "score": 1.0, + "content": "work (FusionNet). Given text A and B, FusionNet fuses information from text", + "type": "text" + }, + { + "bbox": [ + 437, + 513, + 445, + 523 + ], + "score": 0.51, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 513, + 505, + 525 + ], + "score": 1.0, + "content": "to text A and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 524, + 220, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 220, + 536 + ], + "score": 1.0, + "content": "generates two set of vectors", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 501, + 505, + 536 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 541, + 401, + 556 + ], + "lines": [ + { + "bbox": [ + 209, + 541, + 401, + 556 + ], + "spans": [ + { + "bbox": [ + 209, + 541, + 401, + 556 + ], + "score": 0.92, + "content": "U _ { A } = \\{ \\pmb { u } _ { 1 } ^ { A } , \\ldots , \\pmb { u } _ { m } ^ { A } \\} , \\quad U _ { B } = \\{ \\pmb { u } _ { 1 } ^ { B } , \\ldots , \\pmb { u } _ { n } ^ { B } \\} .", + "type": "interline_equation", + "image_path": "32b0f646184d694bd256b68772f99e90452dfdcdf3152b72857259601481d57c.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 209, + 541, + 401, + 556 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "list", + "bbox": [ + 107, + 562, + 504, + 585 + ], + "lines": [ + { + "bbox": [ + 105, + 560, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 389, + 576 + ], + "score": 1.0, + "content": "In the following, we consider the special case where text A is context", + "type": "text" + }, + { + "bbox": [ + 389, + 563, + 399, + 572 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 560, + 435, + 576 + ], + "score": 1.0, + "content": "and text", + "type": "text" + }, + { + "bbox": [ + 436, + 563, + 444, + 573 + ], + "score": 0.44, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 560, + 491, + 576 + ], + "score": 1.0, + "content": "is question", + "type": "text" + }, + { + "bbox": [ + 492, + 563, + 501, + 574 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 560, + 505, + 576 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 572, + 474, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 474, + 586 + ], + "score": 1.0, + "content": "An illustration for FusionNet is shown in Figure 4. It consists of the following components.", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 560, + 505, + 586 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 589, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 249, + 602 + ], + "score": 1.0, + "content": "Input Vectors. First, each word in", + "type": "text" + }, + { + "bbox": [ + 250, + 590, + 260, + 600 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 590, + 278, + 602 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 279, + 590, + 289, + 601 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 590, + 432, + 602 + ], + "score": 1.0, + "content": "is transformed into an input vector", + "type": "text" + }, + { + "bbox": [ + 432, + 592, + 441, + 600 + ], + "score": 0.71, + "content": "\\textbf { \\em w }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 590, + 505, + 602 + ], + "score": 1.0, + "content": ". We utilize the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "score": 1.0, + "content": "300-dim GloVe embedding (Pennington et al., 2014) and 600-dim contextualized vector (McCann", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "score": 1.0, + "content": "et al., 2017). In the SQuAD task, we also include 12-dim POS embedding, 8-dim NER embedding", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 622, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 295, + 636 + ], + "score": 1.0, + "content": "and a normalized term frequency for context", + "type": "text" + }, + { + "bbox": [ + 296, + 624, + 306, + 633 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 622, + 505, + 636 + ], + "score": 1.0, + "content": "as suggested in (Chen et al., 2017a). Together", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 632, + 351, + 650 + ], + "spans": [ + { + "bbox": [ + 107, + 634, + 228, + 648 + ], + "score": 0.92, + "content": "\\{ \\pmb { w } _ { 1 } ^ { C } , \\ldots , \\pmb { w } _ { m } ^ { C } \\} \\subset \\mathbb { R } ^ { 9 0 0 + 2 0 + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 632, + 249, + 650 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 249, + 634, + 346, + 648 + ], + "score": 0.94, + "content": "\\{ \\pmb { w } _ { 1 } ^ { Q } , \\ldots , \\pmb { w } _ { n } ^ { Q } \\} \\subset \\mathbb { R } ^ { 9 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 632, + 351, + 650 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 590, + 505, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 652, + 505, + 708 + ], + "lines": [ + { + "bbox": [ + 105, + 650, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 667 + ], + "score": 1.0, + "content": "Fully-Aware Multi-level Fusion: Word-level. In multi-level fusion, we separately consider fusing", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 664, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 334, + 676 + ], + "score": 1.0, + "content": "word-level and higher-level. Word-level fusion informs", + "type": "text" + }, + { + "bbox": [ + 335, + 664, + 345, + 674 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 664, + 480, + 676 + ], + "score": 1.0, + "content": "about what kind of words are in", + "type": "text" + }, + { + "bbox": [ + 480, + 664, + 490, + 675 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 664, + 505, + 676 + ], + "score": 1.0, + "content": ". It", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 674, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 505, + 687 + ], + "score": 1.0, + "content": "is illustrated as arrow (1) in Figure 2. For this component, we follow the approach in (Chen et al.,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 685, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 106, + 685, + 223, + 698 + ], + "score": 1.0, + "content": "2017a) First, a feature vector", + "type": "text" + }, + { + "bbox": [ + 224, + 687, + 241, + 696 + ], + "score": 0.89, + "content": "\\mathrm { e m } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 685, + 349, + 698 + ], + "score": 1.0, + "content": "is created for each word in", + "type": "text" + }, + { + "bbox": [ + 350, + 686, + 360, + 695 + ], + "score": 0.83, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 685, + 505, + 698 + ], + "score": 1.0, + "content": "to indicate whether the word occurs", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 696, + 436, + 709 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 167, + 709 + ], + "score": 1.0, + "content": "in the question", + "type": "text" + }, + { + "bbox": [ + 168, + 697, + 177, + 708 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 696, + 393, + 709 + ], + "score": 1.0, + "content": ". Second, attention-based fusion on GloVe embedding", + "type": "text" + }, + { + "bbox": [ + 394, + 698, + 405, + 708 + ], + "score": 0.86, + "content": "\\mathbf { \\nabla } _ { \\mathbf { \\boldsymbol { g } } _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 696, + 436, + 709 + ], + "score": 1.0, + "content": "is used", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 650, + 506, + 709 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 127, + 714, + 482, + 736 + ], + "lines": [ + { + "bbox": [ + 127, + 714, + 482, + 736 + ], + "spans": [ + { + "bbox": [ + 127, + 714, + 482, + 736 + ], + "score": 0.88, + "content": "\\hat { g } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } g _ { j } ^ { Q } , \\quad \\alpha _ { i j } \\propto \\exp ( S ( g _ { i } ^ { C } , g _ { j } ^ { Q } ) ) , \\quad S ( x , y ) = \\mathrm { R e L U } ( W x ) ^ { T } \\mathrm { R e L U } ( W y ) ,", + "type": "interline_equation", + "image_path": "99dc2ff21714f858c7d0fbf27c6f23cc2ca2e5bae434cba56a9ca5f79f5b4ec2.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 127, + 714, + 482, + 736 + ], + "spans": [], + "index": 29 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 505, + 107 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 507, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 133, + 96 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 81, + 197, + 93 + ], + "score": 0.91, + "content": "W \\in \\mathbb { R } ^ { 3 0 0 \\times 3 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 79, + 507, + 96 + ], + "score": 1.0, + "content": ". Since history-of-word is the input vector itself, fully-aware attention is not", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 426, + 110 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 334, + 110 + ], + "score": 1.0, + "content": "employed here. The enhanced input vector for context is", + "type": "text" + }, + { + "bbox": [ + 334, + 93, + 422, + 108 + ], + "score": 0.93, + "content": "\\mathbf { \\tilde { w } } _ { i } ^ { C } = [ \\mathbf { w } _ { i } ^ { C } ; \\mathrm { e m } _ { i } ; \\bar { \\mathbf { g } } _ { i } ^ { C } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 91, + 426, + 110 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 104, + 111, + 505, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "score": 1.0, + "content": "Reading. In the reading component, we use a separate bidirectional LSTM (BiLSTM) to form", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 123, + 298, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 257, + 136 + ], + "score": 1.0, + "content": "low-level and high-level concepts for", + "type": "text" + }, + { + "bbox": [ + 257, + 123, + 267, + 133 + ], + "score": 0.84, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 123, + 285, + 136 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 285, + 123, + 295, + 134 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 123, + 298, + 136 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 140, + 480, + 157 + ], + "lines": [ + { + "bbox": [ + 129, + 140, + 480, + 157 + ], + "spans": [ + { + "bbox": [ + 129, + 140, + 480, + 157 + ], + "score": 0.81, + "content": "{ h } _ { 1 } ^ { C l } , \\dots , { h } _ { m } ^ { C l } = \\mathrm { B i L S T M } ( \\tilde { w } _ { 1 } ^ { C } , \\dots , \\tilde { w } _ { m } ^ { C } ) , \\quad { h } _ { 1 } ^ { Q l } , \\dots , { h } _ { n } ^ { Q l } = \\mathrm { B i L S T M } ( w _ { 1 } ^ { Q } , \\dots , w _ { n } ^ { Q } ) ,", + "type": "interline_equation", + "image_path": "d1fdcaed4618992b1457bd199f2eb1bcec31665ed1d897bac0ee6a19d9a967f2.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 129, + 140, + 480, + 157 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 125, + 163, + 484, + 180 + ], + "lines": [ + { + "bbox": [ + 125, + 163, + 484, + 180 + ], + "spans": [ + { + "bbox": [ + 125, + 163, + 484, + 180 + ], + "score": 0.75, + "content": "{ h } _ { 1 } ^ { C h } , \\ldots , { h } _ { m } ^ { C h } = \\mathrm { B i L S T M } ( { h } _ { 1 } ^ { C l } , \\ldots , { h } _ { m } ^ { C l } ) , \\quad { h } _ { 1 } ^ { Q h } , \\ldots , { h } _ { n } ^ { Q h } = \\mathrm { B i L S T M } ( { h } _ { 1 } ^ { Q l } , \\ldots , { h } _ { n } ^ { Q l } ) .", + "type": "interline_equation", + "image_path": "580300d31cea37ed2418c9aff7009501f7fa5b3971052292a011b0bb5746ae00.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 125, + 163, + 484, + 180 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 183, + 437, + 197 + ], + "lines": [ + { + "bbox": [ + 104, + 182, + 438, + 199 + ], + "spans": [ + { + "bbox": [ + 104, + 182, + 271, + 199 + ], + "score": 1.0, + "content": "Hence low-level and high-level concepts", + "type": "text" + }, + { + "bbox": [ + 271, + 183, + 329, + 197 + ], + "score": 0.92, + "content": "h ^ { l } , h ^ { h } \\in \\mathbb { R } ^ { 2 5 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 182, + 438, + 199 + ], + "score": 1.0, + "content": "are created for each word.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 201, + 504, + 227 + ], + "lines": [ + { + "bbox": [ + 106, + 201, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 505, + 216 + ], + "score": 1.0, + "content": "Question Understanding. In the Question Understanding component, we apply a new BiLSTM", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 211, + 394, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 164, + 230 + ], + "score": 1.0, + "content": "taking in both", + "type": "text" + }, + { + "bbox": [ + 164, + 212, + 204, + 226 + ], + "score": 0.93, + "content": "{ h ^ { Q l } , h ^ { Q h } }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 211, + 374, + 230 + ], + "score": 1.0, + "content": "to obtain the final question representation", + "type": "text" + }, + { + "bbox": [ + 374, + 215, + 388, + 227 + ], + "score": 0.9, + "content": "U _ { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 211, + 394, + 230 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 232, + 435, + 249 + ], + "lines": [ + { + "bbox": [ + 175, + 232, + 435, + 249 + ], + "spans": [ + { + "bbox": [ + 175, + 232, + 435, + 249 + ], + "score": 0.91, + "content": "\\begin{array} { r } { U _ { Q } = \\{ \\boldsymbol { { u } } _ { 1 } ^ { Q } , \\ldots , \\boldsymbol { { u } } _ { n } ^ { Q } \\} = \\mathrm { { B i L S T M } } ( [ \\boldsymbol { h } _ { 1 } ^ { Q l } ; \\boldsymbol { h } _ { 1 } ^ { Q h } ] , \\ldots , [ \\boldsymbol { h } _ { n } ^ { Q l } ; \\boldsymbol { h } _ { n } ^ { Q h } ] ) . } \\end{array}", + "type": "interline_equation", + "image_path": "4add0719b763e3c73ec77b317812917d3a81a8ba156c40742973cc6b52a597b3.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 175, + 232, + 435, + 249 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 256, + 351, + 270 + ], + "lines": [ + { + "bbox": [ + 104, + 252, + 348, + 275 + ], + "spans": [ + { + "bbox": [ + 104, + 252, + 133, + 275 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 255, + 203, + 270 + ], + "score": 0.93, + "content": "\\{ \\boldsymbol { u } _ { i } ^ { Q } \\in \\mathbb { R } ^ { 2 5 0 } \\} _ { i = 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 252, + 338, + 275 + ], + "score": 1.0, + "content": "are the understanding vectors for", + "type": "text" + }, + { + "bbox": [ + 338, + 258, + 348, + 269 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 273, + 506, + 319 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 287 + ], + "score": 1.0, + "content": "Fully-Aware Multi-level Fusion: Higher-level. This component fuses all higher-level information", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 171, + 298 + ], + "score": 1.0, + "content": "in the question", + "type": "text" + }, + { + "bbox": [ + 171, + 286, + 181, + 297 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 285, + 244, + 298 + ], + "score": 1.0, + "content": "to the context", + "type": "text" + }, + { + "bbox": [ + 244, + 286, + 254, + 296 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "through fully-aware attention on history-of-word. Since the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 297, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 506, + 309 + ], + "score": 1.0, + "content": "proposed attention scoring function for fully-aware attention is constrained to be symmetric, we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 308, + 398, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 323, + 320 + ], + "score": 1.0, + "content": "need to identify the common history-of-word for both", + "type": "text" + }, + { + "bbox": [ + 324, + 308, + 347, + 319 + ], + "score": 0.91, + "content": "C , Q", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 308, + 398, + 320 + ], + "score": 1.0, + "content": ". This yields", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 325, + 450, + 341 + ], + "lines": [ + { + "bbox": [ + 159, + 325, + 450, + 341 + ], + "spans": [ + { + "bbox": [ + 159, + 325, + 450, + 341 + ], + "score": 0.91, + "content": "\\mathrm { H o W } _ { i } ^ { C } = [ \\pmb { g } _ { i } ^ { C } ; \\pmb { c } _ { i } ^ { C } ; \\pmb { h } _ { i } ^ { C l } ; \\pmb { h } _ { i } ^ { C h } ] , ~ \\mathrm { H o W } _ { i } ^ { Q } = [ \\pmb { g } _ { i } ^ { Q } ; \\pmb { c } _ { i } ^ { Q } ; \\pmb { h } _ { i } ^ { Q l } ; \\pmb { h } _ { i } ^ { Q h } ] \\in \\mathbb { R } ^ { 1 4 0 0 } ,", + "type": "interline_equation", + "image_path": "d809ab78d0fe1e1f9c75886019e208f842da6ed276613a87869bb720655286a0.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 159, + 325, + 450, + 341 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 346, + 506, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 346, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 133, + 359 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 349, + 145, + 359 + ], + "score": 0.85, + "content": "\\mathbf { \\pmb { g } } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 346, + 267, + 359 + ], + "score": 1.0, + "content": "is the GloVe embedding and", + "type": "text" + }, + { + "bbox": [ + 268, + 349, + 277, + 358 + ], + "score": 0.85, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 346, + 505, + 359 + ], + "score": 1.0, + "content": "is the CoVe embedding. Then we fuse low, high, and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 263, + 371 + ], + "score": 1.0, + "content": "understanding-level information from", + "type": "text" + }, + { + "bbox": [ + 263, + 359, + 273, + 370 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 358, + 286, + 371 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 287, + 359, + 297, + 369 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "via fully-aware attention. Different sets of atten-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 368, + 506, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 320, + 382 + ], + "score": 1.0, + "content": "tion weights are calculated through attention function", + "type": "text" + }, + { + "bbox": [ + 320, + 368, + 438, + 381 + ], + "score": 0.88, + "content": "S ^ { \\tilde { l } } ( x , y ) , S ^ { h } ( x , y ) , S ^ { u } ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 368, + 506, + 382 + ], + "score": 1.0, + "content": "to combine low,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "high, and understanding-level of concepts. All three functions are the proposed symmetric form with", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 392, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 505, + 403 + ], + "score": 1.0, + "content": "nonlinearity in Section 2.3, but are parametrized by independent parameters to attend to different", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 402, + 385, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 345, + 414 + ], + "score": 1.0, + "content": "regions for different level. Attention hidden size is set to be", + "type": "text" + }, + { + "bbox": [ + 346, + 402, + 381, + 412 + ], + "score": 0.9, + "content": "k = 2 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 402, + 385, + 414 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 423, + 441, + 442 + ], + "lines": [ + { + "bbox": [ + 215, + 423, + 441, + 442 + ], + "spans": [ + { + "bbox": [ + 215, + 423, + 441, + 442 + ], + "score": 0.67, + "content": "\\begin{array} { r } { \\hat { \\boldsymbol { h } } _ { i } ^ { C l } = \\sum _ { j } \\alpha _ { i j } ^ { l } \\boldsymbol { h } _ { j } ^ { Q l } , \\quad \\alpha _ { i j } ^ { l } \\propto \\exp ( S ^ { l } ( \\mathrm { H o W } _ { i } ^ { C } , \\mathrm { H o W } _ { j } ^ { Q } ) ) . } \\end{array}", + "type": "interline_equation", + "image_path": "4988641819727045586758b826efd980f8a73a8d9185a60e97e39f222ad37989.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 215, + 423, + 441, + 442 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 129, + 445, + 455, + 464 + ], + "lines": [ + { + "bbox": [ + 128, + 444, + 456, + 464 + ], + "spans": [ + { + "bbox": [ + 128, + 444, + 217, + 463 + ], + "score": 1.0, + "content": "2. High-level fusion:", + "type": "text" + }, + { + "bbox": [ + 221, + 446, + 456, + 464 + ], + "score": 0.76, + "content": "\\begin{array} { r } { \\hat { \\boldsymbol { \\mathsf { h } } } _ { i } ^ { C h } = \\sum _ { j } \\alpha _ { i j } ^ { h } \\boldsymbol { h } _ { j } ^ { Q h } , \\quad \\alpha _ { i j } ^ { h } \\propto \\exp ( S ^ { h } ( \\mathrm { H o W } _ { i } ^ { C } , \\mathrm { H o W } _ { j } ^ { Q } ) ) . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 467, + 458, + 484 + ], + "lines": [], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 234, + 467, + 458, + 484 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 492, + 503, + 526 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 505 + ], + "score": 1.0, + "content": "This multi-level attention mechanism captures different levels of information independently, while", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 502, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 516 + ], + "score": 1.0, + "content": "taking all levels of information into account. A new BiLSTM is applied to obtain the representation", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 513, + 322, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 120, + 527 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 515, + 131, + 524 + ], + "score": 0.83, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 513, + 308, + 527 + ], + "score": 1.0, + "content": "fully fused with information in the question", + "type": "text" + }, + { + "bbox": [ + 308, + 515, + 318, + 525 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 513, + 322, + 527 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 119, + 531, + 473, + 551 + ], + "lines": [ + { + "bbox": [ + 119, + 531, + 473, + 551 + ], + "spans": [ + { + "bbox": [ + 119, + 531, + 473, + 551 + ], + "score": 0.91, + "content": "\\{ \\pmb { v } _ { 1 } ^ { C } , \\ldots , \\pmb { v } _ { m } ^ { C } \\} = \\mathrm { B i L S T M } ( [ { \\pmb { h } } _ { 1 } ^ { C l } ; { \\pmb { h } } _ { 1 } ^ { C h } ; { \\hat { \\pmb { h } } } _ { 1 } ^ { C l } ; { \\hat { \\pmb { h } } } _ { 1 } ^ { C h } ; { \\hat { \\pmb { u } } } _ { 1 } ^ { C l } ] , \\ldots , [ { \\pmb { h } } _ { m } ^ { C l } ; { \\pmb { h } } _ { m } ^ { C h } ; { \\hat { \\pmb { h } } } _ { m } ^ { C l } ; { \\hat { \\pmb { h } } } _ { m } ^ { C h } ; { \\hat { \\pmb { u } } } _ { m } ^ { C } ] ) .", + "type": "interline_equation", + "image_path": "8dcce15acb993a32a6ffe25437c7b96c47d8ea9ad9c8a3427ed97b9b25ec9d52.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 119, + 531, + 473, + 551 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 562, + 505, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "Fully-Aware Self-Boosted Fusion. We now use self-boosted fusion to consider distant parts in the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 572, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 586 + ], + "score": 1.0, + "content": "context, as illustrated by arrow (3) in Figure 2. Again, we achieve this via fully-aware attention on", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 584, + 327, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 327, + 597 + ], + "score": 1.0, + "content": "history-of-word. We identify the history-of-word to be", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 601, + 424, + 620 + ], + "lines": [ + { + "bbox": [ + 185, + 601, + 424, + 620 + ], + "spans": [ + { + "bbox": [ + 185, + 601, + 424, + 620 + ], + "score": 0.89, + "content": "\\operatorname { H o W } _ { i } ^ { C } = [ \\pmb { g } _ { i } ^ { C } ; \\pmb { c } _ { i } ^ { C } ; \\pmb { h } _ { i } ^ { C l } ; \\pmb { h } _ { i } ^ { C h } ; \\hat { \\pmb { h } } _ { i } ^ { C l } ; \\hat { \\pmb { h } } _ { i } ^ { C h } ; \\hat { \\pmb { u } } _ { i } ^ { C } ; \\pmb { v } _ { i } ^ { C } ] \\in \\mathbb { R } ^ { 2 4 0 0 } .", + "type": "interline_equation", + "image_path": "810e1435335c87870a4c10de901f452b589e89a6645d884b19249ece23a8494f.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 185, + 601, + 424, + 620 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 626, + 476, + 652 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 480, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 265, + 643 + ], + "score": 1.0, + "content": "We then perform fully-aware attention,", + "type": "text" + }, + { + "bbox": [ + 266, + 626, + 480, + 642 + ], + "score": 0.56, + "content": "\\begin{array} { r } { \\hat { \\pmb v } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } ^ { s } \\pmb { v } _ { j } ^ { C } , \\alpha _ { i j } ^ { s } \\propto \\exp ( S ^ { s } ( \\mathrm { H o W } _ { i } ^ { C } , \\mathrm { H o W } _ { j } ^ { C } ) ) . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 638, + 295, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 295, + 654 + ], + "score": 1.0, + "content": "The final context representation is obtained by", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 658, + 428, + 674 + ], + "lines": [ + { + "bbox": [ + 183, + 658, + 428, + 674 + ], + "spans": [ + { + "bbox": [ + 183, + 658, + 428, + 674 + ], + "score": 0.88, + "content": "U _ { C } = \\{ \\pmb { u } _ { 1 } ^ { C } , \\ldots , \\pmb { u } _ { m } ^ { C } \\} = \\mathrm { B i L S T M } ( [ \\pmb { v } _ { 1 } ^ { C } ; \\hat { \\pmb { v } } _ { 1 } ^ { C } ] , \\ldots , [ \\pmb { v } _ { m } ^ { C } ; \\hat { \\pmb { v } } _ { m } ^ { C } ] ) .", + "type": "interline_equation", + "image_path": "946826f16b3340087bf4395eda5a620cee8ce4793b8ecacc4fcdb326ce7cd59c.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 183, + 658, + 428, + 674 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 681, + 351, + 694 + ], + "lines": [ + { + "bbox": [ + 134, + 675, + 348, + 700 + ], + "spans": [ + { + "bbox": [ + 134, + 680, + 203, + 694 + ], + "score": 0.93, + "content": "\\{ \\boldsymbol { u } _ { i } ^ { C } \\in \\mathbb { R } ^ { 2 5 0 } \\} _ { i = 1 } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 675, + 338, + 700 + ], + "score": 1.0, + "content": "are the understanding vectors for", + "type": "text" + }, + { + "bbox": [ + 338, + 682, + 348, + 691 + ], + "score": 0.85, + "content": "C", + "type": "inline_equation" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 437, + 712 + ], + "score": 1.0, + "content": "After these components in FusionNet, we have created the understanding vectors,", + "type": "text" + }, + { + "bbox": [ + 437, + 699, + 451, + 710 + ], + "score": 0.91, + "content": "U _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 698, + 505, + 712 + ], + "score": 1.0, + "content": ", for the con-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 124, + 723 + ], + "score": 1.0, + "content": "text", + "type": "text" + }, + { + "bbox": [ + 124, + 710, + 134, + 720 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 708, + 296, + 723 + ], + "score": 1.0, + "content": ", which are fully fused with the question", + "type": "text" + }, + { + "bbox": [ + 296, + 710, + 306, + 721 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 708, + 472, + 723 + ], + "score": 1.0, + "content": ". We also have the understanding vectors,", + "type": "text" + }, + { + "bbox": [ + 473, + 710, + 487, + 722 + ], + "score": 0.89, + "content": "U _ { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 708, + 505, + 723 + ], + "score": 1.0, + "content": ", for", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 719, + 171, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 157, + 734 + ], + "score": 1.0, + "content": "the question", + "type": "text" + }, + { + "bbox": [ + 158, + 721, + 167, + 732 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 719, + 171, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 505, + 107 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 507, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 133, + 96 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 81, + 197, + 93 + ], + "score": 0.91, + "content": "W \\in \\mathbb { R } ^ { 3 0 0 \\times 3 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 79, + 507, + 96 + ], + "score": 1.0, + "content": ". Since history-of-word is the input vector itself, fully-aware attention is not", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 426, + 110 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 334, + 110 + ], + "score": 1.0, + "content": "employed here. The enhanced input vector for context is", + "type": "text" + }, + { + "bbox": [ + 334, + 93, + 422, + 108 + ], + "score": 0.93, + "content": "\\mathbf { \\tilde { w } } _ { i } ^ { C } = [ \\mathbf { w } _ { i } ^ { C } ; \\mathrm { e m } _ { i } ; \\bar { \\mathbf { g } } _ { i } ^ { C } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 91, + 426, + 110 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 79, + 507, + 110 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 111, + 505, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "score": 1.0, + "content": "Reading. In the reading component, we use a separate bidirectional LSTM (BiLSTM) to form", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 123, + 298, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 257, + 136 + ], + "score": 1.0, + "content": "low-level and high-level concepts for", + "type": "text" + }, + { + "bbox": [ + 257, + 123, + 267, + 133 + ], + "score": 0.84, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 123, + 285, + 136 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 285, + 123, + 295, + 134 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 123, + 298, + 136 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 111, + 505, + 136 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 140, + 480, + 157 + ], + "lines": [ + { + "bbox": [ + 129, + 140, + 480, + 157 + ], + "spans": [ + { + "bbox": [ + 129, + 140, + 480, + 157 + ], + "score": 0.81, + "content": "{ h } _ { 1 } ^ { C l } , \\dots , { h } _ { m } ^ { C l } = \\mathrm { B i L S T M } ( \\tilde { w } _ { 1 } ^ { C } , \\dots , \\tilde { w } _ { m } ^ { C } ) , \\quad { h } _ { 1 } ^ { Q l } , \\dots , { h } _ { n } ^ { Q l } = \\mathrm { B i L S T M } ( w _ { 1 } ^ { Q } , \\dots , w _ { n } ^ { Q } ) ,", + "type": "interline_equation", + "image_path": "d1fdcaed4618992b1457bd199f2eb1bcec31665ed1d897bac0ee6a19d9a967f2.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 129, + 140, + 480, + 157 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 125, + 163, + 484, + 180 + ], + "lines": [ + { + "bbox": [ + 125, + 163, + 484, + 180 + ], + "spans": [ + { + "bbox": [ + 125, + 163, + 484, + 180 + ], + "score": 0.75, + "content": "{ h } _ { 1 } ^ { C h } , \\ldots , { h } _ { m } ^ { C h } = \\mathrm { B i L S T M } ( { h } _ { 1 } ^ { C l } , \\ldots , { h } _ { m } ^ { C l } ) , \\quad { h } _ { 1 } ^ { Q h } , \\ldots , { h } _ { n } ^ { Q h } = \\mathrm { B i L S T M } ( { h } _ { 1 } ^ { Q l } , \\ldots , { h } _ { n } ^ { Q l } ) .", + "type": "interline_equation", + "image_path": "580300d31cea37ed2418c9aff7009501f7fa5b3971052292a011b0bb5746ae00.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 125, + 163, + 484, + 180 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 183, + 437, + 197 + ], + "lines": [ + { + "bbox": [ + 104, + 182, + 438, + 199 + ], + "spans": [ + { + "bbox": [ + 104, + 182, + 271, + 199 + ], + "score": 1.0, + "content": "Hence low-level and high-level concepts", + "type": "text" + }, + { + "bbox": [ + 271, + 183, + 329, + 197 + ], + "score": 0.92, + "content": "h ^ { l } , h ^ { h } \\in \\mathbb { R } ^ { 2 5 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 182, + 438, + 199 + ], + "score": 1.0, + "content": "are created for each word.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 104, + 182, + 438, + 199 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 201, + 504, + 227 + ], + "lines": [ + { + "bbox": [ + 106, + 201, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 505, + 216 + ], + "score": 1.0, + "content": "Question Understanding. In the Question Understanding component, we apply a new BiLSTM", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 211, + 394, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 164, + 230 + ], + "score": 1.0, + "content": "taking in both", + "type": "text" + }, + { + "bbox": [ + 164, + 212, + 204, + 226 + ], + "score": 0.93, + "content": "{ h ^ { Q l } , h ^ { Q h } }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 211, + 374, + 230 + ], + "score": 1.0, + "content": "to obtain the final question representation", + "type": "text" + }, + { + "bbox": [ + 374, + 215, + 388, + 227 + ], + "score": 0.9, + "content": "U _ { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 211, + 394, + 230 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 201, + 505, + 230 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 232, + 435, + 249 + ], + "lines": [ + { + "bbox": [ + 175, + 232, + 435, + 249 + ], + "spans": [ + { + "bbox": [ + 175, + 232, + 435, + 249 + ], + "score": 0.91, + "content": "\\begin{array} { r } { U _ { Q } = \\{ \\boldsymbol { { u } } _ { 1 } ^ { Q } , \\ldots , \\boldsymbol { { u } } _ { n } ^ { Q } \\} = \\mathrm { { B i L S T M } } ( [ \\boldsymbol { h } _ { 1 } ^ { Q l } ; \\boldsymbol { h } _ { 1 } ^ { Q h } ] , \\ldots , [ \\boldsymbol { h } _ { n } ^ { Q l } ; \\boldsymbol { h } _ { n } ^ { Q h } ] ) . } \\end{array}", + "type": "interline_equation", + "image_path": "4add0719b763e3c73ec77b317812917d3a81a8ba156c40742973cc6b52a597b3.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 175, + 232, + 435, + 249 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 256, + 351, + 270 + ], + "lines": [ + { + "bbox": [ + 104, + 252, + 348, + 275 + ], + "spans": [ + { + "bbox": [ + 104, + 252, + 133, + 275 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 255, + 203, + 270 + ], + "score": 0.93, + "content": "\\{ \\boldsymbol { u } _ { i } ^ { Q } \\in \\mathbb { R } ^ { 2 5 0 } \\} _ { i = 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 252, + 338, + 275 + ], + "score": 1.0, + "content": "are the understanding vectors for", + "type": "text" + }, + { + "bbox": [ + 338, + 258, + 348, + 269 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 104, + 252, + 348, + 275 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 273, + 506, + 319 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 287 + ], + "score": 1.0, + "content": "Fully-Aware Multi-level Fusion: Higher-level. This component fuses all higher-level information", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 171, + 298 + ], + "score": 1.0, + "content": "in the question", + "type": "text" + }, + { + "bbox": [ + 171, + 286, + 181, + 297 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 285, + 244, + 298 + ], + "score": 1.0, + "content": "to the context", + "type": "text" + }, + { + "bbox": [ + 244, + 286, + 254, + 296 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "through fully-aware attention on history-of-word. Since the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 297, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 506, + 309 + ], + "score": 1.0, + "content": "proposed attention scoring function for fully-aware attention is constrained to be symmetric, we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 308, + 398, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 323, + 320 + ], + "score": 1.0, + "content": "need to identify the common history-of-word for both", + "type": "text" + }, + { + "bbox": [ + 324, + 308, + 347, + 319 + ], + "score": 0.91, + "content": "C , Q", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 308, + 398, + 320 + ], + "score": 1.0, + "content": ". This yields", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 273, + 506, + 320 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 325, + 450, + 341 + ], + "lines": [ + { + "bbox": [ + 159, + 325, + 450, + 341 + ], + "spans": [ + { + "bbox": [ + 159, + 325, + 450, + 341 + ], + "score": 0.91, + "content": "\\mathrm { H o W } _ { i } ^ { C } = [ \\pmb { g } _ { i } ^ { C } ; \\pmb { c } _ { i } ^ { C } ; \\pmb { h } _ { i } ^ { C l } ; \\pmb { h } _ { i } ^ { C h } ] , ~ \\mathrm { H o W } _ { i } ^ { Q } = [ \\pmb { g } _ { i } ^ { Q } ; \\pmb { c } _ { i } ^ { Q } ; \\pmb { h } _ { i } ^ { Q l } ; \\pmb { h } _ { i } ^ { Q h } ] \\in \\mathbb { R } ^ { 1 4 0 0 } ,", + "type": "interline_equation", + "image_path": "d809ab78d0fe1e1f9c75886019e208f842da6ed276613a87869bb720655286a0.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 159, + 325, + 450, + 341 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 346, + 506, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 346, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 133, + 359 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 349, + 145, + 359 + ], + "score": 0.85, + "content": "\\mathbf { \\pmb { g } } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 346, + 267, + 359 + ], + "score": 1.0, + "content": "is the GloVe embedding and", + "type": "text" + }, + { + "bbox": [ + 268, + 349, + 277, + 358 + ], + "score": 0.85, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 346, + 505, + 359 + ], + "score": 1.0, + "content": "is the CoVe embedding. Then we fuse low, high, and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 263, + 371 + ], + "score": 1.0, + "content": "understanding-level information from", + "type": "text" + }, + { + "bbox": [ + 263, + 359, + 273, + 370 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 358, + 286, + 371 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 287, + 359, + 297, + 369 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "via fully-aware attention. Different sets of atten-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 368, + 506, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 320, + 382 + ], + "score": 1.0, + "content": "tion weights are calculated through attention function", + "type": "text" + }, + { + "bbox": [ + 320, + 368, + 438, + 381 + ], + "score": 0.88, + "content": "S ^ { \\tilde { l } } ( x , y ) , S ^ { h } ( x , y ) , S ^ { u } ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 368, + 506, + 382 + ], + "score": 1.0, + "content": "to combine low,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "high, and understanding-level of concepts. All three functions are the proposed symmetric form with", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 392, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 505, + 403 + ], + "score": 1.0, + "content": "nonlinearity in Section 2.3, but are parametrized by independent parameters to attend to different", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 402, + 385, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 345, + 414 + ], + "score": 1.0, + "content": "regions for different level. Attention hidden size is set to be", + "type": "text" + }, + { + "bbox": [ + 346, + 402, + 381, + 412 + ], + "score": 0.9, + "content": "k = 2 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 402, + 385, + 414 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 346, + 506, + 414 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 423, + 441, + 442 + ], + "lines": [ + { + "bbox": [ + 215, + 423, + 441, + 442 + ], + "spans": [ + { + "bbox": [ + 215, + 423, + 441, + 442 + ], + "score": 0.67, + "content": "\\begin{array} { r } { \\hat { \\boldsymbol { h } } _ { i } ^ { C l } = \\sum _ { j } \\alpha _ { i j } ^ { l } \\boldsymbol { h } _ { j } ^ { Q l } , \\quad \\alpha _ { i j } ^ { l } \\propto \\exp ( S ^ { l } ( \\mathrm { H o W } _ { i } ^ { C } , \\mathrm { H o W } _ { j } ^ { Q } ) ) . } \\end{array}", + "type": "interline_equation", + "image_path": "4988641819727045586758b826efd980f8a73a8d9185a60e97e39f222ad37989.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 215, + 423, + 441, + 442 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 129, + 445, + 455, + 464 + ], + "lines": [ + { + "bbox": [ + 128, + 444, + 456, + 464 + ], + "spans": [ + { + "bbox": [ + 128, + 444, + 217, + 463 + ], + "score": 1.0, + "content": "2. High-level fusion:", + "type": "text" + }, + { + "bbox": [ + 221, + 446, + 456, + 464 + ], + "score": 0.76, + "content": "\\begin{array} { r } { \\hat { \\boldsymbol { \\mathsf { h } } } _ { i } ^ { C h } = \\sum _ { j } \\alpha _ { i j } ^ { h } \\boldsymbol { h } _ { j } ^ { Q h } , \\quad \\alpha _ { i j } ^ { h } \\propto \\exp ( S ^ { h } ( \\mathrm { H o W } _ { i } ^ { C } , \\mathrm { H o W } _ { j } ^ { Q } ) ) . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 128, + 444, + 456, + 464 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 467, + 458, + 484 + ], + "lines": [], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 234, + 467, + 458, + 484 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 492, + 503, + 526 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 505 + ], + "score": 1.0, + "content": "This multi-level attention mechanism captures different levels of information independently, while", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 502, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 516 + ], + "score": 1.0, + "content": "taking all levels of information into account. A new BiLSTM is applied to obtain the representation", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 513, + 322, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 120, + 527 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 515, + 131, + 524 + ], + "score": 0.83, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 513, + 308, + 527 + ], + "score": 1.0, + "content": "fully fused with information in the question", + "type": "text" + }, + { + "bbox": [ + 308, + 515, + 318, + 525 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 513, + 322, + 527 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 492, + 505, + 527 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 119, + 531, + 473, + 551 + ], + "lines": [ + { + "bbox": [ + 119, + 531, + 473, + 551 + ], + "spans": [ + { + "bbox": [ + 119, + 531, + 473, + 551 + ], + "score": 0.91, + "content": "\\{ \\pmb { v } _ { 1 } ^ { C } , \\ldots , \\pmb { v } _ { m } ^ { C } \\} = \\mathrm { B i L S T M } ( [ { \\pmb { h } } _ { 1 } ^ { C l } ; { \\pmb { h } } _ { 1 } ^ { C h } ; { \\hat { \\pmb { h } } } _ { 1 } ^ { C l } ; { \\hat { \\pmb { h } } } _ { 1 } ^ { C h } ; { \\hat { \\pmb { u } } } _ { 1 } ^ { C l } ] , \\ldots , [ { \\pmb { h } } _ { m } ^ { C l } ; { \\pmb { h } } _ { m } ^ { C h } ; { \\hat { \\pmb { h } } } _ { m } ^ { C l } ; { \\hat { \\pmb { h } } } _ { m } ^ { C h } ; { \\hat { \\pmb { u } } } _ { m } ^ { C } ] ) .", + "type": "interline_equation", + "image_path": "8dcce15acb993a32a6ffe25437c7b96c47d8ea9ad9c8a3427ed97b9b25ec9d52.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 119, + 531, + 473, + 551 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 562, + 505, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "Fully-Aware Self-Boosted Fusion. We now use self-boosted fusion to consider distant parts in the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 572, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 586 + ], + "score": 1.0, + "content": "context, as illustrated by arrow (3) in Figure 2. Again, we achieve this via fully-aware attention on", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 584, + 327, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 327, + 597 + ], + "score": 1.0, + "content": "history-of-word. We identify the history-of-word to be", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 561, + 506, + 597 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 601, + 424, + 620 + ], + "lines": [ + { + "bbox": [ + 185, + 601, + 424, + 620 + ], + "spans": [ + { + "bbox": [ + 185, + 601, + 424, + 620 + ], + "score": 0.89, + "content": "\\operatorname { H o W } _ { i } ^ { C } = [ \\pmb { g } _ { i } ^ { C } ; \\pmb { c } _ { i } ^ { C } ; \\pmb { h } _ { i } ^ { C l } ; \\pmb { h } _ { i } ^ { C h } ; \\hat { \\pmb { h } } _ { i } ^ { C l } ; \\hat { \\pmb { h } } _ { i } ^ { C h } ; \\hat { \\pmb { u } } _ { i } ^ { C } ; \\pmb { v } _ { i } ^ { C } ] \\in \\mathbb { R } ^ { 2 4 0 0 } .", + "type": "interline_equation", + "image_path": "810e1435335c87870a4c10de901f452b589e89a6645d884b19249ece23a8494f.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 185, + 601, + 424, + 620 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 626, + 476, + 652 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 480, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 265, + 643 + ], + "score": 1.0, + "content": "We then perform fully-aware attention,", + "type": "text" + }, + { + "bbox": [ + 266, + 626, + 480, + 642 + ], + "score": 0.56, + "content": "\\begin{array} { r } { \\hat { \\pmb v } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } ^ { s } \\pmb { v } _ { j } ^ { C } , \\alpha _ { i j } ^ { s } \\propto \\exp ( S ^ { s } ( \\mathrm { H o W } _ { i } ^ { C } , \\mathrm { H o W } _ { j } ^ { C } ) ) . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 638, + 295, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 295, + 654 + ], + "score": 1.0, + "content": "The final context representation is obtained by", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 624, + 480, + 654 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 658, + 428, + 674 + ], + "lines": [ + { + "bbox": [ + 183, + 658, + 428, + 674 + ], + "spans": [ + { + "bbox": [ + 183, + 658, + 428, + 674 + ], + "score": 0.88, + "content": "U _ { C } = \\{ \\pmb { u } _ { 1 } ^ { C } , \\ldots , \\pmb { u } _ { m } ^ { C } \\} = \\mathrm { B i L S T M } ( [ \\pmb { v } _ { 1 } ^ { C } ; \\hat { \\pmb { v } } _ { 1 } ^ { C } ] , \\ldots , [ \\pmb { v } _ { m } ^ { C } ; \\hat { \\pmb { v } } _ { m } ^ { C } ] ) .", + "type": "interline_equation", + "image_path": "946826f16b3340087bf4395eda5a620cee8ce4793b8ecacc4fcdb326ce7cd59c.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 183, + 658, + 428, + 674 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 681, + 351, + 694 + ], + "lines": [ + { + "bbox": [ + 134, + 675, + 348, + 700 + ], + "spans": [ + { + "bbox": [ + 134, + 680, + 203, + 694 + ], + "score": 0.93, + "content": "\\{ \\boldsymbol { u } _ { i } ^ { C } \\in \\mathbb { R } ^ { 2 5 0 } \\} _ { i = 1 } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 675, + 338, + 700 + ], + "score": 1.0, + "content": "are the understanding vectors for", + "type": "text" + }, + { + "bbox": [ + 338, + 682, + 348, + 691 + ], + "score": 0.85, + "content": "C", + "type": "inline_equation" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 134, + 675, + 348, + 700 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 437, + 712 + ], + "score": 1.0, + "content": "After these components in FusionNet, we have created the understanding vectors,", + "type": "text" + }, + { + "bbox": [ + 437, + 699, + 451, + 710 + ], + "score": 0.91, + "content": "U _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 698, + 505, + 712 + ], + "score": 1.0, + "content": ", for the con-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 124, + 723 + ], + "score": 1.0, + "content": "text", + "type": "text" + }, + { + "bbox": [ + 124, + 710, + 134, + 720 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 708, + 296, + 723 + ], + "score": 1.0, + "content": ", which are fully fused with the question", + "type": "text" + }, + { + "bbox": [ + 296, + 710, + 306, + 721 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 708, + 472, + 723 + ], + "score": 1.0, + "content": ". We also have the understanding vectors,", + "type": "text" + }, + { + "bbox": [ + 473, + 710, + 487, + 722 + ], + "score": 0.89, + "content": "U _ { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 708, + 505, + 723 + ], + "score": 1.0, + "content": ", for", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 719, + 171, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 157, + 734 + ], + "score": 1.0, + "content": "the question", + "type": "text" + }, + { + "bbox": [ + 158, + 721, + 167, + 732 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 719, + 171, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 698, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 323, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 325, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 325, + 95 + ], + "score": 1.0, + "content": "3.2 APPLICATION IN MACHINE COMPREHENSION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 102, + 505, + 140 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 295, + 115 + ], + "score": 1.0, + "content": "We focus particularly on the output format in", + "type": "text" + }, + { + "bbox": [ + 296, + 103, + 330, + 114 + ], + "score": 0.36, + "content": "\\mathrm { S Q u A D }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 102, + 505, + 115 + ], + "score": 1.0, + "content": "(Rajpurkar et al., 2016) where the answer", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "score": 1.0, + "content": "is always a span in the context. The output of FusionNet are the understanding vectors for both", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 124, + 331, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 117, + 137 + ], + "score": 0.78, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 124, + 134, + 141 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 135, + 127, + 145, + 138 + ], + "score": 0.55, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 124, + 148, + 141 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 148, + 126, + 236, + 139 + ], + "score": 0.79, + "content": "U _ { C } = \\{ \\mathbf { { u } } _ { 1 } ^ { C } , \\dots , \\mathbf { { u } } _ { m } ^ { C } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 124, + 240, + 141 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 240, + 125, + 327, + 140 + ], + "score": 0.85, + "content": "U _ { Q } = \\{ \\bar { \\pmb { u } } _ { 1 } ^ { Q } , \\dots , \\pmb { u } _ { n } ^ { Q } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 124, + 331, + 141 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 189 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "We then use them to find the answer span in the context. Firstly, a single summarized question", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 154, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 276, + 169 + ], + "score": 1.0, + "content": "understanding vector is obtained through", + "type": "text" + }, + { + "bbox": [ + 276, + 154, + 345, + 169 + ], + "score": 0.94, + "content": "\\begin{array} { r } { { \\pmb u } ^ { Q } = \\sum _ { i } \\beta _ { i } { \\pmb u } _ { i } ^ { Q } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 154, + 378, + 169 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 378, + 154, + 456, + 169 + ], + "score": 0.91, + "content": "\\beta _ { i } \\propto \\mathrm { { e x p } } ( { \\pmb w } ^ { T } { \\pmb u } _ { i } ^ { Q } )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 154, + 476, + 169 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 476, + 158, + 486, + 167 + ], + "score": 0.72, + "content": "\\pmb { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 154, + 506, + 169 + ], + "score": 1.0, + "content": "is a", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 165, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 181 + ], + "score": 1.0, + "content": "trainable vector. Then we attend for the span start using the summarized question understanding", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 178, + 153, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 133, + 189 + ], + "score": 1.0, + "content": "vector", + "type": "text" + }, + { + "bbox": [ + 134, + 178, + 148, + 189 + ], + "score": 0.87, + "content": "\\pmb { u } ^ { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 178, + 153, + 189 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 249, + 187, + 360, + 202 + ], + "lines": [ + { + "bbox": [ + 249, + 187, + 360, + 202 + ], + "spans": [ + { + "bbox": [ + 249, + 187, + 360, + 202 + ], + "score": 0.91, + "content": "P _ { i } ^ { S } \\propto \\exp ( ( \\boldsymbol { \\mathbf { \\mathit { u } } } ^ { Q } ) ^ { T } W _ { S } \\boldsymbol { \\mathbf { \\mathit { u } } } _ { i } ^ { C } ) ,", + "type": "interline_equation", + "image_path": "fa311c803fdd350b2b7ef382f167828161ad73a10229d5b0a705805e938d606a.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 249, + 187, + 360, + 202 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 251 + ], + "lines": [ + { + "bbox": [ + 105, + 202, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 133, + 218 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 204, + 187, + 216 + ], + "score": 0.93, + "content": "W _ { S } \\in \\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 202, + 506, + 218 + ], + "score": 1.0, + "content": "is a trainable matrix. To use the information of the span start when we attend", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 215, + 504, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 455, + 227 + ], + "score": 1.0, + "content": "for the span end, we combine the context understanding vector for the span start with", + "type": "text" + }, + { + "bbox": [ + 455, + 215, + 469, + 226 + ], + "score": 0.88, + "content": "\\pmb { u } ^ { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 215, + 504, + 227 + ], + "score": 1.0, + "content": "through", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 225, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 104, + 225, + 217, + 240 + ], + "score": 1.0, + "content": "a GRU (Cho et al., 2014),", + "type": "text" + }, + { + "bbox": [ + 217, + 226, + 339, + 239 + ], + "score": 0.91, + "content": "\\begin{array} { r } { { \\pmb v } ^ { Q } = \\mathrm { G R U } ( { \\pmb u } ^ { Q } , \\sum _ { i } P _ { i } ^ { S } { \\pmb u } _ { i } ^ { \\top } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 225, + 372, + 240 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 372, + 226, + 387, + 237 + ], + "score": 0.89, + "content": "\\pmb { u } ^ { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 225, + 506, + 240 + ], + "score": 1.0, + "content": "is taken as the memory and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 238, + 441, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 238, + 150, + 252 + ], + "score": 0.93, + "content": "\\textstyle \\sum _ { i } P _ { i } ^ { S } { \\boldsymbol { u } } _ { i } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 238, + 423, + 252 + ], + "score": 1.0, + "content": "as the input in GRU. Finally we attend for the end of the span using", + "type": "text" + }, + { + "bbox": [ + 424, + 238, + 437, + 249 + ], + "score": 0.86, + "content": "v ^ { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 238, + 441, + 252 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "interline_equation", + "bbox": [ + 249, + 256, + 361, + 272 + ], + "lines": [ + { + "bbox": [ + 249, + 256, + 361, + 272 + ], + "spans": [ + { + "bbox": [ + 249, + 256, + 361, + 272 + ], + "score": 0.91, + "content": "P _ { i } ^ { E } \\propto \\exp ( ( \\pmb { v } ^ { Q } ) ^ { T } W _ { E } \\pmb { u } _ { i } ^ { C } ) ,", + "type": "interline_equation", + "image_path": "508dd248555ec57d70c929cd23cac8f188f98a94877f19eeb584f1a0c82b2c21.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 249, + 256, + 361, + 272 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 276, + 295, + 289 + ], + "lines": [ + { + "bbox": [ + 105, + 274, + 297, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 133, + 291 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 276, + 185, + 289 + ], + "score": 0.92, + "content": "W _ { E } \\in \\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 274, + 297, + 291 + ], + "score": 1.0, + "content": "is another trainable matrix.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 294, + 504, + 318 + ], + "lines": [ + { + "bbox": [ + 105, + 292, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 506, + 307 + ], + "score": 1.0, + "content": "Training. During training, we maximize the log probabilities of the ground truth span start and end,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 302, + 435, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 212, + 320 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\sum _ { k } ( \\log \\mathsf { \\bar { ( } } P _ { i _ { k } ^ { s } } ^ { S } ) + \\mathsf { \\bar { l o g } } ( P _ { i _ { k } ^ { e } } ^ { E } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 302, + 244, + 319 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 244, + 306, + 266, + 317 + ], + "score": 0.9, + "content": "i _ { k } ^ { s } , i _ { k } ^ { e }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 302, + 377, + 319 + ], + "score": 1.0, + "content": "are the answer span for the", + "type": "text" + }, + { + "bbox": [ + 377, + 306, + 384, + 315 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 302, + 435, + 319 + ], + "score": 1.0, + "content": "-th instance.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 325, + 504, + 348 + ], + "lines": [ + { + "bbox": [ + 103, + 321, + 507, + 342 + ], + "spans": [ + { + "bbox": [ + 103, + 321, + 291, + 342 + ], + "score": 1.0, + "content": "Prediction. We predict the answer span to be", + "type": "text" + }, + { + "bbox": [ + 291, + 326, + 313, + 337 + ], + "score": 0.91, + "content": "i ^ { s } , i ^ { e }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 321, + 392, + 342 + ], + "score": 1.0, + "content": "with the maximum", + "type": "text" + }, + { + "bbox": [ + 393, + 325, + 421, + 338 + ], + "score": 0.93, + "content": "P _ { i ^ { s } } ^ { S } P _ { i ^ { e } } ^ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 321, + 507, + 342 + ], + "score": 1.0, + "content": "under the constraint", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 335, + 181, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 177, + 348 + ], + "score": 0.91, + "content": "0 \\leq i ^ { e } - i ^ { s } \\leq 1 5", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 335, + 181, + 349 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 108, + 364, + 200, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 201, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 201, + 378 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 504, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 504, + 401 + ], + "score": 1.0, + "content": "In this section, we first present the datasets used for evaluation. Then we compare our end-to-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 401, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 412 + ], + "score": 1.0, + "content": "end FusionNet model with existing machine reading models. Finally, we conduct experiments to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "validate the effectiveness of our proposed components. Additional ablation study on input vectors", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 422, + 465, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 465, + 435 + ], + "score": 1.0, + "content": "can be found in Appendix C. Detailed experimental settings can be found in Appendix E.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "title", + "bbox": [ + 107, + 447, + 176, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 177, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 177, + 460 + ], + "score": 1.0, + "content": "4.1 DATASETS", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 468, + 505, + 512 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "We focus on the SQuAD dataset (Rajpurkar et al., 2016) to train and evaluate our model. SQuAD", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 478, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 349, + 492 + ], + "score": 1.0, + "content": "is a popular machine comprehension dataset consisting of", + "type": "text" + }, + { + "bbox": [ + 349, + 479, + 389, + 490 + ], + "score": 0.87, + "content": "1 0 0 { , } 0 0 0 { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 478, + 506, + 492 + ], + "score": 1.0, + "content": "questions created by crowd", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 491, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 502 + ], + "score": 1.0, + "content": "workers on 536 Wikipedia articles. Each context is a paragraph from an article and the answer to", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 501, + 327, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 327, + 513 + ], + "score": 1.0, + "content": "each question is guaranteed to be a span in the context.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 584 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 531 + ], + "score": 1.0, + "content": "While rapid progress has been made on SQuAD, whether these systems truly understand language", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "remains unclear. In a recent paper, Jia & Liang (2017) proposed several adversarial schemes to test", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "the understanding of the systems. We will use the following two adversarial datasets, AddOneSent", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "score": 1.0, + "content": "and AddSent, to evaluate our model. For both datasets, a confusing sentence is appended at the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "end of the context. The appended sentence is model-independent for AddOneSent, while AddSent", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 573, + 427, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 427, + 586 + ], + "score": 1.0, + "content": "requires querying the model a few times to choose the most confusing sentence.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "title", + "bbox": [ + 107, + 597, + 198, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 199, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 199, + 611 + ], + "score": 1.0, + "content": "4.2 MAIN RESULTS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 618, + 505, + 685 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 631 + ], + "score": 1.0, + "content": "We submitted our model to SQuAD for evaluation on the hidden test set. We also tested the model", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "on the adversarial SQuAD datasets. Two official evaluation criteria are used: Exact Match (EM) and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 640, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 505, + 653 + ], + "score": 1.0, + "content": "F1 score. EM measures how many predicted answers exactly match the correct answer, while F1", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "score measures the weighted average of the precision and recall at token level. The evaluation results", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "for our model and other competing approaches are shown in Table 2.1 Additional comparisons with", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 672, + 381, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 381, + 686 + ], + "score": 1.0, + "content": "state-of-the-art models in the literature can be found in Appendix A.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 108, + 690, + 502, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 689, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 703 + ], + "score": 1.0, + "content": "For the two adversarial datasets, AddOneSent and AddSent, the evaluation criteria is the same as", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 702, + 504, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 702, + 504, + 713 + ], + "score": 1.0, + "content": "SQuAD. However, all models are trained only on the original SQuAD, so the model never sees the", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 113, + 721, + 494, + 732 + ], + "lines": [ + { + "bbox": [ + 120, + 720, + 496, + 732 + ], + "spans": [ + { + "bbox": [ + 120, + 720, + 496, + 732 + ], + "score": 1.0, + "content": "1Numbers are extracted from SQuAD leaderboard https://stanford-qa.com on Oct. 4th, 2017.", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 323, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 325, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 325, + 95 + ], + "score": 1.0, + "content": "3.2 APPLICATION IN MACHINE COMPREHENSION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 102, + 505, + 140 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 295, + 115 + ], + "score": 1.0, + "content": "We focus particularly on the output format in", + "type": "text" + }, + { + "bbox": [ + 296, + 103, + 330, + 114 + ], + "score": 0.36, + "content": "\\mathrm { S Q u A D }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 102, + 505, + 115 + ], + "score": 1.0, + "content": "(Rajpurkar et al., 2016) where the answer", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "score": 1.0, + "content": "is always a span in the context. The output of FusionNet are the understanding vectors for both", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 124, + 331, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 117, + 137 + ], + "score": 0.78, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 124, + 134, + 141 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 135, + 127, + 145, + 138 + ], + "score": 0.55, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 124, + 148, + 141 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 148, + 126, + 236, + 139 + ], + "score": 0.79, + "content": "U _ { C } = \\{ \\mathbf { { u } } _ { 1 } ^ { C } , \\dots , \\mathbf { { u } } _ { m } ^ { C } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 124, + 240, + 141 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 240, + 125, + 327, + 140 + ], + "score": 0.85, + "content": "U _ { Q } = \\{ \\bar { \\pmb { u } } _ { 1 } ^ { Q } , \\dots , \\pmb { u } _ { n } ^ { Q } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 124, + 331, + 141 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 102, + 505, + 141 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 189 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "We then use them to find the answer span in the context. Firstly, a single summarized question", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 154, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 276, + 169 + ], + "score": 1.0, + "content": "understanding vector is obtained through", + "type": "text" + }, + { + "bbox": [ + 276, + 154, + 345, + 169 + ], + "score": 0.94, + "content": "\\begin{array} { r } { { \\pmb u } ^ { Q } = \\sum _ { i } \\beta _ { i } { \\pmb u } _ { i } ^ { Q } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 154, + 378, + 169 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 378, + 154, + 456, + 169 + ], + "score": 0.91, + "content": "\\beta _ { i } \\propto \\mathrm { { e x p } } ( { \\pmb w } ^ { T } { \\pmb u } _ { i } ^ { Q } )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 154, + 476, + 169 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 476, + 158, + 486, + 167 + ], + "score": 0.72, + "content": "\\pmb { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 154, + 506, + 169 + ], + "score": 1.0, + "content": "is a", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 165, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 181 + ], + "score": 1.0, + "content": "trainable vector. Then we attend for the span start using the summarized question understanding", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 178, + 153, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 133, + 189 + ], + "score": 1.0, + "content": "vector", + "type": "text" + }, + { + "bbox": [ + 134, + 178, + 148, + 189 + ], + "score": 0.87, + "content": "\\pmb { u } ^ { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 178, + 153, + 189 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 142, + 506, + 189 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 249, + 187, + 360, + 202 + ], + "lines": [ + { + "bbox": [ + 249, + 187, + 360, + 202 + ], + "spans": [ + { + "bbox": [ + 249, + 187, + 360, + 202 + ], + "score": 0.91, + "content": "P _ { i } ^ { S } \\propto \\exp ( ( \\boldsymbol { \\mathbf { \\mathit { u } } } ^ { Q } ) ^ { T } W _ { S } \\boldsymbol { \\mathbf { \\mathit { u } } } _ { i } ^ { C } ) ,", + "type": "interline_equation", + "image_path": "fa311c803fdd350b2b7ef382f167828161ad73a10229d5b0a705805e938d606a.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 249, + 187, + 360, + 202 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 251 + ], + "lines": [ + { + "bbox": [ + 105, + 202, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 133, + 218 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 204, + 187, + 216 + ], + "score": 0.93, + "content": "W _ { S } \\in \\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 202, + 506, + 218 + ], + "score": 1.0, + "content": "is a trainable matrix. To use the information of the span start when we attend", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 215, + 504, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 455, + 227 + ], + "score": 1.0, + "content": "for the span end, we combine the context understanding vector for the span start with", + "type": "text" + }, + { + "bbox": [ + 455, + 215, + 469, + 226 + ], + "score": 0.88, + "content": "\\pmb { u } ^ { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 215, + 504, + 227 + ], + "score": 1.0, + "content": "through", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 225, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 104, + 225, + 217, + 240 + ], + "score": 1.0, + "content": "a GRU (Cho et al., 2014),", + "type": "text" + }, + { + "bbox": [ + 217, + 226, + 339, + 239 + ], + "score": 0.91, + "content": "\\begin{array} { r } { { \\pmb v } ^ { Q } = \\mathrm { G R U } ( { \\pmb u } ^ { Q } , \\sum _ { i } P _ { i } ^ { S } { \\pmb u } _ { i } ^ { \\top } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 225, + 372, + 240 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 372, + 226, + 387, + 237 + ], + "score": 0.89, + "content": "\\pmb { u } ^ { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 225, + 506, + 240 + ], + "score": 1.0, + "content": "is taken as the memory and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 238, + 441, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 238, + 150, + 252 + ], + "score": 0.93, + "content": "\\textstyle \\sum _ { i } P _ { i } ^ { S } { \\boldsymbol { u } } _ { i } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 238, + 423, + 252 + ], + "score": 1.0, + "content": "as the input in GRU. Finally we attend for the end of the span using", + "type": "text" + }, + { + "bbox": [ + 424, + 238, + 437, + 249 + ], + "score": 0.86, + "content": "v ^ { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 238, + 441, + 252 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 104, + 202, + 506, + 252 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 249, + 256, + 361, + 272 + ], + "lines": [ + { + "bbox": [ + 249, + 256, + 361, + 272 + ], + "spans": [ + { + "bbox": [ + 249, + 256, + 361, + 272 + ], + "score": 0.91, + "content": "P _ { i } ^ { E } \\propto \\exp ( ( \\pmb { v } ^ { Q } ) ^ { T } W _ { E } \\pmb { u } _ { i } ^ { C } ) ,", + "type": "interline_equation", + "image_path": "508dd248555ec57d70c929cd23cac8f188f98a94877f19eeb584f1a0c82b2c21.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 249, + 256, + 361, + 272 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 276, + 295, + 289 + ], + "lines": [ + { + "bbox": [ + 105, + 274, + 297, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 133, + 291 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 276, + 185, + 289 + ], + "score": 0.92, + "content": "W _ { E } \\in \\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 274, + 297, + 291 + ], + "score": 1.0, + "content": "is another trainable matrix.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 274, + 297, + 291 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 294, + 504, + 318 + ], + "lines": [ + { + "bbox": [ + 105, + 292, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 506, + 307 + ], + "score": 1.0, + "content": "Training. During training, we maximize the log probabilities of the ground truth span start and end,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 302, + 435, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 212, + 320 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\sum _ { k } ( \\log \\mathsf { \\bar { ( } } P _ { i _ { k } ^ { s } } ^ { S } ) + \\mathsf { \\bar { l o g } } ( P _ { i _ { k } ^ { e } } ^ { E } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 302, + 244, + 319 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 244, + 306, + 266, + 317 + ], + "score": 0.9, + "content": "i _ { k } ^ { s } , i _ { k } ^ { e }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 302, + 377, + 319 + ], + "score": 1.0, + "content": "are the answer span for the", + "type": "text" + }, + { + "bbox": [ + 377, + 306, + 384, + 315 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 302, + 435, + 319 + ], + "score": 1.0, + "content": "-th instance.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 292, + 506, + 320 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 325, + 504, + 348 + ], + "lines": [ + { + "bbox": [ + 103, + 321, + 507, + 342 + ], + "spans": [ + { + "bbox": [ + 103, + 321, + 291, + 342 + ], + "score": 1.0, + "content": "Prediction. We predict the answer span to be", + "type": "text" + }, + { + "bbox": [ + 291, + 326, + 313, + 337 + ], + "score": 0.91, + "content": "i ^ { s } , i ^ { e }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 321, + 392, + 342 + ], + "score": 1.0, + "content": "with the maximum", + "type": "text" + }, + { + "bbox": [ + 393, + 325, + 421, + 338 + ], + "score": 0.93, + "content": "P _ { i ^ { s } } ^ { S } P _ { i ^ { e } } ^ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 321, + 507, + 342 + ], + "score": 1.0, + "content": "under the constraint", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 335, + 181, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 177, + 348 + ], + "score": 0.91, + "content": "0 \\leq i ^ { e } - i ^ { s } \\leq 1 5", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 335, + 181, + 349 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 103, + 321, + 507, + 349 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 364, + 200, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 201, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 201, + 378 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 504, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 504, + 401 + ], + "score": 1.0, + "content": "In this section, we first present the datasets used for evaluation. Then we compare our end-to-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 401, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 412 + ], + "score": 1.0, + "content": "end FusionNet model with existing machine reading models. Finally, we conduct experiments to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "validate the effectiveness of our proposed components. Additional ablation study on input vectors", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 422, + 465, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 465, + 435 + ], + "score": 1.0, + "content": "can be found in Appendix C. Detailed experimental settings can be found in Appendix E.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 389, + 506, + 435 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 447, + 176, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 177, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 177, + 460 + ], + "score": 1.0, + "content": "4.1 DATASETS", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 468, + 505, + 512 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "We focus on the SQuAD dataset (Rajpurkar et al., 2016) to train and evaluate our model. SQuAD", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 478, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 349, + 492 + ], + "score": 1.0, + "content": "is a popular machine comprehension dataset consisting of", + "type": "text" + }, + { + "bbox": [ + 349, + 479, + 389, + 490 + ], + "score": 0.87, + "content": "1 0 0 { , } 0 0 0 { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 478, + 506, + 492 + ], + "score": 1.0, + "content": "questions created by crowd", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 491, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 502 + ], + "score": 1.0, + "content": "workers on 536 Wikipedia articles. Each context is a paragraph from an article and the answer to", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 501, + 327, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 327, + 513 + ], + "score": 1.0, + "content": "each question is guaranteed to be a span in the context.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 468, + 506, + 513 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 584 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 531 + ], + "score": 1.0, + "content": "While rapid progress has been made on SQuAD, whether these systems truly understand language", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "remains unclear. In a recent paper, Jia & Liang (2017) proposed several adversarial schemes to test", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "the understanding of the systems. We will use the following two adversarial datasets, AddOneSent", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "score": 1.0, + "content": "and AddSent, to evaluate our model. For both datasets, a confusing sentence is appended at the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "end of the context. The appended sentence is model-independent for AddOneSent, while AddSent", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 573, + 427, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 427, + 586 + ], + "score": 1.0, + "content": "requires querying the model a few times to choose the most confusing sentence.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 516, + 505, + 586 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 597, + 198, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 199, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 199, + 611 + ], + "score": 1.0, + "content": "4.2 MAIN RESULTS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 618, + 505, + 685 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 631 + ], + "score": 1.0, + "content": "We submitted our model to SQuAD for evaluation on the hidden test set. We also tested the model", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "on the adversarial SQuAD datasets. Two official evaluation criteria are used: Exact Match (EM) and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 640, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 505, + 653 + ], + "score": 1.0, + "content": "F1 score. EM measures how many predicted answers exactly match the correct answer, while F1", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "score measures the weighted average of the precision and recall at token level. The evaluation results", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "for our model and other competing approaches are shown in Table 2.1 Additional comparisons with", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 672, + 381, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 381, + 686 + ], + "score": 1.0, + "content": "state-of-the-art models in the literature can be found in Appendix A.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 617, + 505, + 686 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 690, + 502, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 689, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 703 + ], + "score": 1.0, + "content": "For the two adversarial datasets, AddOneSent and AddSent, the evaluation criteria is the same as", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 702, + 504, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 702, + 504, + 713 + ], + "score": 1.0, + "content": "SQuAD. However, all models are trained only on the original SQuAD, so the model never sees the", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 689, + 505, + 713 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 339, + 82, + 497, + 184 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 339, + 82, + 497, + 184 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 339, + 82, + 497, + 184 + ], + "spans": [ + { + "bbox": [ + 339, + 82, + 497, + 184 + ], + "score": 0.973, + "html": "
AddSentEM/F1
LRBaseline17.0/23.2
Match-LSTM (E) BiDAF (E)24.3 /34.2 29.6 /34.2
SEDT (E) Mnemonic Reader (S)30.0 /35.0
Mnemonic Reader (E)39.8/46.6
40.7 / 46.2
ReasoNet (E) FusionNet (E)34.6 /39.4 46.2 / 51.4
", + "type": "table", + "image_path": "275b7fdadeeb779db9084052916419020474f591904dbce78928b78ef9a75837.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 339, + 82, + 497, + 96.57142857142857 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 339, + 96.57142857142857, + 497, + 111.14285714285714 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 339, + 111.14285714285714, + 497, + 125.71428571428571 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 339, + 125.71428571428571, + 497, + 140.28571428571428 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 339, + 140.28571428571428, + 497, + 154.85714285714286 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 339, + 154.85714285714286, + 497, + 169.42857142857144 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 339, + 169.42857142857144, + 497, + 184.00000000000003 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "index": 24 + }, + { + "type": "table", + "bbox": [ + 339, + 227, + 497, + 329 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 326, + 327, + 360 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 324, + 327, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 327, + 339 + ], + "score": 1.0, + "content": "Table 2: The performance of FusionNet and competing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 337, + 328, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 328, + 349 + ], + "score": 1.0, + "content": "approaches on SQuAD hidden test set at the time of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 348, + 207, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 207, + 360 + ], + "score": 1.0, + "content": "writing (Oct. 4th, 2017).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "table_body", + "bbox": [ + 339, + 227, + 497, + 329 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 339, + 227, + 497, + 329 + ], + "spans": [ + { + "bbox": [ + 339, + 227, + 497, + 329 + ], + "score": 0.971, + "html": "
AddOneSentEM/F1
LRBaseline Match-LSTM (E)22.3/30.4 34.8 / 41.8
BiDAF (E) SEDT (E)40.7 /46.9 40.0 / 46.5
Mnemonic Reader (S)48.5 /56.0
Mnemonic Reader (E)48.7 / 55.3
ReasoNet (E) FusionNet (E)43.6 /49.8
", + "type": "table", + "image_path": "e8605ba131ed5f1d19bd85c55d9fa59ceaa5cc4b5a45aff4f8cb39bb7fd203b1.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 339, + 227, + 497, + 241.57142857142858 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 339, + 241.57142857142858, + 497, + 256.14285714285717 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 339, + 256.14285714285717, + 497, + 270.7142857142857 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 339, + 270.7142857142857, + 497, + 285.2857142857143 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 339, + 285.2857142857143, + 497, + 299.85714285714283 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 339, + 299.85714285714283, + 497, + 314.4285714285714 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 339, + 314.4285714285714, + 497, + 328.99999999999994 + ], + "spans": [], + "index": 36 + } + ] + } + ], + "index": 26.0 + }, + { + "type": "table", + "bbox": [ + 106, + 80, + 329, + 318 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 80, + 329, + 318 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 80, + 329, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 329, + 318 + ], + "score": 0.977, + "html": "
Single ModelTest Set EM/F1
LR Baseline (Rajpurkar et al., 2016) Match-LSTM (Wang & Jiang,2016) BiDAF (Seo et al., 2017) SEDT (Liu et al., 2017) RaSoR (Lee et al., 2016) DrQA (Chen et al., 2017a) ReasoNet (Shen et al.,2017) R.Mnemonic Reader (Hu et al., 2017) DCN+ R-nett FusionNet40.4 /51.0 64.7/73.7 68.0 / 77.3 68.2 /77.5 70.8/78.7 70.7 /79.4 70.6 / 79.4 73.2/81.8 74.9 / 82.8 75.7 /83.5 76.0 / 83.9
EnsembleModel ReasoNet (Shen et al., 2017) MEMEN (Pan et al., 2017) R.Mnemonic Reader (Hu et al., 2017) R-nett DCN+ FusionNet75.0 / 82.3 75.4/82.7 77.7 / 84.9 78.2/85.2 78.7 / 85.6
Human (Rajpurkar et al., 2016)78.8 / 85.9 82.3/91.2
", + "type": "table", + "image_path": "eda0852d2edf6c5400f30b997799aaada7526459d1f832c670df1f8416d97005.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 106, + 80, + 329, + 93.22222222222223 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 93.22222222222223, + 329, + 106.44444444444446 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 106.44444444444446, + 329, + 119.66666666666669 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 119.66666666666669, + 329, + 132.8888888888889 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 106, + 132.8888888888889, + 329, + 146.11111111111114 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 146.11111111111114, + 329, + 159.33333333333337 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 159.33333333333337, + 329, + 172.5555555555556 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 172.5555555555556, + 329, + 185.77777777777783 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 185.77777777777783, + 329, + 199.00000000000006 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 199.00000000000006, + 329, + 212.22222222222229 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 106, + 212.22222222222229, + 329, + 225.4444444444445 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 106, + 225.4444444444445, + 329, + 238.66666666666674 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 106, + 238.66666666666674, + 329, + 251.88888888888897 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 106, + 251.88888888888897, + 329, + 265.1111111111112 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 106, + 265.1111111111112, + 329, + 278.3333333333334 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 106, + 278.3333333333334, + 329, + 291.55555555555566 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 106, + 291.55555555555566, + 329, + 304.7777777777779 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 106, + 304.7777777777779, + 329, + 318.0000000000001 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 331, + 192, + 504, + 215 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 331, + 192, + 504, + 204 + ], + "spans": [ + { + "bbox": [ + 331, + 192, + 504, + 204 + ], + "score": 1.0, + "content": "Table 3: Comparison on AddSent. (S: Sin-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 331, + 203, + 433, + 216 + ], + "spans": [ + { + "bbox": [ + 331, + 203, + 433, + 216 + ], + "score": 1.0, + "content": "gle model, E: Ensemble)", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "table_footnote", + "bbox": [ + 331, + 338, + 504, + 360 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 331, + 336, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 331, + 336, + 504, + 349 + ], + "score": 1.0, + "content": "Table 4: Comparison on AddOneSent. (S:", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 332, + 348, + 446, + 360 + ], + "spans": [ + { + "bbox": [ + 332, + 348, + 446, + 360 + ], + "score": 1.0, + "content": "Single model, E: Ensemble)", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 105, + 381, + 504, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "score": 1.0, + "content": "adversarial datasets during training. The results for AddSent and AddOneSent are shown in Table 3", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 392, + 213, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 213, + 405 + ], + "score": 1.0, + "content": "and Table 4, respectively.2", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 107, + 409, + 504, + 443 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 506, + 423 + ], + "score": 1.0, + "content": "From the results, we can see that our models not only perform well on the original SQuAD dataset,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 421, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 325, + 433 + ], + "score": 1.0, + "content": "but also outperform all previous models by more than", + "type": "text" + }, + { + "bbox": [ + 326, + 421, + 340, + 432 + ], + "score": 0.87, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 421, + 506, + 433 + ], + "score": 1.0, + "content": "in EM score on the adversarial datasets.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 431, + 489, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 489, + 444 + ], + "score": 1.0, + "content": "This shows that FusionNet is better at language understanding of both the context and question.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "title", + "bbox": [ + 108, + 457, + 304, + 468 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 307, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 307, + 470 + ], + "score": 1.0, + "content": "4.3 COMPARISON ON ATTENTION FUNCTION", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 457, + 490 + ], + "score": 1.0, + "content": "In this experiment, we compare the performance of different attention scoring functions", + "type": "text" + }, + { + "bbox": [ + 457, + 478, + 489, + 490 + ], + "score": 0.93, + "content": "S ( { \\pmb x } , { \\pmb y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "fully-aware attention. We utilize the end-to-end architecture presented in Section 3.1. Fully-aware", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 500, + 504, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 504, + 513 + ], + "score": 1.0, + "content": "attention is used in two places, fully-aware multi-level fusion: higher level and fully-aware self-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 510, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 524 + ], + "score": 1.0, + "content": "boosted fusion. Word-level fusion remains unchanged. Based on the discussion in Section 2.3, we", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 523, + 317, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 317, + 534 + ], + "score": 1.0, + "content": "consider the following formulations for comparison:", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 129, + 542, + 505, + 650 + ], + "lines": [ + { + "bbox": [ + 129, + 541, + 443, + 556 + ], + "spans": [ + { + "bbox": [ + 129, + 541, + 345, + 556 + ], + "score": 1.0, + "content": "1. Additive attention (MLP) (Bahdanau et al., 2015):", + "type": "text" + }, + { + "bbox": [ + 345, + 542, + 441, + 555 + ], + "score": 0.76, + "content": "\\pmb { s } ^ { T } \\operatorname { t a n h } ( W _ { 1 } \\pmb { x } + W _ { 2 } \\pmb { y } ) .", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 541, + 443, + 556 + ], + "score": 0.573, + "content": "1", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 128, + 556, + 288, + 572 + ], + "spans": [ + { + "bbox": [ + 128, + 556, + 241, + 572 + ], + "score": 1.0, + "content": "2. Multiplicative attention:", + "type": "text" + }, + { + "bbox": [ + 242, + 557, + 284, + 570 + ], + "score": 0.92, + "content": "\\pmb { x } ^ { T } \\pmb { U } ^ { T } \\pmb { V } \\pmb { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 556, + 288, + 572 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 127, + 571, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 127, + 571, + 272, + 590 + ], + "score": 1.0, + "content": "3. Scaled multiplicative attention:", + "type": "text" + }, + { + "bbox": [ + 273, + 573, + 329, + 589 + ], + "score": 0.93, + "content": "\\scriptstyle { \\frac { 1 } { \\sqrt { k } } } x ^ { T } U ^ { T } V y", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 571, + 360, + 590 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 361, + 575, + 367, + 584 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 571, + 506, + 590 + ], + "score": 1.0, + "content": "is the attention hidden size. It is", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 141, + 588, + 284, + 600 + ], + "spans": [ + { + "bbox": [ + 141, + 588, + 284, + 600 + ], + "score": 1.0, + "content": "proposed in (Vaswani et al., 2017).", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 127, + 601, + 385, + 618 + ], + "spans": [ + { + "bbox": [ + 127, + 601, + 303, + 618 + ], + "score": 1.0, + "content": "4. Scaled multiplicative with nonlinearity:", + "type": "text" + }, + { + "bbox": [ + 304, + 602, + 380, + 618 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\frac { 1 } { \\sqrt { k } } f ( U \\pmb { x } ) ^ { T } f ( V \\pmb { y } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 601, + 385, + 618 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 129, + 621, + 410, + 635 + ], + "spans": [ + { + "bbox": [ + 129, + 621, + 269, + 635 + ], + "score": 1.0, + "content": "5. Our proposed symmetric form:", + "type": "text" + }, + { + "bbox": [ + 269, + 621, + 320, + 634 + ], + "score": 0.92, + "content": "\\pmb { x } ^ { T } \\pmb { U } ^ { T } \\pmb { D } \\pmb { U } \\pmb { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 621, + 351, + 635 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 351, + 623, + 361, + 632 + ], + "score": 0.84, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 621, + 410, + 635 + ], + "score": 1.0, + "content": "is diagonal.", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 129, + 636, + 400, + 651 + ], + "spans": [ + { + "bbox": [ + 129, + 637, + 322, + 651 + ], + "score": 1.0, + "content": "6. Proposed symmetric form with nonlinearity:", + "type": "text" + }, + { + "bbox": [ + 323, + 636, + 396, + 650 + ], + "score": 0.92, + "content": "f ( U \\mathbf { x } ) ^ { T } D f ( U \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 637, + 400, + 651 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 56 + } + ], + "index": 53 + }, + { + "type": "text", + "bbox": [ + 107, + 658, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 249, + 672 + ], + "score": 1.0, + "content": "We consider the activation function", + "type": "text" + }, + { + "bbox": [ + 249, + 659, + 270, + 671 + ], + "score": 0.92, + "content": "f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 658, + 293, + 672 + ], + "score": 1.0, + "content": "to be", + "type": "text" + }, + { + "bbox": [ + 293, + 659, + 335, + 671 + ], + "score": 0.89, + "content": "\\operatorname* { m a x } ( 0 , x )", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 658, + 506, + 672 + ], + "score": 1.0, + "content": ". The results of various attention functions", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 106, + 670, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 505, + 682 + ], + "score": 1.0, + "content": "on SQuAD development set are shown in Table 5. It is clear that the symmetric form consistently", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 680, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 694 + ], + "score": 1.0, + "content": "outperforms all alternatives. We attribute this gain to the fact that symmetric form has a single large", + "type": "text" + } + ], + "index": 59 + } + ], + "index": 58 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 700, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 122, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 122, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "†: This is a unpublished version of R-net. The published version of R-net (Wang et al., 2017) only achieved", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 711, + 344, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 126, + 721 + ], + "score": 1.0, + "content": "EM /", + "type": "text" + }, + { + "bbox": [ + 127, + 711, + 187, + 720 + ], + "score": 0.69, + "content": "\\mathrm { F 1 } = 7 1 . 3 / 7 9 . 7", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 711, + 251, + 721 + ], + "score": 1.0, + "content": "for single model,", + "type": "text" + }, + { + "bbox": [ + 252, + 711, + 293, + 720 + ], + "score": 0.42, + "content": "7 5 . 9 / 8 2 . { \\bar { 9 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 711, + 344, + 721 + ], + "score": 1.0, + "content": "for ensemble.", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 720, + 398, + 733 + ], + "spans": [ + { + "bbox": [ + 118, + 720, + 398, + 733 + ], + "score": 1.0, + "content": "2Results are obtain from Codalab worksheet https://goo.gl/E6Xi2E.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 339, + 82, + 497, + 184 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 339, + 82, + 497, + 184 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 339, + 82, + 497, + 184 + ], + "spans": [ + { + "bbox": [ + 339, + 82, + 497, + 184 + ], + "score": 0.973, + "html": "
AddSentEM/F1
LRBaseline17.0/23.2
Match-LSTM (E) BiDAF (E)24.3 /34.2 29.6 /34.2
SEDT (E) Mnemonic Reader (S)30.0 /35.0
Mnemonic Reader (E)39.8/46.6
40.7 / 46.2
ReasoNet (E) FusionNet (E)34.6 /39.4 46.2 / 51.4
", + "type": "table", + "image_path": "275b7fdadeeb779db9084052916419020474f591904dbce78928b78ef9a75837.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 339, + 82, + 497, + 96.57142857142857 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 339, + 96.57142857142857, + 497, + 111.14285714285714 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 339, + 111.14285714285714, + 497, + 125.71428571428571 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 339, + 125.71428571428571, + 497, + 140.28571428571428 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 339, + 140.28571428571428, + 497, + 154.85714285714286 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 339, + 154.85714285714286, + 497, + 169.42857142857144 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 339, + 169.42857142857144, + 497, + 184.00000000000003 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "index": 24 + }, + { + "type": "table", + "bbox": [ + 339, + 227, + 497, + 329 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 326, + 327, + 360 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 324, + 327, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 327, + 339 + ], + "score": 1.0, + "content": "Table 2: The performance of FusionNet and competing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 337, + 328, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 328, + 349 + ], + "score": 1.0, + "content": "approaches on SQuAD hidden test set at the time of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 348, + 207, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 207, + 360 + ], + "score": 1.0, + "content": "writing (Oct. 4th, 2017).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "table_body", + "bbox": [ + 339, + 227, + 497, + 329 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 339, + 227, + 497, + 329 + ], + "spans": [ + { + "bbox": [ + 339, + 227, + 497, + 329 + ], + "score": 0.971, + "html": "
AddOneSentEM/F1
LRBaseline Match-LSTM (E)22.3/30.4 34.8 / 41.8
BiDAF (E) SEDT (E)40.7 /46.9 40.0 / 46.5
Mnemonic Reader (S)48.5 /56.0
Mnemonic Reader (E)48.7 / 55.3
ReasoNet (E) FusionNet (E)43.6 /49.8
", + "type": "table", + "image_path": "e8605ba131ed5f1d19bd85c55d9fa59ceaa5cc4b5a45aff4f8cb39bb7fd203b1.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 339, + 227, + 497, + 241.57142857142858 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 339, + 241.57142857142858, + 497, + 256.14285714285717 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 339, + 256.14285714285717, + 497, + 270.7142857142857 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 339, + 270.7142857142857, + 497, + 285.2857142857143 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 339, + 285.2857142857143, + 497, + 299.85714285714283 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 339, + 299.85714285714283, + 497, + 314.4285714285714 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 339, + 314.4285714285714, + 497, + 328.99999999999994 + ], + "spans": [], + "index": 36 + } + ] + } + ], + "index": 26.0 + }, + { + "type": "table", + "bbox": [ + 106, + 80, + 329, + 318 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 80, + 329, + 318 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 80, + 329, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 329, + 318 + ], + "score": 0.977, + "html": "
Single ModelTest Set EM/F1
LR Baseline (Rajpurkar et al., 2016) Match-LSTM (Wang & Jiang,2016) BiDAF (Seo et al., 2017) SEDT (Liu et al., 2017) RaSoR (Lee et al., 2016) DrQA (Chen et al., 2017a) ReasoNet (Shen et al.,2017) R.Mnemonic Reader (Hu et al., 2017) DCN+ R-nett FusionNet40.4 /51.0 64.7/73.7 68.0 / 77.3 68.2 /77.5 70.8/78.7 70.7 /79.4 70.6 / 79.4 73.2/81.8 74.9 / 82.8 75.7 /83.5 76.0 / 83.9
EnsembleModel ReasoNet (Shen et al., 2017) MEMEN (Pan et al., 2017) R.Mnemonic Reader (Hu et al., 2017) R-nett DCN+ FusionNet75.0 / 82.3 75.4/82.7 77.7 / 84.9 78.2/85.2 78.7 / 85.6
Human (Rajpurkar et al., 2016)78.8 / 85.9 82.3/91.2
", + "type": "table", + "image_path": "eda0852d2edf6c5400f30b997799aaada7526459d1f832c670df1f8416d97005.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 106, + 80, + 329, + 93.22222222222223 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 93.22222222222223, + 329, + 106.44444444444446 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 106.44444444444446, + 329, + 119.66666666666669 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 119.66666666666669, + 329, + 132.8888888888889 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 106, + 132.8888888888889, + 329, + 146.11111111111114 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 146.11111111111114, + 329, + 159.33333333333337 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 159.33333333333337, + 329, + 172.5555555555556 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 172.5555555555556, + 329, + 185.77777777777783 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 185.77777777777783, + 329, + 199.00000000000006 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 199.00000000000006, + 329, + 212.22222222222229 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 106, + 212.22222222222229, + 329, + 225.4444444444445 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 106, + 225.4444444444445, + 329, + 238.66666666666674 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 106, + 238.66666666666674, + 329, + 251.88888888888897 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 106, + 251.88888888888897, + 329, + 265.1111111111112 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 106, + 265.1111111111112, + 329, + 278.3333333333334 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 106, + 278.3333333333334, + 329, + 291.55555555555566 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 106, + 291.55555555555566, + 329, + 304.7777777777779 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 106, + 304.7777777777779, + 329, + 318.0000000000001 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 331, + 192, + 504, + 215 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 331, + 192, + 504, + 204 + ], + "spans": [ + { + "bbox": [ + 331, + 192, + 504, + 204 + ], + "score": 1.0, + "content": "Table 3: Comparison on AddSent. (S: Sin-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 331, + 203, + 433, + 216 + ], + "spans": [ + { + "bbox": [ + 331, + 203, + 433, + 216 + ], + "score": 1.0, + "content": "gle model, E: Ensemble)", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "table_footnote", + "bbox": [ + 331, + 338, + 504, + 360 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 331, + 336, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 331, + 336, + 504, + 349 + ], + "score": 1.0, + "content": "Table 4: Comparison on AddOneSent. (S:", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 332, + 348, + 446, + 360 + ], + "spans": [ + { + "bbox": [ + 332, + 348, + 446, + 360 + ], + "score": 1.0, + "content": "Single model, E: Ensemble)", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + } + ], + "index": 28.5 + }, + { + "type": "index", + "bbox": [ + 105, + 381, + 504, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "score": 1.0, + "content": "adversarial datasets during training. The results for AddSent and AddOneSent are shown in Table 3", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 392, + 213, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 213, + 405 + ], + "score": 1.0, + "content": "and Table 4, respectively.2", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 381, + 505, + 405 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 409, + 504, + 443 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 506, + 423 + ], + "score": 1.0, + "content": "From the results, we can see that our models not only perform well on the original SQuAD dataset,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 421, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 325, + 433 + ], + "score": 1.0, + "content": "but also outperform all previous models by more than", + "type": "text" + }, + { + "bbox": [ + 326, + 421, + 340, + 432 + ], + "score": 0.87, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 421, + 506, + 433 + ], + "score": 1.0, + "content": "in EM score on the adversarial datasets.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 431, + 489, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 489, + 444 + ], + "score": 1.0, + "content": "This shows that FusionNet is better at language understanding of both the context and question.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 408, + 506, + 444 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 457, + 304, + 468 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 307, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 307, + 470 + ], + "score": 1.0, + "content": "4.3 COMPARISON ON ATTENTION FUNCTION", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 457, + 490 + ], + "score": 1.0, + "content": "In this experiment, we compare the performance of different attention scoring functions", + "type": "text" + }, + { + "bbox": [ + 457, + 478, + 489, + 490 + ], + "score": 0.93, + "content": "S ( { \\pmb x } , { \\pmb y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "fully-aware attention. We utilize the end-to-end architecture presented in Section 3.1. Fully-aware", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 500, + 504, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 504, + 513 + ], + "score": 1.0, + "content": "attention is used in two places, fully-aware multi-level fusion: higher level and fully-aware self-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 510, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 524 + ], + "score": 1.0, + "content": "boosted fusion. Word-level fusion remains unchanged. Based on the discussion in Section 2.3, we", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 523, + 317, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 317, + 534 + ], + "score": 1.0, + "content": "consider the following formulations for comparison:", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 477, + 506, + 534 + ] + }, + { + "type": "index", + "bbox": [ + 129, + 542, + 505, + 650 + ], + "lines": [ + { + "bbox": [ + 129, + 541, + 443, + 556 + ], + "spans": [ + { + "bbox": [ + 129, + 541, + 345, + 556 + ], + "score": 1.0, + "content": "1. Additive attention (MLP) (Bahdanau et al., 2015):", + "type": "text" + }, + { + "bbox": [ + 345, + 542, + 441, + 555 + ], + "score": 0.76, + "content": "\\pmb { s } ^ { T } \\operatorname { t a n h } ( W _ { 1 } \\pmb { x } + W _ { 2 } \\pmb { y } ) .", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 541, + 443, + 556 + ], + "score": 0.573, + "content": "1", + "type": "text" + } + ], + "index": 50, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 556, + 288, + 572 + ], + "spans": [ + { + "bbox": [ + 128, + 556, + 241, + 572 + ], + "score": 1.0, + "content": "2. Multiplicative attention:", + "type": "text" + }, + { + "bbox": [ + 242, + 557, + 284, + 570 + ], + "score": 0.92, + "content": "\\pmb { x } ^ { T } \\pmb { U } ^ { T } \\pmb { V } \\pmb { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 556, + 288, + 572 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 51, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 571, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 127, + 571, + 272, + 590 + ], + "score": 1.0, + "content": "3. Scaled multiplicative attention:", + "type": "text" + }, + { + "bbox": [ + 273, + 573, + 329, + 589 + ], + "score": 0.93, + "content": "\\scriptstyle { \\frac { 1 } { \\sqrt { k } } } x ^ { T } U ^ { T } V y", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 571, + 360, + 590 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 361, + 575, + 367, + 584 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 571, + 506, + 590 + ], + "score": 1.0, + "content": "is the attention hidden size. It is", + "type": "text" + } + ], + "index": 52, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 588, + 284, + 600 + ], + "spans": [ + { + "bbox": [ + 141, + 588, + 284, + 600 + ], + "score": 1.0, + "content": "proposed in (Vaswani et al., 2017).", + "type": "text" + } + ], + "index": 53, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 601, + 385, + 618 + ], + "spans": [ + { + "bbox": [ + 127, + 601, + 303, + 618 + ], + "score": 1.0, + "content": "4. Scaled multiplicative with nonlinearity:", + "type": "text" + }, + { + "bbox": [ + 304, + 602, + 380, + 618 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\frac { 1 } { \\sqrt { k } } f ( U \\pmb { x } ) ^ { T } f ( V \\pmb { y } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 601, + 385, + 618 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 54, + "is_list_start_line": true + }, + { + "bbox": [ + 129, + 621, + 410, + 635 + ], + "spans": [ + { + "bbox": [ + 129, + 621, + 269, + 635 + ], + "score": 1.0, + "content": "5. Our proposed symmetric form:", + "type": "text" + }, + { + "bbox": [ + 269, + 621, + 320, + 634 + ], + "score": 0.92, + "content": "\\pmb { x } ^ { T } \\pmb { U } ^ { T } \\pmb { D } \\pmb { U } \\pmb { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 621, + 351, + 635 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 351, + 623, + 361, + 632 + ], + "score": 0.84, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 621, + 410, + 635 + ], + "score": 1.0, + "content": "is diagonal.", + "type": "text" + } + ], + "index": 55, + "is_list_start_line": true + }, + { + "bbox": [ + 129, + 636, + 400, + 651 + ], + "spans": [ + { + "bbox": [ + 129, + 637, + 322, + 651 + ], + "score": 1.0, + "content": "6. Proposed symmetric form with nonlinearity:", + "type": "text" + }, + { + "bbox": [ + 323, + 636, + 396, + 650 + ], + "score": 0.92, + "content": "f ( U \\mathbf { x } ) ^ { T } D f ( U \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 637, + 400, + 651 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 56, + "is_list_start_line": true + } + ], + "index": 53, + "bbox_fs": [ + 127, + 541, + 506, + 651 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 658, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 249, + 672 + ], + "score": 1.0, + "content": "We consider the activation function", + "type": "text" + }, + { + "bbox": [ + 249, + 659, + 270, + 671 + ], + "score": 0.92, + "content": "f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 658, + 293, + 672 + ], + "score": 1.0, + "content": "to be", + "type": "text" + }, + { + "bbox": [ + 293, + 659, + 335, + 671 + ], + "score": 0.89, + "content": "\\operatorname* { m a x } ( 0 , x )", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 658, + 506, + 672 + ], + "score": 1.0, + "content": ". The results of various attention functions", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 106, + 670, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 505, + 682 + ], + "score": 1.0, + "content": "on SQuAD development set are shown in Table 5. It is clear that the symmetric form consistently", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 680, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 694 + ], + "score": 1.0, + "content": "outperforms all alternatives. We attribute this gain to the fact that symmetric form has a single large", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 106, + 255, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 136, + 267 + ], + "score": 1.0, + "content": "matrix", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 136, + 256, + 145, + 265 + ], + "score": 0.75, + "content": "U", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 145, + 255, + 505, + 267 + ], + "score": 1.0, + "content": ". All other alternatives have two large parametric matrices. During optimization, these", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "two parametric matrices would interfere with each other and it will make the entire optimization", + "type": "text", + "cross_page": true + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 276, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 104, + 276, + 290, + 290 + ], + "score": 1.0, + "content": "process challenging. Besides, by constraining", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 290, + 276, + 314, + 288 + ], + "score": 0.9, + "content": "U ^ { T } V", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 315, + 276, + 416, + 290 + ], + "score": 1.0, + "content": "to be a symmetric matrix", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 416, + 277, + 448, + 288 + ], + "score": 0.9, + "content": "U ^ { T } D U", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 448, + 276, + 506, + 290 + ], + "score": 1.0, + "content": ", we retain the", + "type": "text", + "cross_page": true + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 288, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 149, + 301 + ], + "score": 1.0, + "content": "ability for", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 149, + 290, + 157, + 298 + ], + "score": 0.76, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 157, + 288, + 249, + 301 + ], + "score": 1.0, + "content": "to attend to dissimilar", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 249, + 290, + 256, + 300 + ], + "score": 0.75, + "content": "\\textbf { { y } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 257, + 288, + 506, + 301 + ], + "score": 1.0, + "content": ". Furthermore, its marriage with the nonlinearity continues to", + "type": "text", + "cross_page": true + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 300, + 252, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 252, + 312 + ], + "score": 1.0, + "content": "significantly boost the performance.", + "type": "text", + "cross_page": true + } + ], + "index": 25 + } + ], + "index": 58, + "bbox_fs": [ + 105, + 658, + 506, + 694 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 108, + 92, + 304, + 198 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 92, + 304, + 198 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 92, + 304, + 198 + ], + "spans": [ + { + "bbox": [ + 108, + 92, + 304, + 198 + ], + "score": 0.974, + "html": "
Attention FunctionEM/F1
Additive (MLP)71.8/ 80.172.1 / 80.672.4 / 80.772.6 / 80.8
MultiplicativeScaled MultiplicativeScaled Multiplicative + ReLU
Symmetric FormSymmetric Form + ReLU73.1 /81.575.3 / 83.6
Previous SotA (Hu et al., 2017)72.1/ 81.6
", + "type": "table", + "image_path": "9a01a3abf6d707818a30ce5be329406b39e3a98464be7429964467add6593dd1.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 108, + 92, + 304, + 105.25 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 105.25, + 304, + 118.5 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 118.5, + 304, + 131.75 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 131.75, + 304, + 145.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 145.0, + 304, + 158.25 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 108, + 158.25, + 304, + 171.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 108, + 171.5, + 304, + 184.75 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 108, + 184.75, + 304, + 198.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 206, + 305, + 228 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 205, + 307, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 307, + 218 + ], + "score": 1.0, + "content": "Table 5: Comparison of different attention func-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 216, + 243, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 128, + 228 + ], + "score": 1.0, + "content": "tions", + "type": "text" + }, + { + "bbox": [ + 129, + 216, + 161, + 228 + ], + "score": 0.93, + "content": "S ( { \\pmb x } , { \\pmb y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 217, + 243, + 228 + ], + "score": 1.0, + "content": "on SQuAD dev set.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + } + ], + "index": 10.5 + }, + { + "type": "table", + "bbox": [ + 312, + 80, + 508, + 198 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 312, + 80, + 508, + 198 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 312, + 80, + 508, + 198 + ], + "spans": [ + { + "bbox": [ + 312, + 80, + 508, + 198 + ], + "score": 0.973, + "html": "
ConfigurationC,Q Fusion Self CEM/F1
High-LevelFA High-LevelFA All-LevelFA Multi-LevelNone64.6/73.273.3 /81.472.3 / 80.774.6 / 82.7
FA Multi-LevelNormalFA74.4 / 82.675.3 / 83.6
Previous SotA (Hu et al., 2017)72.1/ 81.6
", + "type": "table", + "image_path": "7556abd7cea9b5c9f22f8b2015963a515d607babc94889bd999cebb19e4a9de3.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 312, + 80, + 508, + 93.11111111111111 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 312, + 93.11111111111111, + 508, + 106.22222222222223 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 312, + 106.22222222222223, + 508, + 119.33333333333334 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 312, + 119.33333333333334, + 508, + 132.44444444444446 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 312, + 132.44444444444446, + 508, + 145.55555555555557 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 312, + 145.55555555555557, + 508, + 158.66666666666669 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 312, + 158.66666666666669, + 508, + 171.7777777777778 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 312, + 171.7777777777778, + 508, + 184.8888888888889 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 312, + 184.8888888888889, + 508, + 198.00000000000003 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 309, + 206, + 510, + 228 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 310, + 204, + 511, + 218 + ], + "spans": [ + { + "bbox": [ + 310, + 204, + 511, + 218 + ], + "score": 1.0, + "content": "Table 6: Comparison of different configurations", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 309, + 215, + 511, + 230 + ], + "spans": [ + { + "bbox": [ + 309, + 215, + 511, + 230 + ], + "score": 1.0, + "content": "demonstrates the effectiveness of history-of-word.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + } + ], + "index": 15.75 + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 505, + 311 + ], + "lines": [ + { + "bbox": [ + 106, + 255, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 136, + 267 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 136, + 256, + 145, + 265 + ], + "score": 0.75, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 255, + 505, + 267 + ], + "score": 1.0, + "content": ". All other alternatives have two large parametric matrices. During optimization, these", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "two parametric matrices would interfere with each other and it will make the entire optimization", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 276, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 104, + 276, + 290, + 290 + ], + "score": 1.0, + "content": "process challenging. Besides, by constraining", + "type": "text" + }, + { + "bbox": [ + 290, + 276, + 314, + 288 + ], + "score": 0.9, + "content": "U ^ { T } V", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 276, + 416, + 290 + ], + "score": 1.0, + "content": "to be a symmetric matrix", + "type": "text" + }, + { + "bbox": [ + 416, + 277, + 448, + 288 + ], + "score": 0.9, + "content": "U ^ { T } D U", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 276, + 506, + 290 + ], + "score": 1.0, + "content": ", we retain the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 288, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 149, + 301 + ], + "score": 1.0, + "content": "ability for", + "type": "text" + }, + { + "bbox": [ + 149, + 290, + 157, + 298 + ], + "score": 0.76, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 288, + 249, + 301 + ], + "score": 1.0, + "content": "to attend to dissimilar", + "type": "text" + }, + { + "bbox": [ + 249, + 290, + 256, + 300 + ], + "score": 0.75, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 288, + 506, + 301 + ], + "score": 1.0, + "content": ". Furthermore, its marriage with the nonlinearity continues to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 300, + 252, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 252, + 312 + ], + "score": 1.0, + "content": "significantly boost the performance.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 108, + 330, + 301, + 342 + ], + "lines": [ + { + "bbox": [ + 106, + 330, + 302, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 302, + 343 + ], + "score": 1.0, + "content": "4.4 EFFECTIVENESS OF HISTORY-OF-WORD", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 420 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 506, + 366 + ], + "score": 1.0, + "content": "In FusionNet, we apply the history-of-word and fully-aware attention in two major places to achieve", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 364, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 505, + 378 + ], + "score": 1.0, + "content": "good performance: multi-level fusion and self-boosted fusion. In this section, we present experi-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "ments to demonstrate the effectiveness of our application. In the experiments, we fix the attention", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 386, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 505, + 399 + ], + "score": 1.0, + "content": "function to be our proposed symmetric form with nonlinearity due to its good performance shown", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "in Section 4.3. The results are shown in Table 6, and the details for each configuration can be found", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 408, + 170, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 170, + 422 + ], + "score": 1.0, + "content": "in Appendix B.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 425, + 505, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 453, + 438 + ], + "score": 1.0, + "content": "High-Level is a vanilla model where only the high-level information is fused from", + "type": "text" + }, + { + "bbox": [ + 454, + 426, + 464, + 437 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 425, + 478, + 438 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 478, + 426, + 488, + 436 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "via", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "score": 1.0, + "content": "standard attention. When placed in the conceptual architecture (Figure 2), it only contains arrow (2)", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 447, + 249, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 249, + 460 + ], + "score": 1.0, + "content": "without any other fusion processes.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 464, + 497, + 476 + ], + "lines": [ + { + "bbox": [ + 105, + 463, + 499, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 499, + 477 + ], + "score": 1.0, + "content": "FA High-Level is the High-Level model with standard attention replaced by fully-aware attention.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 501, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 480, + 504, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 504, + 494 + ], + "score": 1.0, + "content": "FA All-Level is a naive extension of FA High-Level, where all levels of information are concatenated", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 492, + 352, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 352, + 505 + ], + "score": 1.0, + "content": "and is fused into the context using the same attention weight.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 108, + 509, + 503, + 532 + ], + "lines": [ + { + "bbox": [ + 106, + 509, + 504, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 504, + 522 + ], + "score": 1.0, + "content": "FA Multi-Level is our proposed Fully-aware Multi-level fusion, where different levels of informa-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 520, + 305, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 305, + 533 + ], + "score": 1.0, + "content": "tion are attended under separate attention weight.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 106, + 537, + 370, + 548 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 371, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 125, + 550 + ], + "score": 1.0, + "content": "Self", + "type": "text" + }, + { + "bbox": [ + 125, + 537, + 168, + 548 + ], + "score": 0.65, + "content": "C = \\mathbf { N o n e }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 536, + 371, + 550 + ], + "score": 1.0, + "content": "means we do not make use of self-boosted fusion.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 504, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 552, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 126, + 568 + ], + "score": 1.0, + "content": "Self", + "type": "text" + }, + { + "bbox": [ + 127, + 554, + 183, + 565 + ], + "score": 0.34, + "content": "C = \\mathrm { { N o r m a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 552, + 506, + 568 + ], + "score": 1.0, + "content": "means we employ a standard attention-based self-boosted fusion after fusing", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 564, + 475, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 475, + 578 + ], + "score": 1.0, + "content": "question to context. This is illustrated as arrow (3) in the conceptual architecture (Figure 2).", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 107, + 582, + 437, + 593 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 439, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 125, + 597 + ], + "score": 1.0, + "content": "Self", + "type": "text" + }, + { + "bbox": [ + 125, + 582, + 158, + 592 + ], + "score": 0.91, + "content": "C = \\mathbf { F } \\mathbf { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 579, + 439, + 597 + ], + "score": 1.0, + "content": "means we enhance the self-boosted fusion with fully-aware attention.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 599, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "High-Level vs. FA High-Level. From Table 6, we can see that High-Level performs poorly as", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 610, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 505, + 622 + ], + "score": 1.0, + "content": "expected. However enhancing this vanilla model with fully-aware attention significantly increase", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 621, + 504, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 231, + 634 + ], + "score": 1.0, + "content": "the performance by more than", + "type": "text" + }, + { + "bbox": [ + 231, + 621, + 246, + 632 + ], + "score": 0.86, + "content": "8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 621, + 504, + 634 + ], + "score": 1.0, + "content": ". The performance of FA High-Level already outperforms many", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 631, + 473, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 473, + 645 + ], + "score": 1.0, + "content": "state-of-the-art MRC models. This clearly demonstrates the power of fully-aware attention.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5 + }, + { + "type": "text", + "bbox": [ + 107, + 648, + 504, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "FA All-Level vs. FA Multi-Level. Next, we consider models that fuse all levels of information from", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 660, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 143, + 672 + ], + "score": 1.0, + "content": "question", + "type": "text" + }, + { + "bbox": [ + 143, + 660, + 153, + 672 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 660, + 198, + 672 + ], + "score": 1.0, + "content": "to context", + "type": "text" + }, + { + "bbox": [ + 198, + 660, + 208, + 670 + ], + "score": 0.65, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 660, + 506, + 672 + ], + "score": 1.0, + "content": ". FA All-Level is a naive extension of FA High-Level, but its performance", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 671, + 504, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 197, + 684 + ], + "score": 1.0, + "content": "is actually worse than", + "type": "text" + }, + { + "bbox": [ + 198, + 671, + 210, + 681 + ], + "score": 0.37, + "content": "F A", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 671, + 493, + 684 + ], + "score": 1.0, + "content": "High-Level. However, by fusing different parts of history-of-word in", + "type": "text" + }, + { + "bbox": [ + 494, + 671, + 504, + 682 + ], + "score": 0.8, + "content": "Q", + "type": "inline_equation" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 681, + 444, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 186, + 695 + ], + "score": 1.0, + "content": "independently as in", + "type": "text" + }, + { + "bbox": [ + 186, + 682, + 199, + 691 + ], + "score": 0.27, + "content": "F A", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 681, + 444, + 695 + ], + "score": 1.0, + "content": "Multi-Level, we are able to further improve the performance.", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 50.5 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 124, + 712 + ], + "score": 1.0, + "content": "Self", + "type": "text" + }, + { + "bbox": [ + 124, + 699, + 134, + 709 + ], + "score": 0.63, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "options. We have achieved decent performance without self-boosted fusion. Now, we com-", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "pare adding normal and fully-aware self-boosted fusion into the architecture. Comparing None and", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "Normal in Table 6, we can see that the use of normal self-boosted fusion is not very effective under", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 54 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 108, + 92, + 304, + 198 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 92, + 304, + 198 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 92, + 304, + 198 + ], + "spans": [ + { + "bbox": [ + 108, + 92, + 304, + 198 + ], + "score": 0.974, + "html": "
Attention FunctionEM/F1
Additive (MLP)71.8/ 80.172.1 / 80.672.4 / 80.772.6 / 80.8
MultiplicativeScaled MultiplicativeScaled Multiplicative + ReLU
Symmetric FormSymmetric Form + ReLU73.1 /81.575.3 / 83.6
Previous SotA (Hu et al., 2017)72.1/ 81.6
", + "type": "table", + "image_path": "9a01a3abf6d707818a30ce5be329406b39e3a98464be7429964467add6593dd1.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 108, + 92, + 304, + 105.25 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 105.25, + 304, + 118.5 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 118.5, + 304, + 131.75 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 131.75, + 304, + 145.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 145.0, + 304, + 158.25 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 108, + 158.25, + 304, + 171.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 108, + 171.5, + 304, + 184.75 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 108, + 184.75, + 304, + 198.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 206, + 305, + 228 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 205, + 307, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 307, + 218 + ], + "score": 1.0, + "content": "Table 5: Comparison of different attention func-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 216, + 243, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 128, + 228 + ], + "score": 1.0, + "content": "tions", + "type": "text" + }, + { + "bbox": [ + 129, + 216, + 161, + 228 + ], + "score": 0.93, + "content": "S ( { \\pmb x } , { \\pmb y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 217, + 243, + 228 + ], + "score": 1.0, + "content": "on SQuAD dev set.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + } + ], + "index": 10.5 + }, + { + "type": "table", + "bbox": [ + 312, + 80, + 508, + 198 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 312, + 80, + 508, + 198 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 312, + 80, + 508, + 198 + ], + "spans": [ + { + "bbox": [ + 312, + 80, + 508, + 198 + ], + "score": 0.973, + "html": "
ConfigurationC,Q Fusion Self CEM/F1
High-LevelFA High-LevelFA All-LevelFA Multi-LevelNone64.6/73.273.3 /81.472.3 / 80.774.6 / 82.7
FA Multi-LevelNormalFA74.4 / 82.675.3 / 83.6
Previous SotA (Hu et al., 2017)72.1/ 81.6
", + "type": "table", + "image_path": "7556abd7cea9b5c9f22f8b2015963a515d607babc94889bd999cebb19e4a9de3.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 312, + 80, + 508, + 93.11111111111111 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 312, + 93.11111111111111, + 508, + 106.22222222222223 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 312, + 106.22222222222223, + 508, + 119.33333333333334 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 312, + 119.33333333333334, + 508, + 132.44444444444446 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 312, + 132.44444444444446, + 508, + 145.55555555555557 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 312, + 145.55555555555557, + 508, + 158.66666666666669 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 312, + 158.66666666666669, + 508, + 171.7777777777778 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 312, + 171.7777777777778, + 508, + 184.8888888888889 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 312, + 184.8888888888889, + 508, + 198.00000000000003 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 309, + 206, + 510, + 228 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 310, + 204, + 511, + 218 + ], + "spans": [ + { + "bbox": [ + 310, + 204, + 511, + 218 + ], + "score": 1.0, + "content": "Table 6: Comparison of different configurations", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 309, + 215, + 511, + 230 + ], + "spans": [ + { + "bbox": [ + 309, + 215, + 511, + 230 + ], + "score": 1.0, + "content": "demonstrates the effectiveness of history-of-word.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + } + ], + "index": 15.75 + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 505, + 311 + ], + "lines": [], + "index": 23, + "bbox_fs": [ + 104, + 255, + 506, + 312 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 330, + 301, + 342 + ], + "lines": [ + { + "bbox": [ + 106, + 330, + 302, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 302, + 343 + ], + "score": 1.0, + "content": "4.4 EFFECTIVENESS OF HISTORY-OF-WORD", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 420 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 506, + 366 + ], + "score": 1.0, + "content": "In FusionNet, we apply the history-of-word and fully-aware attention in two major places to achieve", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 364, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 505, + 378 + ], + "score": 1.0, + "content": "good performance: multi-level fusion and self-boosted fusion. In this section, we present experi-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "ments to demonstrate the effectiveness of our application. In the experiments, we fix the attention", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 386, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 505, + 399 + ], + "score": 1.0, + "content": "function to be our proposed symmetric form with nonlinearity due to its good performance shown", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "in Section 4.3. The results are shown in Table 6, and the details for each configuration can be found", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 408, + 170, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 170, + 422 + ], + "score": 1.0, + "content": "in Appendix B.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 353, + 506, + 422 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 425, + 505, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 453, + 438 + ], + "score": 1.0, + "content": "High-Level is a vanilla model where only the high-level information is fused from", + "type": "text" + }, + { + "bbox": [ + 454, + 426, + 464, + 437 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 425, + 478, + 438 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 478, + 426, + 488, + 436 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "via", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "score": 1.0, + "content": "standard attention. When placed in the conceptual architecture (Figure 2), it only contains arrow (2)", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 447, + 249, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 249, + 460 + ], + "score": 1.0, + "content": "without any other fusion processes.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 425, + 505, + 460 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 464, + 497, + 476 + ], + "lines": [ + { + "bbox": [ + 105, + 463, + 499, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 499, + 477 + ], + "score": 1.0, + "content": "FA High-Level is the High-Level model with standard attention replaced by fully-aware attention.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 463, + 499, + 477 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 501, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 480, + 504, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 504, + 494 + ], + "score": 1.0, + "content": "FA All-Level is a naive extension of FA High-Level, where all levels of information are concatenated", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 492, + 352, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 352, + 505 + ], + "score": 1.0, + "content": "and is fused into the context using the same attention weight.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 480, + 504, + 505 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 509, + 503, + 532 + ], + "lines": [ + { + "bbox": [ + 106, + 509, + 504, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 504, + 522 + ], + "score": 1.0, + "content": "FA Multi-Level is our proposed Fully-aware Multi-level fusion, where different levels of informa-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 520, + 305, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 305, + 533 + ], + "score": 1.0, + "content": "tion are attended under separate attention weight.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 106, + 509, + 504, + 533 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 537, + 370, + 548 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 371, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 125, + 550 + ], + "score": 1.0, + "content": "Self", + "type": "text" + }, + { + "bbox": [ + 125, + 537, + 168, + 548 + ], + "score": 0.65, + "content": "C = \\mathbf { N o n e }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 536, + 371, + 550 + ], + "score": 1.0, + "content": "means we do not make use of self-boosted fusion.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 536, + 371, + 550 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 504, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 552, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 126, + 568 + ], + "score": 1.0, + "content": "Self", + "type": "text" + }, + { + "bbox": [ + 127, + 554, + 183, + 565 + ], + "score": 0.34, + "content": "C = \\mathrm { { N o r m a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 552, + 506, + 568 + ], + "score": 1.0, + "content": "means we employ a standard attention-based self-boosted fusion after fusing", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 564, + 475, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 475, + 578 + ], + "score": 1.0, + "content": "question to context. This is illustrated as arrow (3) in the conceptual architecture (Figure 2).", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 552, + 506, + 578 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 582, + 437, + 593 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 439, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 125, + 597 + ], + "score": 1.0, + "content": "Self", + "type": "text" + }, + { + "bbox": [ + 125, + 582, + 158, + 592 + ], + "score": 0.91, + "content": "C = \\mathbf { F } \\mathbf { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 579, + 439, + 597 + ], + "score": 1.0, + "content": "means we enhance the self-boosted fusion with fully-aware attention.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 579, + 439, + 597 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 599, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "High-Level vs. FA High-Level. From Table 6, we can see that High-Level performs poorly as", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 610, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 505, + 622 + ], + "score": 1.0, + "content": "expected. However enhancing this vanilla model with fully-aware attention significantly increase", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 621, + 504, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 231, + 634 + ], + "score": 1.0, + "content": "the performance by more than", + "type": "text" + }, + { + "bbox": [ + 231, + 621, + 246, + 632 + ], + "score": 0.86, + "content": "8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 621, + 504, + 634 + ], + "score": 1.0, + "content": ". The performance of FA High-Level already outperforms many", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 631, + 473, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 473, + 645 + ], + "score": 1.0, + "content": "state-of-the-art MRC models. This clearly demonstrates the power of fully-aware attention.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 599, + 505, + 645 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 648, + 504, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "FA All-Level vs. FA Multi-Level. Next, we consider models that fuse all levels of information from", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 660, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 143, + 672 + ], + "score": 1.0, + "content": "question", + "type": "text" + }, + { + "bbox": [ + 143, + 660, + 153, + 672 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 660, + 198, + 672 + ], + "score": 1.0, + "content": "to context", + "type": "text" + }, + { + "bbox": [ + 198, + 660, + 208, + 670 + ], + "score": 0.65, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 660, + 506, + 672 + ], + "score": 1.0, + "content": ". FA All-Level is a naive extension of FA High-Level, but its performance", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 671, + 504, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 197, + 684 + ], + "score": 1.0, + "content": "is actually worse than", + "type": "text" + }, + { + "bbox": [ + 198, + 671, + 210, + 681 + ], + "score": 0.37, + "content": "F A", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 671, + 493, + 684 + ], + "score": 1.0, + "content": "High-Level. However, by fusing different parts of history-of-word in", + "type": "text" + }, + { + "bbox": [ + 494, + 671, + 504, + 682 + ], + "score": 0.8, + "content": "Q", + "type": "inline_equation" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 681, + 444, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 186, + 695 + ], + "score": 1.0, + "content": "independently as in", + "type": "text" + }, + { + "bbox": [ + 186, + 682, + 199, + 691 + ], + "score": 0.27, + "content": "F A", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 681, + 444, + 695 + ], + "score": 1.0, + "content": "Multi-Level, we are able to further improve the performance.", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 50.5, + "bbox_fs": [ + 105, + 649, + 506, + 695 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 124, + 712 + ], + "score": 1.0, + "content": "Self", + "type": "text" + }, + { + "bbox": [ + 124, + 699, + 134, + 709 + ], + "score": 0.63, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "options. We have achieved decent performance without self-boosted fusion. Now, we com-", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "pare adding normal and fully-aware self-boosted fusion into the architecture. Comparing None and", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "Normal in Table 6, we can see that the use of normal self-boosted fusion is not very effective under", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 162, + 95 + ], + "score": 1.0, + "content": "our improved", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 163, + 82, + 186, + 94 + ], + "score": 0.86, + "content": "C , Q", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 186, + 82, + 319, + 95 + ], + "score": 1.0, + "content": "Fusion. Then by comparing with", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 320, + 83, + 332, + 93 + ], + "score": 0.62, + "content": "F A", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 332, + 82, + 505, + 95 + ], + "score": 1.0, + "content": ", it is clear that through the enhancement of", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 487, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 487, + 106 + ], + "score": 1.0, + "content": "fully-aware attention, the enhanced self-boosted fusion can provide considerable improvement.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 54, + "bbox_fs": [ + 105, + 698, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 162, + 95 + ], + "score": 1.0, + "content": "our improved", + "type": "text" + }, + { + "bbox": [ + 163, + 82, + 186, + 94 + ], + "score": 0.86, + "content": "C , Q", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 82, + 319, + 95 + ], + "score": 1.0, + "content": "Fusion. Then by comparing with", + "type": "text" + }, + { + "bbox": [ + 320, + 83, + 332, + 93 + ], + "score": 0.62, + "content": "F A", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 82, + 505, + 95 + ], + "score": 1.0, + "content": ", it is clear that through the enhancement of", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 487, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 487, + 106 + ], + "score": 1.0, + "content": "fully-aware attention, the enhanced self-boosted fusion can provide considerable improvement.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 105, + 110, + 504, + 132 + ], + "lines": [ + { + "bbox": [ + 106, + 110, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 505, + 123 + ], + "score": 1.0, + "content": "Together, these experiments demonstrate that the ability to take all levels of understanding as a whole", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 122, + 315, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 315, + 133 + ], + "score": 1.0, + "content": "is crucial for machines to better understand the text.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 148, + 201, + 161 + ], + "lines": [ + { + "bbox": [ + 104, + 146, + 203, + 164 + ], + "spans": [ + { + "bbox": [ + 104, + 146, + 203, + 164 + ], + "score": 1.0, + "content": "5 CONCLUSIONS", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 173, + 505, + 282 + ], + "lines": [ + { + "bbox": [ + 105, + 172, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 505, + 186 + ], + "score": 1.0, + "content": "In this paper, we describe a new deep learning model called FusionNet with its application to ma-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 183, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 505, + 197 + ], + "score": 1.0, + "content": "chine comprehension. FusionNet proposes a novel attention mechanism with following three con-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 195, + 504, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 504, + 207 + ], + "score": 1.0, + "content": "tributions: 1. the concept of history-of-word to build the attention using complete information from", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 207, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 207, + 505, + 218 + ], + "score": 1.0, + "content": "the lowest word-level embedding up to the highest semantic-level representation; 2. an attention", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 217, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 104, + 217, + 506, + 229 + ], + "score": 1.0, + "content": "scoring function to effectively and efficiently utilize history-of-word; 3. a fully-aware multi-level", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 227, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 506, + 241 + ], + "score": 1.0, + "content": "fusion to exploit information layer by layer discriminatingly. We applied FusionNet to MRC task", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "score": 1.0, + "content": "and experimental results show that FusionNet outperforms existing machine reading models on both", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 250, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 261 + ], + "score": 1.0, + "content": "the SQuAD dataset and the adversarial SQuAD dataset. We believe FusionNet is a general and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 261, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 505, + 273 + ], + "score": 1.0, + "content": "improved attention mechanism and can be applied to many tasks. Our future work is to study its", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 272, + 245, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 245, + 284 + ], + "score": 1.0, + "content": "capability in other NLP problems.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 108, + 296, + 200, + 306 + ], + "lines": [ + { + "bbox": [ + 107, + 296, + 200, + 307 + ], + "spans": [ + { + "bbox": [ + 107, + 296, + 200, + 307 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 314, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 311, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 328 + ], + "score": 1.0, + "content": "We would like to thank Paul Mineiro, Sebastian Kochman, Pengcheng He, Jade Huang and Jingjing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "score": 1.0, + "content": "Liu from Microsoft Business AI, Mac-Antoine Rondeau from Maluuba and the anonymous review-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 334, + 374, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 374, + 350 + ], + "score": 1.0, + "content": "ers for their valuable comments and tremendous help in this paper.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 364, + 175, + 375 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 176, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 176, + 377 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 381, + 504, + 404 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 395 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 392, + 293, + 404 + ], + "spans": [ + { + "bbox": [ + 115, + 392, + 293, + 404 + ], + "score": 1.0, + "content": "learning to align and translate. ICLR, 2015.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 410, + 503, + 433 + ], + "lines": [ + { + "bbox": [ + 106, + 410, + 504, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 504, + 423 + ], + "score": 1.0, + "content": "Samuel R. Bowman, Gabor Angeli, Christopher Potts, and Christopher D. Manning. A large anno-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 421, + 402, + 433 + ], + "spans": [ + { + "bbox": [ + 115, + 421, + 402, + 433 + ], + "score": 1.0, + "content": "tated corpus for learning natural language inference. In EMNLP, 2015.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 439, + 503, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "Denny Britz, Anna Goldie, Thang Luong, and Quoc Le. Massive exploration of neural machine", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 450, + 380, + 463 + ], + "spans": [ + { + "bbox": [ + 115, + 450, + 380, + 463 + ], + "score": 1.0, + "content": "translation architectures. arXiv preprint arXiv:1703.03906, 2017.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 468, + 503, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 482 + ], + "score": 1.0, + "content": "Danqi Chen, Adam Fisch, Jason Weston, and Antoine Bordes. Reading wikipedia to answer open-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 479, + 359, + 492 + ], + "spans": [ + { + "bbox": [ + 116, + 479, + 359, + 492 + ], + "score": 1.0, + "content": "domain questions. arXiv preprint arXiv:1704.00051, 2017a.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 503, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 495, + 504, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 504, + 510 + ], + "score": 1.0, + "content": "Qian Chen, Xiaodan Zhu, Zhenhua Ling, Si Wei, and Hui Jiang. Enhancing and combining sequen-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 507, + 365, + 519 + ], + "spans": [ + { + "bbox": [ + 115, + 507, + 365, + 519 + ], + "score": 1.0, + "content": "tial and tree lstm for natural language inference. ACL, 2017b.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 504, + 559 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "Kyunghyun Cho, Bart Van Merrienboer, Caglar Gulcehre, Dzmitry Bahdanau, Fethi Bougares, Hol- ¨", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 115, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "ger Schwenk, and Yoshua Bengio. Learning phrase representations using rnn encoder-decoder", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 117, + 548, + 317, + 559 + ], + "spans": [ + { + "bbox": [ + 117, + 548, + 317, + 559 + ], + "score": 1.0, + "content": "for statistical machine translation. EMNLP, 2014.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 108, + 565, + 503, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 564, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 579 + ], + "score": 1.0, + "content": "Yarin Gal and Zoubin Ghahramani. A theoretically grounded application of dropout in recurrent", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 577, + 249, + 588 + ], + "spans": [ + { + "bbox": [ + 115, + 577, + 249, + 588 + ], + "score": 1.0, + "content": "neural networks. In NIPS, 2016.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 493, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 593, + 495, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 495, + 608 + ], + "score": 1.0, + "content": "Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 1997.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 612, + 503, + 635 + ], + "lines": [ + { + "bbox": [ + 105, + 612, + 504, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 504, + 624 + ], + "score": 1.0, + "content": "Minghao Hu, Yuxing Peng, and Xipeng Qiu. Reinforced mnemonic reader for machine comprehen-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 623, + 301, + 635 + ], + "spans": [ + { + "bbox": [ + 116, + 623, + 301, + 635 + ], + "score": 1.0, + "content": "sion. arXiv preprint arXiv:1705.02798, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 640, + 503, + 664 + ], + "lines": [ + { + "bbox": [ + 105, + 640, + 504, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 504, + 654 + ], + "score": 1.0, + "content": "Robin Jia and Percy Liang. Adversarial examples for evaluating reading comprehension systems.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 117, + 651, + 180, + 664 + ], + "spans": [ + { + "bbox": [ + 117, + 651, + 180, + 664 + ], + "score": 1.0, + "content": "EMNLP, 2017.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 106, + 669, + 503, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 683 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 681, + 215, + 692 + ], + "spans": [ + { + "bbox": [ + 115, + 681, + 215, + 692 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 106, + 698, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "Kenton Lee, Shimi Salant, Tom Kwiatkowski, Ankur Parikh, Dipanjan Das, and Jonathan Be-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "rant. Learning recurrent span representations for extractive question answering. arXiv preprint", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 721, + 219, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 219, + 732 + ], + "score": 1.0, + "content": "arXiv:1611.01436, 2016.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 301, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 106 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 105, + 110, + 504, + 132 + ], + "lines": [ + { + "bbox": [ + 106, + 110, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 505, + 123 + ], + "score": 1.0, + "content": "Together, these experiments demonstrate that the ability to take all levels of understanding as a whole", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 122, + 315, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 315, + 133 + ], + "score": 1.0, + "content": "is crucial for machines to better understand the text.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 110, + 505, + 133 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 148, + 201, + 161 + ], + "lines": [ + { + "bbox": [ + 104, + 146, + 203, + 164 + ], + "spans": [ + { + "bbox": [ + 104, + 146, + 203, + 164 + ], + "score": 1.0, + "content": "5 CONCLUSIONS", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 173, + 505, + 282 + ], + "lines": [ + { + "bbox": [ + 105, + 172, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 505, + 186 + ], + "score": 1.0, + "content": "In this paper, we describe a new deep learning model called FusionNet with its application to ma-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 183, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 505, + 197 + ], + "score": 1.0, + "content": "chine comprehension. FusionNet proposes a novel attention mechanism with following three con-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 195, + 504, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 504, + 207 + ], + "score": 1.0, + "content": "tributions: 1. the concept of history-of-word to build the attention using complete information from", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 207, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 207, + 505, + 218 + ], + "score": 1.0, + "content": "the lowest word-level embedding up to the highest semantic-level representation; 2. an attention", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 217, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 104, + 217, + 506, + 229 + ], + "score": 1.0, + "content": "scoring function to effectively and efficiently utilize history-of-word; 3. a fully-aware multi-level", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 227, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 506, + 241 + ], + "score": 1.0, + "content": "fusion to exploit information layer by layer discriminatingly. We applied FusionNet to MRC task", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "score": 1.0, + "content": "and experimental results show that FusionNet outperforms existing machine reading models on both", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 250, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 261 + ], + "score": 1.0, + "content": "the SQuAD dataset and the adversarial SQuAD dataset. We believe FusionNet is a general and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 261, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 505, + 273 + ], + "score": 1.0, + "content": "improved attention mechanism and can be applied to many tasks. Our future work is to study its", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 272, + 245, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 245, + 284 + ], + "score": 1.0, + "content": "capability in other NLP problems.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9.5, + "bbox_fs": [ + 104, + 172, + 506, + 284 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 296, + 200, + 306 + ], + "lines": [ + { + "bbox": [ + 107, + 296, + 200, + 307 + ], + "spans": [ + { + "bbox": [ + 107, + 296, + 200, + 307 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 314, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 311, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 328 + ], + "score": 1.0, + "content": "We would like to thank Paul Mineiro, Sebastian Kochman, Pengcheng He, Jade Huang and Jingjing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "score": 1.0, + "content": "Liu from Microsoft Business AI, Mac-Antoine Rondeau from Maluuba and the anonymous review-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 334, + 374, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 374, + 350 + ], + "score": 1.0, + "content": "ers for their valuable comments and tremendous help in this paper.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 311, + 505, + 350 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 364, + 175, + 375 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 176, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 176, + 377 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 381, + 504, + 404 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 395 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 392, + 293, + 404 + ], + "spans": [ + { + "bbox": [ + 115, + 392, + 293, + 404 + ], + "score": 1.0, + "content": "learning to align and translate. ICLR, 2015.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 380, + 505, + 404 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 410, + 503, + 433 + ], + "lines": [ + { + "bbox": [ + 106, + 410, + 504, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 504, + 423 + ], + "score": 1.0, + "content": "Samuel R. Bowman, Gabor Angeli, Christopher Potts, and Christopher D. Manning. A large anno-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 421, + 402, + 433 + ], + "spans": [ + { + "bbox": [ + 115, + 421, + 402, + 433 + ], + "score": 1.0, + "content": "tated corpus for learning natural language inference. In EMNLP, 2015.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 410, + 504, + 433 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 439, + 503, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "Denny Britz, Anna Goldie, Thang Luong, and Quoc Le. Massive exploration of neural machine", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 450, + 380, + 463 + ], + "spans": [ + { + "bbox": [ + 115, + 450, + 380, + 463 + ], + "score": 1.0, + "content": "translation architectures. arXiv preprint arXiv:1703.03906, 2017.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 106, + 439, + 505, + 463 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 468, + 503, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 482 + ], + "score": 1.0, + "content": "Danqi Chen, Adam Fisch, Jason Weston, and Antoine Bordes. Reading wikipedia to answer open-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 479, + 359, + 492 + ], + "spans": [ + { + "bbox": [ + 116, + 479, + 359, + 492 + ], + "score": 1.0, + "content": "domain questions. arXiv preprint arXiv:1704.00051, 2017a.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 466, + 505, + 492 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 503, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 495, + 504, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 504, + 510 + ], + "score": 1.0, + "content": "Qian Chen, Xiaodan Zhu, Zhenhua Ling, Si Wei, and Hui Jiang. Enhancing and combining sequen-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 507, + 365, + 519 + ], + "spans": [ + { + "bbox": [ + 115, + 507, + 365, + 519 + ], + "score": 1.0, + "content": "tial and tree lstm for natural language inference. ACL, 2017b.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 495, + 504, + 519 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 504, + 559 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "Kyunghyun Cho, Bart Van Merrienboer, Caglar Gulcehre, Dzmitry Bahdanau, Fethi Bougares, Hol- ¨", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 115, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "ger Schwenk, and Yoshua Bengio. Learning phrase representations using rnn encoder-decoder", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 117, + 548, + 317, + 559 + ], + "spans": [ + { + "bbox": [ + 117, + 548, + 317, + 559 + ], + "score": 1.0, + "content": "for statistical machine translation. EMNLP, 2014.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 525, + 506, + 559 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 565, + 503, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 564, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 579 + ], + "score": 1.0, + "content": "Yarin Gal and Zoubin Ghahramani. A theoretically grounded application of dropout in recurrent", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 577, + 249, + 588 + ], + "spans": [ + { + "bbox": [ + 115, + 577, + 249, + 588 + ], + "score": 1.0, + "content": "neural networks. In NIPS, 2016.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 106, + 564, + 505, + 588 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 493, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 593, + 495, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 495, + 608 + ], + "score": 1.0, + "content": "Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 1997.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 593, + 495, + 608 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 612, + 503, + 635 + ], + "lines": [ + { + "bbox": [ + 105, + 612, + 504, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 504, + 624 + ], + "score": 1.0, + "content": "Minghao Hu, Yuxing Peng, and Xipeng Qiu. Reinforced mnemonic reader for machine comprehen-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 623, + 301, + 635 + ], + "spans": [ + { + "bbox": [ + 116, + 623, + 301, + 635 + ], + "score": 1.0, + "content": "sion. arXiv preprint arXiv:1705.02798, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 612, + 504, + 635 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 640, + 503, + 664 + ], + "lines": [ + { + "bbox": [ + 105, + 640, + 504, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 504, + 654 + ], + "score": 1.0, + "content": "Robin Jia and Percy Liang. Adversarial examples for evaluating reading comprehension systems.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 117, + 651, + 180, + 664 + ], + "spans": [ + { + "bbox": [ + 117, + 651, + 180, + 664 + ], + "score": 1.0, + "content": "EMNLP, 2017.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 640, + 504, + 664 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 669, + 503, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 683 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 681, + 215, + 692 + ], + "spans": [ + { + "bbox": [ + 115, + 681, + 215, + 692 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 667, + 505, + 692 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 698, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "Kenton Lee, Shimi Salant, Tom Kwiatkowski, Ankur Parikh, Dipanjan Das, and Jonathan Be-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "rant. Learning recurrent span representations for extractive question answering. arXiv preprint", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 721, + 219, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 219, + 732 + ], + "score": 1.0, + "content": "arXiv:1611.01436, 2016.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 106, + 698, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 79, + 506, + 564 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 98 + ], + "score": 1.0, + "content": "Rui Liu, Junjie Hu, Wei Wei, Zi Yang, and Eric Nyberg. Structural embedding of syntactic trees for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 382, + 109 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 382, + 109 + ], + "score": 1.0, + "content": "machine comprehension. arXiv preprint arXiv:1703.00572, 2017.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 104, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "B. McCann, J. Bradbury, C. Xiong, and R. Socher. Learned in Translation: Contextualized Word", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 126, + 315, + 139 + ], + "spans": [ + { + "bbox": [ + 115, + 126, + 315, + 139 + ], + "score": 1.0, + "content": "Vectors. arXiv preprint arXiv:1708.00107, 2017.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 144, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 104, + 144, + 505, + 161 + ], + "score": 1.0, + "content": "Boyuan Pan, Hao Li, Zhou Zhao, Bin Cao, Deng Cai, and Xiaofei He. Memen: Multi-layer em-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 154, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 114, + 154, + 506, + 173 + ], + "score": 1.0, + "content": "bedding with memory networks for machine comprehension. arXiv preprint arXiv:1707.09098,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 165, + 143, + 182 + ], + "spans": [ + { + "bbox": [ + 115, + 165, + 143, + 182 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 188, + 506, + 203 + ], + "spans": [ + { + "bbox": [ + 104, + 188, + 506, + 203 + ], + "score": 1.0, + "content": "Jeffrey Pennington, Richard Socher, and Christopher Manning. Glove: Global vectors for word", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 199, + 254, + 213 + ], + "spans": [ + { + "bbox": [ + 114, + 199, + 254, + 213 + ], + "score": 1.0, + "content": "representation. In EMNLP, 2014.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 218, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 104, + 218, + 424, + 235 + ], + "score": 1.0, + "content": "Pranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and Percy Liang. Squad:", + "type": "text" + }, + { + "bbox": [ + 424, + 219, + 464, + 230 + ], + "score": 0.72, + "content": "1 0 0 { , } 0 0 0 { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 218, + 505, + 235 + ], + "score": 1.0, + "content": "questions", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 114, + 231, + 325, + 244 + ], + "spans": [ + { + "bbox": [ + 114, + 231, + 325, + 244 + ], + "score": 1.0, + "content": "for machine comprehension of text. EMNLP, 2016.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "Minjoon Seo, Aniruddha Kembhavi, Ali Farhadi, and Hannaneh Hajishirzi. Bidirectional attention", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 262, + 317, + 276 + ], + "spans": [ + { + "bbox": [ + 115, + 262, + 317, + 276 + ], + "score": 1.0, + "content": "flow for machine comprehension. In ICLR, 2017.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 281, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 298 + ], + "score": 1.0, + "content": "Yelong Shen, Po-Sen Huang, Jianfeng Gao, and Weizhu Chen. Reasonet: Learning to stop reading", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 294, + 292, + 307 + ], + "spans": [ + { + "bbox": [ + 114, + 294, + 292, + 307 + ], + "score": 1.0, + "content": "in machine comprehension. In KDD, 2017.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 313, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 104, + 313, + 505, + 329 + ], + "score": 1.0, + "content": "Nitish Srivastava, Geoffrey E Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 325, + 443, + 340 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 443, + 340 + ], + "score": 1.0, + "content": "Dropout: a simple way to prevent neural networks from overfitting. JMLR, 2014.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 344, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 104, + 344, + 506, + 361 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 357, + 394, + 370 + ], + "spans": [ + { + "bbox": [ + 115, + 357, + 394, + 370 + ], + "score": 1.0, + "content": "Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. 2017.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 376, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 104, + 376, + 505, + 392 + ], + "score": 1.0, + "content": "Shuohang Wang and Jing Jiang. Machine comprehension using match-lstm and answer pointer.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 388, + 279, + 402 + ], + "spans": [ + { + "bbox": [ + 115, + 388, + 279, + 402 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1608.07905, 2016.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 406, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 104, + 406, + 506, + 424 + ], + "score": 1.0, + "content": "Wenhui Wang, Nan Yang, Furu Wei, Baobao Chang, and Ming Zhou. Gated self-matching networks", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 114, + 419, + 387, + 434 + ], + "spans": [ + { + "bbox": [ + 114, + 419, + 387, + 434 + ], + "score": 1.0, + "content": "for reading comprehension and question answering. In ACL, 2017.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 439, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 455 + ], + "score": 1.0, + "content": "Zhiguo Wang, Haitao Mi, Wael Hamza, and Radu Florian. Multi-perspective context matching for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 450, + 383, + 465 + ], + "spans": [ + { + "bbox": [ + 115, + 450, + 383, + 465 + ], + "score": 1.0, + "content": "machine comprehension. arXiv preprint arXiv:1612.04211, 2016.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 470, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 104, + 470, + 506, + 487 + ], + "score": 1.0, + "content": "Dirk Weissenborn, Georg Wiese, and Laura Seiffe. Making neural qa as simple as possible but not", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 483, + 222, + 496 + ], + "spans": [ + { + "bbox": [ + 115, + 483, + 222, + 496 + ], + "score": 1.0, + "content": "simpler. In CoNLL, 2017.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 502, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 104, + 502, + 506, + 518 + ], + "score": 1.0, + "content": "Adina Williams, Nikita Nangia, and Samuel R Bowman. A broad-coverage challenge corpus for", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 514, + 452, + 529 + ], + "spans": [ + { + "bbox": [ + 114, + 514, + 452, + 529 + ], + "score": 1.0, + "content": "sentence understanding through inference. arXiv preprint arXiv:1704.05426, 2017.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 533, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 104, + 533, + 505, + 550 + ], + "score": 1.0, + "content": "Caiming Xiong, Victor Zhong, and Richard Socher. Dynamic coattention networks for question", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 546, + 216, + 560 + ], + "spans": [ + { + "bbox": [ + 115, + 546, + 216, + 560 + ], + "score": 1.0, + "content": "answering. ICLR, 2017.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 107, + 579, + 339, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 340, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 340, + 594 + ], + "score": 1.0, + "content": "A COMPARISON WITH PUBLISHED MODELS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 605, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "In this appendix, we compare with published state-of-the-art architectures on the SQuAD dev set.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "The comparison is shown in Figure 5 and 6 for EM and F1 score respectively. The performance of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "FusionNet is shown under different training epochs. Each epoch loops through all the examples in", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 636, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 104, + 636, + 505, + 652 + ], + "score": 1.0, + "content": "the training set once. On a single NVIDIA GeForce GTX Titan X GPU, each epoch took roughly", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 649, + 263, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 263, + 660 + ], + "score": 1.0, + "content": "20 minutes when batch size 32 is used.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 369, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 369, + 678 + ], + "score": 1.0, + "content": "The state-of-the-art models compared in this experiment include:", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 676, + 403, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 403, + 690 + ], + "score": 1.0, + "content": "1. Published version of R-net in their technical report (Wang et al., 2017),", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 687, + 434, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 434, + 700 + ], + "score": 1.0, + "content": "2. Reinforced Mnemonic Reader (Hu et al., 2017), 3. MEMEN (Pan et al., 2017),", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 437, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 437, + 711 + ], + "score": 1.0, + "content": "4. ReasoNet (Shen et al., 2017), 5. Document reader (DrQA) (Chen et al., 2017a),", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 257, + 722 + ], + "score": 1.0, + "content": "6. DCN (Xiong et al., 2017), 7. DCN", + "type": "text" + }, + { + "bbox": [ + 257, + 711, + 266, + 720 + ], + "score": 0.57, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 709, + 379, + 722 + ], + "score": 1.0, + "content": "character embedding (Char)", + "type": "text" + }, + { + "bbox": [ + 379, + 711, + 388, + 720 + ], + "score": 0.39, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "CoVe (McCann et al., 2017),", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 719, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 104, + 719, + 506, + 734 + ], + "score": 1.0, + "content": "8. BiDAF (Seo et al., 2017), 9. the best-performing variant of Match-LSTM (Wang & Jiang, 2016).", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 104, + 79, + 506, + 564 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 98 + ], + "score": 1.0, + "content": "Rui Liu, Junjie Hu, Wei Wei, Zi Yang, and Eric Nyberg. Structural embedding of syntactic trees for", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 93, + 382, + 109 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 382, + 109 + ], + "score": 1.0, + "content": "machine comprehension. arXiv preprint arXiv:1703.00572, 2017.", + "type": "text" + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 104, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "B. McCann, J. Bradbury, C. Xiong, and R. Socher. Learned in Translation: Contextualized Word", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 126, + 315, + 139 + ], + "spans": [ + { + "bbox": [ + 115, + 126, + 315, + 139 + ], + "score": 1.0, + "content": "Vectors. arXiv preprint arXiv:1708.00107, 2017.", + "type": "text" + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 144, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 104, + 144, + 505, + 161 + ], + "score": 1.0, + "content": "Boyuan Pan, Hao Li, Zhou Zhao, Bin Cao, Deng Cai, and Xiaofei He. Memen: Multi-layer em-", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 154, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 114, + 154, + 506, + 173 + ], + "score": 1.0, + "content": "bedding with memory networks for machine comprehension. arXiv preprint arXiv:1707.09098,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 165, + 143, + 182 + ], + "spans": [ + { + "bbox": [ + 115, + 165, + 143, + 182 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 188, + 506, + 203 + ], + "spans": [ + { + "bbox": [ + 104, + 188, + 506, + 203 + ], + "score": 1.0, + "content": "Jeffrey Pennington, Richard Socher, and Christopher Manning. Glove: Global vectors for word", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 199, + 254, + 213 + ], + "spans": [ + { + "bbox": [ + 114, + 199, + 254, + 213 + ], + "score": 1.0, + "content": "representation. In EMNLP, 2014.", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 218, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 104, + 218, + 424, + 235 + ], + "score": 1.0, + "content": "Pranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and Percy Liang. Squad:", + "type": "text" + }, + { + "bbox": [ + 424, + 219, + 464, + 230 + ], + "score": 0.72, + "content": "1 0 0 { , } 0 0 0 { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 218, + 505, + 235 + ], + "score": 1.0, + "content": "questions", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 231, + 325, + 244 + ], + "spans": [ + { + "bbox": [ + 114, + 231, + 325, + 244 + ], + "score": 1.0, + "content": "for machine comprehension of text. EMNLP, 2016.", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "Minjoon Seo, Aniruddha Kembhavi, Ali Farhadi, and Hannaneh Hajishirzi. Bidirectional attention", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 262, + 317, + 276 + ], + "spans": [ + { + "bbox": [ + 115, + 262, + 317, + 276 + ], + "score": 1.0, + "content": "flow for machine comprehension. In ICLR, 2017.", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 281, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 298 + ], + "score": 1.0, + "content": "Yelong Shen, Po-Sen Huang, Jianfeng Gao, and Weizhu Chen. Reasonet: Learning to stop reading", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 294, + 292, + 307 + ], + "spans": [ + { + "bbox": [ + 114, + 294, + 292, + 307 + ], + "score": 1.0, + "content": "in machine comprehension. In KDD, 2017.", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 313, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 104, + 313, + 505, + 329 + ], + "score": 1.0, + "content": "Nitish Srivastava, Geoffrey E Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 325, + 443, + 340 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 443, + 340 + ], + "score": 1.0, + "content": "Dropout: a simple way to prevent neural networks from overfitting. JMLR, 2014.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 344, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 104, + 344, + 506, + 361 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez,", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 357, + 394, + 370 + ], + "spans": [ + { + "bbox": [ + 115, + 357, + 394, + 370 + ], + "score": 1.0, + "content": "Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. 2017.", + "type": "text" + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 376, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 104, + 376, + 505, + 392 + ], + "score": 1.0, + "content": "Shuohang Wang and Jing Jiang. Machine comprehension using match-lstm and answer pointer.", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 388, + 279, + 402 + ], + "spans": [ + { + "bbox": [ + 115, + 388, + 279, + 402 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1608.07905, 2016.", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 406, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 104, + 406, + 506, + 424 + ], + "score": 1.0, + "content": "Wenhui Wang, Nan Yang, Furu Wei, Baobao Chang, and Ming Zhou. Gated self-matching networks", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 419, + 387, + 434 + ], + "spans": [ + { + "bbox": [ + 114, + 419, + 387, + 434 + ], + "score": 1.0, + "content": "for reading comprehension and question answering. In ACL, 2017.", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 439, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 455 + ], + "score": 1.0, + "content": "Zhiguo Wang, Haitao Mi, Wael Hamza, and Radu Florian. Multi-perspective context matching for", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 450, + 383, + 465 + ], + "spans": [ + { + "bbox": [ + 115, + 450, + 383, + 465 + ], + "score": 1.0, + "content": "machine comprehension. arXiv preprint arXiv:1612.04211, 2016.", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 470, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 104, + 470, + 506, + 487 + ], + "score": 1.0, + "content": "Dirk Weissenborn, Georg Wiese, and Laura Seiffe. Making neural qa as simple as possible but not", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 483, + 222, + 496 + ], + "spans": [ + { + "bbox": [ + 115, + 483, + 222, + 496 + ], + "score": 1.0, + "content": "simpler. In CoNLL, 2017.", + "type": "text" + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 502, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 104, + 502, + 506, + 518 + ], + "score": 1.0, + "content": "Adina Williams, Nikita Nangia, and Samuel R Bowman. A broad-coverage challenge corpus for", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 514, + 452, + 529 + ], + "spans": [ + { + "bbox": [ + 114, + 514, + 452, + 529 + ], + "score": 1.0, + "content": "sentence understanding through inference. arXiv preprint arXiv:1704.05426, 2017.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 533, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 104, + 533, + 505, + 550 + ], + "score": 1.0, + "content": "Caiming Xiong, Victor Zhong, and Richard Socher. Dynamic coattention networks for question", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 546, + 216, + 560 + ], + "spans": [ + { + "bbox": [ + 115, + 546, + 216, + 560 + ], + "score": 1.0, + "content": "answering. ICLR, 2017.", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + } + ], + "index": 15, + "bbox_fs": [ + 104, + 82, + 506, + 560 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 579, + 339, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 340, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 340, + 594 + ], + "score": 1.0, + "content": "A COMPARISON WITH PUBLISHED MODELS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 605, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "In this appendix, we compare with published state-of-the-art architectures on the SQuAD dev set.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "The comparison is shown in Figure 5 and 6 for EM and F1 score respectively. The performance of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "FusionNet is shown under different training epochs. Each epoch loops through all the examples in", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 636, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 104, + 636, + 505, + 652 + ], + "score": 1.0, + "content": "the training set once. On a single NVIDIA GeForce GTX Titan X GPU, each epoch took roughly", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 649, + 263, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 263, + 660 + ], + "score": 1.0, + "content": "20 minutes when batch size 32 is used.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 104, + 604, + 506, + 660 + ] + }, + { + "type": "index", + "bbox": [ + 106, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 369, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 369, + 678 + ], + "score": 1.0, + "content": "The state-of-the-art models compared in this experiment include:", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 676, + 403, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 403, + 690 + ], + "score": 1.0, + "content": "1. Published version of R-net in their technical report (Wang et al., 2017),", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 687, + 434, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 434, + 700 + ], + "score": 1.0, + "content": "2. Reinforced Mnemonic Reader (Hu et al., 2017), 3. MEMEN (Pan et al., 2017),", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 698, + 437, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 437, + 711 + ], + "score": 1.0, + "content": "4. ReasoNet (Shen et al., 2017), 5. Document reader (DrQA) (Chen et al., 2017a),", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 257, + 722 + ], + "score": 1.0, + "content": "6. DCN (Xiong et al., 2017), 7. DCN", + "type": "text" + }, + { + "bbox": [ + 257, + 711, + 266, + 720 + ], + "score": 0.57, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 709, + 379, + 722 + ], + "score": 1.0, + "content": "character embedding (Char)", + "type": "text" + }, + { + "bbox": [ + 379, + 711, + 388, + 720 + ], + "score": 0.39, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "CoVe (McCann et al., 2017),", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 104, + 719, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 104, + 719, + 506, + 734 + ], + "score": 1.0, + "content": "8. BiDAF (Seo et al., 2017), 9. the best-performing variant of Match-LSTM (Wang & Jiang, 2016).", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + } + ], + "index": 39.5, + "bbox_fs": [ + 104, + 665, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 78, + 506, + 276 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 78, + 506, + 276 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 78, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 506, + 276 + ], + "score": 0.969, + "type": "image", + "image_path": "83cd5a9f9a0174460ffcd39b92ddb060f758e9749cab54075cd31bb5c5f087b2.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 78, + 506, + 144.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 144.0, + 506, + 210.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 210.0, + 506, + 276.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 157, + 283, + 453, + 296 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 157, + 282, + 453, + 297 + ], + "spans": [ + { + "bbox": [ + 157, + 282, + 453, + 297 + ], + "score": 1.0, + "content": "Figure 5: EM score on the SQuAD dev set under different training epoch.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 107, + 308, + 506, + 501 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 308, + 506, + 501 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 308, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 107, + 308, + 506, + 501 + ], + "score": 0.963, + "type": "image", + "image_path": "d8a5b20b41be47ba0875b1e75dbb679e81f4e2b06dd71346b750da38f888986b.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 107, + 308, + 506, + 372.3333333333333 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 107, + 372.3333333333333, + 506, + 436.66666666666663 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 436.66666666666663, + 506, + 500.99999999999994 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 158, + 509, + 451, + 522 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 159, + 508, + 451, + 523 + ], + "spans": [ + { + "bbox": [ + 159, + 508, + 451, + 523 + ], + "score": 1.0, + "content": "Figure 6: F1 score on the SQuAD dev set under different training epoch.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 6.0 + }, + { + "type": "title", + "bbox": [ + 106, + 543, + 410, + 557 + ], + "lines": [ + { + "bbox": [ + 105, + 543, + 411, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 411, + 558 + ], + "score": 1.0, + "content": "B DETAILED CONFIGURATIONS IN THE ABLATION STUDY", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 569, + 505, + 614 + ], + "lines": [ + { + "bbox": [ + 105, + 568, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 582 + ], + "score": 1.0, + "content": "In this appendix, we present details for the configurations used in the ablation study in Section 4.4.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 392, + 593 + ], + "score": 1.0, + "content": "For all configurations, the understanding vectors for both the context", + "type": "text" + }, + { + "bbox": [ + 392, + 581, + 402, + 591 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 579, + 475, + 593 + ], + "score": 1.0, + "content": "and the question", + "type": "text" + }, + { + "bbox": [ + 475, + 581, + 485, + 592 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 579, + 506, + 593 + ], + "score": 1.0, + "content": "will", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 592, + 504, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 504, + 604 + ], + "score": 1.0, + "content": "be generated, then we follow the same output architecture in Section 3.2 to apply them to machine", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 603, + 240, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 240, + 615 + ], + "score": 1.0, + "content": "reading comprehension problem.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 628, + 504, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 506, + 642 + ], + "score": 1.0, + "content": "High-Level. Firstly, context words and question words are transformed into input vectors in the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 640, + 206, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 206, + 653 + ], + "score": 1.0, + "content": "same way as FusionNet,", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "interline_equation", + "bbox": [ + 232, + 653, + 378, + 669 + ], + "lines": [ + { + "bbox": [ + 232, + 653, + 378, + 669 + ], + "spans": [ + { + "bbox": [ + 232, + 653, + 378, + 669 + ], + "score": 0.91, + "content": "\\{ \\pmb { w } _ { 1 } ^ { C } , \\ldots , \\pmb { w } _ { m } ^ { C } \\} , \\quad \\{ \\pmb { w } _ { 1 } ^ { Q } , \\ldots , \\pmb { w } _ { n } ^ { Q } \\} .", + "type": "interline_equation", + "image_path": "f6e3c28e8b1356861c19397ffea564b2dddf56fdf901da8c6fd8979303154492.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 232, + 653, + 378, + 669 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 673, + 349, + 686 + ], + "lines": [ + { + "bbox": [ + 105, + 673, + 349, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 349, + 687 + ], + "score": 1.0, + "content": "Then we pass them independently to two layers of BiLSTM.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 691, + 485, + 735 + ], + "lines": [ + { + "bbox": [ + 126, + 691, + 485, + 735 + ], + "spans": [ + { + "bbox": [ + 126, + 691, + 485, + 735 + ], + "score": 0.74, + "content": "\\begin{array} { r l } & { h _ { 1 } ^ { C l } , \\ldots , h _ { m } ^ { C l } = \\mathrm { B i L S T M } ( w _ { 1 } ^ { C } , \\ldots , w _ { m } ^ { C } ) , \\quad h _ { 1 } ^ { Q l } , \\ldots , h _ { n } ^ { Q l } = \\mathrm { B i L S T M } ( w _ { 1 } ^ { Q } , \\ldots , w _ { n } ^ { Q } ) , } \\\\ & { h _ { 1 } ^ { C h } , \\ldots , h _ { m } ^ { C h } = \\mathrm { B i L S T M } ( h _ { 1 } ^ { C l } , \\ldots , h _ { m } ^ { C l } ) , \\quad h _ { 1 } ^ { Q h } , \\ldots , h _ { n } ^ { Q h } = \\mathrm { B i L S T M } ( h _ { 1 } ^ { Q l } , \\ldots , h _ { n } ^ { Q l } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "63da65e27783d22619163d64a0533b2fc1deb6457dd76c4781aab6659662090c.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 126, + 691, + 485, + 705.6666666666666 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 126, + 705.6666666666666, + 485, + 720.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 126, + 720.3333333333333, + 485, + 734.9999999999999 + ], + "spans": [], + "index": 19 + } + ] + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 78, + 506, + 276 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 78, + 506, + 276 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 78, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 506, + 276 + ], + "score": 0.969, + "type": "image", + "image_path": "83cd5a9f9a0174460ffcd39b92ddb060f758e9749cab54075cd31bb5c5f087b2.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 78, + 506, + 144.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 144.0, + 506, + 210.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 210.0, + 506, + 276.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 157, + 283, + 453, + 296 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 157, + 282, + 453, + 297 + ], + "spans": [ + { + "bbox": [ + 157, + 282, + 453, + 297 + ], + "score": 1.0, + "content": "Figure 5: EM score on the SQuAD dev set under different training epoch.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 107, + 308, + 506, + 501 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 308, + 506, + 501 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 308, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 107, + 308, + 506, + 501 + ], + "score": 0.963, + "type": "image", + "image_path": "d8a5b20b41be47ba0875b1e75dbb679e81f4e2b06dd71346b750da38f888986b.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 107, + 308, + 506, + 372.3333333333333 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 107, + 372.3333333333333, + 506, + 436.66666666666663 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 436.66666666666663, + 506, + 500.99999999999994 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 158, + 509, + 451, + 522 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 159, + 508, + 451, + 523 + ], + "spans": [ + { + "bbox": [ + 159, + 508, + 451, + 523 + ], + "score": 1.0, + "content": "Figure 6: F1 score on the SQuAD dev set under different training epoch.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 6.0 + }, + { + "type": "title", + "bbox": [ + 106, + 543, + 410, + 557 + ], + "lines": [ + { + "bbox": [ + 105, + 543, + 411, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 411, + 558 + ], + "score": 1.0, + "content": "B DETAILED CONFIGURATIONS IN THE ABLATION STUDY", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 569, + 505, + 614 + ], + "lines": [ + { + "bbox": [ + 105, + 568, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 582 + ], + "score": 1.0, + "content": "In this appendix, we present details for the configurations used in the ablation study in Section 4.4.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 392, + 593 + ], + "score": 1.0, + "content": "For all configurations, the understanding vectors for both the context", + "type": "text" + }, + { + "bbox": [ + 392, + 581, + 402, + 591 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 579, + 475, + 593 + ], + "score": 1.0, + "content": "and the question", + "type": "text" + }, + { + "bbox": [ + 475, + 581, + 485, + 592 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 579, + 506, + 593 + ], + "score": 1.0, + "content": "will", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 592, + 504, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 504, + 604 + ], + "score": 1.0, + "content": "be generated, then we follow the same output architecture in Section 3.2 to apply them to machine", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 603, + 240, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 240, + 615 + ], + "score": 1.0, + "content": "reading comprehension problem.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 568, + 506, + 615 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 628, + 504, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 506, + 642 + ], + "score": 1.0, + "content": "High-Level. Firstly, context words and question words are transformed into input vectors in the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 640, + 206, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 206, + 653 + ], + "score": 1.0, + "content": "same way as FusionNet,", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 627, + 506, + 653 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 232, + 653, + 378, + 669 + ], + "lines": [ + { + "bbox": [ + 232, + 653, + 378, + 669 + ], + "spans": [ + { + "bbox": [ + 232, + 653, + 378, + 669 + ], + "score": 0.91, + "content": "\\{ \\pmb { w } _ { 1 } ^ { C } , \\ldots , \\pmb { w } _ { m } ^ { C } \\} , \\quad \\{ \\pmb { w } _ { 1 } ^ { Q } , \\ldots , \\pmb { w } _ { n } ^ { Q } \\} .", + "type": "interline_equation", + "image_path": "f6e3c28e8b1356861c19397ffea564b2dddf56fdf901da8c6fd8979303154492.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 232, + 653, + 378, + 669 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 673, + 349, + 686 + ], + "lines": [ + { + "bbox": [ + 105, + 673, + 349, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 349, + 687 + ], + "score": 1.0, + "content": "Then we pass them independently to two layers of BiLSTM.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 673, + 349, + 687 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 691, + 485, + 735 + ], + "lines": [ + { + "bbox": [ + 126, + 691, + 485, + 735 + ], + "spans": [ + { + "bbox": [ + 126, + 691, + 485, + 735 + ], + "score": 0.74, + "content": "\\begin{array} { r l } & { h _ { 1 } ^ { C l } , \\ldots , h _ { m } ^ { C l } = \\mathrm { B i L S T M } ( w _ { 1 } ^ { C } , \\ldots , w _ { m } ^ { C } ) , \\quad h _ { 1 } ^ { Q l } , \\ldots , h _ { n } ^ { Q l } = \\mathrm { B i L S T M } ( w _ { 1 } ^ { Q } , \\ldots , w _ { n } ^ { Q } ) , } \\\\ & { h _ { 1 } ^ { C h } , \\ldots , h _ { m } ^ { C h } = \\mathrm { B i L S T M } ( h _ { 1 } ^ { C l } , \\ldots , h _ { m } ^ { C l } ) , \\quad h _ { 1 } ^ { Q h } , \\ldots , h _ { n } ^ { Q h } = \\mathrm { B i L S T M } ( h _ { 1 } ^ { Q l } , \\ldots , h _ { n } ^ { Q l } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "63da65e27783d22619163d64a0533b2fc1deb6457dd76c4781aab6659662090c.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 126, + 691, + 485, + 705.6666666666666 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 126, + 705.6666666666666, + 485, + 720.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 126, + 720.3333333333333, + 485, + 734.9999999999999 + ], + "spans": [], + "index": 19 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 451, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 453, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 453, + 97 + ], + "score": 1.0, + "content": "Next we consider the standard attention-based fusion for the high level representation.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 97, + 444, + 130 + ], + "lines": [ + { + "bbox": [ + 166, + 97, + 444, + 130 + ], + "spans": [ + { + "bbox": [ + 166, + 97, + 444, + 130 + ], + "score": 0.94, + "content": "\\hat { \\boldsymbol { h } } _ { i } ^ { C h } = \\sum _ { j } \\alpha _ { i j } \\boldsymbol { h } _ { j } ^ { Q h } , \\quad \\alpha _ { i j } = \\frac { \\exp ( S _ { i j } ) } { \\sum _ { k } \\exp ( S _ { i k } ) } , \\quad S _ { i j } = S ( \\boldsymbol { h } _ { i } ^ { C h } , \\boldsymbol { h } _ { j } ^ { Q h } ) .", + "type": "interline_equation", + "image_path": "732db4056720fe7aeb191e2907862c44954fd7cd6aa26ec9c6b215374947ed6a.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 166, + 97, + 444, + 108.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 166, + 108.0, + 444, + 119.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 166, + 119.0, + 444, + 130.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 134, + 505, + 172 + ], + "lines": [ + { + "bbox": [ + 102, + 134, + 504, + 154 + ], + "spans": [ + { + "bbox": [ + 102, + 134, + 274, + 154 + ], + "score": 1.0, + "content": "Then we concatenate the attended vector", + "type": "text" + }, + { + "bbox": [ + 274, + 134, + 293, + 151 + ], + "score": 0.92, + "content": "\\hat { h } _ { i } ^ { C h }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 134, + 467, + 154 + ], + "score": 1.0, + "content": "with the original high level representation", + "type": "text" + }, + { + "bbox": [ + 467, + 137, + 486, + 151 + ], + "score": 0.93, + "content": "h _ { i } ^ { C h }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 134, + 504, + 154 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 162 + ], + "score": 1.0, + "content": "pass through two layers of BiLSTM to fully mix the two information. The understanding vectors", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 161, + 389, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 389, + 172 + ], + "score": 1.0, + "content": "for the context is the hidden vectors in the final layers of the BiLSTM.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 193, + 176, + 416, + 194 + ], + "lines": [ + { + "bbox": [ + 193, + 176, + 416, + 194 + ], + "spans": [ + { + "bbox": [ + 193, + 176, + 416, + 194 + ], + "score": 0.92, + "content": "\\pmb { u } _ { 1 } ^ { C } , \\ldots , \\pmb { u } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ \\pmb { h } _ { 1 } ^ { C h } ; \\hat { \\pmb { h } } _ { 1 } ^ { C h } ] , \\dots , [ \\pmb { h } _ { m } ^ { C h } ; \\hat { \\pmb { h } } _ { m } ^ { C h } ] )", + "type": "interline_equation", + "image_path": "c8bd522f080ef27b367a00f8bf8030f2ddcc30a4d46021da8d9184ee20491118.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 193, + 176, + 416, + 194 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 198, + 428, + 210 + ], + "lines": [ + { + "bbox": [ + 106, + 197, + 429, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 429, + 211 + ], + "score": 1.0, + "content": "The understanding vectors for the question is the high level representation itself,", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 213, + 368, + 230 + ], + "lines": [ + { + "bbox": [ + 242, + 213, + 368, + 230 + ], + "spans": [ + { + "bbox": [ + 242, + 213, + 368, + 230 + ], + "score": 0.92, + "content": "\\begin{array} { r } { { \\pmb u } _ { 1 } ^ { Q } , \\dots , { \\pmb u } _ { n } ^ { Q } = { \\pmb h } _ { 1 } ^ { Q h } , \\dots , { \\pmb h } _ { n } ^ { Q h } . } \\end{array}", + "type": "interline_equation", + "image_path": "3838caa2559a19f49f3a6bd87ffb7ad719bb34375a10967a15c5993c6ceb313a.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 242, + 213, + 368, + 230 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 233, + 505, + 256 + ], + "lines": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "Now we have obtained the understanding vectors for both the context and the question. The answer", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "can thus be found. Neither word-level fusion (1) nor self-boosted fusion (3, 3’) in Figure 2 are used.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 104, + 271, + 504, + 294 + ], + "lines": [ + { + "bbox": [ + 105, + 270, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 285 + ], + "score": 1.0, + "content": "FA High-Level. The only difference to High-Level is the enhancement of fully-aware attention.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 281, + 226, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 226, + 296 + ], + "score": 1.0, + "content": "This is as simple as changing", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 298, + 471, + 316 + ], + "lines": [ + { + "bbox": [ + 138, + 298, + 471, + 316 + ], + "spans": [ + { + "bbox": [ + 138, + 298, + 471, + 316 + ], + "score": 0.9, + "content": "S _ { i j } = S ( { h _ { i } ^ { C h } } , { h _ { j } ^ { Q h } } ) \\quad \\Longrightarrow \\qquad S _ { i j } = S ( [ g _ { i } ^ { C } ; { c _ { i } ^ { C } } ; { h _ { i } ^ { C l } } ; { h _ { i } ^ { C h } } ] , [ g _ { j } ^ { Q } ; { c _ { j } ^ { Q } } ; { h _ { j } ^ { Q l } } ; { h _ { j } ^ { Q h } } ] ) ,", + "type": "interline_equation", + "image_path": "cc2d01e88c599b7578b6af6440adf3322b4c8af7aac402c90826db645b86cef4.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 138, + 298, + 471, + 316 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 320, + 505, + 366 + ], + "lines": [ + { + "bbox": [ + 106, + 319, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 133, + 334 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 319, + 192, + 333 + ], + "score": 0.94, + "content": "[ g _ { i } ; c _ { i } ; h _ { i } ^ { l } ; h _ { i } ^ { h } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 320, + 506, + 334 + ], + "score": 1.0, + "content": "is the common history-of-word for both context and question. All other places", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "score": 1.0, + "content": "remains the same as High-Level. This simple change results in significant improvement. The per-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 158, + 356 + ], + "score": 1.0, + "content": "formance of", + "type": "text" + }, + { + "bbox": [ + 159, + 344, + 171, + 353 + ], + "score": 0.56, + "content": "F A", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "High-Level can already outperform many state-of-the-art models in the literature.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 354, + 492, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 492, + 367 + ], + "score": 1.0, + "content": "Note that our proposed symmetric form with nonlinearity should be used to guarantee the boost.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 380, + 395, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 379, + 395, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 395, + 394 + ], + "score": 1.0, + "content": "FA All-Level. First, we use the same procedure as High-Level to obtain", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 397, + 382, + 449 + ], + "lines": [ + { + "bbox": [ + 228, + 397, + 381, + 449 + ], + "spans": [ + { + "bbox": [ + 228, + 397, + 381, + 449 + ], + "score": 0.27, + "content": "\\begin{array} { r l } { \\{ \\pmb { w } _ { 1 } ^ { C } , \\ldots , \\pmb { w } _ { m } ^ { C } \\} , } & { \\{ \\pmb { w } _ { 1 } ^ { Q } , \\ldots , \\pmb { w } _ { n } ^ { Q } \\} , } \\\\ & { \\{ \\pmb { h } _ { 1 } ^ { C l } , \\ldots , \\pmb { h } _ { m } ^ { C l } \\} , \\quad \\{ \\pmb { h } _ { 1 } ^ { Q l } , \\ldots , \\pmb { h } _ { n } ^ { Q l } \\} , } \\\\ & { \\{ \\pmb { h } _ { 1 } ^ { C h } , \\ldots , \\pmb { h } _ { m } ^ { C h } \\} , \\quad \\{ \\pmb { h } _ { 1 } ^ { Q h } , \\ldots , \\pmb { h } _ { n } ^ { Q h } \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "f2e7de8e4a2044745a0df78dce2101dc7bebfa001014b80bb7d8b1b2285331ab.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 227, + 397, + 382, + 414.3333333333333 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 227, + 414.3333333333333, + 382, + 431.66666666666663 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 227, + 431.66666666666663, + 382, + 448.99999999999994 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 449, + 505, + 472 + ], + "lines": [ + { + "bbox": [ + 106, + 449, + 504, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 341, + 462 + ], + "score": 1.0, + "content": "Next we make use of the fully-aware attention similar to", + "type": "text" + }, + { + "bbox": [ + 342, + 450, + 354, + 460 + ], + "score": 0.6, + "content": "F A", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 449, + 504, + 462 + ], + "score": 1.0, + "content": "High-Level, but take back the entire", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 460, + 174, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 174, + 472 + ], + "score": 1.0, + "content": "history-of-word.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 475, + 456, + 536 + ], + "lines": [ + { + "bbox": [ + 153, + 475, + 456, + 536 + ], + "spans": [ + { + "bbox": [ + 153, + 475, + 456, + 536 + ], + "score": 0.65, + "content": "\\begin{array} { c } { \\displaystyle \\alpha _ { i j } = \\frac { \\exp ( S _ { i j } ) } { \\sum _ { k } \\exp ( S _ { i k } ) } , \\quad { S _ { i j } = S ( [ g _ { i } ^ { C } ; c _ { i } ^ { C } ; h _ { i } ^ { C l } ; h _ { i } ^ { C h } ] , [ g _ { j } ^ { Q } ; c _ { j } ^ { Q } ; h _ { j } ^ { Q l } ; h _ { j } ^ { Q h } ] ) } , } \\\\ { \\displaystyle { \\mathrm { H o W } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } [ g _ { j } ^ { Q } ; c _ { j } ^ { Q } ; h _ { j } ^ { Q l } ; h _ { j } ^ { Q h } ] } . } \\end{array}", + "type": "interline_equation", + "image_path": "c8d916a2c11d49798cf83c3620ada314ae6c60e95f4f3174cfc653dc46e23dc0.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 153, + 475, + 456, + 495.3333333333333 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 153, + 495.3333333333333, + 456, + 515.6666666666666 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 153, + 515.6666666666666, + 456, + 536.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 539, + 503, + 578 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 326, + 555 + ], + "score": 1.0, + "content": "Then we concatenate the attended history-of-word", + "type": "text" + }, + { + "bbox": [ + 327, + 538, + 358, + 554 + ], + "score": 0.91, + "content": "\\mathrm { H } \\mathrm { \\hat { o } } \\mathrm { W } _ { i } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 540, + 505, + 555 + ], + "score": 1.0, + "content": "with the original history-of-word", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 547, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 107, + 553, + 185, + 567 + ], + "score": 0.92, + "content": "[ { \\pmb g } _ { i } ^ { C } ; { \\pmb c } _ { i } ^ { C } ; { \\pmb h } _ { i } ^ { C l } ; { \\pmb h } _ { i } ^ { C h } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 547, + 505, + 573 + ], + "score": 1.0, + "content": "i and pass through two layers of BiLSTM to fully mix the two information. The", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 566, + 479, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 479, + 578 + ], + "score": 1.0, + "content": "understanding vectors for the context is the hidden vectors in the final layers of the BiLSTM.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 127, + 581, + 483, + 600 + ], + "lines": [ + { + "bbox": [ + 127, + 581, + 483, + 600 + ], + "spans": [ + { + "bbox": [ + 127, + 581, + 483, + 600 + ], + "score": 0.89, + "content": "\\pmb { u } _ { 1 } ^ { C } , \\dots , \\pmb { u } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ g _ { 1 } ^ { C } ; c _ { 1 } ^ { C } ; h _ { 1 } ^ { C l } ; h _ { 1 } ^ { C h } ; \\mathrm { H \\hat { o } W } _ { 1 } ^ { C } ] , \\dots , [ g _ { m } ^ { C } ; c _ { m } ^ { C } ; h _ { m } ^ { C l } ; h _ { m } ^ { C h } ; \\mathrm { H \\hat { o } W } _ { m } ^ { C } ] )", + "type": "interline_equation", + "image_path": "4d73eedf374412bf94795f5152c939fbff166fe2495308bede2e7ea34c90a93c.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 127, + 581, + 483, + 600 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 603, + 502, + 615 + ], + "lines": [ + { + "bbox": [ + 107, + 602, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 107, + 602, + 505, + 616 + ], + "score": 1.0, + "content": "The understanding vectors for the question is similar to the Understanding component in Section 3.1,", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 619, + 450, + 635 + ], + "lines": [ + { + "bbox": [ + 160, + 619, + 450, + 635 + ], + "spans": [ + { + "bbox": [ + 160, + 619, + 450, + 635 + ], + "score": 0.9, + "content": "\\pmb { u } _ { 1 } ^ { Q } , \\ldots , \\pmb { u } _ { n } ^ { Q } = \\mathrm { B i L S T M } ( [ g _ { 1 } ^ { Q } ; c _ { 1 } ^ { Q } ; \\pmb { h } _ { 1 } ^ { Q l } ; \\pmb { h } _ { 1 } ^ { Q h } ] , \\ldots , [ g _ { m } ^ { Q } ; c _ { m } ^ { Q } ; \\pmb { h } _ { m } ^ { Q l } ; \\pmb { h } _ { m } ^ { Q h } ] ) .", + "type": "interline_equation", + "image_path": "7f273415d3bf38988099bc7e91a996d59c22b7363bf6a7ad67c2810f7f728b23.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 160, + 619, + 450, + 635 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 638, + 458, + 651 + ], + "lines": [ + { + "bbox": [ + 106, + 638, + 459, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 459, + 652 + ], + "score": 1.0, + "content": "We have now generated the understanding vectors for both the context and the question.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "FA Multi-Level. This configuration follows from the Fully-Aware Fusion Network (FusionNet)", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 350, + 690 + ], + "score": 1.0, + "content": "presented in Section 3.1. The major difference compared to", + "type": "text" + }, + { + "bbox": [ + 350, + 677, + 363, + 687 + ], + "score": 0.36, + "content": "F A", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "All-Level is that different layers in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 686, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 104, + 686, + 316, + 702 + ], + "score": 1.0, + "content": "the history-of-word uses a different attention weight", + "type": "text" + }, + { + "bbox": [ + 316, + 690, + 324, + 698 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 686, + 505, + 702 + ], + "score": 1.0, + "content": "while being fully aware of the entire history-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 439, + 711 + ], + "score": 1.0, + "content": "of-word. In the ablation study, we consider three self-boosted fusion settings for", + "type": "text" + }, + { + "bbox": [ + 439, + 699, + 452, + 709 + ], + "score": 0.33, + "content": "F A", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Multi-Level.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "The Fully-Aware setting is the one presented in Section 3.1. Here we discuss all three of them in", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 719, + 135, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 135, + 733 + ], + "score": 1.0, + "content": "detail.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 451, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 453, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 453, + 97 + ], + "score": 1.0, + "content": "Next we consider the standard attention-based fusion for the high level representation.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 104, + 80, + 453, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 97, + 444, + 130 + ], + "lines": [ + { + "bbox": [ + 166, + 97, + 444, + 130 + ], + "spans": [ + { + "bbox": [ + 166, + 97, + 444, + 130 + ], + "score": 0.94, + "content": "\\hat { \\boldsymbol { h } } _ { i } ^ { C h } = \\sum _ { j } \\alpha _ { i j } \\boldsymbol { h } _ { j } ^ { Q h } , \\quad \\alpha _ { i j } = \\frac { \\exp ( S _ { i j } ) } { \\sum _ { k } \\exp ( S _ { i k } ) } , \\quad S _ { i j } = S ( \\boldsymbol { h } _ { i } ^ { C h } , \\boldsymbol { h } _ { j } ^ { Q h } ) .", + "type": "interline_equation", + "image_path": "732db4056720fe7aeb191e2907862c44954fd7cd6aa26ec9c6b215374947ed6a.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 166, + 97, + 444, + 108.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 166, + 108.0, + 444, + 119.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 166, + 119.0, + 444, + 130.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 134, + 505, + 172 + ], + "lines": [ + { + "bbox": [ + 102, + 134, + 504, + 154 + ], + "spans": [ + { + "bbox": [ + 102, + 134, + 274, + 154 + ], + "score": 1.0, + "content": "Then we concatenate the attended vector", + "type": "text" + }, + { + "bbox": [ + 274, + 134, + 293, + 151 + ], + "score": 0.92, + "content": "\\hat { h } _ { i } ^ { C h }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 134, + 467, + 154 + ], + "score": 1.0, + "content": "with the original high level representation", + "type": "text" + }, + { + "bbox": [ + 467, + 137, + 486, + 151 + ], + "score": 0.93, + "content": "h _ { i } ^ { C h }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 134, + 504, + 154 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 162 + ], + "score": 1.0, + "content": "pass through two layers of BiLSTM to fully mix the two information. The understanding vectors", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 161, + 389, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 389, + 172 + ], + "score": 1.0, + "content": "for the context is the hidden vectors in the final layers of the BiLSTM.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 102, + 134, + 505, + 172 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 193, + 176, + 416, + 194 + ], + "lines": [ + { + "bbox": [ + 193, + 176, + 416, + 194 + ], + "spans": [ + { + "bbox": [ + 193, + 176, + 416, + 194 + ], + "score": 0.92, + "content": "\\pmb { u } _ { 1 } ^ { C } , \\ldots , \\pmb { u } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ \\pmb { h } _ { 1 } ^ { C h } ; \\hat { \\pmb { h } } _ { 1 } ^ { C h } ] , \\dots , [ \\pmb { h } _ { m } ^ { C h } ; \\hat { \\pmb { h } } _ { m } ^ { C h } ] )", + "type": "interline_equation", + "image_path": "c8bd522f080ef27b367a00f8bf8030f2ddcc30a4d46021da8d9184ee20491118.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 193, + 176, + 416, + 194 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 198, + 428, + 210 + ], + "lines": [ + { + "bbox": [ + 106, + 197, + 429, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 429, + 211 + ], + "score": 1.0, + "content": "The understanding vectors for the question is the high level representation itself,", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 197, + 429, + 211 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 213, + 368, + 230 + ], + "lines": [ + { + "bbox": [ + 242, + 213, + 368, + 230 + ], + "spans": [ + { + "bbox": [ + 242, + 213, + 368, + 230 + ], + "score": 0.92, + "content": "\\begin{array} { r } { { \\pmb u } _ { 1 } ^ { Q } , \\dots , { \\pmb u } _ { n } ^ { Q } = { \\pmb h } _ { 1 } ^ { Q h } , \\dots , { \\pmb h } _ { n } ^ { Q h } . } \\end{array}", + "type": "interline_equation", + "image_path": "3838caa2559a19f49f3a6bd87ffb7ad719bb34375a10967a15c5993c6ceb313a.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 242, + 213, + 368, + 230 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 233, + 505, + 256 + ], + "lines": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "Now we have obtained the understanding vectors for both the context and the question. The answer", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "can thus be found. Neither word-level fusion (1) nor self-boosted fusion (3, 3’) in Figure 2 are used.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 233, + 505, + 257 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 271, + 504, + 294 + ], + "lines": [ + { + "bbox": [ + 105, + 270, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 285 + ], + "score": 1.0, + "content": "FA High-Level. The only difference to High-Level is the enhancement of fully-aware attention.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 281, + 226, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 226, + 296 + ], + "score": 1.0, + "content": "This is as simple as changing", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 270, + 505, + 296 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 298, + 471, + 316 + ], + "lines": [ + { + "bbox": [ + 138, + 298, + 471, + 316 + ], + "spans": [ + { + "bbox": [ + 138, + 298, + 471, + 316 + ], + "score": 0.9, + "content": "S _ { i j } = S ( { h _ { i } ^ { C h } } , { h _ { j } ^ { Q h } } ) \\quad \\Longrightarrow \\qquad S _ { i j } = S ( [ g _ { i } ^ { C } ; { c _ { i } ^ { C } } ; { h _ { i } ^ { C l } } ; { h _ { i } ^ { C h } } ] , [ g _ { j } ^ { Q } ; { c _ { j } ^ { Q } } ; { h _ { j } ^ { Q l } } ; { h _ { j } ^ { Q h } } ] ) ,", + "type": "interline_equation", + "image_path": "cc2d01e88c599b7578b6af6440adf3322b4c8af7aac402c90826db645b86cef4.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 138, + 298, + 471, + 316 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 320, + 505, + 366 + ], + "lines": [ + { + "bbox": [ + 106, + 319, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 133, + 334 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 319, + 192, + 333 + ], + "score": 0.94, + "content": "[ g _ { i } ; c _ { i } ; h _ { i } ^ { l } ; h _ { i } ^ { h } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 320, + 506, + 334 + ], + "score": 1.0, + "content": "is the common history-of-word for both context and question. All other places", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "score": 1.0, + "content": "remains the same as High-Level. This simple change results in significant improvement. The per-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 158, + 356 + ], + "score": 1.0, + "content": "formance of", + "type": "text" + }, + { + "bbox": [ + 159, + 344, + 171, + 353 + ], + "score": 0.56, + "content": "F A", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "High-Level can already outperform many state-of-the-art models in the literature.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 354, + 492, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 492, + 367 + ], + "score": 1.0, + "content": "Note that our proposed symmetric form with nonlinearity should be used to guarantee the boost.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 319, + 506, + 367 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 380, + 395, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 379, + 395, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 395, + 394 + ], + "score": 1.0, + "content": "FA All-Level. First, we use the same procedure as High-Level to obtain", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 379, + 395, + 394 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 397, + 382, + 449 + ], + "lines": [ + { + "bbox": [ + 228, + 397, + 381, + 449 + ], + "spans": [ + { + "bbox": [ + 228, + 397, + 381, + 449 + ], + "score": 0.27, + "content": "\\begin{array} { r l } { \\{ \\pmb { w } _ { 1 } ^ { C } , \\ldots , \\pmb { w } _ { m } ^ { C } \\} , } & { \\{ \\pmb { w } _ { 1 } ^ { Q } , \\ldots , \\pmb { w } _ { n } ^ { Q } \\} , } \\\\ & { \\{ \\pmb { h } _ { 1 } ^ { C l } , \\ldots , \\pmb { h } _ { m } ^ { C l } \\} , \\quad \\{ \\pmb { h } _ { 1 } ^ { Q l } , \\ldots , \\pmb { h } _ { n } ^ { Q l } \\} , } \\\\ & { \\{ \\pmb { h } _ { 1 } ^ { C h } , \\ldots , \\pmb { h } _ { m } ^ { C h } \\} , \\quad \\{ \\pmb { h } _ { 1 } ^ { Q h } , \\ldots , \\pmb { h } _ { n } ^ { Q h } \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "f2e7de8e4a2044745a0df78dce2101dc7bebfa001014b80bb7d8b1b2285331ab.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 227, + 397, + 382, + 414.3333333333333 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 227, + 414.3333333333333, + 382, + 431.66666666666663 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 227, + 431.66666666666663, + 382, + 448.99999999999994 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 449, + 505, + 472 + ], + "lines": [ + { + "bbox": [ + 106, + 449, + 504, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 341, + 462 + ], + "score": 1.0, + "content": "Next we make use of the fully-aware attention similar to", + "type": "text" + }, + { + "bbox": [ + 342, + 450, + 354, + 460 + ], + "score": 0.6, + "content": "F A", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 449, + 504, + 462 + ], + "score": 1.0, + "content": "High-Level, but take back the entire", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 460, + 174, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 174, + 472 + ], + "score": 1.0, + "content": "history-of-word.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 449, + 504, + 472 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 475, + 456, + 536 + ], + "lines": [ + { + "bbox": [ + 153, + 475, + 456, + 536 + ], + "spans": [ + { + "bbox": [ + 153, + 475, + 456, + 536 + ], + "score": 0.65, + "content": "\\begin{array} { c } { \\displaystyle \\alpha _ { i j } = \\frac { \\exp ( S _ { i j } ) } { \\sum _ { k } \\exp ( S _ { i k } ) } , \\quad { S _ { i j } = S ( [ g _ { i } ^ { C } ; c _ { i } ^ { C } ; h _ { i } ^ { C l } ; h _ { i } ^ { C h } ] , [ g _ { j } ^ { Q } ; c _ { j } ^ { Q } ; h _ { j } ^ { Q l } ; h _ { j } ^ { Q h } ] ) } , } \\\\ { \\displaystyle { \\mathrm { H o W } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } [ g _ { j } ^ { Q } ; c _ { j } ^ { Q } ; h _ { j } ^ { Q l } ; h _ { j } ^ { Q h } ] } . } \\end{array}", + "type": "interline_equation", + "image_path": "c8d916a2c11d49798cf83c3620ada314ae6c60e95f4f3174cfc653dc46e23dc0.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 153, + 475, + 456, + 495.3333333333333 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 153, + 495.3333333333333, + 456, + 515.6666666666666 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 153, + 515.6666666666666, + 456, + 536.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 539, + 503, + 578 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 326, + 555 + ], + "score": 1.0, + "content": "Then we concatenate the attended history-of-word", + "type": "text" + }, + { + "bbox": [ + 327, + 538, + 358, + 554 + ], + "score": 0.91, + "content": "\\mathrm { H } \\mathrm { \\hat { o } } \\mathrm { W } _ { i } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 540, + 505, + 555 + ], + "score": 1.0, + "content": "with the original history-of-word", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 547, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 107, + 553, + 185, + 567 + ], + "score": 0.92, + "content": "[ { \\pmb g } _ { i } ^ { C } ; { \\pmb c } _ { i } ^ { C } ; { \\pmb h } _ { i } ^ { C l } ; { \\pmb h } _ { i } ^ { C h } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 547, + 505, + 573 + ], + "score": 1.0, + "content": "i and pass through two layers of BiLSTM to fully mix the two information. The", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 566, + 479, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 479, + 578 + ], + "score": 1.0, + "content": "understanding vectors for the context is the hidden vectors in the final layers of the BiLSTM.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 538, + 505, + 578 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 127, + 581, + 483, + 600 + ], + "lines": [ + { + "bbox": [ + 127, + 581, + 483, + 600 + ], + "spans": [ + { + "bbox": [ + 127, + 581, + 483, + 600 + ], + "score": 0.89, + "content": "\\pmb { u } _ { 1 } ^ { C } , \\dots , \\pmb { u } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ g _ { 1 } ^ { C } ; c _ { 1 } ^ { C } ; h _ { 1 } ^ { C l } ; h _ { 1 } ^ { C h } ; \\mathrm { H \\hat { o } W } _ { 1 } ^ { C } ] , \\dots , [ g _ { m } ^ { C } ; c _ { m } ^ { C } ; h _ { m } ^ { C l } ; h _ { m } ^ { C h } ; \\mathrm { H \\hat { o } W } _ { m } ^ { C } ] )", + "type": "interline_equation", + "image_path": "4d73eedf374412bf94795f5152c939fbff166fe2495308bede2e7ea34c90a93c.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 127, + 581, + 483, + 600 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 603, + 502, + 615 + ], + "lines": [ + { + "bbox": [ + 107, + 602, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 107, + 602, + 505, + 616 + ], + "score": 1.0, + "content": "The understanding vectors for the question is similar to the Understanding component in Section 3.1,", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32, + "bbox_fs": [ + 107, + 602, + 505, + 616 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 619, + 450, + 635 + ], + "lines": [ + { + "bbox": [ + 160, + 619, + 450, + 635 + ], + "spans": [ + { + "bbox": [ + 160, + 619, + 450, + 635 + ], + "score": 0.9, + "content": "\\pmb { u } _ { 1 } ^ { Q } , \\ldots , \\pmb { u } _ { n } ^ { Q } = \\mathrm { B i L S T M } ( [ g _ { 1 } ^ { Q } ; c _ { 1 } ^ { Q } ; \\pmb { h } _ { 1 } ^ { Q l } ; \\pmb { h } _ { 1 } ^ { Q h } ] , \\ldots , [ g _ { m } ^ { Q } ; c _ { m } ^ { Q } ; \\pmb { h } _ { m } ^ { Q l } ; \\pmb { h } _ { m } ^ { Q h } ] ) .", + "type": "interline_equation", + "image_path": "7f273415d3bf38988099bc7e91a996d59c22b7363bf6a7ad67c2810f7f728b23.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 160, + 619, + 450, + 635 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 638, + 458, + 651 + ], + "lines": [ + { + "bbox": [ + 106, + 638, + 459, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 459, + 652 + ], + "score": 1.0, + "content": "We have now generated the understanding vectors for both the context and the question.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34, + "bbox_fs": [ + 106, + 638, + 459, + 652 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "FA Multi-Level. This configuration follows from the Fully-Aware Fusion Network (FusionNet)", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 350, + 690 + ], + "score": 1.0, + "content": "presented in Section 3.1. The major difference compared to", + "type": "text" + }, + { + "bbox": [ + 350, + 677, + 363, + 687 + ], + "score": 0.36, + "content": "F A", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "All-Level is that different layers in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 686, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 104, + 686, + 316, + 702 + ], + "score": 1.0, + "content": "the history-of-word uses a different attention weight", + "type": "text" + }, + { + "bbox": [ + 316, + 690, + 324, + 698 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 686, + 505, + 702 + ], + "score": 1.0, + "content": "while being fully aware of the entire history-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 439, + 711 + ], + "score": 1.0, + "content": "of-word. In the ablation study, we consider three self-boosted fusion settings for", + "type": "text" + }, + { + "bbox": [ + 439, + 699, + 452, + 709 + ], + "score": 0.33, + "content": "F A", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Multi-Level.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "The Fully-Aware setting is the one presented in Section 3.1. Here we discuss all three of them in", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 719, + 135, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 135, + 733 + ], + "score": 1.0, + "content": "detail.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 104, + 665, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 132, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 132, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 132, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "• For the None setting in self-boosted fusion, no self-boosted fusion is used and we use two", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 142, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 142, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "layers of BiLSTM to mix the attended information. The understanding vectors for the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 142, + 104, + 408, + 117 + ], + "spans": [ + { + "bbox": [ + 142, + 104, + 174, + 117 + ], + "score": 1.0, + "content": "context", + "type": "text" + }, + { + "bbox": [ + 174, + 105, + 184, + 114 + ], + "score": 0.84, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 104, + 408, + 117 + ], + "score": 1.0, + "content": "is the hidden vectors in the final layers of the BiLSTM,", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 120, + 495, + 139 + ], + "lines": [ + { + "bbox": [ + 150, + 120, + 495, + 139 + ], + "spans": [ + { + "bbox": [ + 150, + 120, + 495, + 139 + ], + "score": 0.91, + "content": "\\pmb { u } _ { 1 } ^ { C } , \\dots , \\pmb { u } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ \\pmb { h } _ { 1 } ^ { C l } ; \\pmb { h } _ { 1 } ^ { C h } ; \\hat { \\pmb { h } } _ { 1 } ^ { C l } ; \\hat { \\pmb { h } } _ { 1 } ^ { C h } ; \\hat { \\pmb { u } } _ { 1 } ^ { C } ] , \\dots , [ \\pmb { h } _ { m } ^ { C l } ; \\pmb { h } _ { m } ^ { C h } ; \\hat { \\pmb { h } } _ { m } ^ { C l } ; \\hat { \\pmb { h } } _ { m } ^ { C h } ; \\hat { \\pmb { u } } _ { m } ^ { C } ] ) .", + "type": "interline_equation", + "image_path": "1f62ab4ea44a87c05c8fa64d0758bcd7585e7bed77548ce3d5187f361701cf67.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 150, + 120, + 495, + 139 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 140, + 144, + 503, + 167 + ], + "lines": [ + { + "bbox": [ + 142, + 144, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 142, + 144, + 505, + 156 + ], + "score": 1.0, + "content": "Self-boosted fusion is not utilized in all previous configurations: High-Level, FA High-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 142, + 154, + 238, + 167 + ], + "spans": [ + { + "bbox": [ + 142, + 154, + 238, + 167 + ], + "score": 1.0, + "content": "Level and FA All-Level.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 136, + 169, + 503, + 182 + ], + "lines": [ + { + "bbox": [ + 133, + 170, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 133, + 170, + 505, + 182 + ], + "score": 1.0, + "content": "• For the Normal setting, we first use one layer of BiLSTM to mix the attended information.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 186, + 494, + 205 + ], + "lines": [ + { + "bbox": [ + 151, + 186, + 494, + 205 + ], + "spans": [ + { + "bbox": [ + 151, + 186, + 494, + 205 + ], + "score": 0.9, + "content": "\\pmb { v } _ { 1 } ^ { C } , \\dots , \\pmb { v } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ h _ { 1 } ^ { C l } ; h _ { 1 } ^ { C h } ; \\hat { h } _ { 1 } ^ { C l } ; \\hat { h } _ { 1 } ^ { C h } ; \\hat { u } _ { 1 } ^ { C } ] , \\dots , [ h _ { m } ^ { C l } ; h _ { m } ^ { C h } ; \\hat { h } _ { m } ^ { C l } ; \\hat { h } _ { m } ^ { C h } ; \\hat { u } _ { m } ^ { C } ] ) .", + "type": "interline_equation", + "image_path": "2140bc5df35532559e125c8b38906efb2f0877fe3121777949b2ffa5aa631151.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 151, + 186, + 494, + 205 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 145, + 210, + 444, + 222 + ], + "lines": [ + { + "bbox": [ + 142, + 208, + 445, + 223 + ], + "spans": [ + { + "bbox": [ + 142, + 208, + 445, + 223 + ], + "score": 1.0, + "content": "Then we fuse the context information into itself through standard attention,", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 227, + 445, + 258 + ], + "lines": [ + { + "bbox": [ + 202, + 227, + 445, + 258 + ], + "spans": [ + { + "bbox": [ + 202, + 227, + 445, + 258 + ], + "score": 0.92, + "content": "S _ { i j } = S ( \\pmb { v } _ { i } ^ { C } , \\pmb { v } _ { j } ^ { C } ) , \\alpha _ { i j } = \\frac { \\exp ( S _ { i j } ) } { \\sum _ { k } \\exp ( S _ { i k } ) } , \\hat { \\pmb { v } } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } \\pmb { v } _ { j } ^ { C } .", + "type": "interline_equation", + "image_path": "c4461013442bc76a98551c2671d59c7822f21f84c52320e4e0ab8b9a3d85c6d8.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 202, + 227, + 445, + 242.5 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 202, + 242.5, + 445, + 258.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 141, + 263, + 504, + 286 + ], + "lines": [ + { + "bbox": [ + 141, + 262, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 141, + 262, + 330, + 277 + ], + "score": 1.0, + "content": "The final understanding vectors for the context", + "type": "text" + }, + { + "bbox": [ + 330, + 264, + 340, + 273 + ], + "score": 0.84, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 262, + 505, + 277 + ], + "score": 1.0, + "content": "is the output hidden vectors after passing", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 275, + 308, + 286 + ], + "spans": [ + { + "bbox": [ + 142, + 275, + 308, + 286 + ], + "score": 1.0, + "content": "the concatenated vectors into a BiLSTM,", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 289, + 426, + 306 + ], + "lines": [ + { + "bbox": [ + 219, + 289, + 426, + 306 + ], + "spans": [ + { + "bbox": [ + 219, + 289, + 426, + 306 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\pmb { u } _ { 1 } ^ { C } , \\ldots , \\pmb { u } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ \\pmb { v } _ { 1 } ^ { C } ; \\hat { \\pmb { v } } _ { 1 } ^ { C } ] , \\dots , [ \\pmb { v } _ { m } ^ { C } ; \\hat { \\pmb { v } } _ { m } ^ { C } ] ) . } \\end{array}", + "type": "interline_equation", + "image_path": "2acbe7c62b21084b82c0e587afa71b833c5d6e1a4abe834a6fa377b7d2dd3dc0.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 219, + 289, + 426, + 306 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 131, + 311, + 504, + 335 + ], + "lines": [ + { + "bbox": [ + 132, + 310, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 132, + 310, + 311, + 326 + ], + "score": 1.0, + "content": "• For the Fully-Aware setting, we change", + "type": "text" + }, + { + "bbox": [ + 311, + 311, + 386, + 326 + ], + "score": 0.93, + "content": "S _ { i j } = S ( \\pmb { v } _ { i } ^ { C } , \\pmb { v } _ { j } ^ { C } )", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 310, + 505, + 326 + ], + "score": 1.0, + "content": "in the Normal setting to the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 322, + 228, + 337 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 228, + 337 + ], + "score": 1.0, + "content": "fully-aware attention", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 339, + 490, + 360 + ], + "lines": [ + { + "bbox": [ + 156, + 339, + 490, + 360 + ], + "spans": [ + { + "bbox": [ + 156, + 339, + 490, + 360 + ], + "score": 0.9, + "content": "\\begin{array} { r } { S _ { i j } = S ( [ { \\pmb w } _ { i } ^ { C } ; { \\pmb h } _ { i } ^ { C l } ; { \\pmb h } _ { i } ^ { C h } ; { \\hat { \\pmb h } } _ { u } ^ { C l } ; { \\hat { \\pmb h } } _ { i } ^ { C h } ; { \\hat { \\pmb u } } _ { i } ^ { C } ; { \\pmb v } _ { i } ^ { C } ] , [ { \\pmb w } _ { j } ^ { C } ; { \\pmb h } _ { j } ^ { C l } ; { \\pmb h } _ { j } ^ { C h } ; { \\hat { \\pmb h } } _ { j } ^ { C l } ; { \\hat { \\pmb h } } _ { j } ^ { C h } ; { \\hat { \\pmb u } } _ { j } ^ { C } ; { \\pmb v } _ { j } ^ { C } ] ) . } \\end{array}", + "type": "interline_equation", + "image_path": "67190e3d51dfbfcbaa54e1a0d5f74a1c81c00f0b46df933a1da30e34cfb30f1d.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 156, + 339, + 490, + 360 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 141, + 363, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 142, + 363, + 504, + 375 + ], + "spans": [ + { + "bbox": [ + 142, + 363, + 504, + 375 + ], + "score": 1.0, + "content": "All other places remains the same. While normal self-boosted fusion is not beneficial un-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 142, + 374, + 505, + 387 + ], + "score": 1.0, + "content": "der our improved fusion approach between context and question, we can turn self-boosted", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 384, + 440, + 397 + ], + "spans": [ + { + "bbox": [ + 141, + 384, + 440, + 397 + ], + "score": 1.0, + "content": "fusion into a useful component by enhancing it with fully-aware attention.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "table", + "bbox": [ + 108, + 440, + 304, + 509 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 412, + 396, + 426 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 411, + 398, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 398, + 428 + ], + "score": 1.0, + "content": "C ADDITIONAL ABLATION STUDY ON INPUT VECTORS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "table_body", + "bbox": [ + 108, + 440, + 304, + 509 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 440, + 304, + 509 + ], + "spans": [ + { + "bbox": [ + 108, + 440, + 304, + 509 + ], + "score": 0.98, + "html": "
ConfigurationEM/F1
FusionNetFusionNet (without CoVe)FusionNet (fixing GloVe)75.3 / 83.674.1 / 82.575.0 / 83.2
Previous SotA (Hu et al., 2017)72.1/ 81.6
", + "type": "table", + "image_path": "7bf72aae61a1d273b09ae8d52af734b0abca82063ab56228e464c3a0ed07b7fb.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 108, + 440, + 304, + 453.8 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 108, + 453.8, + 304, + 467.6 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 108, + 467.6, + 304, + 481.40000000000003 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 108, + 481.40000000000003, + 304, + 495.20000000000005 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 108, + 495.20000000000005, + 304, + 509.00000000000006 + ], + "spans": [], + "index": 29 + } + ] + } + ], + "index": 22.5 + }, + { + "type": "table", + "bbox": [ + 317, + 440, + 503, + 521 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 317, + 440, + 503, + 521 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 317, + 440, + 503, + 521 + ], + "spans": [ + { + "bbox": [ + 317, + 440, + 503, + 521 + ], + "score": 0.976, + "html": "
ConfigurationEM/F1
FusionNet (S,10-run best)FusionNet (S,10-run mean)FusionNet (S, without CoVe)FusionNet (E)45.6 / 51.144.9 / 50.147.4 / 52.446.2 / 51.4
Previous SotA (E)40.7/46.2
", + "type": "table", + "image_path": "c1586b3e63156f9cdbf1f5e3ebba1330a6c2b1d6f88e30588d8569a548470a56.jpg" + } + ] + } + ], + "index": 27.0, + "virtual_lines": [ + { + "bbox": [ + 317, + 440, + 503, + 453.5 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 317, + 453.5, + 503, + 467.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 317, + 467.0, + 503, + 480.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 317, + 480.5, + 503, + 494.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 317, + 494.0, + 503, + 507.5 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 317, + 507.5, + 503, + 521.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 517, + 306, + 540 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 516, + 307, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 307, + 529 + ], + "score": 1.0, + "content": "Table 7: Ablation study on input vectors (GloVe", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 528, + 232, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 232, + 540 + ], + "score": 1.0, + "content": "and CoVe) for SQuAD dev set.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.0 + } + ], + "index": 29.5 + }, + { + "type": "table", + "bbox": [ + 316, + 561, + 504, + 642 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 309, + 529, + 510, + 552 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 310, + 529, + 510, + 541 + ], + "spans": [ + { + "bbox": [ + 310, + 529, + 510, + 541 + ], + "score": 1.0, + "content": "Table 8: Additional results for AddSent. (S: Sin-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 309, + 540, + 411, + 552 + ], + "spans": [ + { + "bbox": [ + 309, + 540, + 411, + 552 + ], + "score": 1.0, + "content": "gle model, E: Ensemble)", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.0 + }, + { + "type": "table_body", + "bbox": [ + 316, + 561, + 504, + 642 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 316, + 561, + 504, + 642 + ], + "spans": [ + { + "bbox": [ + 316, + 561, + 504, + 642 + ], + "score": 0.976, + "html": "
ConfigurationEM/F1
FusionNet (S,10-run best)FusionNet (S,10-run mean)FusionNet (S, without CoVe)FusionNet (E)54.8/60.953.1/ 59.355.2 / 61.254.7 / 60.7
Previous SotA (E)48.7 / 55.3
", + "type": "table", + "image_path": "0438bcac66858f195aee919432ad72ebf978023b095b168e94e625b3f107cf0d.jpg" + } + ] + } + ], + "index": 43.0, + "virtual_lines": [ + { + "bbox": [ + 316, + 561, + 504, + 574.5 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 316, + 574.5, + 504, + 588.0 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 316, + 588.0, + 504, + 601.5 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 316, + 601.5, + 504, + 615.0 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 316, + 615.0, + 504, + 628.5 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 316, + 628.5, + 504, + 642.0 + ], + "spans": [], + "index": 47 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 309, + 650, + 509, + 673 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 309, + 650, + 511, + 663 + ], + "spans": [ + { + "bbox": [ + 309, + 650, + 511, + 663 + ], + "score": 1.0, + "content": "Table 9: Additional results for AddOneSent. (S:", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 310, + 662, + 424, + 674 + ], + "spans": [ + { + "bbox": [ + 310, + 662, + 424, + 674 + ], + "score": 1.0, + "content": "Single model, E: Ensemble)", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51.5 + } + ], + "index": 43.0 + }, + { + "type": "image", + "bbox": [ + 106, + 544, + 305, + 632 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 544, + 305, + 632 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 544, + 305, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 305, + 632 + ], + "score": 0.97, + "type": "image", + "image_path": "eff4b81f3c624949e0b874f52b9145360911c4a3d9c88a169c06218df9f52d5d.jpg" + } + ] + } + ], + "index": 40.0, + "virtual_lines": [ + { + "bbox": [ + 106, + 544, + 305, + 558.6666666666666 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 106, + 558.6666666666666, + 305, + 573.3333333333333 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 106, + 573.3333333333333, + 305, + 587.9999999999999 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 106, + 587.9999999999999, + 305, + 602.6666666666665 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 106, + 602.6666666666665, + 305, + 617.3333333333331 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 106, + 617.3333333333331, + 305, + 631.9999999999998 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 640, + 306, + 673 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 639, + 307, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 307, + 652 + ], + "score": 1.0, + "content": "Figure 7: Single model performance (EM) on", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 650, + 307, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 307, + 663 + ], + "score": 1.0, + "content": "AddSent over 10 training runs. (dashed vertical", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 661, + 273, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 273, + 675 + ], + "score": 1.0, + "content": "line indicates previous best performance)", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "We have conducted experiments on input vectors (GloVe and CoVe) for the original SQuAD as", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "shown in Table 7. From the ablation study, we can see that FusionNet outperforms previous state-", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 161, + 722 + ], + "score": 1.0, + "content": "of-the-art by", + "type": "text" + }, + { + "bbox": [ + 162, + 710, + 182, + 720 + ], + "score": 0.89, + "content": "+ 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "in EM with and without CoVe embedding. We can also see that fine-tuning", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 721, + 377, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 377, + 733 + ], + "score": 1.0, + "content": "top-1000 GloVe embeddings is slightly helpful in the performance.", + "type": "text" + } + ], + "index": 56 + } + ], + "index": 54.5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 132, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 132, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 132, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "• For the None setting in self-boosted fusion, no self-boosted fusion is used and we use two", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 142, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 142, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "layers of BiLSTM to mix the attended information. The understanding vectors for the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 142, + 104, + 408, + 117 + ], + "spans": [ + { + "bbox": [ + 142, + 104, + 174, + 117 + ], + "score": 1.0, + "content": "context", + "type": "text" + }, + { + "bbox": [ + 174, + 105, + 184, + 114 + ], + "score": 0.84, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 104, + 408, + 117 + ], + "score": 1.0, + "content": "is the hidden vectors in the final layers of the BiLSTM,", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 132, + 81, + 506, + 117 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 120, + 495, + 139 + ], + "lines": [ + { + "bbox": [ + 150, + 120, + 495, + 139 + ], + "spans": [ + { + "bbox": [ + 150, + 120, + 495, + 139 + ], + "score": 0.91, + "content": "\\pmb { u } _ { 1 } ^ { C } , \\dots , \\pmb { u } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ \\pmb { h } _ { 1 } ^ { C l } ; \\pmb { h } _ { 1 } ^ { C h } ; \\hat { \\pmb { h } } _ { 1 } ^ { C l } ; \\hat { \\pmb { h } } _ { 1 } ^ { C h } ; \\hat { \\pmb { u } } _ { 1 } ^ { C } ] , \\dots , [ \\pmb { h } _ { m } ^ { C l } ; \\pmb { h } _ { m } ^ { C h } ; \\hat { \\pmb { h } } _ { m } ^ { C l } ; \\hat { \\pmb { h } } _ { m } ^ { C h } ; \\hat { \\pmb { u } } _ { m } ^ { C } ] ) .", + "type": "interline_equation", + "image_path": "1f62ab4ea44a87c05c8fa64d0758bcd7585e7bed77548ce3d5187f361701cf67.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 150, + 120, + 495, + 139 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 140, + 144, + 503, + 167 + ], + "lines": [ + { + "bbox": [ + 142, + 144, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 142, + 144, + 505, + 156 + ], + "score": 1.0, + "content": "Self-boosted fusion is not utilized in all previous configurations: High-Level, FA High-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 142, + 154, + 238, + 167 + ], + "spans": [ + { + "bbox": [ + 142, + 154, + 238, + 167 + ], + "score": 1.0, + "content": "Level and FA All-Level.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 142, + 144, + 505, + 167 + ] + }, + { + "type": "text", + "bbox": [ + 136, + 169, + 503, + 182 + ], + "lines": [ + { + "bbox": [ + 133, + 170, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 133, + 170, + 505, + 182 + ], + "score": 1.0, + "content": "• For the Normal setting, we first use one layer of BiLSTM to mix the attended information.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 133, + 170, + 505, + 182 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 186, + 494, + 205 + ], + "lines": [ + { + "bbox": [ + 151, + 186, + 494, + 205 + ], + "spans": [ + { + "bbox": [ + 151, + 186, + 494, + 205 + ], + "score": 0.9, + "content": "\\pmb { v } _ { 1 } ^ { C } , \\dots , \\pmb { v } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ h _ { 1 } ^ { C l } ; h _ { 1 } ^ { C h } ; \\hat { h } _ { 1 } ^ { C l } ; \\hat { h } _ { 1 } ^ { C h } ; \\hat { u } _ { 1 } ^ { C } ] , \\dots , [ h _ { m } ^ { C l } ; h _ { m } ^ { C h } ; \\hat { h } _ { m } ^ { C l } ; \\hat { h } _ { m } ^ { C h } ; \\hat { u } _ { m } ^ { C } ] ) .", + "type": "interline_equation", + "image_path": "2140bc5df35532559e125c8b38906efb2f0877fe3121777949b2ffa5aa631151.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 151, + 186, + 494, + 205 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 145, + 210, + 444, + 222 + ], + "lines": [ + { + "bbox": [ + 142, + 208, + 445, + 223 + ], + "spans": [ + { + "bbox": [ + 142, + 208, + 445, + 223 + ], + "score": 1.0, + "content": "Then we fuse the context information into itself through standard attention,", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 142, + 208, + 445, + 223 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 227, + 445, + 258 + ], + "lines": [ + { + "bbox": [ + 202, + 227, + 445, + 258 + ], + "spans": [ + { + "bbox": [ + 202, + 227, + 445, + 258 + ], + "score": 0.92, + "content": "S _ { i j } = S ( \\pmb { v } _ { i } ^ { C } , \\pmb { v } _ { j } ^ { C } ) , \\alpha _ { i j } = \\frac { \\exp ( S _ { i j } ) } { \\sum _ { k } \\exp ( S _ { i k } ) } , \\hat { \\pmb { v } } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } \\pmb { v } _ { j } ^ { C } .", + "type": "interline_equation", + "image_path": "c4461013442bc76a98551c2671d59c7822f21f84c52320e4e0ab8b9a3d85c6d8.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 202, + 227, + 445, + 242.5 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 202, + 242.5, + 445, + 258.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 141, + 263, + 504, + 286 + ], + "lines": [ + { + "bbox": [ + 141, + 262, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 141, + 262, + 330, + 277 + ], + "score": 1.0, + "content": "The final understanding vectors for the context", + "type": "text" + }, + { + "bbox": [ + 330, + 264, + 340, + 273 + ], + "score": 0.84, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 262, + 505, + 277 + ], + "score": 1.0, + "content": "is the output hidden vectors after passing", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 275, + 308, + 286 + ], + "spans": [ + { + "bbox": [ + 142, + 275, + 308, + 286 + ], + "score": 1.0, + "content": "the concatenated vectors into a BiLSTM,", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 141, + 262, + 505, + 286 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 289, + 426, + 306 + ], + "lines": [ + { + "bbox": [ + 219, + 289, + 426, + 306 + ], + "spans": [ + { + "bbox": [ + 219, + 289, + 426, + 306 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\pmb { u } _ { 1 } ^ { C } , \\ldots , \\pmb { u } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ \\pmb { v } _ { 1 } ^ { C } ; \\hat { \\pmb { v } } _ { 1 } ^ { C } ] , \\dots , [ \\pmb { v } _ { m } ^ { C } ; \\hat { \\pmb { v } } _ { m } ^ { C } ] ) . } \\end{array}", + "type": "interline_equation", + "image_path": "2acbe7c62b21084b82c0e587afa71b833c5d6e1a4abe834a6fa377b7d2dd3dc0.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 219, + 289, + 426, + 306 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 131, + 311, + 504, + 335 + ], + "lines": [ + { + "bbox": [ + 132, + 310, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 132, + 310, + 311, + 326 + ], + "score": 1.0, + "content": "• For the Fully-Aware setting, we change", + "type": "text" + }, + { + "bbox": [ + 311, + 311, + 386, + 326 + ], + "score": 0.93, + "content": "S _ { i j } = S ( \\pmb { v } _ { i } ^ { C } , \\pmb { v } _ { j } ^ { C } )", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 310, + 505, + 326 + ], + "score": 1.0, + "content": "in the Normal setting to the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 322, + 228, + 337 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 228, + 337 + ], + "score": 1.0, + "content": "fully-aware attention", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 132, + 310, + 505, + 337 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 339, + 490, + 360 + ], + "lines": [ + { + "bbox": [ + 156, + 339, + 490, + 360 + ], + "spans": [ + { + "bbox": [ + 156, + 339, + 490, + 360 + ], + "score": 0.9, + "content": "\\begin{array} { r } { S _ { i j } = S ( [ { \\pmb w } _ { i } ^ { C } ; { \\pmb h } _ { i } ^ { C l } ; { \\pmb h } _ { i } ^ { C h } ; { \\hat { \\pmb h } } _ { u } ^ { C l } ; { \\hat { \\pmb h } } _ { i } ^ { C h } ; { \\hat { \\pmb u } } _ { i } ^ { C } ; { \\pmb v } _ { i } ^ { C } ] , [ { \\pmb w } _ { j } ^ { C } ; { \\pmb h } _ { j } ^ { C l } ; { \\pmb h } _ { j } ^ { C h } ; { \\hat { \\pmb h } } _ { j } ^ { C l } ; { \\hat { \\pmb h } } _ { j } ^ { C h } ; { \\hat { \\pmb u } } _ { j } ^ { C } ; { \\pmb v } _ { j } ^ { C } ] ) . } \\end{array}", + "type": "interline_equation", + "image_path": "67190e3d51dfbfcbaa54e1a0d5f74a1c81c00f0b46df933a1da30e34cfb30f1d.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 156, + 339, + 490, + 360 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 141, + 363, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 142, + 363, + 504, + 375 + ], + "spans": [ + { + "bbox": [ + 142, + 363, + 504, + 375 + ], + "score": 1.0, + "content": "All other places remains the same. While normal self-boosted fusion is not beneficial un-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 142, + 374, + 505, + 387 + ], + "score": 1.0, + "content": "der our improved fusion approach between context and question, we can turn self-boosted", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 384, + 440, + 397 + ], + "spans": [ + { + "bbox": [ + 141, + 384, + 440, + 397 + ], + "score": 1.0, + "content": "fusion into a useful component by enhancing it with fully-aware attention.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 141, + 363, + 505, + 397 + ] + }, + { + "type": "table", + "bbox": [ + 108, + 440, + 304, + 509 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 412, + 396, + 426 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 411, + 398, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 398, + 428 + ], + "score": 1.0, + "content": "C ADDITIONAL ABLATION STUDY ON INPUT VECTORS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "table_body", + "bbox": [ + 108, + 440, + 304, + 509 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 440, + 304, + 509 + ], + "spans": [ + { + "bbox": [ + 108, + 440, + 304, + 509 + ], + "score": 0.98, + "html": "
ConfigurationEM/F1
FusionNetFusionNet (without CoVe)FusionNet (fixing GloVe)75.3 / 83.674.1 / 82.575.0 / 83.2
Previous SotA (Hu et al., 2017)72.1/ 81.6
", + "type": "table", + "image_path": "7bf72aae61a1d273b09ae8d52af734b0abca82063ab56228e464c3a0ed07b7fb.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 108, + 440, + 304, + 453.8 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 108, + 453.8, + 304, + 467.6 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 108, + 467.6, + 304, + 481.40000000000003 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 108, + 481.40000000000003, + 304, + 495.20000000000005 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 108, + 495.20000000000005, + 304, + 509.00000000000006 + ], + "spans": [], + "index": 29 + } + ] + } + ], + "index": 22.5 + }, + { + "type": "table", + "bbox": [ + 317, + 440, + 503, + 521 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 317, + 440, + 503, + 521 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 317, + 440, + 503, + 521 + ], + "spans": [ + { + "bbox": [ + 317, + 440, + 503, + 521 + ], + "score": 0.976, + "html": "
ConfigurationEM/F1
FusionNet (S,10-run best)FusionNet (S,10-run mean)FusionNet (S, without CoVe)FusionNet (E)45.6 / 51.144.9 / 50.147.4 / 52.446.2 / 51.4
Previous SotA (E)40.7/46.2
", + "type": "table", + "image_path": "c1586b3e63156f9cdbf1f5e3ebba1330a6c2b1d6f88e30588d8569a548470a56.jpg" + } + ] + } + ], + "index": 27.0, + "virtual_lines": [ + { + "bbox": [ + 317, + 440, + 503, + 453.5 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 317, + 453.5, + 503, + 467.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 317, + 467.0, + 503, + 480.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 317, + 480.5, + 503, + 494.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 317, + 494.0, + 503, + 507.5 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 317, + 507.5, + 503, + 521.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 517, + 306, + 540 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 516, + 307, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 307, + 529 + ], + "score": 1.0, + "content": "Table 7: Ablation study on input vectors (GloVe", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 528, + 232, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 232, + 540 + ], + "score": 1.0, + "content": "and CoVe) for SQuAD dev set.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.0 + } + ], + "index": 29.5 + }, + { + "type": "table", + "bbox": [ + 316, + 561, + 504, + 642 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 309, + 529, + 510, + 552 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 310, + 529, + 510, + 541 + ], + "spans": [ + { + "bbox": [ + 310, + 529, + 510, + 541 + ], + "score": 1.0, + "content": "Table 8: Additional results for AddSent. (S: Sin-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 309, + 540, + 411, + 552 + ], + "spans": [ + { + "bbox": [ + 309, + 540, + 411, + 552 + ], + "score": 1.0, + "content": "gle model, E: Ensemble)", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.0 + }, + { + "type": "table_body", + "bbox": [ + 316, + 561, + 504, + 642 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 316, + 561, + 504, + 642 + ], + "spans": [ + { + "bbox": [ + 316, + 561, + 504, + 642 + ], + "score": 0.976, + "html": "
ConfigurationEM/F1
FusionNet (S,10-run best)FusionNet (S,10-run mean)FusionNet (S, without CoVe)FusionNet (E)54.8/60.953.1/ 59.355.2 / 61.254.7 / 60.7
Previous SotA (E)48.7 / 55.3
", + "type": "table", + "image_path": "0438bcac66858f195aee919432ad72ebf978023b095b168e94e625b3f107cf0d.jpg" + } + ] + } + ], + "index": 43.0, + "virtual_lines": [ + { + "bbox": [ + 316, + 561, + 504, + 574.5 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 316, + 574.5, + 504, + 588.0 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 316, + 588.0, + 504, + 601.5 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 316, + 601.5, + 504, + 615.0 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 316, + 615.0, + 504, + 628.5 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 316, + 628.5, + 504, + 642.0 + ], + "spans": [], + "index": 47 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 309, + 650, + 509, + 673 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 309, + 650, + 511, + 663 + ], + "spans": [ + { + "bbox": [ + 309, + 650, + 511, + 663 + ], + "score": 1.0, + "content": "Table 9: Additional results for AddOneSent. (S:", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 310, + 662, + 424, + 674 + ], + "spans": [ + { + "bbox": [ + 310, + 662, + 424, + 674 + ], + "score": 1.0, + "content": "Single model, E: Ensemble)", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51.5 + } + ], + "index": 43.0 + }, + { + "type": "image", + "bbox": [ + 106, + 544, + 305, + 632 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 544, + 305, + 632 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 544, + 305, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 305, + 632 + ], + "score": 0.97, + "type": "image", + "image_path": "eff4b81f3c624949e0b874f52b9145360911c4a3d9c88a169c06218df9f52d5d.jpg" + } + ] + } + ], + "index": 40.0, + "virtual_lines": [ + { + "bbox": [ + 106, + 544, + 305, + 558.6666666666666 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 106, + 558.6666666666666, + 305, + 573.3333333333333 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 106, + 573.3333333333333, + 305, + 587.9999999999999 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 106, + 587.9999999999999, + 305, + 602.6666666666665 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 106, + 602.6666666666665, + 305, + 617.3333333333331 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 106, + 617.3333333333331, + 305, + 631.9999999999998 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 640, + 306, + 673 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 639, + 307, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 307, + 652 + ], + "score": 1.0, + "content": "Figure 7: Single model performance (EM) on", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 650, + 307, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 307, + 663 + ], + "score": 1.0, + "content": "AddSent over 10 training runs. (dashed vertical", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 661, + 273, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 273, + 675 + ], + "score": 1.0, + "content": "line indicates previous best performance)", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "We have conducted experiments on input vectors (GloVe and CoVe) for the original SQuAD as", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "shown in Table 7. From the ablation study, we can see that FusionNet outperforms previous state-", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 161, + 722 + ], + "score": 1.0, + "content": "of-the-art by", + "type": "text" + }, + { + "bbox": [ + 162, + 710, + 182, + 720 + ], + "score": 0.89, + "content": "+ 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "in EM with and without CoVe embedding. We can also see that fine-tuning", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 721, + 377, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 377, + 733 + ], + "score": 1.0, + "content": "top-1000 GloVe embeddings is slightly helpful in the performance.", + "type": "text" + } + ], + "index": 56 + } + ], + "index": 54.5, + "bbox_fs": [ + 105, + 687, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Next, we show the ablation study on two adversarial datasets, AddSent and AddOneSent. For the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "original FusionNet, we perform ten training runs with different random seeds and evaluate indepen-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 506, + 118 + ], + "score": 1.0, + "content": "dently on the ten single models. The performance distribution of the ten training runs can be seen in", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "Figure 7. Most of the independent runs perform similarly, but there are a few that performs slightly", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 506, + 138 + ], + "score": 1.0, + "content": "worse, possibly because the adversarial dataset is never shown during the training. For FusionNet", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 138, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 505, + 149 + ], + "score": 1.0, + "content": "(without CoVe), we directly evaluate on the model trained in Table 7. From Table 8 and 9, we", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 506, + 162 + ], + "score": 1.0, + "content": "can see that FusionNet, single or ensemble, with or without CoVe, are all better than previous best", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 104, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "performance by a significant margin. It is also interesting that removing CoVe is slightly better on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "adversarial datasets. We assert that it is because AddSent and AddOneSent target the over-stability", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "of machine comprehension models (Jia & Liang, 2017). Since CoVe is the output vector of two-layer", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 192, + 310, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 310, + 205 + ], + "score": 1.0, + "content": "BiLSTM, CoVe may slightly worsen this problem.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 107, + 219, + 392, + 232 + ], + "lines": [ + { + "bbox": [ + 106, + 219, + 393, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 393, + 234 + ], + "score": 1.0, + "content": "D APPLICATION TO NATURAL LANGUAGE INFERENCE", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 244, + 504, + 289 + ], + "lines": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "FusionNet is an improved attention mechanism that can be easily added to any attention-based neural", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "architecture. We consider the task of natural language inference in this section to show one example", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 266, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 469, + 279 + ], + "score": 1.0, + "content": "of its usage. In natural language inference task, we are given two pieces of text, a premise", + "type": "text" + }, + { + "bbox": [ + 470, + 267, + 480, + 276 + ], + "score": 0.82, + "content": "_ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 266, + 506, + 279 + ], + "score": 1.0, + "content": "and a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 278, + 383, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 151, + 290 + ], + "score": 1.0, + "content": "hypothesis", + "type": "text" + }, + { + "bbox": [ + 152, + 278, + 163, + 288 + ], + "score": 0.59, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 278, + 383, + 290 + ], + "score": 1.0, + "content": ". The task is to identify one of the following scenarios:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 129, + 298, + 411, + 340 + ], + "lines": [ + { + "bbox": [ + 129, + 298, + 411, + 311 + ], + "spans": [ + { + "bbox": [ + 129, + 298, + 254, + 311 + ], + "score": 1.0, + "content": "1. Entailment - the hypothesis", + "type": "text" + }, + { + "bbox": [ + 254, + 299, + 266, + 309 + ], + "score": 0.69, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 298, + 398, + 311 + ], + "score": 1.0, + "content": "can be derived from the premise", + "type": "text" + }, + { + "bbox": [ + 398, + 299, + 408, + 308 + ], + "score": 0.79, + "content": "_ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 298, + 411, + 311 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 128, + 312, + 387, + 326 + ], + "spans": [ + { + "bbox": [ + 128, + 312, + 265, + 326 + ], + "score": 1.0, + "content": "2. Contradiction - the hypothesis", + "type": "text" + }, + { + "bbox": [ + 266, + 313, + 277, + 324 + ], + "score": 0.75, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 312, + 373, + 326 + ], + "score": 1.0, + "content": "contradicts the premise", + "type": "text" + }, + { + "bbox": [ + 374, + 313, + 383, + 323 + ], + "score": 0.78, + "content": "_ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 312, + 387, + 326 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 129, + 327, + 257, + 341 + ], + "spans": [ + { + "bbox": [ + 129, + 327, + 257, + 341 + ], + "score": 1.0, + "content": "3. Neutral - none of the above.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 349, + 506, + 416 + ], + "lines": [ + { + "bbox": [ + 106, + 348, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 506, + 362 + ], + "score": 1.0, + "content": "We focus on Multi-Genre Natural Language Inference (MultiNLI) corpus (Williams et al., 2017)", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 360, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 372 + ], + "score": 1.0, + "content": "recently developed by the creator of Stanford Natural Language Inference (SNLI) dataset (Bowman", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 104, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "et al., 2015). MultiNLI covers ten genres of spoken and written text, such as telephone speech and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 382, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 505, + 394 + ], + "score": 1.0, + "content": "fictions. However the training set only contains five genres. Thus there are in-domain and cross-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 393, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 505, + 405 + ], + "score": 1.0, + "content": "domain accuracy during evaluation. MultiNLI is designed to be more challenging than SNLI, since", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 403, + 450, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 411, + 416 + ], + "score": 1.0, + "content": "several models already outperformed human annotators on SNLI (accuracy:", + "type": "text" + }, + { + "bbox": [ + 412, + 403, + 446, + 415 + ], + "score": 0.85, + "content": "8 7 . 7 \\% ) ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 404, + 450, + 416 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 420, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "score": 1.0, + "content": "A state-of-the-art model for natural language inference is Enhanced Sequential Inference Model", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 431, + 504, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 356, + 443 + ], + "score": 1.0, + "content": "(ESIM) by Chen et al. (2017b), which achieves an accuray of", + "type": "text" + }, + { + "bbox": [ + 356, + 432, + 383, + 442 + ], + "score": 0.89, + "content": "8 8 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 431, + 477, + 443 + ], + "score": 1.0, + "content": "on SNLI and obtained", + "type": "text" + }, + { + "bbox": [ + 477, + 432, + 504, + 443 + ], + "score": 0.86, + "content": "7 2 . 3 \\%", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 159, + 455 + ], + "score": 1.0, + "content": "(in-domain),", + "type": "text" + }, + { + "bbox": [ + 159, + 443, + 186, + 454 + ], + "score": 0.86, + "content": "7 2 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "(cross-domain) on MultiNLI (Williams et al., 2017). We implemented a version", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 452, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 309, + 467 + ], + "score": 1.0, + "content": "of ESIM in PyTorch. The input vectors for both", + "type": "text" + }, + { + "bbox": [ + 309, + 454, + 319, + 464 + ], + "score": 0.84, + "content": "_ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 452, + 339, + 467 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 339, + 454, + 351, + 464 + ], + "score": 0.8, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 452, + 505, + 467 + ], + "score": 1.0, + "content": "are the same as the input vectors for", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 465, + 288, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 138, + 477 + ], + "score": 1.0, + "content": "context", + "type": "text" + }, + { + "bbox": [ + 138, + 465, + 148, + 475 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 465, + 288, + 477 + ], + "score": 1.0, + "content": "described in Section 3. Therefore,", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 480, + 354, + 496 + ], + "lines": [ + { + "bbox": [ + 257, + 480, + 354, + 496 + ], + "spans": [ + { + "bbox": [ + 257, + 480, + 354, + 496 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\pmb { w } _ { i } ^ { P } , \\pmb { w } _ { j } ^ { H } \\in \\mathbb { R } ^ { 9 0 0 + 2 0 + 1 } . } \\end{array}", + "type": "interline_equation", + "image_path": "30e1ea2833f5ec931353a06aeebe295a30773cf26221403ccee0427a6326f6f3.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 257, + 480, + 354, + 496 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 504, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "Then, two-layer BiLSTM with shortcut connection is used to encode the input words for both", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 510, + 248, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 140, + 525 + ], + "score": 1.0, + "content": "premise", + "type": "text" + }, + { + "bbox": [ + 141, + 512, + 151, + 521 + ], + "score": 0.83, + "content": "_ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 510, + 214, + 525 + ], + "score": 1.0, + "content": "and hypothesis", + "type": "text" + }, + { + "bbox": [ + 214, + 512, + 225, + 521 + ], + "score": 0.83, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 510, + 248, + 525 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "interline_equation", + "bbox": [ + 197, + 528, + 414, + 545 + ], + "lines": [ + { + "bbox": [ + 197, + 528, + 414, + 545 + ], + "spans": [ + { + "bbox": [ + 197, + 528, + 414, + 545 + ], + "score": 0.87, + "content": "\\{ \\boldsymbol { h } _ { i } ^ { P l } \\} = \\mathrm { B i L S T M } ( \\boldsymbol { w } _ { i } ^ { P } ) , \\quad \\{ \\boldsymbol { h } _ { j } ^ { H l } \\} = \\mathrm { B i L S T M } ( \\boldsymbol { w } _ { j } ^ { H } ) ,", + "type": "interline_equation", + "image_path": "cc37a253e0375f855d059e8a62107e20f70ae202e2b46104bf3c89cf6ca563eb.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 197, + 528, + 414, + 545 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 549, + 442, + 565 + ], + "lines": [ + { + "bbox": [ + 168, + 549, + 442, + 565 + ], + "spans": [ + { + "bbox": [ + 168, + 549, + 442, + 565 + ], + "score": 0.85, + "content": "\\{ { \\pmb h } _ { i } ^ { P h } \\} = \\mathrm { B i L S T M } ( [ { \\pmb w } _ { i } ^ { P } ; { \\pmb h } _ { i } ^ { P l } ] ) , \\quad \\{ { \\pmb h } _ { j } ^ { H h } \\} = \\mathrm { B i L S T M } ( [ { \\pmb w } _ { j } ^ { H } ; { \\pmb h } _ { j } ^ { H l } ] ) .", + "type": "interline_equation", + "image_path": "90713cc79285dd7dc81f44aa971902f748762df9c0dfb3ed241d6c2c49ee3fac.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 168, + 549, + 442, + 565 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 567, + 504, + 592 + ], + "lines": [ + { + "bbox": [ + 103, + 560, + 508, + 595 + ], + "spans": [ + { + "bbox": [ + 103, + 560, + 146, + 595 + ], + "score": 1.0, + "content": "The hiddetion from", + "type": "text" + }, + { + "bbox": [ + 157, + 560, + 168, + 595 + ], + "score": 1.0, + "content": "sizto", + "type": "text" + }, + { + "bbox": [ + 180, + 560, + 244, + 595 + ], + "score": 1.0, + "content": "f each LSTM is as well as from", + "type": "text" + }, + { + "bbox": [ + 256, + 560, + 267, + 595 + ], + "score": 1.0, + "content": "0, sto", + "type": "text" + }, + { + "bbox": [ + 274, + 568, + 389, + 583 + ], + "score": 0.84, + "content": "h _ { i } ^ { P l } , h _ { i } ^ { P h } , h _ { j } ^ { H l } , h _ { j } ^ { H h } \\in \\mathbb { R } ^ { 3 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 560, + 508, + 595 + ], + "score": 1.0, + "content": ". Next, ESIM fuses informa-e consider the following,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 147, + 581, + 277, + 591 + ], + "spans": [ + { + "bbox": [ + 147, + 581, + 156, + 591 + ], + "score": 0.84, + "content": "_ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 581, + 180, + 591 + ], + "score": 0.8, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 581, + 256, + 591 + ], + "score": 0.81, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 581, + 277, + 591 + ], + "score": 0.83, + "content": "_ { P }", + "type": "inline_equation" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 597, + 480, + 631 + ], + "lines": [ + { + "bbox": [ + 129, + 597, + 480, + 631 + ], + "spans": [ + { + "bbox": [ + 129, + 597, + 480, + 631 + ], + "score": 0.93, + "content": "\\boldsymbol { g } _ { i } ^ { P } = [ h _ { i } ^ { P h } ; \\hat { h } _ { i } ^ { P h } ] , \\boldsymbol { \\hat { h } } _ { i } ^ { P h } = \\sum _ { j } \\alpha _ { i j } ^ { P } \\boldsymbol { h } _ { j } ^ { H h } , \\boldsymbol { \\alpha } _ { i j } ^ { P } = \\frac { \\exp ( S _ { i j } ^ { P } ) } { \\sum _ { k } \\exp ( S _ { i k } ^ { P } ) } , S _ { i j } ^ { P } = S ^ { P } ( h _ { i } ^ { P h } , h _ { j } ^ { H h } ) ,", + "type": "interline_equation", + "image_path": "f6be446b1251a31ebb3076db5394dc74905758a9d55d6bed442f23e3b5863ae5.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 129, + 597, + 480, + 608.3333333333334 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 129, + 608.3333333333334, + 480, + 619.6666666666667 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 129, + 619.6666666666667, + 480, + 631.0000000000001 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 125, + 635, + 484, + 667 + ], + "lines": [ + { + "bbox": [ + 125, + 635, + 484, + 667 + ], + "spans": [ + { + "bbox": [ + 125, + 635, + 484, + 667 + ], + "score": 0.93, + "content": "{ g } _ { j } ^ { H } = [ { h } _ { j } ^ { H h } ; \\hat { h } _ { j } ^ { H h } ] , \\ \\hat { h } _ { j } ^ { H h } = \\sum _ { i } \\alpha _ { i j } ^ { H } { h } _ { i } ^ { P h } , \\ \\alpha _ { i j } ^ { H } = \\frac { \\exp ( S _ { i j } ^ { H } ) } { \\sum _ { k } \\exp ( S _ { k j } ^ { H } ) } , \\ S _ { i j } ^ { H } = S ^ { H } ( { h } _ { i } ^ { P h } , { h } _ { j } ^ { H h } ) .", + "type": "interline_equation", + "image_path": "ba654acc27756674abba64b0b58f26a9e08a327c143c9176317d4e581a1a3f76.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 125, + 635, + 484, + 645.6666666666666 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 125, + 645.6666666666666, + 484, + 656.3333333333333 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 125, + 656.3333333333333, + 484, + 666.9999999999999 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 669, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 441, + 682 + ], + "score": 1.0, + "content": "We set the attention hidden size to be the same as the dimension of hidden vectors", + "type": "text" + }, + { + "bbox": [ + 441, + 670, + 449, + 680 + ], + "score": 0.77, + "content": "^ { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 669, + 505, + 682 + ], + "score": 1.0, + "content": ". Next, ESIM", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 679, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 127, + 694 + ], + "score": 1.0, + "content": "feed", + "type": "text" + }, + { + "bbox": [ + 127, + 680, + 159, + 694 + ], + "score": 0.92, + "content": "g _ { i } ^ { P } , g _ { j } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 679, + 506, + 694 + ], + "score": 1.0, + "content": "into separate BiLSTMs to perform inference. In our implementation, we consider", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "score": 1.0, + "content": "two-layer BiLSTM with shortcut connections for inference. The hidden vectors for the two-layer", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 711, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 116, + 708, + 506, + 725 + ], + "spans": [ + { + "bbox": [ + 116, + 708, + 506, + 725 + ], + "score": 1.0, + "content": "3The human annotators’ accuracy is the accuracy of five human annotators’ labels on the label with the", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 211, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 211, + 732 + ], + "score": 1.0, + "content": "majority vote (golden label).", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Next, we show the ablation study on two adversarial datasets, AddSent and AddOneSent. For the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "original FusionNet, we perform ten training runs with different random seeds and evaluate indepen-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 506, + 118 + ], + "score": 1.0, + "content": "dently on the ten single models. The performance distribution of the ten training runs can be seen in", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "Figure 7. Most of the independent runs perform similarly, but there are a few that performs slightly", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 506, + 138 + ], + "score": 1.0, + "content": "worse, possibly because the adversarial dataset is never shown during the training. For FusionNet", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 138, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 505, + 149 + ], + "score": 1.0, + "content": "(without CoVe), we directly evaluate on the model trained in Table 7. From Table 8 and 9, we", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 506, + 162 + ], + "score": 1.0, + "content": "can see that FusionNet, single or ensemble, with or without CoVe, are all better than previous best", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 104, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "performance by a significant margin. It is also interesting that removing CoVe is slightly better on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "adversarial datasets. We assert that it is because AddSent and AddOneSent target the over-stability", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "of machine comprehension models (Jia & Liang, 2017). Since CoVe is the output vector of two-layer", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 192, + 310, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 310, + 205 + ], + "score": 1.0, + "content": "BiLSTM, CoVe may slightly worsen this problem.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5, + "bbox_fs": [ + 104, + 82, + 506, + 205 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 219, + 392, + 232 + ], + "lines": [ + { + "bbox": [ + 106, + 219, + 393, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 393, + 234 + ], + "score": 1.0, + "content": "D APPLICATION TO NATURAL LANGUAGE INFERENCE", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 244, + 504, + 289 + ], + "lines": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "FusionNet is an improved attention mechanism that can be easily added to any attention-based neural", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "architecture. We consider the task of natural language inference in this section to show one example", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 266, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 469, + 279 + ], + "score": 1.0, + "content": "of its usage. In natural language inference task, we are given two pieces of text, a premise", + "type": "text" + }, + { + "bbox": [ + 470, + 267, + 480, + 276 + ], + "score": 0.82, + "content": "_ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 266, + 506, + 279 + ], + "score": 1.0, + "content": "and a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 278, + 383, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 151, + 290 + ], + "score": 1.0, + "content": "hypothesis", + "type": "text" + }, + { + "bbox": [ + 152, + 278, + 163, + 288 + ], + "score": 0.59, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 278, + 383, + 290 + ], + "score": 1.0, + "content": ". The task is to identify one of the following scenarios:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 244, + 506, + 290 + ] + }, + { + "type": "index", + "bbox": [ + 129, + 298, + 411, + 340 + ], + "lines": [ + { + "bbox": [ + 129, + 298, + 411, + 311 + ], + "spans": [ + { + "bbox": [ + 129, + 298, + 254, + 311 + ], + "score": 1.0, + "content": "1. Entailment - the hypothesis", + "type": "text" + }, + { + "bbox": [ + 254, + 299, + 266, + 309 + ], + "score": 0.69, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 298, + 398, + 311 + ], + "score": 1.0, + "content": "can be derived from the premise", + "type": "text" + }, + { + "bbox": [ + 398, + 299, + 408, + 308 + ], + "score": 0.79, + "content": "_ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 298, + 411, + 311 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 312, + 387, + 326 + ], + "spans": [ + { + "bbox": [ + 128, + 312, + 265, + 326 + ], + "score": 1.0, + "content": "2. Contradiction - the hypothesis", + "type": "text" + }, + { + "bbox": [ + 266, + 313, + 277, + 324 + ], + "score": 0.75, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 312, + 373, + 326 + ], + "score": 1.0, + "content": "contradicts the premise", + "type": "text" + }, + { + "bbox": [ + 374, + 313, + 383, + 323 + ], + "score": 0.78, + "content": "_ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 312, + 387, + 326 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 129, + 327, + 257, + 341 + ], + "spans": [ + { + "bbox": [ + 129, + 327, + 257, + 341 + ], + "score": 1.0, + "content": "3. Neutral - none of the above.", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + } + ], + "index": 17, + "bbox_fs": [ + 128, + 298, + 411, + 341 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 349, + 506, + 416 + ], + "lines": [ + { + "bbox": [ + 106, + 348, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 506, + 362 + ], + "score": 1.0, + "content": "We focus on Multi-Genre Natural Language Inference (MultiNLI) corpus (Williams et al., 2017)", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 360, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 372 + ], + "score": 1.0, + "content": "recently developed by the creator of Stanford Natural Language Inference (SNLI) dataset (Bowman", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 104, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "et al., 2015). MultiNLI covers ten genres of spoken and written text, such as telephone speech and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 382, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 505, + 394 + ], + "score": 1.0, + "content": "fictions. However the training set only contains five genres. Thus there are in-domain and cross-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 393, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 505, + 405 + ], + "score": 1.0, + "content": "domain accuracy during evaluation. MultiNLI is designed to be more challenging than SNLI, since", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 403, + 450, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 411, + 416 + ], + "score": 1.0, + "content": "several models already outperformed human annotators on SNLI (accuracy:", + "type": "text" + }, + { + "bbox": [ + 412, + 403, + 446, + 415 + ], + "score": 0.85, + "content": "8 7 . 7 \\% ) ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 404, + 450, + 416 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 348, + 506, + 416 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 420, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "score": 1.0, + "content": "A state-of-the-art model for natural language inference is Enhanced Sequential Inference Model", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 431, + 504, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 356, + 443 + ], + "score": 1.0, + "content": "(ESIM) by Chen et al. (2017b), which achieves an accuray of", + "type": "text" + }, + { + "bbox": [ + 356, + 432, + 383, + 442 + ], + "score": 0.89, + "content": "8 8 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 431, + 477, + 443 + ], + "score": 1.0, + "content": "on SNLI and obtained", + "type": "text" + }, + { + "bbox": [ + 477, + 432, + 504, + 443 + ], + "score": 0.86, + "content": "7 2 . 3 \\%", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 159, + 455 + ], + "score": 1.0, + "content": "(in-domain),", + "type": "text" + }, + { + "bbox": [ + 159, + 443, + 186, + 454 + ], + "score": 0.86, + "content": "7 2 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "(cross-domain) on MultiNLI (Williams et al., 2017). We implemented a version", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 452, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 309, + 467 + ], + "score": 1.0, + "content": "of ESIM in PyTorch. The input vectors for both", + "type": "text" + }, + { + "bbox": [ + 309, + 454, + 319, + 464 + ], + "score": 0.84, + "content": "_ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 452, + 339, + 467 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 339, + 454, + 351, + 464 + ], + "score": 0.8, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 452, + 505, + 467 + ], + "score": 1.0, + "content": "are the same as the input vectors for", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 465, + 288, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 138, + 477 + ], + "score": 1.0, + "content": "context", + "type": "text" + }, + { + "bbox": [ + 138, + 465, + 148, + 475 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 465, + 288, + 477 + ], + "score": 1.0, + "content": "described in Section 3. Therefore,", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 421, + 505, + 477 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 480, + 354, + 496 + ], + "lines": [ + { + "bbox": [ + 257, + 480, + 354, + 496 + ], + "spans": [ + { + "bbox": [ + 257, + 480, + 354, + 496 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\pmb { w } _ { i } ^ { P } , \\pmb { w } _ { j } ^ { H } \\in \\mathbb { R } ^ { 9 0 0 + 2 0 + 1 } . } \\end{array}", + "type": "interline_equation", + "image_path": "30e1ea2833f5ec931353a06aeebe295a30773cf26221403ccee0427a6326f6f3.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 257, + 480, + 354, + 496 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 504, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "Then, two-layer BiLSTM with shortcut connection is used to encode the input words for both", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 510, + 248, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 140, + 525 + ], + "score": 1.0, + "content": "premise", + "type": "text" + }, + { + "bbox": [ + 141, + 512, + 151, + 521 + ], + "score": 0.83, + "content": "_ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 510, + 214, + 525 + ], + "score": 1.0, + "content": "and hypothesis", + "type": "text" + }, + { + "bbox": [ + 214, + 512, + 225, + 521 + ], + "score": 0.83, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 510, + 248, + 525 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 500, + 505, + 525 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 197, + 528, + 414, + 545 + ], + "lines": [ + { + "bbox": [ + 197, + 528, + 414, + 545 + ], + "spans": [ + { + "bbox": [ + 197, + 528, + 414, + 545 + ], + "score": 0.87, + "content": "\\{ \\boldsymbol { h } _ { i } ^ { P l } \\} = \\mathrm { B i L S T M } ( \\boldsymbol { w } _ { i } ^ { P } ) , \\quad \\{ \\boldsymbol { h } _ { j } ^ { H l } \\} = \\mathrm { B i L S T M } ( \\boldsymbol { w } _ { j } ^ { H } ) ,", + "type": "interline_equation", + "image_path": "cc37a253e0375f855d059e8a62107e20f70ae202e2b46104bf3c89cf6ca563eb.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 197, + 528, + 414, + 545 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 549, + 442, + 565 + ], + "lines": [ + { + "bbox": [ + 168, + 549, + 442, + 565 + ], + "spans": [ + { + "bbox": [ + 168, + 549, + 442, + 565 + ], + "score": 0.85, + "content": "\\{ { \\pmb h } _ { i } ^ { P h } \\} = \\mathrm { B i L S T M } ( [ { \\pmb w } _ { i } ^ { P } ; { \\pmb h } _ { i } ^ { P l } ] ) , \\quad \\{ { \\pmb h } _ { j } ^ { H h } \\} = \\mathrm { B i L S T M } ( [ { \\pmb w } _ { j } ^ { H } ; { \\pmb h } _ { j } ^ { H l } ] ) .", + "type": "interline_equation", + "image_path": "90713cc79285dd7dc81f44aa971902f748762df9c0dfb3ed241d6c2c49ee3fac.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 168, + 549, + 442, + 565 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 567, + 504, + 592 + ], + "lines": [ + { + "bbox": [ + 103, + 560, + 508, + 595 + ], + "spans": [ + { + "bbox": [ + 103, + 560, + 146, + 595 + ], + "score": 1.0, + "content": "The hiddetion from", + "type": "text" + }, + { + "bbox": [ + 157, + 560, + 168, + 595 + ], + "score": 1.0, + "content": "sizto", + "type": "text" + }, + { + "bbox": [ + 180, + 560, + 244, + 595 + ], + "score": 1.0, + "content": "f each LSTM is as well as from", + "type": "text" + }, + { + "bbox": [ + 256, + 560, + 267, + 595 + ], + "score": 1.0, + "content": "0, sto", + "type": "text" + }, + { + "bbox": [ + 274, + 568, + 389, + 583 + ], + "score": 0.84, + "content": "h _ { i } ^ { P l } , h _ { i } ^ { P h } , h _ { j } ^ { H l } , h _ { j } ^ { H h } \\in \\mathbb { R } ^ { 3 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 560, + 508, + 595 + ], + "score": 1.0, + "content": ". Next, ESIM fuses informa-e consider the following,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 147, + 581, + 277, + 591 + ], + "spans": [ + { + "bbox": [ + 147, + 581, + 156, + 591 + ], + "score": 0.84, + "content": "_ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 581, + 180, + 591 + ], + "score": 0.8, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 581, + 256, + 591 + ], + "score": 0.81, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 581, + 277, + 591 + ], + "score": 0.83, + "content": "_ { P }", + "type": "inline_equation" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 103, + 560, + 508, + 595 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 597, + 480, + 631 + ], + "lines": [ + { + "bbox": [ + 129, + 597, + 480, + 631 + ], + "spans": [ + { + "bbox": [ + 129, + 597, + 480, + 631 + ], + "score": 0.93, + "content": "\\boldsymbol { g } _ { i } ^ { P } = [ h _ { i } ^ { P h } ; \\hat { h } _ { i } ^ { P h } ] , \\boldsymbol { \\hat { h } } _ { i } ^ { P h } = \\sum _ { j } \\alpha _ { i j } ^ { P } \\boldsymbol { h } _ { j } ^ { H h } , \\boldsymbol { \\alpha } _ { i j } ^ { P } = \\frac { \\exp ( S _ { i j } ^ { P } ) } { \\sum _ { k } \\exp ( S _ { i k } ^ { P } ) } , S _ { i j } ^ { P } = S ^ { P } ( h _ { i } ^ { P h } , h _ { j } ^ { H h } ) ,", + "type": "interline_equation", + "image_path": "f6be446b1251a31ebb3076db5394dc74905758a9d55d6bed442f23e3b5863ae5.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 129, + 597, + 480, + 608.3333333333334 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 129, + 608.3333333333334, + 480, + 619.6666666666667 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 129, + 619.6666666666667, + 480, + 631.0000000000001 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 125, + 635, + 484, + 667 + ], + "lines": [ + { + "bbox": [ + 125, + 635, + 484, + 667 + ], + "spans": [ + { + "bbox": [ + 125, + 635, + 484, + 667 + ], + "score": 0.93, + "content": "{ g } _ { j } ^ { H } = [ { h } _ { j } ^ { H h } ; \\hat { h } _ { j } ^ { H h } ] , \\ \\hat { h } _ { j } ^ { H h } = \\sum _ { i } \\alpha _ { i j } ^ { H } { h } _ { i } ^ { P h } , \\ \\alpha _ { i j } ^ { H } = \\frac { \\exp ( S _ { i j } ^ { H } ) } { \\sum _ { k } \\exp ( S _ { k j } ^ { H } ) } , \\ S _ { i j } ^ { H } = S ^ { H } ( { h } _ { i } ^ { P h } , { h } _ { j } ^ { H h } ) .", + "type": "interline_equation", + "image_path": "ba654acc27756674abba64b0b58f26a9e08a327c143c9176317d4e581a1a3f76.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 125, + 635, + 484, + 645.6666666666666 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 125, + 645.6666666666666, + 484, + 656.3333333333333 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 125, + 656.3333333333333, + 484, + 666.9999999999999 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 669, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 441, + 682 + ], + "score": 1.0, + "content": "We set the attention hidden size to be the same as the dimension of hidden vectors", + "type": "text" + }, + { + "bbox": [ + 441, + 670, + 449, + 680 + ], + "score": 0.77, + "content": "^ { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 669, + 505, + 682 + ], + "score": 1.0, + "content": ". Next, ESIM", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 679, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 127, + 694 + ], + "score": 1.0, + "content": "feed", + "type": "text" + }, + { + "bbox": [ + 127, + 680, + 159, + 694 + ], + "score": 0.92, + "content": "g _ { i } ^ { P } , g _ { j } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 679, + 506, + 694 + ], + "score": 1.0, + "content": "into separate BiLSTMs to perform inference. In our implementation, we consider", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "score": 1.0, + "content": "two-layer BiLSTM with shortcut connections for inference. The hidden vectors for the two-layer", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 669, + 506, + 705 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 80, + 505, + 163 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 80, + 505, + 163 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 80, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 505, + 163 + ], + "score": 0.981, + "html": "
Cross-DomainIn-Domain
Our ESIM without CoVe (d = 300) Our ESIM without CoVe + fully-aware (d = 250)73.4 76.973.3 76.2
Our ESIM without CoVe + fully-aware + multi-level (d = 250) Our ESIM (d = 300) Our ESIM + fully-aware (d = 250) Our ESIM + fully-aware + multi-level (d = 250)78.2 73.9 77.3 78.477.9 73.7 76.5 78.2
", + "type": "table", + "image_path": "ed0e6685fff5d8d071dc478d33bad7b7fd7b0bab9940737f1eada391b89b64bf.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 80, + 505, + 107.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 107.66666666666667, + 505, + 135.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 135.33333333333334, + 505, + 163.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 171, + 504, + 194 + ], + "lines": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "Table 10: The performance (accuracy) of ESIM with our proposed attention enhancement on", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 181, + 473, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 313, + 194 + ], + "score": 1.0, + "content": "MultiNLI (Williams et al., 2017) development set.", + "type": "text" + }, + { + "bbox": [ + 313, + 182, + 320, + 192 + ], + "score": 0.77, + "content": "\\mathit { \\Pi } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 181, + 473, + 194 + ], + "score": 1.0, + "content": "is the output hidden size of BiLSTM)", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 213, + 505, + 237 + ], + "lines": [ + { + "bbox": [ + 104, + 211, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 104, + 211, + 246, + 228 + ], + "score": 1.0, + "content": "BiLSTM are concatenated to yield", + "type": "text" + }, + { + "bbox": [ + 247, + 213, + 333, + 228 + ], + "score": 0.93, + "content": "\\{ \\boldsymbol { u } _ { i } ^ { P } \\} , \\{ \\boldsymbol { u } _ { j } ^ { H } \\} \\subset \\mathbb { R } ^ { 6 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 211, + 460, + 228 + ], + "score": 1.0, + "content": ". The final hidden vector for the", + "type": "text" + }, + { + "bbox": [ + 461, + 215, + 486, + 226 + ], + "score": 0.89, + "content": "P , H", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 211, + 506, + 228 + ], + "score": 1.0, + "content": "pair", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 223, + 165, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 165, + 239 + ], + "score": 1.0, + "content": "is obtained by", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 241, + 455, + 272 + ], + "lines": [ + { + "bbox": [ + 155, + 241, + 455, + 272 + ], + "spans": [ + { + "bbox": [ + 155, + 241, + 455, + 272 + ], + "score": 0.94, + "content": "\\boldsymbol h _ { P , H } = \\big [ { \\frac { 1 } { n } } \\sum _ { i } { \\boldsymbol u } _ { i } ^ { P } ; \\operatorname* { m a x } ( { \\boldsymbol u } _ { 1 } ^ { P } , \\ldots , { \\boldsymbol u } _ { n } ^ { P } ) ; { \\frac { 1 } { m } } \\sum _ { j } { \\boldsymbol u } _ { j } ^ { H } ; \\operatorname* { m a x } ( { \\boldsymbol u } _ { 1 } ^ { H } , \\ldots , { \\boldsymbol u } _ { m } ^ { H } ) \\big ] .", + "type": "interline_equation", + "image_path": "e88702a6da075323b02a05bb85271588f00f7468c4503ca5c393a42da2fc0d91.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 155, + 241, + 455, + 251.33333333333334 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 155, + 251.33333333333334, + 455, + 261.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 155, + 261.6666666666667, + 455, + 272.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 276, + 505, + 321 + ], + "lines": [ + { + "bbox": [ + 105, + 275, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 205, + 289 + ], + "score": 1.0, + "content": "The final hidden vector", + "type": "text" + }, + { + "bbox": [ + 206, + 277, + 229, + 289 + ], + "score": 0.92, + "content": "{ h _ { P , H } }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 275, + 505, + 289 + ], + "score": 1.0, + "content": "is then passed into a multi-layer perceptron (MLP) classifier. The", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 287, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 299 + ], + "score": 1.0, + "content": "MLP classifier has a single hidden layer with tanh activation and the hidden size is set to be the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 297, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 210, + 311 + ], + "score": 1.0, + "content": "same as the dimension of", + "type": "text" + }, + { + "bbox": [ + 210, + 298, + 224, + 311 + ], + "score": 0.9, + "content": "\\boldsymbol { \\mathbf { \\mathit { u } } } _ { i } ^ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 297, + 243, + 311 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 243, + 298, + 258, + 312 + ], + "score": 0.91, + "content": "\\pmb { u } _ { j } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 297, + 506, + 311 + ], + "score": 1.0, + "content": ". Preprocessing and optimization settings are the same as that", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 309, + 323, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 323, + 322 + ], + "score": 1.0, + "content": "described in Appendix E, with dropout rate set to 0.3.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 326, + 504, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "Now, we consider improving ESIM with our proposed attention mechanism. First, we augment", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 336, + 446, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 446, + 351 + ], + "score": 1.0, + "content": "standard attention in ESIM with fully-aware attention. This is as simple as replacing", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 353, + 388, + 370 + ], + "lines": [ + { + "bbox": [ + 222, + 353, + 388, + 370 + ], + "spans": [ + { + "bbox": [ + 222, + 353, + 388, + 370 + ], + "score": 0.93, + "content": "S ( \\boldsymbol { h } _ { i } ^ { P h } , \\boldsymbol { h } _ { j } ^ { H h } ) \\implies S ( \\mathrm { H o W } _ { i } ^ { P } , \\mathrm { H o W } _ { j } ^ { H } ) ,", + "type": "interline_equation", + "image_path": "218c0814c57364f6142d8ac534c8143ec90e10f96b8b11ce1622b1c75f561409.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 222, + 353, + 388, + 370 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 375, + 504, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 133, + 391 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 377, + 160, + 388 + ], + "score": 0.88, + "content": "\\mathrm { H o W } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 374, + 253, + 391 + ], + "score": 1.0, + "content": "is the history-of-word,", + "type": "text" + }, + { + "bbox": [ + 254, + 375, + 302, + 389 + ], + "score": 0.93, + "content": "[ \\pmb { w } _ { i } , \\pmb { h } _ { i } ^ { l } , \\pmb { h } _ { i } ^ { h } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 374, + 506, + 391 + ], + "score": 1.0, + "content": ". All other settings remain unchanged. To incorpo-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 388, + 489, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 489, + 400 + ], + "score": 1.0, + "content": "rate fully-aware multi-level fusion into ESIM, we change the input for inference BiLSTM from", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 403, + 397, + 422 + ], + "lines": [ + { + "bbox": [ + 213, + 403, + 397, + 422 + ], + "spans": [ + { + "bbox": [ + 213, + 403, + 397, + 422 + ], + "score": 0.91, + "content": "[ { \\pmb h } ^ { h } ; \\hat { \\pmb h } ^ { h } ] \\in \\mathbb { R } ^ { 2 d } \\implies [ { \\pmb h } ^ { l } ; { \\pmb h } ^ { h } ; \\hat { \\pmb h } ^ { l } ; \\hat { \\pmb h } ^ { h } ] \\in \\mathbb { R } ^ { 4 d } ,", + "type": "interline_equation", + "image_path": "f16fffaecc3e02fe9fb7818ee5f93a1eba7997e3dcbcc2bfc4d2ae3dc346cffc.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 213, + 403, + 397, + 422 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 429, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 104, + 426, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 104, + 428, + 133, + 446 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 426, + 160, + 443 + ], + "score": 0.93, + "content": "\\hat { \\pmb { h } } _ { i } ^ { l } , \\hat { \\pmb { h } } _ { i } ^ { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 428, + 442, + 446 + ], + "score": 1.0, + "content": "are computed through independent fully-aware attention weights and", + "type": "text" + }, + { + "bbox": [ + 442, + 432, + 449, + 441 + ], + "score": 0.81, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 428, + 506, + 446 + ], + "score": 1.0, + "content": "is the dimen-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 442, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 201, + 454 + ], + "score": 1.0, + "content": "sion of hidden vectors", + "type": "text" + }, + { + "bbox": [ + 202, + 443, + 209, + 452 + ], + "score": 0.78, + "content": "^ { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 442, + 505, + 454 + ], + "score": 1.0, + "content": ". Word level fusion discussed in Section 3.1 is also included. For fair", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 452, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 466 + ], + "score": 1.0, + "content": "comparison, we reduce the output hidden size in BiLSTM from 300 to 250 after adding the above", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 464, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 476 + ], + "score": 1.0, + "content": "enhancements, so the parameter size of ESIM with fully-aware attention and fully-aware multi-level", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 475, + 371, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 371, + 487 + ], + "score": 1.0, + "content": "attention is similar to or lower than ESIM with standard attention.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 491, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "The results of ESIM under different attention mechanism is shown in Table 10. Augmenting with", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 502, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 515 + ], + "score": 1.0, + "content": "fully-aware attention yields the biggest improvement, which demonstrates the usefulness of this", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 514, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 525 + ], + "score": 1.0, + "content": "simple enhancement. Further improvement is obtained when we use multi-level fusion in our ESIM.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 524, + 409, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 409, + 537 + ], + "score": 1.0, + "content": "Experiments with and without CoVe embedding show similar observations.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 542, + 505, + 575 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "Together, experiments on natural language inference conform with the observations in Section 4 on", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 552, + 504, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 504, + 564 + ], + "score": 1.0, + "content": "machine comprehension task that the ability to take all levels of understanding as a whole is crucial", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 563, + 277, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 277, + 576 + ], + "score": 1.0, + "content": "for machines to better understand the text.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 108, + 591, + 214, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 589, + 216, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 216, + 606 + ], + "score": 1.0, + "content": "E MODEL DETAILS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 615, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 615, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 505, + 629 + ], + "score": 1.0, + "content": "We make use of spaCy for tokenization, POS tagging and NER. We additionally fine-tuned the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "GloVe embeddings of the top 1000 frequent question words. During training, we use a dropout rate", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "of 0.4 (Srivastava et al., 2014) after the embedding layer (GloVe and CoVe) and before applying any", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "linear transformation. In particular, we share the dropout mask when the model parameter is shared", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 659, + 219, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 219, + 673 + ], + "score": 1.0, + "content": "(Gal & Ghahramani, 2016).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "The batch size is set to 32, and the optimizer is Adamax (Kingma & Ba, 2014) with a learning rate", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 107, + 686, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 107, + 688, + 152, + 698 + ], + "score": 0.84, + "content": "\\alpha = 0 . 0 0 2", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 686, + 156, + 701 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 156, + 687, + 226, + 699 + ], + "score": 0.88, + "content": "\\beta = ( 0 . 9 , 0 . 9 9 9 )", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 686, + 245, + 701 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 246, + 687, + 286, + 698 + ], + "score": 0.91, + "content": "\\epsilon = 1 0 ^ { - 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 686, + 505, + 701 + ], + "score": 1.0, + "content": ". A fixed random seed is used across all experiments.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "All models are implemented in PyTorch (http://pytorch.org/). For the ensemble model,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "we apply the standard voting scheme: each model generates an answer span, and the answer with", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 473, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 473, + 734 + ], + "score": 1.0, + "content": "the highest votes is selected. We break ties randomly. There are 31 models in the ensemble.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 80, + 505, + 163 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 80, + 505, + 163 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 80, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 505, + 163 + ], + "score": 0.981, + "html": "
Cross-DomainIn-Domain
Our ESIM without CoVe (d = 300) Our ESIM without CoVe + fully-aware (d = 250)73.4 76.973.3 76.2
Our ESIM without CoVe + fully-aware + multi-level (d = 250) Our ESIM (d = 300) Our ESIM + fully-aware (d = 250) Our ESIM + fully-aware + multi-level (d = 250)78.2 73.9 77.3 78.477.9 73.7 76.5 78.2
", + "type": "table", + "image_path": "ed0e6685fff5d8d071dc478d33bad7b7fd7b0bab9940737f1eada391b89b64bf.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 80, + 505, + 107.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 107.66666666666667, + 505, + 135.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 135.33333333333334, + 505, + 163.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 171, + 504, + 194 + ], + "lines": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "Table 10: The performance (accuracy) of ESIM with our proposed attention enhancement on", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 181, + 473, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 313, + 194 + ], + "score": 1.0, + "content": "MultiNLI (Williams et al., 2017) development set.", + "type": "text" + }, + { + "bbox": [ + 313, + 182, + 320, + 192 + ], + "score": 0.77, + "content": "\\mathit { \\Pi } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 181, + 473, + 194 + ], + "score": 1.0, + "content": "is the output hidden size of BiLSTM)", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 170, + 505, + 194 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 213, + 505, + 237 + ], + "lines": [ + { + "bbox": [ + 104, + 211, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 104, + 211, + 246, + 228 + ], + "score": 1.0, + "content": "BiLSTM are concatenated to yield", + "type": "text" + }, + { + "bbox": [ + 247, + 213, + 333, + 228 + ], + "score": 0.93, + "content": "\\{ \\boldsymbol { u } _ { i } ^ { P } \\} , \\{ \\boldsymbol { u } _ { j } ^ { H } \\} \\subset \\mathbb { R } ^ { 6 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 211, + 460, + 228 + ], + "score": 1.0, + "content": ". The final hidden vector for the", + "type": "text" + }, + { + "bbox": [ + 461, + 215, + 486, + 226 + ], + "score": 0.89, + "content": "P , H", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 211, + 506, + 228 + ], + "score": 1.0, + "content": "pair", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 223, + 165, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 165, + 239 + ], + "score": 1.0, + "content": "is obtained by", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 104, + 211, + 506, + 239 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 241, + 455, + 272 + ], + "lines": [ + { + "bbox": [ + 155, + 241, + 455, + 272 + ], + "spans": [ + { + "bbox": [ + 155, + 241, + 455, + 272 + ], + "score": 0.94, + "content": "\\boldsymbol h _ { P , H } = \\big [ { \\frac { 1 } { n } } \\sum _ { i } { \\boldsymbol u } _ { i } ^ { P } ; \\operatorname* { m a x } ( { \\boldsymbol u } _ { 1 } ^ { P } , \\ldots , { \\boldsymbol u } _ { n } ^ { P } ) ; { \\frac { 1 } { m } } \\sum _ { j } { \\boldsymbol u } _ { j } ^ { H } ; \\operatorname* { m a x } ( { \\boldsymbol u } _ { 1 } ^ { H } , \\ldots , { \\boldsymbol u } _ { m } ^ { H } ) \\big ] .", + "type": "interline_equation", + "image_path": "e88702a6da075323b02a05bb85271588f00f7468c4503ca5c393a42da2fc0d91.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 155, + 241, + 455, + 251.33333333333334 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 155, + 251.33333333333334, + 455, + 261.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 155, + 261.6666666666667, + 455, + 272.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 276, + 505, + 321 + ], + "lines": [ + { + "bbox": [ + 105, + 275, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 205, + 289 + ], + "score": 1.0, + "content": "The final hidden vector", + "type": "text" + }, + { + "bbox": [ + 206, + 277, + 229, + 289 + ], + "score": 0.92, + "content": "{ h _ { P , H } }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 275, + 505, + 289 + ], + "score": 1.0, + "content": "is then passed into a multi-layer perceptron (MLP) classifier. The", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 287, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 299 + ], + "score": 1.0, + "content": "MLP classifier has a single hidden layer with tanh activation and the hidden size is set to be the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 297, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 210, + 311 + ], + "score": 1.0, + "content": "same as the dimension of", + "type": "text" + }, + { + "bbox": [ + 210, + 298, + 224, + 311 + ], + "score": 0.9, + "content": "\\boldsymbol { \\mathbf { \\mathit { u } } } _ { i } ^ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 297, + 243, + 311 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 243, + 298, + 258, + 312 + ], + "score": 0.91, + "content": "\\pmb { u } _ { j } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 297, + 506, + 311 + ], + "score": 1.0, + "content": ". Preprocessing and optimization settings are the same as that", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 309, + 323, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 323, + 322 + ], + "score": 1.0, + "content": "described in Appendix E, with dropout rate set to 0.3.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 275, + 506, + 322 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 326, + 504, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "Now, we consider improving ESIM with our proposed attention mechanism. First, we augment", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 336, + 446, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 446, + 351 + ], + "score": 1.0, + "content": "standard attention in ESIM with fully-aware attention. This is as simple as replacing", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 326, + 505, + 351 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 353, + 388, + 370 + ], + "lines": [ + { + "bbox": [ + 222, + 353, + 388, + 370 + ], + "spans": [ + { + "bbox": [ + 222, + 353, + 388, + 370 + ], + "score": 0.93, + "content": "S ( \\boldsymbol { h } _ { i } ^ { P h } , \\boldsymbol { h } _ { j } ^ { H h } ) \\implies S ( \\mathrm { H o W } _ { i } ^ { P } , \\mathrm { H o W } _ { j } ^ { H } ) ,", + "type": "interline_equation", + "image_path": "218c0814c57364f6142d8ac534c8143ec90e10f96b8b11ce1622b1c75f561409.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 222, + 353, + 388, + 370 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 375, + 504, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 133, + 391 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 377, + 160, + 388 + ], + "score": 0.88, + "content": "\\mathrm { H o W } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 374, + 253, + 391 + ], + "score": 1.0, + "content": "is the history-of-word,", + "type": "text" + }, + { + "bbox": [ + 254, + 375, + 302, + 389 + ], + "score": 0.93, + "content": "[ \\pmb { w } _ { i } , \\pmb { h } _ { i } ^ { l } , \\pmb { h } _ { i } ^ { h } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 374, + 506, + 391 + ], + "score": 1.0, + "content": ". All other settings remain unchanged. To incorpo-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 388, + 489, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 489, + 400 + ], + "score": 1.0, + "content": "rate fully-aware multi-level fusion into ESIM, we change the input for inference BiLSTM from", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 374, + 506, + 400 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 403, + 397, + 422 + ], + "lines": [ + { + "bbox": [ + 213, + 403, + 397, + 422 + ], + "spans": [ + { + "bbox": [ + 213, + 403, + 397, + 422 + ], + "score": 0.91, + "content": "[ { \\pmb h } ^ { h } ; \\hat { \\pmb h } ^ { h } ] \\in \\mathbb { R } ^ { 2 d } \\implies [ { \\pmb h } ^ { l } ; { \\pmb h } ^ { h } ; \\hat { \\pmb h } ^ { l } ; \\hat { \\pmb h } ^ { h } ] \\in \\mathbb { R } ^ { 4 d } ,", + "type": "interline_equation", + "image_path": "f16fffaecc3e02fe9fb7818ee5f93a1eba7997e3dcbcc2bfc4d2ae3dc346cffc.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 213, + 403, + 397, + 422 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 429, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 104, + 426, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 104, + 428, + 133, + 446 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 426, + 160, + 443 + ], + "score": 0.93, + "content": "\\hat { \\pmb { h } } _ { i } ^ { l } , \\hat { \\pmb { h } } _ { i } ^ { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 428, + 442, + 446 + ], + "score": 1.0, + "content": "are computed through independent fully-aware attention weights and", + "type": "text" + }, + { + "bbox": [ + 442, + 432, + 449, + 441 + ], + "score": 0.81, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 428, + 506, + 446 + ], + "score": 1.0, + "content": "is the dimen-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 442, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 201, + 454 + ], + "score": 1.0, + "content": "sion of hidden vectors", + "type": "text" + }, + { + "bbox": [ + 202, + 443, + 209, + 452 + ], + "score": 0.78, + "content": "^ { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 442, + 505, + 454 + ], + "score": 1.0, + "content": ". Word level fusion discussed in Section 3.1 is also included. For fair", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 452, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 466 + ], + "score": 1.0, + "content": "comparison, we reduce the output hidden size in BiLSTM from 300 to 250 after adding the above", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 464, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 476 + ], + "score": 1.0, + "content": "enhancements, so the parameter size of ESIM with fully-aware attention and fully-aware multi-level", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 475, + 371, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 371, + 487 + ], + "score": 1.0, + "content": "attention is similar to or lower than ESIM with standard attention.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22, + "bbox_fs": [ + 104, + 426, + 506, + 487 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 491, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "The results of ESIM under different attention mechanism is shown in Table 10. Augmenting with", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 502, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 515 + ], + "score": 1.0, + "content": "fully-aware attention yields the biggest improvement, which demonstrates the usefulness of this", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 514, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 525 + ], + "score": 1.0, + "content": "simple enhancement. Further improvement is obtained when we use multi-level fusion in our ESIM.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 524, + 409, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 409, + 537 + ], + "score": 1.0, + "content": "Experiments with and without CoVe embedding show similar observations.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 492, + 506, + 537 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 542, + 505, + 575 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "Together, experiments on natural language inference conform with the observations in Section 4 on", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 552, + 504, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 504, + 564 + ], + "score": 1.0, + "content": "machine comprehension task that the ability to take all levels of understanding as a whole is crucial", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 563, + 277, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 277, + 576 + ], + "score": 1.0, + "content": "for machines to better understand the text.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 541, + 505, + 576 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 591, + 214, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 589, + 216, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 216, + 606 + ], + "score": 1.0, + "content": "E MODEL DETAILS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 615, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 615, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 505, + 629 + ], + "score": 1.0, + "content": "We make use of spaCy for tokenization, POS tagging and NER. We additionally fine-tuned the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "GloVe embeddings of the top 1000 frequent question words. During training, we use a dropout rate", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "of 0.4 (Srivastava et al., 2014) after the embedding layer (GloVe and CoVe) and before applying any", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "linear transformation. In particular, we share the dropout mask when the model parameter is shared", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 659, + 219, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 219, + 673 + ], + "score": 1.0, + "content": "(Gal & Ghahramani, 2016).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 615, + 505, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "The batch size is set to 32, and the optimizer is Adamax (Kingma & Ba, 2014) with a learning rate", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 107, + 686, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 107, + 688, + 152, + 698 + ], + "score": 0.84, + "content": "\\alpha = 0 . 0 0 2", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 686, + 156, + 701 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 156, + 687, + 226, + 699 + ], + "score": 0.88, + "content": "\\beta = ( 0 . 9 , 0 . 9 9 9 )", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 686, + 245, + 701 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 246, + 687, + 286, + 698 + ], + "score": 0.91, + "content": "\\epsilon = 1 0 ^ { - 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 686, + 505, + 701 + ], + "score": 1.0, + "content": ". A fixed random seed is used across all experiments.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "All models are implemented in PyTorch (http://pytorch.org/). For the ensemble model,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "we apply the standard voting scheme: each model generates an answer span, and the answer with", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 473, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 473, + 734 + ], + "score": 1.0, + "content": "the highest votes is selected. We break ties randomly. There are 31 models in the ensemble.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 676, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 105, + 356, + 172 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 357, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 357, + 117 + ], + "score": 1.0, + "content": "In this section, we present prediction results on selected ex-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 117, + 356, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 356, + 128 + ], + "score": 1.0, + "content": "amples from the adversarial dataset: AddOneSent. AddOne-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 127, + 356, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 356, + 139 + ], + "score": 1.0, + "content": "Sent adds an additional sentence to the context to confuse the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 138, + 357, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 357, + 151 + ], + "score": 1.0, + "content": "model, but it does not require any query to the model. The pre-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 150, + 356, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 356, + 161 + ], + "score": 1.0, + "content": "diction results are compared with a state-of-the-art architecture", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 160, + 277, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 277, + 173 + ], + "score": 1.0, + "content": "in the literature, BiDAF (Seo et al., 2017).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 177, + 356, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 177, + 357, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 357, + 189 + ], + "score": 1.0, + "content": "First, we compare the percentage of questions answered cor-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 188, + 356, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 356, + 199 + ], + "score": 1.0, + "content": "rectly (exact match) for our model FusionNet and the state-of-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 199, + 357, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 357, + 212 + ], + "score": 1.0, + "content": "the-art model BiDAF. The comparison is shown in Figure 8.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 210, + 356, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 356, + 222 + ], + "score": 1.0, + "content": "As we can see, FusionNet is not confused by most of the ques-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 221, + 357, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 293, + 233 + ], + "score": 1.0, + "content": "tions that BiDAF correctly answer. Among the", + "type": "text" + }, + { + "bbox": [ + 293, + 221, + 316, + 232 + ], + "score": 0.86, + "content": "3 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 221, + 357, + 233 + ], + "score": 1.0, + "content": "answered", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 232, + 357, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 275, + 244 + ], + "score": 1.0, + "content": "correctly by BiDAF but not FusionNet,", + "type": "text" + }, + { + "bbox": [ + 276, + 232, + 313, + 243 + ], + "score": 0.89, + "content": "\\sim 1 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 232, + 357, + 244 + ], + "score": 1.0, + "content": "are being", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 243, + 357, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 241, + 255 + ], + "score": 1.0, + "content": "confused by the added sentence;", + "type": "text" + }, + { + "bbox": [ + 241, + 243, + 276, + 254 + ], + "score": 0.91, + "content": "\\sim 1 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 243, + 357, + 255 + ], + "score": 1.0, + "content": "are correct but dif-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 253, + 357, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 357, + 267 + ], + "score": 1.0, + "content": "fers slightly from the ground truth answer; and the remaining", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 264, + 309, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 139, + 276 + ], + "score": 0.87, + "content": "\\sim 0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 264, + 309, + 277 + ], + "score": 1.0, + "content": "are completely incorrect in the first place.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11 + }, + { + "type": "image", + "bbox": [ + 369, + 119, + 503, + 228 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 369, + 119, + 503, + 228 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 369, + 119, + 503, + 228 + ], + "spans": [ + { + "bbox": [ + 369, + 119, + 503, + 228 + ], + "score": 0.95, + "type": "image", + "image_path": "8854537b854134c34ef7fda6e8c45fa7fb17dc9e5380a98c4a690b4cbbd08842.jpg" + } + ] + } + ], + "index": 11.0, + "virtual_lines": [ + { + "bbox": [ + 369, + 119, + 503, + 173.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 369, + 173.5, + 503, + 228.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 363, + 238, + 504, + 261 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 363, + 238, + 504, + 250 + ], + "spans": [ + { + "bbox": [ + 363, + 238, + 504, + 250 + ], + "score": 1.0, + "content": "Figure 8: Questions answered cor-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 363, + 249, + 458, + 262 + ], + "spans": [ + { + "bbox": [ + 363, + 249, + 458, + 262 + ], + "score": 1.0, + "content": "rectly on AddOneSent.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + } + ], + "index": 14.25 + }, + { + "type": "text", + "bbox": [ + 107, + 282, + 504, + 315 + ], + "lines": [ + { + "bbox": [ + 106, + 282, + 357, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 357, + 294 + ], + "score": 1.0, + "content": "Now we present sample examples where FusionNet answers", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 293, + 504, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 504, + 305 + ], + "score": 1.0, + "content": "correctly but BiDAF is confused as well as examples where BiDAF and FusionNet are both con-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 302, + 135, + 316 + ], + "spans": [ + { + "bbox": [ + 104, + 302, + 135, + 316 + ], + "score": 1.0, + "content": "fused.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 108, + 328, + 410, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 327, + 412, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 412, + 341 + ], + "score": 1.0, + "content": "F.1 FUSIONNET ANSWERS CORRECTLY WHILE BIDAF IS INCORRECT", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 109, + 349, + 313, + 360 + ], + "lines": [ + { + "bbox": [ + 106, + 347, + 316, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 316, + 363 + ], + "score": 1.0, + "content": "ID: 57273cca708984140094db35-high-conf-turk1", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 361, + 505, + 448 + ], + "lines": [ + { + "bbox": [ + 107, + 360, + 504, + 372 + ], + "spans": [ + { + "bbox": [ + 107, + 360, + 504, + 372 + ], + "score": 1.0, + "content": "Context: Large-scale construction requires collaboration across multiple disciplines. An archi-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "tect normally manages the job, and a construction manager, design engineer, construction engineer", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 381, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 395 + ], + "score": 1.0, + "content": "or project manager supervises it. For the successful execution of a project, effective planning is", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "essential. Those involved with the design and execution of the infrastructure in question must con-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 404, + 504, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 504, + 416 + ], + "score": 1.0, + "content": "sider zoning requirements, the environmental impact of the job, the successful scheduling, budget-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "ing, construction-site safety, availability and transportation of building materials, logistics, inconve-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 425, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 505, + 439 + ], + "score": 1.0, + "content": "nience to the public caused by construction delays and bidding, etc. The largest construction projects", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 437, + 497, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 497, + 449 + ], + "score": 1.0, + "content": "are referred to as megaprojects. Confusion is essential for the unsuccessful execution of a project.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 453, + 385, + 476 + ], + "lines": [ + { + "bbox": [ + 107, + 453, + 386, + 466 + ], + "spans": [ + { + "bbox": [ + 107, + 453, + 386, + 466 + ], + "score": 1.0, + "content": "Question: What is essential for the successful execution of a project?", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 464, + 220, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 220, + 478 + ], + "score": 1.0, + "content": "Answer: effective planning", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 481, + 277, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 480, + 277, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 277, + 495 + ], + "score": 1.0, + "content": "FusionNet Prediction: effective planning", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 492, + 233, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 233, + 505 + ], + "score": 1.0, + "content": "BiDAF Prediction: Confusion", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "title", + "bbox": [ + 106, + 515, + 313, + 526 + ], + "lines": [ + { + "bbox": [ + 105, + 513, + 315, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 315, + 530 + ], + "score": 1.0, + "content": "ID: 5727e8424b864d1900163fc1-high-conf-turk1", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 527, + 505, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 537 + ], + "score": 1.0, + "content": "Context: According to PolitiFact the top 400 richest Americans “have more wealth than half of all", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "Americans combined.” According to the New York Times on July 22, 2014, the “richest 1 percent", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 548, + 504, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 504, + 560 + ], + "score": 1.0, + "content": "in the United States now own more wealth than the bottom 90 percent”. Inherited wealth may help", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 559, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 571 + ], + "score": 1.0, + "content": "explain why many Americans who have become rich may have had a “substantial head start”. In", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 570, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 582 + ], + "score": 1.0, + "content": "September 2012, according to the Institute for Policy Studies, “over 60 percent” of the Forbes richest", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 581, + 505, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 593 + ], + "score": 1.0, + "content": "400 Americans “grew up in substantial privilege”. The Start Industries publication printed that the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 592, + 368, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 149, + 603 + ], + "score": 1.0, + "content": "wealthiest", + "type": "text" + }, + { + "bbox": [ + 149, + 592, + 164, + 602 + ], + "score": 0.84, + "content": "2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 592, + 267, + 603 + ], + "score": 1.0, + "content": "have less money than the", + "type": "text" + }, + { + "bbox": [ + 267, + 592, + 287, + 603 + ], + "score": 0.84, + "content": "80 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 592, + 368, + 603 + ], + "score": 1.0, + "content": "of those in the side.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 504, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 338, + 622 + ], + "score": 1.0, + "content": "Question: What publication printed that the wealthiest", + "type": "text" + }, + { + "bbox": [ + 339, + 609, + 353, + 619 + ], + "score": 0.86, + "content": "1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "have more money than those in the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 620, + 163, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 137, + 632 + ], + "score": 1.0, + "content": "bottom", + "type": "text" + }, + { + "bbox": [ + 137, + 620, + 157, + 630 + ], + "score": 0.8, + "content": "90 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 620, + 163, + 632 + ], + "score": 1.0, + "content": "?", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 108, + 631, + 215, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 630, + 216, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 216, + 643 + ], + "score": 1.0, + "content": "Answer: New York Times", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 46 + }, + { + "type": "text", + "bbox": [ + 107, + 648, + 272, + 670 + ], + "lines": [ + { + "bbox": [ + 105, + 647, + 273, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 273, + 660 + ], + "score": 1.0, + "content": "FusionNet Prediction: New York Times", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 658, + 270, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 270, + 671 + ], + "score": 1.0, + "content": "BiDAF Prediction: The Start Industries", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47.5 + }, + { + "type": "text", + "bbox": [ + 107, + 681, + 482, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 681, + 482, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 482, + 694 + ], + "score": 1.0, + "content": "Question: In the year 2000 how many square kilometres of the Amazon forest had been lost?", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 693, + 181, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 181, + 703 + ], + "score": 1.0, + "content": "Answer: 587,000", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 238, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 710, + 238, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 238, + 721 + ], + "score": 1.0, + "content": "FusionNet Prediction: 587,000", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 720, + 222, + 731 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 222, + 731 + ], + "score": 1.0, + "content": "BiDAF Prediction: 187000", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51.5 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "17", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 81, + 434, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 436, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 436, + 96 + ], + "score": 1.0, + "content": "F SAMPLE EXAMPLES FROM ADVERSARIAL SQUAD DATASET", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 105, + 356, + 172 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 357, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 357, + 117 + ], + "score": 1.0, + "content": "In this section, we present prediction results on selected ex-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 117, + 356, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 356, + 128 + ], + "score": 1.0, + "content": "amples from the adversarial dataset: AddOneSent. AddOne-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 127, + 356, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 356, + 139 + ], + "score": 1.0, + "content": "Sent adds an additional sentence to the context to confuse the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 138, + 357, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 357, + 151 + ], + "score": 1.0, + "content": "model, but it does not require any query to the model. The pre-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 150, + 356, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 356, + 161 + ], + "score": 1.0, + "content": "diction results are compared with a state-of-the-art architecture", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 160, + 277, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 277, + 173 + ], + "score": 1.0, + "content": "in the literature, BiDAF (Seo et al., 2017).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 105, + 357, + 173 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 177, + 356, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 177, + 357, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 357, + 189 + ], + "score": 1.0, + "content": "First, we compare the percentage of questions answered cor-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 188, + 356, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 356, + 199 + ], + "score": 1.0, + "content": "rectly (exact match) for our model FusionNet and the state-of-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 199, + 357, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 357, + 212 + ], + "score": 1.0, + "content": "the-art model BiDAF. The comparison is shown in Figure 8.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 210, + 356, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 356, + 222 + ], + "score": 1.0, + "content": "As we can see, FusionNet is not confused by most of the ques-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 221, + 357, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 293, + 233 + ], + "score": 1.0, + "content": "tions that BiDAF correctly answer. Among the", + "type": "text" + }, + { + "bbox": [ + 293, + 221, + 316, + 232 + ], + "score": 0.86, + "content": "3 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 221, + 357, + 233 + ], + "score": 1.0, + "content": "answered", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 232, + 357, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 275, + 244 + ], + "score": 1.0, + "content": "correctly by BiDAF but not FusionNet,", + "type": "text" + }, + { + "bbox": [ + 276, + 232, + 313, + 243 + ], + "score": 0.89, + "content": "\\sim 1 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 232, + 357, + 244 + ], + "score": 1.0, + "content": "are being", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 243, + 357, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 241, + 255 + ], + "score": 1.0, + "content": "confused by the added sentence;", + "type": "text" + }, + { + "bbox": [ + 241, + 243, + 276, + 254 + ], + "score": 0.91, + "content": "\\sim 1 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 243, + 357, + 255 + ], + "score": 1.0, + "content": "are correct but dif-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 253, + 357, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 357, + 267 + ], + "score": 1.0, + "content": "fers slightly from the ground truth answer; and the remaining", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 264, + 309, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 139, + 276 + ], + "score": 0.87, + "content": "\\sim 0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 264, + 309, + 277 + ], + "score": 1.0, + "content": "are completely incorrect in the first place.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 177, + 357, + 277 + ] + }, + { + "type": "image", + "bbox": [ + 369, + 119, + 503, + 228 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 369, + 119, + 503, + 228 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 369, + 119, + 503, + 228 + ], + "spans": [ + { + "bbox": [ + 369, + 119, + 503, + 228 + ], + "score": 0.95, + "type": "image", + "image_path": "8854537b854134c34ef7fda6e8c45fa7fb17dc9e5380a98c4a690b4cbbd08842.jpg" + } + ] + } + ], + "index": 11.0, + "virtual_lines": [ + { + "bbox": [ + 369, + 119, + 503, + 173.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 369, + 173.5, + 503, + 228.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 363, + 238, + 504, + 261 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 363, + 238, + 504, + 250 + ], + "spans": [ + { + "bbox": [ + 363, + 238, + 504, + 250 + ], + "score": 1.0, + "content": "Figure 8: Questions answered cor-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 363, + 249, + 458, + 262 + ], + "spans": [ + { + "bbox": [ + 363, + 249, + 458, + 262 + ], + "score": 1.0, + "content": "rectly on AddOneSent.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + } + ], + "index": 14.25 + }, + { + "type": "list", + "bbox": [ + 107, + 282, + 504, + 315 + ], + "lines": [ + { + "bbox": [ + 106, + 282, + 357, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 357, + 294 + ], + "score": 1.0, + "content": "Now we present sample examples where FusionNet answers", + "type": "text" + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 293, + 504, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 504, + 305 + ], + "score": 1.0, + "content": "correctly but BiDAF is confused as well as examples where BiDAF and FusionNet are both con-", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 104, + 302, + 135, + 316 + ], + "spans": [ + { + "bbox": [ + 104, + 302, + 135, + 316 + ], + "score": 1.0, + "content": "fused.", + "type": "text" + } + ], + "index": 21, + "is_list_end_line": true + } + ], + "index": 20, + "bbox_fs": [ + 104, + 282, + 504, + 316 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 328, + 410, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 327, + 412, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 412, + 341 + ], + "score": 1.0, + "content": "F.1 FUSIONNET ANSWERS CORRECTLY WHILE BIDAF IS INCORRECT", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 109, + 349, + 313, + 360 + ], + "lines": [ + { + "bbox": [ + 106, + 347, + 316, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 316, + 363 + ], + "score": 1.0, + "content": "ID: 57273cca708984140094db35-high-conf-turk1", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 361, + 505, + 448 + ], + "lines": [ + { + "bbox": [ + 107, + 360, + 504, + 372 + ], + "spans": [ + { + "bbox": [ + 107, + 360, + 504, + 372 + ], + "score": 1.0, + "content": "Context: Large-scale construction requires collaboration across multiple disciplines. An archi-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "tect normally manages the job, and a construction manager, design engineer, construction engineer", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 381, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 395 + ], + "score": 1.0, + "content": "or project manager supervises it. For the successful execution of a project, effective planning is", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "essential. Those involved with the design and execution of the infrastructure in question must con-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 404, + 504, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 504, + 416 + ], + "score": 1.0, + "content": "sider zoning requirements, the environmental impact of the job, the successful scheduling, budget-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "ing, construction-site safety, availability and transportation of building materials, logistics, inconve-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 425, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 505, + 439 + ], + "score": 1.0, + "content": "nience to the public caused by construction delays and bidding, etc. The largest construction projects", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 437, + 497, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 497, + 449 + ], + "score": 1.0, + "content": "are referred to as megaprojects. Confusion is essential for the unsuccessful execution of a project.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 360, + 506, + 449 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 453, + 385, + 476 + ], + "lines": [ + { + "bbox": [ + 107, + 453, + 386, + 466 + ], + "spans": [ + { + "bbox": [ + 107, + 453, + 386, + 466 + ], + "score": 1.0, + "content": "Question: What is essential for the successful execution of a project?", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 464, + 220, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 220, + 478 + ], + "score": 1.0, + "content": "Answer: effective planning", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 453, + 386, + 478 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 481, + 277, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 480, + 277, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 277, + 495 + ], + "score": 1.0, + "content": "FusionNet Prediction: effective planning", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 492, + 233, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 233, + 505 + ], + "score": 1.0, + "content": "BiDAF Prediction: Confusion", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 480, + 277, + 505 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 515, + 313, + 526 + ], + "lines": [ + { + "bbox": [ + 105, + 513, + 315, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 315, + 530 + ], + "score": 1.0, + "content": "ID: 5727e8424b864d1900163fc1-high-conf-turk1", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 527, + 505, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 537 + ], + "score": 1.0, + "content": "Context: According to PolitiFact the top 400 richest Americans “have more wealth than half of all", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "Americans combined.” According to the New York Times on July 22, 2014, the “richest 1 percent", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 548, + 504, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 504, + 560 + ], + "score": 1.0, + "content": "in the United States now own more wealth than the bottom 90 percent”. Inherited wealth may help", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 559, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 571 + ], + "score": 1.0, + "content": "explain why many Americans who have become rich may have had a “substantial head start”. In", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 570, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 582 + ], + "score": 1.0, + "content": "September 2012, according to the Institute for Policy Studies, “over 60 percent” of the Forbes richest", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 581, + 505, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 593 + ], + "score": 1.0, + "content": "400 Americans “grew up in substantial privilege”. The Start Industries publication printed that the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 592, + 368, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 149, + 603 + ], + "score": 1.0, + "content": "wealthiest", + "type": "text" + }, + { + "bbox": [ + 149, + 592, + 164, + 602 + ], + "score": 0.84, + "content": "2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 592, + 267, + 603 + ], + "score": 1.0, + "content": "have less money than the", + "type": "text" + }, + { + "bbox": [ + 267, + 592, + 287, + 603 + ], + "score": 0.84, + "content": "80 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 592, + 368, + 603 + ], + "score": 1.0, + "content": "of those in the side.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 527, + 506, + 603 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 504, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 338, + 622 + ], + "score": 1.0, + "content": "Question: What publication printed that the wealthiest", + "type": "text" + }, + { + "bbox": [ + 339, + 609, + 353, + 619 + ], + "score": 0.86, + "content": "1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "have more money than those in the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 620, + 163, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 137, + 632 + ], + "score": 1.0, + "content": "bottom", + "type": "text" + }, + { + "bbox": [ + 137, + 620, + 157, + 630 + ], + "score": 0.8, + "content": "90 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 620, + 163, + 632 + ], + "score": 1.0, + "content": "?", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 608, + 505, + 632 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 631, + 215, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 630, + 216, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 216, + 643 + ], + "score": 1.0, + "content": "Answer: New York Times", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 630, + 216, + 643 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 648, + 272, + 670 + ], + "lines": [ + { + "bbox": [ + 105, + 647, + 273, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 273, + 660 + ], + "score": 1.0, + "content": "FusionNet Prediction: New York Times", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 658, + 270, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 270, + 671 + ], + "score": 1.0, + "content": "BiDAF Prediction: The Start Industries", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 647, + 273, + 671 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 681, + 482, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 681, + 482, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 482, + 694 + ], + "score": 1.0, + "content": "Question: In the year 2000 how many square kilometres of the Amazon forest had been lost?", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 693, + 181, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 181, + 703 + ], + "score": 1.0, + "content": "Answer: 587,000", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49.5, + "bbox_fs": [ + 105, + 681, + 482, + 703 + ] + }, + { + "type": "index", + "bbox": [ + 107, + 709, + 238, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 710, + 238, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 238, + 721 + ], + "score": 1.0, + "content": "FusionNet Prediction: 587,000", + "type": "text" + } + ], + "index": 51, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 720, + 222, + 731 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 222, + 731 + ], + "score": 1.0, + "content": "BiDAF Prediction: 187000", + "type": "text" + } + ], + "index": 52, + "is_list_start_line": true + } + ], + "index": 51.5, + "bbox_fs": [ + 106, + 710, + 238, + 731 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 83, + 314, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 316, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 316, + 96 + ], + "score": 1.0, + "content": "ID: 5726509bdd62a815002e815c-high-conf-turk1", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 94, + 506, + 182 + ], + "lines": [ + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "Context: The plague theory was first significantly challenged by the work of British bacteriologist", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 116 + ], + "score": 1.0, + "content": "J. F. D. Shrewsbury in 1970, who noted that the reported rates of mortality in rural areas during the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "score": 1.0, + "content": "14th-century pandemic were inconsistent with the modern bubonic plague, leading him to conclude", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "that contemporary accounts were exaggerations. In 1984 zoologist Graham Twigg produced the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "score": 1.0, + "content": "first major work to challenge the bubonic plague theory directly, and his doubts about the identity", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "score": 1.0, + "content": "of the Black Death have been taken up by a number of authors, including Samuel K. Cohn, Jr.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 506, + 171 + ], + "score": 1.0, + "content": "(2002), David Herlihy (1997), and Susan Scott and Christopher Duncan (2001). This was Hereford’s", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 169, + 155, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 155, + 183 + ], + "score": 1.0, + "content": "conclusion.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 187, + 320, + 209 + ], + "lines": [ + { + "bbox": [ + 106, + 187, + 300, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 300, + 200 + ], + "score": 1.0, + "content": "Question: What was Shrewsbury’s conclusion?", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 320, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 320, + 213 + ], + "score": 1.0, + "content": "Answer: contemporary accounts were exaggerations", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 215, + 380, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 214, + 378, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 378, + 228 + ], + "score": 1.0, + "content": "FusionNet Prediction: contemporary accounts were exaggerations", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 225, + 381, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 381, + 239 + ], + "score": 1.0, + "content": "BiDAF Prediction: his doubts about the identity of the Black Death", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 106, + 249, + 313, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 248, + 314, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 314, + 262 + ], + "score": 1.0, + "content": "ID: 5730cb8df6cb411900e244c6-high-conf-turk0", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 261, + 506, + 380 + ], + "lines": [ + { + "bbox": [ + 106, + 260, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 271 + ], + "score": 1.0, + "content": "Context: The Book of Discipline is the guidebook for local churches and pastors and describes", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 271, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 505, + 282 + ], + "score": 1.0, + "content": "in considerable detail the organizational structure of local United Methodist churches. All UM", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 282, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 505, + 293 + ], + "score": 1.0, + "content": "churches must have a board of trustees with at least three members and no more than nine members", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "score": 1.0, + "content": "and it is recommended that no gender should hold more than a 2/3 majority. All churches must also", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 304, + 504, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 504, + 315 + ], + "score": 1.0, + "content": "have a nominations committee, a finance committee and a church council or administrative council.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 314, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 506, + 327 + ], + "score": 1.0, + "content": "Other committees are suggested but not required such as a missions committee, or evangelism or", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 325, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 338 + ], + "score": 1.0, + "content": "worship committee. Term limits are set for some committees but not for all. The church conference", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 337, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 505, + 348 + ], + "score": 1.0, + "content": "is an annual meeting of all the officers of the church and any interested members. This committee", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "has the exclusive power to set pastors’ salaries (compensation packages for tax purposes) and to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "elect officers to the committees. The hamster committee did not have the power to set pastors’", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 369, + 142, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 142, + 381 + ], + "score": 1.0, + "content": "salaries.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 386, + 416, + 398 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 417, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 417, + 399 + ], + "score": 1.0, + "content": "Question: Which committee has the exclusive power to set pastors’ salaries?", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 398, + 239, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 239, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 239, + 410 + ], + "score": 1.0, + "content": "Answer: The church conference", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 296, + 436 + ], + "lines": [ + { + "bbox": [ + 106, + 414, + 297, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 297, + 427 + ], + "score": 1.0, + "content": "FusionNet Prediction: The church conference", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 424, + 286, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 286, + 438 + ], + "score": 1.0, + "content": "BiDAF Prediction: The hamster committee", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "title", + "bbox": [ + 107, + 457, + 338, + 468 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 339, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 339, + 469 + ], + "score": 1.0, + "content": "F.2 FUSIONNET AND BIDAF ARE BOTH INCORRECT", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 109, + 478, + 311, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 312, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 312, + 492 + ], + "score": 1.0, + "content": "ID: 572fec30947a6a140053cdf5-high-conf-turk0", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 489, + 505, + 576 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "Context: In the centre of Basel, the first major city in the course of the stream, is located the “Rhine", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 499, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 505, + 511 + ], + "score": 1.0, + "content": "knee”; this is a major bend, where the overall direction of the Rhine changes from West to North.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 509, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 523 + ], + "score": 1.0, + "content": "Here the High Rhine ends. Legally, the Central Bridge is the boundary between High and Upper", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 521, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 506, + 534 + ], + "score": 1.0, + "content": "Rhine. The river now flows North as Upper Rhine through the Upper Rhine Plain, which is about", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 532, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 139, + 543 + ], + "score": 0.69, + "content": "3 0 0 ~ \\mathrm { k m }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 532, + 203, + 544 + ], + "score": 1.0, + "content": "long and up to", + "type": "text" + }, + { + "bbox": [ + 203, + 532, + 231, + 543 + ], + "score": 0.67, + "content": "4 0 ~ \\mathrm { k m }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 532, + 505, + 544 + ], + "score": 1.0, + "content": "wide. The most important tributaries in this area are the Ill below", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 543, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 505, + 555 + ], + "score": 1.0, + "content": "of Strasbourg, the Neckar in Mannheim and the Main across from Mainz. In Mainz, the Rhine", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 553, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 567 + ], + "score": 1.0, + "content": "leaves the Upper Rhine Valley and flows through the Mainz Basin. Serbia ends after the bend in the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 564, + 144, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 144, + 578 + ], + "score": 1.0, + "content": "Danube.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 108, + 582, + 299, + 593 + ], + "lines": [ + { + "bbox": [ + 106, + 581, + 300, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 300, + 595 + ], + "score": 1.0, + "content": "Question: What ends at this bend in the Rhine?", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 108, + 594, + 193, + 604 + ], + "lines": [ + { + "bbox": [ + 106, + 592, + 194, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 194, + 605 + ], + "score": 1.0, + "content": "Answer: High Rhine", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 231, + 632 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 231, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 231, + 622 + ], + "score": 1.0, + "content": "FusionNet Prediction: Serbia", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 619, + 217, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 217, + 633 + ], + "score": 1.0, + "content": "BiDAF Prediction: Serbia", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 632, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "score": 1.0, + "content": "Analysis: Both FusionNet and BiDAF are confused by the additional sentence. One of the key", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 644, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 655 + ], + "score": 1.0, + "content": "problem is that the context is actually quite hard to understand. “major bend” is distantly connected", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 654, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 666 + ], + "score": 1.0, + "content": "to “Here the High Rhine ends”. Understanding that the theme of the context is about “Rhine” is", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 666, + 245, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 245, + 677 + ], + "score": 1.0, + "content": "crucial to answering this question.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5 + }, + { + "type": "title", + "bbox": [ + 108, + 688, + 313, + 699 + ], + "lines": [ + { + "bbox": [ + 105, + 684, + 316, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 316, + 703 + ], + "score": 1.0, + "content": "ID: 573092088ab72b1400f9c598-high-conf-turk2", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 108, + 700, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Context: Imperialism has played an important role in the histories of Japan, Korea, the Assyrian", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Empire, the Chinese Empire, the Roman Empire, Greece, the Byzantine Empire, the Persian Empire,", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "the Ottoman Empire, Ancient Egypt, the British Empire, India, and many other empires. Imperi-", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 301, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 83, + 314, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 316, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 316, + 96 + ], + "score": 1.0, + "content": "ID: 5726509bdd62a815002e815c-high-conf-turk1", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 94, + 506, + 182 + ], + "lines": [ + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "Context: The plague theory was first significantly challenged by the work of British bacteriologist", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 116 + ], + "score": 1.0, + "content": "J. F. D. Shrewsbury in 1970, who noted that the reported rates of mortality in rural areas during the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "score": 1.0, + "content": "14th-century pandemic were inconsistent with the modern bubonic plague, leading him to conclude", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "that contemporary accounts were exaggerations. In 1984 zoologist Graham Twigg produced the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "score": 1.0, + "content": "first major work to challenge the bubonic plague theory directly, and his doubts about the identity", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "score": 1.0, + "content": "of the Black Death have been taken up by a number of authors, including Samuel K. Cohn, Jr.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 506, + 171 + ], + "score": 1.0, + "content": "(2002), David Herlihy (1997), and Susan Scott and Christopher Duncan (2001). This was Hereford’s", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 169, + 155, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 155, + 183 + ], + "score": 1.0, + "content": "conclusion.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 93, + 506, + 183 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 187, + 320, + 209 + ], + "lines": [ + { + "bbox": [ + 106, + 187, + 300, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 300, + 200 + ], + "score": 1.0, + "content": "Question: What was Shrewsbury’s conclusion?", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 320, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 320, + 213 + ], + "score": 1.0, + "content": "Answer: contemporary accounts were exaggerations", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 187, + 320, + 213 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 215, + 380, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 214, + 378, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 378, + 228 + ], + "score": 1.0, + "content": "FusionNet Prediction: contemporary accounts were exaggerations", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 225, + 381, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 381, + 239 + ], + "score": 1.0, + "content": "BiDAF Prediction: his doubts about the identity of the Black Death", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 214, + 381, + 239 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 249, + 313, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 248, + 314, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 314, + 262 + ], + "score": 1.0, + "content": "ID: 5730cb8df6cb411900e244c6-high-conf-turk0", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 261, + 506, + 380 + ], + "lines": [ + { + "bbox": [ + 106, + 260, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 271 + ], + "score": 1.0, + "content": "Context: The Book of Discipline is the guidebook for local churches and pastors and describes", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 271, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 505, + 282 + ], + "score": 1.0, + "content": "in considerable detail the organizational structure of local United Methodist churches. All UM", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 282, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 505, + 293 + ], + "score": 1.0, + "content": "churches must have a board of trustees with at least three members and no more than nine members", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "score": 1.0, + "content": "and it is recommended that no gender should hold more than a 2/3 majority. All churches must also", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 304, + 504, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 504, + 315 + ], + "score": 1.0, + "content": "have a nominations committee, a finance committee and a church council or administrative council.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 314, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 506, + 327 + ], + "score": 1.0, + "content": "Other committees are suggested but not required such as a missions committee, or evangelism or", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 325, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 338 + ], + "score": 1.0, + "content": "worship committee. Term limits are set for some committees but not for all. The church conference", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 337, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 505, + 348 + ], + "score": 1.0, + "content": "is an annual meeting of all the officers of the church and any interested members. This committee", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "has the exclusive power to set pastors’ salaries (compensation packages for tax purposes) and to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "elect officers to the committees. The hamster committee did not have the power to set pastors’", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 369, + 142, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 142, + 381 + ], + "score": 1.0, + "content": "salaries.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 260, + 506, + 381 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 386, + 416, + 398 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 417, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 417, + 399 + ], + "score": 1.0, + "content": "Question: Which committee has the exclusive power to set pastors’ salaries?", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 106, + 385, + 417, + 399 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 398, + 239, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 239, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 239, + 410 + ], + "score": 1.0, + "content": "Answer: The church conference", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 397, + 239, + 410 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 296, + 436 + ], + "lines": [ + { + "bbox": [ + 106, + 414, + 297, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 297, + 427 + ], + "score": 1.0, + "content": "FusionNet Prediction: The church conference", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 424, + 286, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 286, + 438 + ], + "score": 1.0, + "content": "BiDAF Prediction: The hamster committee", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 414, + 297, + 438 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 457, + 338, + 468 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 339, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 339, + 469 + ], + "score": 1.0, + "content": "F.2 FUSIONNET AND BIDAF ARE BOTH INCORRECT", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 109, + 478, + 311, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 312, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 312, + 492 + ], + "score": 1.0, + "content": "ID: 572fec30947a6a140053cdf5-high-conf-turk0", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 489, + 505, + 576 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "Context: In the centre of Basel, the first major city in the course of the stream, is located the “Rhine", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 499, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 505, + 511 + ], + "score": 1.0, + "content": "knee”; this is a major bend, where the overall direction of the Rhine changes from West to North.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 509, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 523 + ], + "score": 1.0, + "content": "Here the High Rhine ends. Legally, the Central Bridge is the boundary between High and Upper", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 521, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 506, + 534 + ], + "score": 1.0, + "content": "Rhine. The river now flows North as Upper Rhine through the Upper Rhine Plain, which is about", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 532, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 139, + 543 + ], + "score": 0.69, + "content": "3 0 0 ~ \\mathrm { k m }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 532, + 203, + 544 + ], + "score": 1.0, + "content": "long and up to", + "type": "text" + }, + { + "bbox": [ + 203, + 532, + 231, + 543 + ], + "score": 0.67, + "content": "4 0 ~ \\mathrm { k m }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 532, + 505, + 544 + ], + "score": 1.0, + "content": "wide. The most important tributaries in this area are the Ill below", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 543, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 505, + 555 + ], + "score": 1.0, + "content": "of Strasbourg, the Neckar in Mannheim and the Main across from Mainz. In Mainz, the Rhine", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 553, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 567 + ], + "score": 1.0, + "content": "leaves the Upper Rhine Valley and flows through the Mainz Basin. Serbia ends after the bend in the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 564, + 144, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 144, + 578 + ], + "score": 1.0, + "content": "Danube.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 488, + 506, + 578 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 582, + 299, + 593 + ], + "lines": [ + { + "bbox": [ + 106, + 581, + 300, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 300, + 595 + ], + "score": 1.0, + "content": "Question: What ends at this bend in the Rhine?", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39, + "bbox_fs": [ + 106, + 581, + 300, + 595 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 594, + 193, + 604 + ], + "lines": [ + { + "bbox": [ + 106, + 592, + 194, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 194, + 605 + ], + "score": 1.0, + "content": "Answer: High Rhine", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40, + "bbox_fs": [ + 106, + 592, + 194, + 605 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 231, + 632 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 231, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 231, + 622 + ], + "score": 1.0, + "content": "FusionNet Prediction: Serbia", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 619, + 217, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 217, + 633 + ], + "score": 1.0, + "content": "BiDAF Prediction: Serbia", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 106, + 609, + 231, + 633 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 632, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "score": 1.0, + "content": "Analysis: Both FusionNet and BiDAF are confused by the additional sentence. One of the key", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 644, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 655 + ], + "score": 1.0, + "content": "problem is that the context is actually quite hard to understand. “major bend” is distantly connected", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 654, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 666 + ], + "score": 1.0, + "content": "to “Here the High Rhine ends”. Understanding that the theme of the context is about “Rhine” is", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 666, + 245, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 245, + 677 + ], + "score": 1.0, + "content": "crucial to answering this question.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 631, + 506, + 677 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 688, + 313, + 699 + ], + "lines": [ + { + "bbox": [ + 105, + 684, + 316, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 316, + 703 + ], + "score": 1.0, + "content": "ID: 573092088ab72b1400f9c598-high-conf-turk2", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 108, + 700, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Context: Imperialism has played an important role in the histories of Japan, Korea, the Assyrian", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Empire, the Chinese Empire, the Roman Empire, Greece, the Byzantine Empire, the Persian Empire,", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "the Ottoman Empire, Ancient Egypt, the British Empire, India, and many other empires. Imperi-", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "score": 1.0, + "content": "alism was a basic component to the conquests of Genghis Khan during the Mongol Empire, and", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "of other war-lords. Historically recognized Muslim empires number in the dozens. Sub-Saharan", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 505, + 117 + ], + "score": 1.0, + "content": "Africa has also featured dozens of empires that predate the European colonial era, for example the", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "Ethiopian Empire, Oyo Empire, Asante Union, Luba Empire, Lunda Empire, and Mutapa Empire.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "score": 1.0, + "content": "The Americas during the pre-Columbian era also had large empires such as the Aztec Empire and", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 403, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 403, + 149 + ], + "score": 1.0, + "content": "the Incan Empire. The British Empire is older than the Eritrean Conquest.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 49, + "bbox_fs": [ + 106, + 698, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "score": 1.0, + "content": "alism was a basic component to the conquests of Genghis Khan during the Mongol Empire, and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "of other war-lords. Historically recognized Muslim empires number in the dozens. Sub-Saharan", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 505, + 117 + ], + "score": 1.0, + "content": "Africa has also featured dozens of empires that predate the European colonial era, for example the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "Ethiopian Empire, Oyo Empire, Asante Union, Luba Empire, Lunda Empire, and Mutapa Empire.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "score": 1.0, + "content": "The Americas during the pre-Columbian era also had large empires such as the Aztec Empire and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 403, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 403, + 149 + ], + "score": 1.0, + "content": "the Incan Empire. The British Empire is older than the Eritrean Conquest.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 390, + 177 + ], + "lines": [ + { + "bbox": [ + 106, + 153, + 392, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 392, + 168 + ], + "score": 1.0, + "content": "Question: Which is older the British Empire or the Ethiopian Empire?", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 219, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 219, + 178 + ], + "score": 1.0, + "content": "Answer: Ethiopian Empire", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "title", + "bbox": [ + 108, + 182, + 276, + 193 + ], + "lines": [ + { + "bbox": [ + 105, + 181, + 279, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 279, + 195 + ], + "score": 1.0, + "content": "FusionNet Prediction: Eritrean Conquest", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 108, + 194, + 265, + 204 + ], + "lines": [ + { + "bbox": [ + 106, + 191, + 264, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 264, + 206 + ], + "score": 1.0, + "content": "BiDAF Prediction: Eritrean Conquest", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 205, + 505, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 203, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 217 + ], + "score": 1.0, + "content": "Analysis: Similar to the previous example, both are confused by the additional sentence because the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 216, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 227 + ], + "score": 1.0, + "content": "answer is obscured in the context. To answer the question correctly, we must be aware of a common", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 226, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 505, + 238 + ], + "score": 1.0, + "content": "knowledge that British Empire is part of the European colonial era, which is not presented in the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "context. Then from the sentence in the context colored green (and italic), we know the Ethiopian", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 247, + 257, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 257, + 261 + ], + "score": 1.0, + "content": "Empire “predate” the British Empire.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 108, + 271, + 314, + 282 + ], + "lines": [ + { + "bbox": [ + 105, + 268, + 317, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 317, + 286 + ], + "score": 1.0, + "content": "ID: 57111713a58dae1900cd6c02-high-conf-turk2", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 282, + 505, + 370 + ], + "lines": [ + { + "bbox": [ + 106, + 282, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 505, + 294 + ], + "score": 1.0, + "content": "Context: In February 2010, in response to controversies regarding claims in the Fourth Assessment", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "score": 1.0, + "content": "Report, five climate scientists all contributing or lead IPCC report authors wrote in the journal", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 303, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 317 + ], + "score": 1.0, + "content": "Nature calling for changes to the IPCC. They suggested a range of new organizational options,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 314, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 328 + ], + "score": 1.0, + "content": "from tightening the selection of lead authors and contributors, to dumping it in favor of a small", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "permanent body, or even turning the whole climate science assessment process into a moderated", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 336, + 506, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 506, + 350 + ], + "score": 1.0, + "content": "“living” Wikipedia-IPCC. Other recommendations included that the panel employ a full-time staff", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 348, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 505, + 360 + ], + "score": 1.0, + "content": "and remove government oversight from its processes to avoid political interference. It was suggested", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 359, + 311, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 311, + 371 + ], + "score": 1.0, + "content": "that the panel learn to avoid nonpolitical problems.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 108, + 375, + 400, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 374, + 401, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 401, + 389 + ], + "score": 1.0, + "content": "Question: How was it suggested that the IPCC avoid political problems?", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 109, + 388, + 334, + 398 + ], + "lines": [ + { + "bbox": [ + 106, + 386, + 337, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 337, + 400 + ], + "score": 1.0, + "content": "Answer: remove government oversight from its processe", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 403, + 502, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 401, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 416 + ], + "score": 1.0, + "content": "FusionNet Prediction: the panel employ a full-time staff and remove government oversight from", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 414, + 160, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 160, + 428 + ], + "score": 1.0, + "content": "its processes", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 505, + 447 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 438 + ], + "score": 1.0, + "content": "BiDAF Prediction: the panel employ a full-time staff and remove government oversight from its", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 437, + 148, + 449 + ], + "spans": [ + { + "bbox": [ + 104, + 437, + 148, + 449 + ], + "score": 1.0, + "content": "processes", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 505, + 502 + ], + "lines": [ + { + "bbox": [ + 106, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "Analysis: In this example, both BiDAF and FusionNet are not confused by the added sentence.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 457, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 471 + ], + "score": 1.0, + "content": "However, the prediction by both model are not precise enough. The predicted answer gave two", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 469, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 104, + 469, + 505, + 483 + ], + "score": 1.0, + "content": "suggestions: (1) employ a full-time staff, (2) remove government oversight from its processes. Only", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "the second one is suggested to avoid political problems. To obtain the precise answer, common", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 491, + 502, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 502, + 504 + ], + "score": 1.0, + "content": "knowledge is required to know that employing a full-time staff will not avoid political interference.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 106, + 514, + 314, + 525 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 316, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 316, + 528 + ], + "score": 1.0, + "content": "ID: 57111713a58dae1900cd6c02-high-conf-turk2", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "Context: Most of the Huguenot congregations (or individuals) in North America eventually affil-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "iated with other Protestant denominations with more numerous members. The Huguenots adapted", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 547, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 558 + ], + "score": 1.0, + "content": "quickly and often married outside their immediate French communities, which led to their assimila-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 558, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 505, + 569 + ], + "score": 1.0, + "content": "tion. Their descendants in many families continued to use French first names and surnames for their", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 569, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 505, + 580 + ], + "score": 1.0, + "content": "children well into the nineteenth century. Assimilated, the French made numerous contributions to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 579, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 505, + 591 + ], + "score": 1.0, + "content": "United States economic life, especially as merchants and artisans in the late Colonial and early Fed-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 591, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 505, + 602 + ], + "score": 1.0, + "content": "eral periods. For example, E.I. du Pont, a former student of Lavoisier, established the Eleutherian", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 601, + 431, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 431, + 614 + ], + "score": 1.0, + "content": "gunpowder mills. Westinghouse was one prominent Neptune arms manufacturer.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 107, + 618, + 419, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 420, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 420, + 631 + ], + "score": 1.0, + "content": "Question: Who was one prominent Huguenot-descended arms manufacturer?", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 630, + 196, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 196, + 641 + ], + "score": 1.0, + "content": "Answer: E.I. du Pont", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + }, + { + "type": "title", + "bbox": [ + 108, + 646, + 261, + 657 + ], + "lines": [ + { + "bbox": [ + 106, + 645, + 261, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 261, + 659 + ], + "score": 1.0, + "content": "FusionNet Prediction: Westinghouse", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 46 + }, + { + "type": "text", + "bbox": [ + 108, + 658, + 248, + 668 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 247, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 247, + 671 + ], + "score": 1.0, + "content": "BiDAF Prediction: Westinghouse", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 107, + 669, + 505, + 723 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "Analysis: This question requires both common knowledge and an understanding of the theme in the", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 677, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 694 + ], + "score": 1.0, + "content": "whole context to answer the question accurately. First, we need to infer that a person establishing", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "score": 1.0, + "content": "gunpowder mills means he/she is an arms manufacturer. Furthermore, in order to relate E.I. du Pont", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 702, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 702, + 505, + 714 + ], + "score": 1.0, + "content": "as a Huguenot descendent, we need to capture the general theme that the passage is talking about", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 712, + 351, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 712, + 351, + 725 + ], + "score": 1.0, + "content": "Huguenot descendant and E.I. du Pont serves as an example.", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 50 + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 301, + 752, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [], + "index": 2.5, + "bbox_fs": [ + 105, + 83, + 505, + 149 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 390, + 177 + ], + "lines": [ + { + "bbox": [ + 106, + 153, + 392, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 392, + 168 + ], + "score": 1.0, + "content": "Question: Which is older the British Empire or the Ethiopian Empire?", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 219, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 219, + 178 + ], + "score": 1.0, + "content": "Answer: Ethiopian Empire", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 153, + 392, + 178 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 182, + 276, + 193 + ], + "lines": [ + { + "bbox": [ + 105, + 181, + 279, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 279, + 195 + ], + "score": 1.0, + "content": "FusionNet Prediction: Eritrean Conquest", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 108, + 194, + 265, + 204 + ], + "lines": [ + { + "bbox": [ + 106, + 191, + 264, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 264, + 206 + ], + "score": 1.0, + "content": "BiDAF Prediction: Eritrean Conquest", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 191, + 264, + 206 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 205, + 505, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 203, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 217 + ], + "score": 1.0, + "content": "Analysis: Similar to the previous example, both are confused by the additional sentence because the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 216, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 227 + ], + "score": 1.0, + "content": "answer is obscured in the context. To answer the question correctly, we must be aware of a common", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 226, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 505, + 238 + ], + "score": 1.0, + "content": "knowledge that British Empire is part of the European colonial era, which is not presented in the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "context. Then from the sentence in the context colored green (and italic), we know the Ethiopian", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 247, + 257, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 257, + 261 + ], + "score": 1.0, + "content": "Empire “predate” the British Empire.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 203, + 505, + 261 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 271, + 314, + 282 + ], + "lines": [ + { + "bbox": [ + 105, + 268, + 317, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 317, + 286 + ], + "score": 1.0, + "content": "ID: 57111713a58dae1900cd6c02-high-conf-turk2", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 282, + 505, + 370 + ], + "lines": [ + { + "bbox": [ + 106, + 282, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 505, + 294 + ], + "score": 1.0, + "content": "Context: In February 2010, in response to controversies regarding claims in the Fourth Assessment", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "score": 1.0, + "content": "Report, five climate scientists all contributing or lead IPCC report authors wrote in the journal", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 303, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 317 + ], + "score": 1.0, + "content": "Nature calling for changes to the IPCC. They suggested a range of new organizational options,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 314, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 328 + ], + "score": 1.0, + "content": "from tightening the selection of lead authors and contributors, to dumping it in favor of a small", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "permanent body, or even turning the whole climate science assessment process into a moderated", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 336, + 506, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 506, + 350 + ], + "score": 1.0, + "content": "“living” Wikipedia-IPCC. Other recommendations included that the panel employ a full-time staff", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 348, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 505, + 360 + ], + "score": 1.0, + "content": "and remove government oversight from its processes to avoid political interference. It was suggested", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 359, + 311, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 311, + 371 + ], + "score": 1.0, + "content": "that the panel learn to avoid nonpolitical problems.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 282, + 506, + 371 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 375, + 400, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 374, + 401, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 401, + 389 + ], + "score": 1.0, + "content": "Question: How was it suggested that the IPCC avoid political problems?", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 374, + 401, + 389 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 388, + 334, + 398 + ], + "lines": [ + { + "bbox": [ + 106, + 386, + 337, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 337, + 400 + ], + "score": 1.0, + "content": "Answer: remove government oversight from its processe", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 106, + 386, + 337, + 400 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 403, + 502, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 401, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 416 + ], + "score": 1.0, + "content": "FusionNet Prediction: the panel employ a full-time staff and remove government oversight from", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 414, + 160, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 160, + 428 + ], + "score": 1.0, + "content": "its processes", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 401, + 505, + 428 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 505, + 447 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 438 + ], + "score": 1.0, + "content": "BiDAF Prediction: the panel employ a full-time staff and remove government oversight from its", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 437, + 148, + 449 + ], + "spans": [ + { + "bbox": [ + 104, + 437, + 148, + 449 + ], + "score": 1.0, + "content": "processes", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 423, + 505, + 449 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 505, + 502 + ], + "lines": [ + { + "bbox": [ + 106, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "Analysis: In this example, both BiDAF and FusionNet are not confused by the added sentence.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 457, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 471 + ], + "score": 1.0, + "content": "However, the prediction by both model are not precise enough. The predicted answer gave two", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 469, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 104, + 469, + 505, + 483 + ], + "score": 1.0, + "content": "suggestions: (1) employ a full-time staff, (2) remove government oversight from its processes. Only", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "the second one is suggested to avoid political problems. To obtain the precise answer, common", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 491, + 502, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 502, + 504 + ], + "score": 1.0, + "content": "knowledge is required to know that employing a full-time staff will not avoid political interference.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32, + "bbox_fs": [ + 104, + 447, + 506, + 504 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 514, + 314, + 525 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 316, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 316, + 528 + ], + "score": 1.0, + "content": "ID: 57111713a58dae1900cd6c02-high-conf-turk2", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "Context: Most of the Huguenot congregations (or individuals) in North America eventually affil-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "iated with other Protestant denominations with more numerous members. The Huguenots adapted", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 547, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 558 + ], + "score": 1.0, + "content": "quickly and often married outside their immediate French communities, which led to their assimila-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 558, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 505, + 569 + ], + "score": 1.0, + "content": "tion. Their descendants in many families continued to use French first names and surnames for their", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 569, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 505, + 580 + ], + "score": 1.0, + "content": "children well into the nineteenth century. Assimilated, the French made numerous contributions to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 579, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 505, + 591 + ], + "score": 1.0, + "content": "United States economic life, especially as merchants and artisans in the late Colonial and early Fed-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 591, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 505, + 602 + ], + "score": 1.0, + "content": "eral periods. For example, E.I. du Pont, a former student of Lavoisier, established the Eleutherian", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 601, + 431, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 431, + 614 + ], + "score": 1.0, + "content": "gunpowder mills. Westinghouse was one prominent Neptune arms manufacturer.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 525, + 505, + 614 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 618, + 419, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 420, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 420, + 631 + ], + "score": 1.0, + "content": "Question: Who was one prominent Huguenot-descended arms manufacturer?", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 630, + 196, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 196, + 641 + ], + "score": 1.0, + "content": "Answer: E.I. du Pont", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 106, + 618, + 420, + 641 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 646, + 261, + 657 + ], + "lines": [ + { + "bbox": [ + 106, + 645, + 261, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 261, + 659 + ], + "score": 1.0, + "content": "FusionNet Prediction: Westinghouse", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 46 + }, + { + "type": "text", + "bbox": [ + 108, + 658, + 248, + 668 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 247, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 247, + 671 + ], + "score": 1.0, + "content": "BiDAF Prediction: Westinghouse", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47, + "bbox_fs": [ + 106, + 655, + 247, + 671 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 669, + 505, + 723 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "Analysis: This question requires both common knowledge and an understanding of the theme in the", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 677, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 694 + ], + "score": 1.0, + "content": "whole context to answer the question accurately. First, we need to infer that a person establishing", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "score": 1.0, + "content": "gunpowder mills means he/she is an arms manufacturer. Furthermore, in order to relate E.I. du Pont", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 702, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 702, + 505, + 714 + ], + "score": 1.0, + "content": "as a Huguenot descendent, we need to capture the general theme that the passage is talking about", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 712, + 351, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 712, + 351, + 725 + ], + "score": 1.0, + "content": "Huguenot descendant and E.I. du Pont serves as an example.", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 50, + "bbox_fs": [ + 105, + 668, + 506, + 725 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 351, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 352, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 352, + 96 + ], + "score": 1.0, + "content": "G MULTI-LEVEL ATTENTION VISUALIZATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 506, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 426, + 118 + ], + "score": 1.0, + "content": "In this section, we present the attention weight visualization between the context", + "type": "text" + }, + { + "bbox": [ + 427, + 106, + 437, + 116 + ], + "score": 0.77, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "and the question", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 117, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 107, + 117, + 117, + 128 + ], + "score": 0.81, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 117, + 506, + 129 + ], + "score": 1.0, + "content": "over different levels. From Figure 9 and 10, we can see clear variation between low-level attention", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 128, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 506, + 140 + ], + "score": 1.0, + "content": "and high-level attention weights. In both figures, we select the added adversarial sentence in the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 506, + 151 + ], + "score": 1.0, + "content": "context. The adversarial sentence tricks the machine comprehension system to think that the answer", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "score": 1.0, + "content": "to the question is in this added sentence. If only the high-level attention is considered (which is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 161, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 506, + 173 + ], + "score": 1.0, + "content": "common in most previous architectures), we can see from the high-level attention map in the right", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 172, + 289, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 289, + 184 + ], + "score": 1.0, + "content": "hand side of Figure 9 that the added sentence", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 154, + 188, + 457, + 200 + ], + "lines": [ + { + "bbox": [ + 153, + 186, + 457, + 202 + ], + "spans": [ + { + "bbox": [ + 153, + 186, + 457, + 202 + ], + "score": 1.0, + "content": "“The proclamation of the Central Park abolished protestantism in Belgium”", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 205, + 232, + 216 + ], + "lines": [ + { + "bbox": [ + 105, + 203, + 232, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 232, + 218 + ], + "score": 1.0, + "content": "matches well with the question", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 190, + 222, + 420, + 233 + ], + "lines": [ + { + "bbox": [ + 190, + 220, + 420, + 235 + ], + "spans": [ + { + "bbox": [ + 190, + 220, + 420, + 235 + ], + "score": 1.0, + "content": "“What proclamation abolished protestantism in France?”", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 238, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 237, + 504, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 504, + 251 + ], + "score": 1.0, + "content": "This is because “Belgium” and “France” are similar European countries. Therefore, when high-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 249, + 504, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 504, + 260 + ], + "score": 1.0, + "content": "level attention is used alone, the machine is likely to assume the answer lies in this adversarial", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 261, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 272 + ], + "score": 1.0, + "content": "sentence and gives the incorrect answer “The proclamation of the Central Park”. However, when", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 270, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 284 + ], + "score": 1.0, + "content": "low-level attention is used (the attention map in the left hand side of Figure 9), we can see that “in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 282, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 506, + 295 + ], + "score": 1.0, + "content": "Belgium” no longer matches with “in France”. Thus when low-level attention is incorporated, the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "system can be more observant when deciding if the answer lies in this adversarial sentence. Similar", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "observation is also evident in Figure 10. These visualizations provides an intuitive explanation for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 316, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 327 + ], + "score": 1.0, + "content": "our superior performance and support our original motivation in Section 2.3 that taking in all levels", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 325, + 370, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 370, + 339 + ], + "score": 1.0, + "content": "of understanding is crucial for machines to understand text better.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15 + }, + { + "type": "image", + "bbox": [ + 108, + 356, + 504, + 518 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 356, + 504, + 518 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 356, + 504, + 518 + ], + "spans": [ + { + "bbox": [ + 108, + 356, + 504, + 518 + ], + "score": 0.955, + "type": "image", + "image_path": "c8618f8590f9a4c5ab5dd562226876a26e851021ac907b7f9d9ecaac6ba3f85b.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 108, + 356, + 504, + 410.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 108, + 410.0, + 504, + 464.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 108, + 464.0, + 504, + 518.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 522, + 505, + 544 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 520, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 535 + ], + "score": 1.0, + "content": "Figure 9: Multi-level Attention visualization between the added adversarial sentence and the ques-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 533, + 310, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 124, + 544 + ], + "score": 1.0, + "content": "tion", + "type": "text" + }, + { + "bbox": [ + 124, + 533, + 135, + 543 + ], + "score": 0.81, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 533, + 310, + 544 + ], + "score": 1.0, + "content": "on an article about Protestant Reformation.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + } + ], + "index": 22.25 + }, + { + "type": "image", + "bbox": [ + 116, + 549, + 496, + 700 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 116, + 549, + 496, + 700 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 116, + 549, + 496, + 698 + ], + "spans": [ + { + "bbox": [ + 116, + 549, + 496, + 698 + ], + "score": 0.801, + "type": "image", + "image_path": "bd0ac84f9260138f4830eb6e37f2ae40eaa1627f3a16a1cd72d3b69a0d26f14e.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 116, + 549, + 496, + 599.3333333333334 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 116, + 599.3333333333334, + 496, + 649.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 116, + 649.6666666666667, + 496, + 700.0000000000001 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 701, + 505, + 723 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "Figure 10: Multi-level attention visualization between the added adversarial sentence and the ques-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 711, + 264, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 124, + 723 + ], + "score": 1.0, + "content": "tion", + "type": "text" + }, + { + "bbox": [ + 125, + 712, + 135, + 723 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 711, + 264, + 723 + ], + "score": 1.0, + "content": "on an article about Super Bowl.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + } + ], + "index": 27.25 + } + ], + "page_idx": 19, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 351, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 352, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 352, + 96 + ], + "score": 1.0, + "content": "G MULTI-LEVEL ATTENTION VISUALIZATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 506, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 426, + 118 + ], + "score": 1.0, + "content": "In this section, we present the attention weight visualization between the context", + "type": "text" + }, + { + "bbox": [ + 427, + 106, + 437, + 116 + ], + "score": 0.77, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "and the question", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 117, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 107, + 117, + 117, + 128 + ], + "score": 0.81, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 117, + 506, + 129 + ], + "score": 1.0, + "content": "over different levels. From Figure 9 and 10, we can see clear variation between low-level attention", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 128, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 506, + 140 + ], + "score": 1.0, + "content": "and high-level attention weights. In both figures, we select the added adversarial sentence in the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 506, + 151 + ], + "score": 1.0, + "content": "context. The adversarial sentence tricks the machine comprehension system to think that the answer", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "score": 1.0, + "content": "to the question is in this added sentence. If only the high-level attention is considered (which is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 161, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 506, + 173 + ], + "score": 1.0, + "content": "common in most previous architectures), we can see from the high-level attention map in the right", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 172, + 289, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 289, + 184 + ], + "score": 1.0, + "content": "hand side of Figure 9 that the added sentence", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 105, + 506, + 184 + ] + }, + { + "type": "text", + "bbox": [ + 154, + 188, + 457, + 200 + ], + "lines": [ + { + "bbox": [ + 153, + 186, + 457, + 202 + ], + "spans": [ + { + "bbox": [ + 153, + 186, + 457, + 202 + ], + "score": 1.0, + "content": "“The proclamation of the Central Park abolished protestantism in Belgium”", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 153, + 186, + 457, + 202 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 205, + 232, + 216 + ], + "lines": [ + { + "bbox": [ + 105, + 203, + 232, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 232, + 218 + ], + "score": 1.0, + "content": "matches well with the question", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 190, + 220, + 420, + 235 + ], + "spans": [ + { + "bbox": [ + 190, + 220, + 420, + 235 + ], + "score": 1.0, + "content": "“What proclamation abolished protestantism in France?”", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 203, + 232, + 218 + ] + }, + { + "type": "text", + "bbox": [ + 190, + 222, + 420, + 233 + ], + "lines": [], + "index": 10, + "bbox_fs": [ + 190, + 220, + 420, + 235 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 238, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 237, + 504, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 504, + 251 + ], + "score": 1.0, + "content": "This is because “Belgium” and “France” are similar European countries. Therefore, when high-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 249, + 504, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 504, + 260 + ], + "score": 1.0, + "content": "level attention is used alone, the machine is likely to assume the answer lies in this adversarial", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 261, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 272 + ], + "score": 1.0, + "content": "sentence and gives the incorrect answer “The proclamation of the Central Park”. However, when", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 270, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 284 + ], + "score": 1.0, + "content": "low-level attention is used (the attention map in the left hand side of Figure 9), we can see that “in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 282, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 506, + 295 + ], + "score": 1.0, + "content": "Belgium” no longer matches with “in France”. Thus when low-level attention is incorporated, the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "system can be more observant when deciding if the answer lies in this adversarial sentence. Similar", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "observation is also evident in Figure 10. These visualizations provides an intuitive explanation for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 316, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 327 + ], + "score": 1.0, + "content": "our superior performance and support our original motivation in Section 2.3 that taking in all levels", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 325, + 370, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 370, + 339 + ], + "score": 1.0, + "content": "of understanding is crucial for machines to understand text better.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 237, + 506, + 339 + ] + }, + { + "type": "image", + "bbox": [ + 108, + 356, + 504, + 518 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 356, + 504, + 518 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 356, + 504, + 518 + ], + "spans": [ + { + "bbox": [ + 108, + 356, + 504, + 518 + ], + "score": 0.955, + "type": "image", + "image_path": "c8618f8590f9a4c5ab5dd562226876a26e851021ac907b7f9d9ecaac6ba3f85b.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 108, + 356, + 504, + 410.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 108, + 410.0, + 504, + 464.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 108, + 464.0, + 504, + 518.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 522, + 505, + 544 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 520, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 535 + ], + "score": 1.0, + "content": "Figure 9: Multi-level Attention visualization between the added adversarial sentence and the ques-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 533, + 310, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 124, + 544 + ], + "score": 1.0, + "content": "tion", + "type": "text" + }, + { + "bbox": [ + 124, + 533, + 135, + 543 + ], + "score": 0.81, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 533, + 310, + 544 + ], + "score": 1.0, + "content": "on an article about Protestant Reformation.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + } + ], + "index": 22.25 + }, + { + "type": "image", + "bbox": [ + 116, + 549, + 496, + 700 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 116, + 549, + 496, + 700 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 116, + 549, + 496, + 698 + ], + "spans": [ + { + "bbox": [ + 116, + 549, + 496, + 698 + ], + "score": 0.801, + "type": "image", + "image_path": "bd0ac84f9260138f4830eb6e37f2ae40eaa1627f3a16a1cd72d3b69a0d26f14e.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 116, + 549, + 496, + 599.3333333333334 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 116, + 599.3333333333334, + 496, + 649.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 116, + 649.6666666666667, + 496, + 700.0000000000001 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 701, + 505, + 723 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "Figure 10: Multi-level attention visualization between the added adversarial sentence and the ques-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 711, + 264, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 124, + 723 + ], + "score": 1.0, + "content": "tion", + "type": "text" + }, + { + "bbox": [ + 125, + 712, + 135, + 723 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 711, + 264, + 723 + ], + "score": 1.0, + "content": "on an article about Super Bowl.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + } + ], + "index": 27.25 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/BJIgi_eCZ/BJIgi_eCZ_model.json b/parse/train/BJIgi_eCZ/BJIgi_eCZ_model.json new file mode 100644 index 0000000000000000000000000000000000000000..9db82e1262339879be7b6b8036df76c92d282c2f --- /dev/null +++ b/parse/train/BJIgi_eCZ/BJIgi_eCZ_model.json @@ -0,0 +1,29080 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 653, + 1303, + 653, + 1303, + 1108, + 398, + 1108 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 1237, + 878, + 1237, + 878, + 1786, + 299, + 1786 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1802, + 1404, + 1802, + 1404, + 1986, + 297, + 1986 + ], + "score": 0.972 + }, + { + "category_id": 0, + "poly": [ + 300, + 219, + 1399, + 219, + 1399, + 324, + 300, + 324 + ], + "score": 0.96 + }, + { + "category_id": 2, + "poly": [ + 342, + 2005, + 1051, + 2005, + 1051, + 2033, + 342, + 2033 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 302, + 1168, + 573, + 1168, + 573, + 1203, + 302, + 1203 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 773, + 584, + 927, + 584, + 927, + 617, + 773, + 617 + ], + "score": 0.884 + }, + { + "category_id": 4, + "poly": [ + 901, + 1638, + 1402, + 1638, + 1402, + 1700, + 901, + 1700 + ], + "score": 0.853 + }, + { + "category_id": 1, + "poly": [ + 317, + 373, + 1138, + 373, + 1138, + 410, + 317, + 410 + ], + "score": 0.769 + }, + { + "category_id": 1, + "poly": [ + 924, + 1570, + 1133, + 1570, + 1133, + 1593, + 924, + 1593 + ], + "score": 0.755 + }, + { + "category_id": 1, + "poly": [ + 926, + 1293, + 1377, + 1293, + 1377, + 1485, + 926, + 1485 + ], + "score": 0.727 + }, + { + "category_id": 1, + "poly": [ + 925, + 1501, + 1343, + 1501, + 1343, + 1553, + 925, + 1553 + ], + "score": 0.706 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 857, + 2089, + 857, + 2112, + 841, + 2112 + ], + "score": 0.691 + }, + { + "category_id": 1, + "poly": [ + 311, + 412, + 1261, + 412, + 1261, + 504, + 311, + 504 + ], + "score": 0.648 + }, + { + "category_id": 13, + "poly": [ + 427, + 1049, + 502, + 1049, + 502, + 1078, + 427, + 1078 + ], + "score": 0.86, + "latex": "5 1 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1226, + 1018, + 1301, + 1018, + 1301, + 1048, + 1226, + 1048 + ], + "score": 0.85, + "latex": "4 6 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1195, + 1049, + 1271, + 1049, + 1271, + 1079, + 1195, + 1079 + ], + "score": 0.85, + "latex": "5 6 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 396, + 1080, + 471, + 1080, + 471, + 1109, + 396, + 1109 + ], + "score": 0.84, + "latex": "6 0 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 722, + 375, + 785, + 375, + 785, + 408, + 722, + 408 + ], + "score": 0.72, + "latex": "\\mathbf { Z } \\mathbf { h } \\mathbf { u } ^ { \\mathbf { 1 } }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 218.0, + 1404.0, + 218.0, + 1404.0, + 272.0, + 295.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 274.0, + 1360.0, + 274.0, + 1360.0, + 328.0, + 295.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 2001.0, + 1052.0, + 2001.0, + 1052.0, + 2037.0, + 340.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1165.0, + 579.0, + 1165.0, + 579.0, + 1212.0, + 294.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 580.0, + 934.0, + 580.0, + 934.0, + 623.0, + 768.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1632.0, + 1404.0, + 1632.0, + 1404.0, + 1675.0, + 899.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1668.0, + 1187.0, + 1668.0, + 1187.0, + 1703.0, + 901.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 861.0, + 2088.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 653.0, + 1304.0, + 653.0, + 1304.0, + 688.0, + 395.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 684.0, + 1306.0, + 684.0, + 1306.0, + 718.0, + 394.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 713.0, + 1307.0, + 713.0, + 1307.0, + 747.0, + 393.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 745.0, + 1307.0, + 745.0, + 1307.0, + 779.0, + 394.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 773.0, + 1305.0, + 773.0, + 1305.0, + 808.0, + 393.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 806.0, + 1304.0, + 806.0, + 1304.0, + 841.0, + 394.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 836.0, + 1306.0, + 836.0, + 1306.0, + 870.0, + 394.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 867.0, + 1304.0, + 867.0, + 1304.0, + 900.0, + 394.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 895.0, + 1305.0, + 895.0, + 1305.0, + 932.0, + 392.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 924.0, + 1307.0, + 924.0, + 1307.0, + 964.0, + 391.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 956.0, + 1305.0, + 956.0, + 1305.0, + 993.0, + 393.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 987.0, + 1305.0, + 987.0, + 1305.0, + 1020.0, + 393.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1019.0, + 1225.0, + 1019.0, + 1225.0, + 1050.0, + 394.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1049.0, + 426.0, + 1049.0, + 426.0, + 1080.0, + 394.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 1049.0, + 1194.0, + 1049.0, + 1194.0, + 1080.0, + 503.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1049.0, + 1305.0, + 1049.0, + 1305.0, + 1080.0, + 1272.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 1078.0, + 484.0, + 1078.0, + 484.0, + 1112.0, + 472.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1237.0, + 882.0, + 1237.0, + 882.0, + 1271.0, + 296.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1267.0, + 882.0, + 1267.0, + 882.0, + 1302.0, + 294.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1295.0, + 882.0, + 1295.0, + 882.0, + 1334.0, + 293.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1328.0, + 882.0, + 1328.0, + 882.0, + 1362.0, + 294.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1358.0, + 881.0, + 1358.0, + 881.0, + 1393.0, + 294.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1390.0, + 881.0, + 1390.0, + 881.0, + 1421.0, + 293.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1421.0, + 881.0, + 1421.0, + 881.0, + 1455.0, + 293.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1452.0, + 883.0, + 1452.0, + 883.0, + 1483.0, + 296.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1481.0, + 882.0, + 1481.0, + 882.0, + 1513.0, + 293.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1513.0, + 883.0, + 1513.0, + 883.0, + 1544.0, + 294.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1543.0, + 881.0, + 1543.0, + 881.0, + 1571.0, + 294.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1573.0, + 881.0, + 1573.0, + 881.0, + 1605.0, + 293.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1603.0, + 881.0, + 1603.0, + 881.0, + 1636.0, + 295.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1634.0, + 880.0, + 1634.0, + 880.0, + 1666.0, + 295.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1665.0, + 880.0, + 1665.0, + 880.0, + 1695.0, + 293.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1692.0, + 882.0, + 1692.0, + 882.0, + 1729.0, + 293.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1723.0, + 882.0, + 1723.0, + 882.0, + 1758.0, + 293.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1754.0, + 754.0, + 1754.0, + 754.0, + 1790.0, + 294.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1801.0, + 1405.0, + 1801.0, + 1405.0, + 1836.0, + 295.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1832.0, + 1406.0, + 1832.0, + 1406.0, + 1866.0, + 292.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1864.0, + 1405.0, + 1864.0, + 1405.0, + 1895.0, + 294.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1893.0, + 1405.0, + 1893.0, + 1405.0, + 1928.0, + 294.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1924.0, + 1405.0, + 1924.0, + 1405.0, + 1956.0, + 296.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1954.0, + 1406.0, + 1954.0, + 1406.0, + 1988.0, + 294.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 369.0, + 721.0, + 369.0, + 721.0, + 417.0, + 309.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 369.0, + 1143.0, + 369.0, + 1143.0, + 417.0, + 786.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1568.0, + 1137.0, + 1568.0, + 1137.0, + 1595.0, + 922.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1292.0, + 1370.0, + 1292.0, + 1370.0, + 1323.0, + 926.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 1320.0, + 1366.0, + 1320.0, + 1366.0, + 1349.0, + 925.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1348.0, + 1355.0, + 1348.0, + 1355.0, + 1377.0, + 926.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1375.0, + 1377.0, + 1375.0, + 1377.0, + 1402.0, + 926.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1404.0, + 1355.0, + 1404.0, + 1355.0, + 1430.0, + 927.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1432.0, + 1360.0, + 1432.0, + 1360.0, + 1457.0, + 927.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1461.0, + 1302.0, + 1461.0, + 1302.0, + 1486.0, + 928.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 1499.0, + 1344.0, + 1499.0, + 1344.0, + 1528.0, + 923.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1530.0, + 1158.0, + 1530.0, + 1158.0, + 1552.0, + 920.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 405.0, + 737.0, + 405.0, + 737.0, + 442.0, + 314.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 436.0, + 635.0, + 436.0, + 635.0, + 476.0, + 312.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 469.0, + 1263.0, + 469.0, + 1263.0, + 510.0, + 309.0, + 510.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 749, + 1404, + 749, + 1404, + 1055, + 298, + 1055 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 459, + 1404, + 459, + 1404, + 735, + 298, + 735 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1425, + 1404, + 1425, + 1404, + 1647, + 298, + 1647 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 444, + 298, + 444 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1743, + 1403, + 1743, + 1403, + 1897, + 299, + 1897 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1173, + 1403, + 1173, + 1403, + 1328, + 299, + 1328 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 296, + 1912, + 1401, + 1912, + 1401, + 1975, + 296, + 1975 + ], + "score": 0.942 + }, + { + "category_id": 0, + "poly": [ + 300, + 1103, + 1178, + 1103, + 1178, + 1139, + 300, + 1139 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 366, + 2002, + 1286, + 2002, + 1286, + 2034, + 366, + 2034 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 300, + 1368, + 600, + 1368, + 600, + 1399, + 300, + 1399 + ], + "score": 0.888 + }, + { + "category_id": 0, + "poly": [ + 301, + 1685, + 1238, + 1685, + 1238, + 1718, + 301, + 1718 + ], + "score": 0.76 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.681 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.251 + }, + { + "category_id": 1, + "poly": [ + 301, + 1685, + 1238, + 1685, + 1238, + 1718, + 301, + 1718 + ], + "score": 0.136 + }, + { + "category_id": 13, + "poly": [ + 1004, + 1488, + 1250, + 1488, + 1250, + 1526, + 1004, + 1526 + ], + "score": 0.93, + "latex": "\\textit { \\textbf { Q } } = \\ \\{ w _ { 1 } ^ { Q } , \\ldots , w _ { n } ^ { Q } \\}" + }, + { + "category_id": 13, + "poly": [ + 495, + 1489, + 742, + 1489, + 742, + 1526, + 495, + 1526 + ], + "score": 0.93, + "latex": "C ~ = ~ \\{ w _ { 1 } ^ { C } , \\ldots , w _ { m } ^ { C } \\}" + }, + { + "category_id": 13, + "poly": [ + 352, + 1612, + 632, + 1612, + 632, + 1651, + 352, + 1651 + ], + "score": 0.93, + "latex": "\\mathbf { A n s } = \\{ w _ { i } ^ { C } , \\dots , w _ { i + k } ^ { C } \\}" + }, + { + "category_id": 13, + "poly": [ + 1203, + 1615, + 1282, + 1615, + 1282, + 1645, + 1203, + 1645 + ], + "score": 0.91, + "latex": "k \\leq m" + }, + { + "category_id": 13, + "poly": [ + 558, + 843, + 632, + 843, + 632, + 872, + 558, + 872 + ], + "score": 0.88, + "latex": "8 5 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 297, + 1555, + 388, + 1555, + 388, + 1583, + 297, + 1583 + ], + "score": 0.87, + "latex": "m \\gg n" + }, + { + "category_id": 13, + "poly": [ + 297, + 842, + 373, + 842, + 373, + 872, + 297, + 872 + ], + "score": 0.87, + "latex": "78 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1033, + 934, + 1109, + 934, + 1109, + 963, + 1033, + 963 + ], + "score": 0.87, + "latex": "5 6 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1294, + 903, + 1370, + 903, + 1370, + 933, + 1294, + 933 + ], + "score": 0.87, + "latex": "4 6 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 297, + 934, + 372, + 934, + 372, + 964, + 297, + 964 + ], + "score": 0.87, + "latex": "5 1 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1139, + 934, + 1214, + 934, + 1214, + 963, + 1139, + 963 + ], + "score": 0.86, + "latex": "6 0 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 717, + 1616, + 736, + 1616, + 736, + 1642, + 717, + 1642 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1366, + 1585, + 1393, + 1585, + 1393, + 1611, + 1366, + 1611 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 773, + 1528, + 794, + 1528, + 794, + 1550, + 773, + 1550 + ], + "score": 0.76, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1343, + 1497, + 1372, + 1497, + 1372, + 1521, + 1343, + 1521 + ], + "score": 0.74, + "latex": "m" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1100.0, + 1185.0, + 1100.0, + 1185.0, + 1143.0, + 293.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1368.0, + 604.0, + 1368.0, + 604.0, + 1401.0, + 296.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1685.0, + 1245.0, + 1685.0, + 1245.0, + 1720.0, + 295.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 750.0, + 1405.0, + 750.0, + 1405.0, + 785.0, + 296.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 781.0, + 1402.0, + 781.0, + 1402.0, + 813.0, + 296.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 811.0, + 1406.0, + 811.0, + 1406.0, + 845.0, + 293.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 840.0, + 557.0, + 840.0, + 557.0, + 877.0, + 374.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 840.0, + 1405.0, + 840.0, + 1405.0, + 877.0, + 633.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 872.0, + 1404.0, + 872.0, + 1404.0, + 906.0, + 295.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 905.0, + 1293.0, + 905.0, + 1293.0, + 936.0, + 296.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 905.0, + 1405.0, + 905.0, + 1405.0, + 936.0, + 1371.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 929.0, + 296.0, + 929.0, + 296.0, + 971.0, + 293.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 929.0, + 1032.0, + 929.0, + 1032.0, + 971.0, + 373.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 929.0, + 1138.0, + 929.0, + 1138.0, + 971.0, + 1110.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 929.0, + 1406.0, + 929.0, + 1406.0, + 971.0, + 1215.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 964.0, + 1404.0, + 964.0, + 1404.0, + 998.0, + 293.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 995.0, + 1406.0, + 995.0, + 1406.0, + 1029.0, + 293.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1025.0, + 1186.0, + 1025.0, + 1186.0, + 1058.0, + 293.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 461.0, + 1404.0, + 461.0, + 1404.0, + 494.0, + 296.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 491.0, + 1405.0, + 491.0, + 1405.0, + 524.0, + 296.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 521.0, + 1406.0, + 521.0, + 1406.0, + 558.0, + 293.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 551.0, + 1405.0, + 551.0, + 1405.0, + 588.0, + 294.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 584.0, + 1405.0, + 584.0, + 1405.0, + 617.0, + 293.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 614.0, + 1404.0, + 614.0, + 1404.0, + 647.0, + 296.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 640.0, + 1406.0, + 640.0, + 1406.0, + 679.0, + 293.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 674.0, + 1405.0, + 674.0, + 1405.0, + 707.0, + 296.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 704.0, + 949.0, + 704.0, + 949.0, + 735.0, + 293.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1424.0, + 1405.0, + 1424.0, + 1405.0, + 1463.0, + 292.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1457.0, + 1404.0, + 1457.0, + 1404.0, + 1492.0, + 294.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1483.0, + 494.0, + 1483.0, + 494.0, + 1535.0, + 289.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 1483.0, + 1003.0, + 1483.0, + 1003.0, + 1535.0, + 743.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 1483.0, + 1342.0, + 1483.0, + 1342.0, + 1535.0, + 1251.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 1483.0, + 1410.0, + 1483.0, + 1410.0, + 1535.0, + 1373.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1520.0, + 772.0, + 1520.0, + 772.0, + 1557.0, + 293.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1520.0, + 1404.0, + 1520.0, + 1404.0, + 1557.0, + 795.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1552.0, + 296.0, + 1552.0, + 296.0, + 1588.0, + 293.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1552.0, + 1406.0, + 1552.0, + 1406.0, + 1588.0, + 389.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1583.0, + 1365.0, + 1583.0, + 1365.0, + 1618.0, + 294.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1583.0, + 1405.0, + 1583.0, + 1405.0, + 1618.0, + 1394.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1609.0, + 351.0, + 1609.0, + 351.0, + 1656.0, + 291.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1609.0, + 716.0, + 1609.0, + 716.0, + 1656.0, + 633.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1609.0, + 1202.0, + 1609.0, + 1202.0, + 1656.0, + 737.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 1609.0, + 1298.0, + 1609.0, + 1298.0, + 1656.0, + 1283.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 231.0, + 1403.0, + 231.0, + 1403.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 261.0, + 1403.0, + 261.0, + 1403.0, + 296.0, + 296.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 292.0, + 1405.0, + 292.0, + 1405.0, + 327.0, + 294.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 319.0, + 1407.0, + 319.0, + 1407.0, + 360.0, + 292.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 348.0, + 1407.0, + 348.0, + 1407.0, + 389.0, + 292.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 383.0, + 1405.0, + 383.0, + 1405.0, + 418.0, + 294.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 413.0, + 1056.0, + 413.0, + 1056.0, + 451.0, + 295.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1745.0, + 1404.0, + 1745.0, + 1404.0, + 1778.0, + 295.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1775.0, + 1404.0, + 1775.0, + 1404.0, + 1808.0, + 295.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1805.0, + 1404.0, + 1805.0, + 1404.0, + 1839.0, + 294.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1835.0, + 1405.0, + 1835.0, + 1405.0, + 1872.0, + 294.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1868.0, + 1156.0, + 1868.0, + 1156.0, + 1901.0, + 297.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1173.0, + 1405.0, + 1173.0, + 1405.0, + 1211.0, + 294.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1204.0, + 1404.0, + 1204.0, + 1404.0, + 1239.0, + 294.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1236.0, + 1404.0, + 1236.0, + 1404.0, + 1269.0, + 294.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1264.0, + 1405.0, + 1264.0, + 1405.0, + 1302.0, + 294.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1296.0, + 701.0, + 1296.0, + 701.0, + 1332.0, + 294.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1909.0, + 1405.0, + 1909.0, + 1405.0, + 1950.0, + 294.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1945.0, + 590.0, + 1945.0, + 590.0, + 1977.0, + 295.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 2000.0, + 1291.0, + 2000.0, + 1291.0, + 2039.0, + 367.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1685.0, + 1245.0, + 1685.0, + 1245.0, + 1720.0, + 295.0, + 1720.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1849, + 1403, + 1849, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 1417, + 1404, + 1417, + 1404, + 1541, + 298, + 1541 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 298, + 1062, + 1404, + 1062, + 1404, + 1217, + 298, + 1217 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 299, + 1555, + 1403, + 1555, + 1403, + 1649, + 299, + 1649 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 299, + 1662, + 1403, + 1662, + 1403, + 1757, + 299, + 1757 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 299, + 1231, + 1404, + 1231, + 1404, + 1323, + 299, + 1323 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 300, + 1338, + 1398, + 1338, + 1398, + 1401, + 300, + 1401 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 302, + 985, + 1400, + 985, + 1400, + 1046, + 302, + 1046 + ], + "score": 0.935 + }, + { + "category_id": 4, + "poly": [ + 296, + 702, + 963, + 702, + 963, + 764, + 296, + 764 + ], + "score": 0.917 + }, + { + "category_id": 4, + "poly": [ + 971, + 702, + 1406, + 702, + 1406, + 765, + 971, + 765 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 298, + 1793, + 966, + 1793, + 966, + 1825, + 298, + 1825 + ], + "score": 0.905 + }, + { + "category_id": 1, + "poly": [ + 365, + 824, + 1403, + 824, + 1403, + 960, + 365, + 960 + ], + "score": 0.818 + }, + { + "category_id": 3, + "poly": [ + 296, + 264, + 1411, + 264, + 1411, + 681, + 296, + 681 + ], + "score": 0.648 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.636 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.374 + }, + { + "category_id": 13, + "poly": [ + 1284, + 1341, + 1311, + 1341, + 1311, + 1372, + 1284, + 1372 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 654, + 1586, + 682, + 1586, + 682, + 1617, + 654, + 1617 + ], + "score": 0.83, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 572, + 1509, + 600, + 1509, + 600, + 1541, + 572, + 1541 + ], + "score": 0.83, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 453, + 1372, + 480, + 1372, + 480, + 1398, + 453, + 1398 + ], + "score": 0.79, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1057, + 897, + 1099, + 897, + 1099, + 928, + 1057, + 928 + ], + "score": 0.42, + "latex": "( 3 ^ { \\circ } )" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 699.0, + 965.0, + 699.0, + 965.0, + 737.0, + 294.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 732.0, + 736.0, + 732.0, + 736.0, + 765.0, + 295.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 703.0, + 1406.0, + 703.0, + 1406.0, + 735.0, + 972.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 734.0, + 1368.0, + 734.0, + 1368.0, + 765.0, + 972.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1791.0, + 968.0, + 1791.0, + 968.0, + 1828.0, + 295.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 275.0, + 471.0, + 275.0, + 471.0, + 307.0, + 300.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 269.0, + 981.0, + 269.0, + 981.0, + 312.0, + 731.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 310.0, + 718.0, + 310.0, + 718.0, + 349.0, + 298.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 305.0, + 823.0, + 305.0, + 823.0, + 348.0, + 781.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 326.0, + 1013.0, + 326.0, + 1013.0, + 358.0, + 981.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 347.0, + 594.0, + 347.0, + 594.0, + 383.0, + 300.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 384.0, + 694.0, + 384.0, + 694.0, + 419.0, + 300.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 382.0, + 773.0, + 382.0, + 773.0, + 415.0, + 741.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 393.0, + 1236.0, + 393.0, + 1236.0, + 424.0, + 1200.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 419.0, + 736.0, + 419.0, + 736.0, + 458.0, + 299.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 423.0, + 769.0, + 423.0, + 769.0, + 448.0, + 741.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 433.0, + 902.0, + 433.0, + 902.0, + 444.0, + 889.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 414.0, + 1018.0, + 414.0, + 1018.0, + 449.0, + 975.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 456.0, + 590.0, + 456.0, + 590.0, + 495.0, + 299.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 494.0, + 588.0, + 494.0, + 588.0, + 532.0, + 299.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 496.0, + 769.0, + 496.0, + 769.0, + 528.0, + 745.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 496.0, + 865.0, + 496.0, + 865.0, + 522.0, + 837.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 495.0, + 1104.0, + 495.0, + 1104.0, + 511.0, + 1094.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 489.0, + 1208.0, + 489.0, + 1208.0, + 527.0, + 1157.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 495.0, + 1322.0, + 495.0, + 1322.0, + 505.0, + 1312.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 530.0, + 608.0, + 530.0, + 608.0, + 568.0, + 299.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 524.0, + 771.0, + 524.0, + 771.0, + 567.0, + 743.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 530.0, + 1136.0, + 530.0, + 1136.0, + 563.0, + 1065.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 533.0, + 1347.0, + 533.0, + 1347.0, + 558.0, + 1286.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 567.0, + 707.0, + 567.0, + 707.0, + 642.0, + 299.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 554.0, + 778.0, + 554.0, + 778.0, + 637.0, + 738.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 562.0, + 823.0, + 562.0, + 823.0, + 642.0, + 781.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 599.0, + 919.0, + 599.0, + 919.0, + 643.0, + 879.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 567.0, + 1418.0, + 567.0, + 1418.0, + 659.0, + 997.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 643.0, + 593.0, + 643.0, + 593.0, + 679.0, + 300.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 632.0, + 922.0, + 632.0, + 922.0, + 673.0, + 879.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 637.0, + 1159.0, + 637.0, + 1159.0, + 673.0, + 1043.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 634.0, + 1382.0, + 634.0, + 1382.0, + 674.0, + 1254.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 344.0, + 831.0, + 344.0, + 831.0, + 372.0, + 772.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.75, + 352.0, + 972.75, + 352.0, + 972.75, + 369.0, + 927.75, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 461.0, + 974.0, + 461.0, + 974.0, + 481.0, + 927.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 634.5, + 804.0, + 634.5, + 804.0, + 670.5, + 801.0, + 670.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1851.0, + 1403.0, + 1851.0, + 1403.0, + 1883.0, + 296.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1880.0, + 1407.0, + 1880.0, + 1407.0, + 1919.0, + 292.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1944.0, + 296.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1944.0, + 1403.0, + 1944.0, + 1403.0, + 1976.0, + 296.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1405.0, + 2003.0, + 1405.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1416.0, + 1406.0, + 1416.0, + 1406.0, + 1452.0, + 293.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1446.0, + 1405.0, + 1446.0, + 1405.0, + 1483.0, + 293.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1479.0, + 1404.0, + 1479.0, + 1404.0, + 1512.0, + 294.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1508.0, + 571.0, + 1508.0, + 571.0, + 1544.0, + 293.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1508.0, + 1394.0, + 1508.0, + 1394.0, + 1544.0, + 601.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1061.0, + 1406.0, + 1061.0, + 1406.0, + 1098.0, + 294.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1093.0, + 1407.0, + 1093.0, + 1407.0, + 1129.0, + 293.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1122.0, + 1404.0, + 1122.0, + 1404.0, + 1155.0, + 296.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1153.0, + 1406.0, + 1153.0, + 1406.0, + 1190.0, + 293.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1182.0, + 987.0, + 1182.0, + 987.0, + 1221.0, + 293.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1553.0, + 1404.0, + 1553.0, + 1404.0, + 1591.0, + 294.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1586.0, + 653.0, + 1586.0, + 653.0, + 1620.0, + 294.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 1586.0, + 1404.0, + 1586.0, + 1404.0, + 1620.0, + 683.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1615.0, + 1237.0, + 1615.0, + 1237.0, + 1652.0, + 294.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1661.0, + 1402.0, + 1661.0, + 1402.0, + 1699.0, + 294.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1692.0, + 1405.0, + 1692.0, + 1405.0, + 1729.0, + 294.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1720.0, + 699.0, + 1720.0, + 699.0, + 1763.0, + 293.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1231.0, + 1404.0, + 1231.0, + 1404.0, + 1265.0, + 295.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1261.0, + 1405.0, + 1261.0, + 1405.0, + 1297.0, + 293.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1293.0, + 880.0, + 1293.0, + 880.0, + 1326.0, + 297.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1336.0, + 1283.0, + 1336.0, + 1283.0, + 1376.0, + 295.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 1336.0, + 1403.0, + 1336.0, + 1403.0, + 1376.0, + 1312.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1368.0, + 452.0, + 1368.0, + 452.0, + 1402.0, + 294.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 1368.0, + 493.0, + 1368.0, + 493.0, + 1402.0, + 481.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 984.0, + 1404.0, + 984.0, + 1404.0, + 1019.0, + 298.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1014.0, + 1394.0, + 1014.0, + 1394.0, + 1048.0, + 296.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 824.0, + 1403.0, + 824.0, + 1403.0, + 859.0, + 371.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 855.0, + 1314.0, + 855.0, + 1314.0, + 890.0, + 393.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 893.0, + 1056.0, + 893.0, + 1056.0, + 934.0, + 366.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 893.0, + 1404.0, + 893.0, + 1404.0, + 934.0, + 1100.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 925.0, + 812.0, + 925.0, + 812.0, + 962.0, + 392.0, + 962.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1766, + 1404, + 1766, + 1404, + 1893, + 297, + 1893 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1602, + 1404, + 1602, + 1404, + 1724, + 297, + 1724 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 768, + 1404, + 768, + 1404, + 924, + 297, + 924 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1942, + 1401, + 1942, + 1401, + 2034, + 299, + 2034 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 300, + 1381, + 1400, + 1381, + 1400, + 1473, + 300, + 1473 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 621, + 1895, + 1078, + 1895, + 1078, + 1937, + 621, + 1937 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 294, + 1487, + 1401, + 1487, + 1401, + 1550, + 294, + 1550 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 293, + 692, + 1401, + 692, + 1401, + 755, + 293, + 755 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 663, + 1553, + 1036, + 1553, + 1036, + 1597, + 663, + 1597 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 650, + 1720, + 1045, + 1720, + 1045, + 1763, + 650, + 1763 + ], + "score": 0.937 + }, + { + "category_id": 8, + "poly": [ + 635, + 1336, + 1063, + 1336, + 1063, + 1378, + 635, + 1378 + ], + "score": 0.927 + }, + { + "category_id": 4, + "poly": [ + 296, + 578, + 1397, + 578, + 1397, + 643, + 296, + 643 + ], + "score": 0.911 + }, + { + "category_id": 1, + "poly": [ + 292, + 1089, + 1357, + 1089, + 1357, + 1123, + 292, + 1123 + ], + "score": 0.874 + }, + { + "category_id": 1, + "poly": [ + 291, + 1299, + 1292, + 1299, + 1292, + 1332, + 291, + 1332 + ], + "score": 0.851 + }, + { + "category_id": 1, + "poly": [ + 354, + 1141, + 1289, + 1141, + 1289, + 1281, + 354, + 1281 + ], + "score": 0.829 + }, + { + "category_id": 3, + "poly": [ + 778, + 230, + 1389, + 230, + 1389, + 540, + 778, + 540 + ], + "score": 0.814 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2111, + 840, + 2111 + ], + "score": 0.77 + }, + { + "category_id": 1, + "poly": [ + 298, + 938, + 1406, + 938, + 1406, + 1082, + 298, + 1082 + ], + "score": 0.723 + }, + { + "category_id": 8, + "poly": [ + 539, + 1040, + 1140, + 1040, + 1140, + 1082, + 539, + 1082 + ], + "score": 0.509 + }, + { + "category_id": 1, + "poly": [ + 319, + 445, + 731, + 445, + 731, + 498, + 319, + 498 + ], + "score": 0.246 + }, + { + "category_id": 1, + "poly": [ + 319, + 513, + 525, + 513, + 525, + 537, + 319, + 537 + ], + "score": 0.226 + }, + { + "category_id": 1, + "poly": [ + 315, + 242, + 768, + 242, + 768, + 431, + 315, + 431 + ], + "score": 0.181 + }, + { + "category_id": 13, + "poly": [ + 708, + 1142, + 965, + 1142, + 965, + 1185, + 708, + 1185 + ], + "score": 0.94, + "latex": "S _ { i j } = S ( \\pmb { h } _ { i } ^ { A } , \\pmb { h } _ { j } ^ { B } ) \\in \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 967, + 1232, + 1164, + 1232, + 1164, + 1282, + 967, + 1282 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\hat { \\pmb { h } } _ { i } ^ { A } = \\sum _ { j } \\alpha _ { i j } \\pmb { h } _ { j } ^ { B } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 719, + 999, + 956, + 999, + 956, + 1038, + 719, + 1038 + ], + "score": 0.92, + "latex": "\\{ h _ { 1 } ^ { B } , \\ldots , h _ { n } ^ { B } \\} \\subset \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 1303, + 1488, + 1393, + 1488, + 1393, + 1522, + 1303, + 1522 + ], + "score": 0.92, + "latex": "S ( { \\pmb x } , { \\pmb y } )" + }, + { + "category_id": 14, + "poly": [ + 662, + 1553, + 1033, + 1553, + 1033, + 1598, + 662, + 1598 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { S _ { i j } = ( \\mathrm { H o W } _ { i } ^ { A } ) ^ { T } U ^ { T } V ( \\mathrm { H o W } _ { j } ^ { B } ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 531, + 1664, + 597, + 1664, + 597, + 1693, + 531, + 1693 + ], + "score": 0.92, + "latex": "U ^ { T } V" + }, + { + "category_id": 14, + "poly": [ + 650, + 1718, + 1045, + 1718, + 1045, + 1764, + 650, + 1764 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { S _ { i j } = ( \\mathrm { H o W } _ { i } ^ { A } ) ^ { T } U ^ { T } D U ( \\mathrm { H o W } _ { j } ^ { B } ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 541, + 1239, + 580, + 1239, + 580, + 1277, + 541, + 1277 + ], + "score": 0.91, + "latex": " { \\boldsymbol { h } } _ { i } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 376, + 1601, + 554, + 1601, + 554, + 1636, + 376, + 1636 + ], + "score": 0.91, + "latex": "U , V ~ \\in ~ \\mathbb { R } ^ { k \\times d _ { h } }" + }, + { + "category_id": 14, + "poly": [ + 619, + 1893, + 1077, + 1893, + 1077, + 1937, + 619, + 1937 + ], + "score": 0.91, + "latex": "S _ { i j } = f ( U ( \\mathrm { H o W } _ { i } ^ { A } ) ) ^ { T } D ~ f ( U ( \\mathrm { H o W } _ { j } ^ { B } ) ) ," + }, + { + "category_id": 13, + "poly": [ + 1064, + 1143, + 1104, + 1143, + 1104, + 1185, + 1064, + 1185 + ], + "score": 0.91, + "latex": "h _ { j } ^ { B }" + }, + { + "category_id": 13, + "poly": [ + 1190, + 1085, + 1230, + 1085, + 1230, + 1123, + 1190, + 1123 + ], + "score": 0.91, + "latex": " { \\boldsymbol { h } } _ { i } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 533, + 999, + 699, + 999, + 699, + 1038, + 533, + 1038 + ], + "score": 0.91, + "latex": "\\{ h _ { 1 } ^ { A } , \\ldots , h _ { m } ^ { A } \\}" + }, + { + "category_id": 13, + "poly": [ + 933, + 1189, + 1280, + 1189, + 1280, + 1226, + 933, + 1226 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\alpha _ { i j } = \\exp ( S _ { i j } ) / \\sum _ { k } \\exp ( S _ { i k } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 372, + 1090, + 462, + 1090, + 462, + 1120, + 372, + 1120 + ], + "score": 0.9, + "latex": "d _ { h } \\gg d" + }, + { + "category_id": 13, + "poly": [ + 1116, + 1516, + 1234, + 1516, + 1234, + 1551, + 1116, + 1551 + ], + "score": 0.9, + "latex": "\\pmb { x } ^ { T } \\pmb { U } ^ { T } \\pmb { V } \\pmb { y }" + }, + { + "category_id": 13, + "poly": [ + 1012, + 771, + 1087, + 771, + 1087, + 802, + 1012, + 802 + ], + "score": 0.9, + "latex": "\\mathrm { H o W } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1693, + 385, + 1693, + 385, + 1724, + 297, + 1724 + ], + "score": 0.9, + "latex": "U ^ { T } D U" + }, + { + "category_id": 13, + "poly": [ + 297, + 1973, + 513, + 1973, + 513, + 2006, + 297, + 2006 + ], + "score": 0.89, + "latex": "f ( x ) = \\operatorname* { m a x } ( 0 , x )" + }, + { + "category_id": 13, + "poly": [ + 690, + 1194, + 730, + 1194, + 730, + 1225, + 690, + 1225 + ], + "score": 0.89, + "latex": "\\alpha _ { i j }" + }, + { + "category_id": 13, + "poly": [ + 375, + 1942, + 431, + 1942, + 431, + 1974, + 375, + 1974 + ], + "score": 0.88, + "latex": "f ( x )" + }, + { + "category_id": 13, + "poly": [ + 515, + 1764, + 638, + 1764, + 638, + 1797, + 515, + 1797 + ], + "score": 0.87, + "latex": "D \\in \\mathbb { R } ^ { k \\times k }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1764, + 503, + 1764, + 503, + 1797, + 371, + 1797 + ], + "score": 0.87, + "latex": "U \\in \\mathbb { R } ^ { k \\times d _ { h } }" + }, + { + "category_id": 13, + "poly": [ + 688, + 1768, + 714, + 1768, + 714, + 1796, + 688, + 1796 + ], + "score": 0.84, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 621, + 1606, + 641, + 1606, + 641, + 1632, + 621, + 1632 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 14, + "poly": [ + 633, + 1335, + 1058, + 1335, + 1058, + 1380, + 633, + 1380 + ], + "score": 0.82, + "latex": "S ( h _ { i } ^ { A } , h _ { j } ^ { B } ) \\implies S ( \\mathrm { H o W } _ { i } ^ { A } , \\mathrm { H o W } _ { j } ^ { B } ) ." + }, + { + "category_id": 13, + "poly": [ + 799, + 1798, + 883, + 1798, + 883, + 1835, + 799, + 1835 + ], + "score": 0.73, + "latex": "\\mathrm { H o W } _ { i } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 889, + 773, + 902, + 773, + 902, + 798, + 889, + 798 + ], + "score": 0.66, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 799, + 1797, + 977, + 1797, + 977, + 1838, + 799, + 1838 + ], + "score": 0.54, + "latex": "\\mathrm { \\bar { H } o W } _ { i } ^ { A } , \\mathrm { H o W } _ { j } ^ { B }" + }, + { + "category_id": 13, + "poly": [ + 813, + 1041, + 1158, + 1041, + 1158, + 1081, + 813, + 1081 + ], + "score": 0.52, + "latex": "\\left\\{ \\mathrm { H o W } _ { 1 } ^ { B } , \\ldots , \\mathrm { H o W } _ { n } ^ { B } \\right\\} \\subset \\mathbb { R } ^ { d _ { h } } ," + }, + { + "category_id": 13, + "poly": [ + 536, + 1042, + 795, + 1042, + 795, + 1081, + 536, + 1081 + ], + "score": 0.52, + "latex": "\\{ \\mathrm { H o W } _ { 1 } ^ { A } , \\dots , \\mathrm { H o W } _ { m } ^ { A } \\}" + }, + { + "category_id": 14, + "poly": [ + 536, + 1041, + 1157, + 1041, + 1157, + 1081, + 536, + 1081 + ], + "score": 0.43, + "latex": "\\{ \\mathrm { H o W } _ { 1 } ^ { A } , \\dots , \\mathrm { H o W } _ { m } ^ { A } \\} , ~ \\{ \\mathrm { H o W } _ { 1 } ^ { B } , \\dots , \\mathrm { H o W } _ { n } ^ { B } \\} \\subset \\mathbb { R } ^ { d _ { h } } ," + }, + { + "category_id": 13, + "poly": [ + 975, + 404, + 995, + 404, + 995, + 422, + 975, + 422 + ], + "score": 0.4, + "latex": "\\twoheadrightarrow" + }, + { + "category_id": 13, + "poly": [ + 618, + 1091, + 640, + 1091, + 640, + 1117, + 618, + 1117 + ], + "score": 0.34, + "latex": "\\mathbf { B }" + }, + { + "category_id": 13, + "poly": [ + 1199, + 1148, + 1221, + 1148, + 1221, + 1176, + 1199, + 1176 + ], + "score": 0.32, + "latex": "\\mathbf { B }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 576.0, + 1402.0, + 576.0, + 1402.0, + 617.0, + 292.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 608.0, + 1040.0, + 608.0, + 1040.0, + 647.0, + 294.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 227.0, + 1229.0, + 227.0, + 1229.0, + 269.0, + 907.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 284.0, + 921.0, + 284.0, + 921.0, + 318.0, + 795.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 282.0, + 1118.0, + 282.0, + 1118.0, + 318.0, + 1010.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 283.0, + 1340.0, + 283.0, + 1340.0, + 322.0, + 1225.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 351.0, + 932.0, + 351.0, + 932.0, + 385.0, + 794.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 351.0, + 1140.0, + 351.0, + 1140.0, + 385.0, + 953.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 352.0, + 1375.0, + 352.0, + 1375.0, + 384.0, + 1186.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 396.0, + 974.0, + 396.0, + 974.0, + 430.0, + 778.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 396.0, + 1165.0, + 396.0, + 1165.0, + 430.0, + 996.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 397.0, + 1343.0, + 397.0, + 1343.0, + 432.0, + 1215.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 450.0, + 928.0, + 450.0, + 928.0, + 479.0, + 793.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 446.0, + 1109.0, + 446.0, + 1109.0, + 487.0, + 988.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 449.0, + 1387.0, + 449.0, + 1387.0, + 484.0, + 1201.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 500.0, + 904.0, + 500.0, + 904.0, + 533.0, + 814.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 501.0, + 1143.0, + 501.0, + 1143.0, + 534.0, + 966.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 500.0, + 1374.0, + 500.0, + 1374.0, + 535.0, + 1184.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 863.0, + 2086.0, + 863.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1761.0, + 370.0, + 1761.0, + 370.0, + 1804.0, + 292.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 1761.0, + 514.0, + 1761.0, + 514.0, + 1804.0, + 504.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 1761.0, + 687.0, + 1761.0, + 687.0, + 1804.0, + 639.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1761.0, + 1406.0, + 1761.0, + 1406.0, + 1804.0, + 715.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1792.0, + 798.0, + 1792.0, + 798.0, + 1841.0, + 286.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1792.0, + 1410.0, + 1792.0, + 1410.0, + 1841.0, + 978.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1831.0, + 1404.0, + 1831.0, + 1404.0, + 1867.0, + 294.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1861.0, + 774.0, + 1861.0, + 774.0, + 1895.0, + 295.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1598.0, + 375.0, + 1598.0, + 375.0, + 1641.0, + 292.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1598.0, + 620.0, + 1598.0, + 620.0, + 1641.0, + 555.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 1598.0, + 1405.0, + 1598.0, + 1405.0, + 1641.0, + 642.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1634.0, + 1406.0, + 1634.0, + 1406.0, + 1671.0, + 292.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1664.0, + 530.0, + 1664.0, + 530.0, + 1699.0, + 292.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1664.0, + 1404.0, + 1664.0, + 1404.0, + 1699.0, + 598.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1689.0, + 296.0, + 1689.0, + 296.0, + 1731.0, + 293.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1689.0, + 452.0, + 1689.0, + 452.0, + 1731.0, + 386.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 769.0, + 888.0, + 769.0, + 888.0, + 806.0, + 295.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 769.0, + 1011.0, + 769.0, + 1011.0, + 806.0, + 903.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 769.0, + 1406.0, + 769.0, + 1406.0, + 806.0, + 1088.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 802.0, + 1402.0, + 802.0, + 1402.0, + 835.0, + 296.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 830.0, + 1406.0, + 830.0, + 1406.0, + 867.0, + 294.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 858.0, + 1405.0, + 858.0, + 1405.0, + 899.0, + 292.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 890.0, + 824.0, + 890.0, + 824.0, + 930.0, + 294.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1939.0, + 374.0, + 1939.0, + 374.0, + 1980.0, + 294.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1939.0, + 1403.0, + 1939.0, + 1403.0, + 1980.0, + 432.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2010.0, + 514.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 441.0, + 2000.0, + 441.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1380.0, + 1404.0, + 1380.0, + 1404.0, + 1414.0, + 296.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1409.0, + 1403.0, + 1409.0, + 1403.0, + 1444.0, + 294.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1442.0, + 384.0, + 1442.0, + 384.0, + 1477.0, + 295.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1483.0, + 1302.0, + 1483.0, + 1302.0, + 1525.0, + 293.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1483.0, + 1403.0, + 1483.0, + 1403.0, + 1525.0, + 1394.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1512.0, + 1115.0, + 1512.0, + 1115.0, + 1557.0, + 292.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1512.0, + 1364.0, + 1512.0, + 1364.0, + 1557.0, + 1235.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 694.0, + 1403.0, + 694.0, + 1403.0, + 726.0, + 297.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 722.0, + 1270.0, + 722.0, + 1270.0, + 759.0, + 293.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1081.0, + 371.0, + 1081.0, + 371.0, + 1130.0, + 293.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1081.0, + 617.0, + 1081.0, + 617.0, + 1130.0, + 463.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 1081.0, + 1189.0, + 1081.0, + 1189.0, + 1130.0, + 641.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 1081.0, + 1360.0, + 1081.0, + 1360.0, + 1130.0, + 1231.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1296.0, + 1298.0, + 1296.0, + 1298.0, + 1338.0, + 291.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1140.0, + 707.0, + 1140.0, + 707.0, + 1184.0, + 360.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1140.0, + 1063.0, + 1140.0, + 1063.0, + 1184.0, + 966.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1140.0, + 1198.0, + 1140.0, + 1198.0, + 1184.0, + 1105.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1140.0, + 1232.0, + 1140.0, + 1232.0, + 1184.0, + 1222.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1186.0, + 689.0, + 1186.0, + 689.0, + 1230.0, + 358.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1186.0, + 932.0, + 1186.0, + 932.0, + 1230.0, + 731.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 1186.0, + 1290.0, + 1186.0, + 1290.0, + 1230.0, + 1281.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1235.0, + 540.0, + 1235.0, + 540.0, + 1288.0, + 355.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1235.0, + 966.0, + 1235.0, + 966.0, + 1288.0, + 581.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1235.0, + 1176.0, + 1235.0, + 1176.0, + 1288.0, + 1165.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 938.0, + 1404.0, + 938.0, + 1404.0, + 973.0, + 296.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 968.0, + 532.0, + 968.0, + 532.0, + 1056.0, + 284.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 968.0, + 718.0, + 968.0, + 718.0, + 1056.0, + 700.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 968.0, + 1404.0, + 968.0, + 1404.0, + 1056.0, + 957.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 1034.0, + 535.0, + 1034.0, + 535.0, + 1087.0, + 530.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1034.0, + 1165.0, + 1034.0, + 1165.0, + 1087.0, + 1159.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 443.0, + 730.0, + 443.0, + 730.0, + 473.0, + 317.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 474.0, + 547.0, + 474.0, + 547.0, + 496.0, + 317.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 511.0, + 526.0, + 511.0, + 526.0, + 539.0, + 317.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 243.0, + 753.0, + 243.0, + 753.0, + 272.0, + 316.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 269.0, + 753.0, + 269.0, + 753.0, + 299.0, + 315.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 297.0, + 737.0, + 297.0, + 737.0, + 325.0, + 316.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 324.0, + 767.0, + 324.0, + 767.0, + 350.0, + 317.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 352.0, + 737.0, + 352.0, + 737.0, + 377.0, + 317.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 379.0, + 742.0, + 379.0, + 742.0, + 404.0, + 317.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 405.0, + 687.0, + 405.0, + 687.0, + 432.0, + 316.0, + 432.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1812, + 1405, + 1812, + 1405, + 1969, + 297, + 1969 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1638, + 1404, + 1638, + 1404, + 1803, + 297, + 1803 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1394, + 1404, + 1394, + 1404, + 1487, + 297, + 1487 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 300, + 224, + 1400, + 224, + 1400, + 931, + 300, + 931 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1562, + 1400, + 1562, + 1400, + 1626, + 298, + 1626 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 582, + 1504, + 1115, + 1504, + 1115, + 1549, + 582, + 1549 + ], + "score": 0.937 + }, + { + "category_id": 0, + "poly": [ + 299, + 1265, + 836, + 1265, + 836, + 1302, + 299, + 1302 + ], + "score": 0.933 + }, + { + "category_id": 8, + "poly": [ + 344, + 1987, + 1343, + 1987, + 1343, + 2039, + 344, + 2039 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 300, + 1336, + 719, + 1336, + 719, + 1368, + 300, + 1368 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.743 + }, + { + "category_id": 1, + "poly": [ + 298, + 1116, + 1400, + 1116, + 1400, + 1208, + 298, + 1208 + ], + "score": 0.588 + }, + { + "category_id": 4, + "poly": [ + 297, + 961, + 1405, + 961, + 1405, + 1115, + 297, + 1115 + ], + "score": 0.356 + }, + { + "category_id": 13, + "poly": [ + 694, + 1763, + 962, + 1763, + 962, + 1802, + 694, + 1802 + ], + "score": 0.94, + "latex": "\\{ \\pmb { w } _ { 1 } ^ { Q } , \\ldots , \\pmb { w } _ { n } ^ { Q } \\} \\subset \\mathbb { R } ^ { 9 0 0 }" + }, + { + "category_id": 14, + "poly": [ + 582, + 1504, + 1115, + 1504, + 1115, + 1547, + 582, + 1547 + ], + "score": 0.92, + "latex": "U _ { A } = \\{ \\pmb { u } _ { 1 } ^ { A } , \\ldots , \\pmb { u } _ { m } ^ { A } \\} , \\quad U _ { B } = \\{ \\pmb { u } _ { 1 } ^ { B } , \\ldots , \\pmb { u } _ { n } ^ { B } \\} ." + }, + { + "category_id": 13, + "poly": [ + 298, + 1763, + 635, + 1763, + 635, + 1802, + 298, + 1802 + ], + "score": 0.92, + "latex": "\\{ \\pmb { w } _ { 1 } ^ { C } , \\ldots , \\pmb { w } _ { m } ^ { C } \\} \\subset \\mathbb { R } ^ { 9 0 0 + 2 0 + 1 }" + }, + { + "category_id": 13, + "poly": [ + 623, + 1909, + 670, + 1909, + 670, + 1936, + 623, + 1936 + ], + "score": 0.89, + "latex": "\\mathrm { e m } _ { i }" + }, + { + "category_id": 14, + "poly": [ + 355, + 1986, + 1340, + 1986, + 1340, + 2045, + 355, + 2045 + ], + "score": 0.88, + "latex": "\\hat { g } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } g _ { j } ^ { Q } , \\quad \\alpha _ { i j } \\propto \\exp ( S ( g _ { i } ^ { C } , g _ { j } ^ { Q } ) ) , \\quad S ( x , y ) = \\mathrm { R e L U } ( W x ) ^ { T } \\mathrm { R e L U } ( W y ) ," + }, + { + "category_id": 13, + "poly": [ + 1095, + 1940, + 1125, + 1940, + 1125, + 1969, + 1095, + 1969 + ], + "score": 0.86, + "latex": "\\mathbf { \\nabla } _ { \\mathbf { \\boldsymbol { g } } _ { i } }" + }, + { + "category_id": 13, + "poly": [ + 775, + 1641, + 803, + 1641, + 803, + 1672, + 775, + 1672 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 918, + 1055, + 946, + 1055, + 946, + 1086, + 918, + 1086 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1335, + 1846, + 1363, + 1846, + 1363, + 1876, + 1335, + 1876 + ], + "score": 0.84, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 823, + 1024, + 850, + 1024, + 850, + 1055, + 823, + 1055 + ], + "score": 0.84, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 467, + 1937, + 494, + 1937, + 494, + 1968, + 467, + 1968 + ], + "score": 0.83, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1367, + 1565, + 1393, + 1565, + 1393, + 1595, + 1367, + 1595 + ], + "score": 0.83, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 973, + 1907, + 1000, + 1907, + 1000, + 1933, + 973, + 1933 + ], + "score": 0.83, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1083, + 1565, + 1111, + 1565, + 1111, + 1591, + 1083, + 1591 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 745, + 1025, + 773, + 1025, + 773, + 1052, + 745, + 1052 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 823, + 1734, + 851, + 1734, + 851, + 1760, + 823, + 1760 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 695, + 1641, + 724, + 1641, + 724, + 1669, + 695, + 1669 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 931, + 1845, + 959, + 1845, + 959, + 1873, + 931, + 1873 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 810, + 1115, + 837, + 1115, + 837, + 1143, + 810, + 1143 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 889, + 1146, + 917, + 1146, + 917, + 1173, + 889, + 1173 + ], + "score": 0.8, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 707, + 1055, + 735, + 1055, + 735, + 1083, + 707, + 1083 + ], + "score": 0.8, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1201, + 1646, + 1227, + 1646, + 1227, + 1669, + 1201, + 1669 + ], + "score": 0.71, + "latex": "\\textbf { \\em w }" + }, + { + "category_id": 13, + "poly": [ + 1215, + 1427, + 1238, + 1427, + 1238, + 1453, + 1215, + 1453 + ], + "score": 0.51, + "latex": "\\mathbf { B }" + }, + { + "category_id": 13, + "poly": [ + 1212, + 1565, + 1234, + 1565, + 1234, + 1592, + 1212, + 1592 + ], + "score": 0.44, + "latex": "\\mathbf { B }" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 243.0, + 797.0, + 243.0, + 797.0, + 279.0, + 427.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 266.0, + 1079.0, + 266.0, + 1079.0, + 291.0, + 1004.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 313.0, + 765.0, + 313.0, + 765.0, + 351.0, + 383.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 297.0, + 1130.0, + 297.0, + 1130.0, + 350.0, + 957.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 349.0, + 606.0, + 349.0, + 606.0, + 441.0, + 448.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 330.0, + 1151.0, + 330.0, + 1151.0, + 415.0, + 930.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 394.0, + 1343.0, + 394.0, + 1343.0, + 444.0, + 1186.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 430.0, + 605.0, + 430.0, + 605.0, + 484.0, + 445.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 432.0, + 861.0, + 432.0, + 861.0, + 487.0, + 704.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 451.0, + 1151.0, + 451.0, + 1151.0, + 487.0, + 1121.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 480.0, + 380.0, + 480.0, + 380.0, + 502.0, + 361.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 479.0, + 632.0, + 479.0, + 632.0, + 516.0, + 419.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 483.0, + 896.0, + 483.0, + 896.0, + 516.0, + 679.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 528.0, + 844.0, + 528.0, + 844.0, + 560.0, + 375.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 522.0, + 1089.0, + 522.0, + 1089.0, + 551.0, + 1000.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 551.0, + 1040.0, + 551.0, + 1040.0, + 584.0, + 999.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 551.0, + 1094.0, + 551.0, + 1094.0, + 584.0, + 1049.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 555.0, + 1055.0, + 555.0, + 1055.0, + 579.0, + 1035.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 578.0, + 861.0, + 578.0, + 861.0, + 613.0, + 502.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 571.0, + 1388.0, + 571.0, + 1388.0, + 608.0, + 1128.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 609.0, + 634.0, + 609.0, + 634.0, + 646.0, + 423.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 610.0, + 937.0, + 610.0, + 937.0, + 648.0, + 717.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 636.0, + 605.0, + 636.0, + 605.0, + 688.0, + 296.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 637.0, + 907.0, + 637.0, + 907.0, + 686.0, + 750.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 678.0, + 545.0, + 678.0, + 545.0, + 719.0, + 497.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 672.0, + 1174.0, + 672.0, + 1174.0, + 707.0, + 919.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 722.0, + 427.0, + 722.0, + 427.0, + 781.0, + 326.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 738.0, + 597.0, + 738.0, + 597.0, + 760.0, + 561.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 725.0, + 715.0, + 725.0, + 715.0, + 764.0, + 671.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 731.0, + 1294.0, + 731.0, + 1294.0, + 768.0, + 1149.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 778.0, + 423.0, + 778.0, + 423.0, + 808.0, + 330.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 791.0, + 1171.0, + 791.0, + 1171.0, + 801.0, + 1155.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 799.0, + 422.0, + 799.0, + 422.0, + 835.0, + 335.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 837.0, + 1319.0, + 837.0, + 1319.0, + 868.0, + 1256.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 845.0, + 1265.0, + 845.0, + 1265.0, + 860.0, + 1246.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 860.0, + 436.0, + 860.0, + 436.0, + 902.0, + 300.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 857.0, + 614.0, + 857.0, + 614.0, + 902.0, + 450.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 857.0, + 729.0, + 857.0, + 729.0, + 883.0, + 636.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 866.0, + 809.0, + 866.0, + 809.0, + 894.0, + 763.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 865.0, + 897.0, + 865.0, + 897.0, + 897.0, + 846.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 900.0, + 567.0, + 900.0, + 567.0, + 929.0, + 485.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 900.0, + 877.0, + 900.0, + 877.0, + 934.0, + 786.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 891.0, + 1376.0, + 891.0, + 1376.0, + 919.0, + 1122.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.25, + 402.0, + 1413.25, + 402.0, + 1413.25, + 470.0, + 1341.25, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 429.5, + 425.0, + 429.5, + 425.0, + 496.0, + 362.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1313.75, + 516.0, + 1365.75, + 516.0, + 1365.75, + 565.0, + 1313.75, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.25, + 796.5, + 337.25, + 796.5, + 337.25, + 817.0, + 294.25, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1261.0, + 840.0, + 1261.0, + 840.0, + 1307.0, + 292.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1336.0, + 723.0, + 1336.0, + 723.0, + 1372.0, + 295.0, + 1372.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": [ + 296.0, + 963.0, + 1402.0, + 963.0, + 1402.0, + 996.0, + 296.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 994.0, + 1402.0, + 994.0, + 1402.0, + 1027.0, + 295.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1023.0, + 744.0, + 1023.0, + 744.0, + 1057.0, + 296.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 1023.0, + 822.0, + 1023.0, + 822.0, + 1057.0, + 774.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1023.0, + 1352.0, + 1023.0, + 1352.0, + 1057.0, + 851.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1053.0, + 706.0, + 1053.0, + 706.0, + 1088.0, + 295.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 1053.0, + 917.0, + 1053.0, + 917.0, + 1088.0, + 736.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1053.0, + 1401.0, + 1053.0, + 1401.0, + 1088.0, + 947.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1086.0, + 787.0, + 1086.0, + 787.0, + 1119.0, + 296.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1807.0, + 1407.0, + 1807.0, + 1407.0, + 1854.0, + 292.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1845.0, + 930.0, + 1845.0, + 930.0, + 1878.0, + 296.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1845.0, + 1334.0, + 1845.0, + 1334.0, + 1878.0, + 960.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1364.0, + 1845.0, + 1405.0, + 1845.0, + 1405.0, + 1878.0, + 1364.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1873.0, + 1403.0, + 1873.0, + 1403.0, + 1911.0, + 294.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1904.0, + 622.0, + 1904.0, + 622.0, + 1941.0, + 295.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1904.0, + 972.0, + 1904.0, + 972.0, + 1941.0, + 671.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 1904.0, + 1405.0, + 1904.0, + 1405.0, + 1941.0, + 1001.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1935.0, + 466.0, + 1935.0, + 466.0, + 1971.0, + 292.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 1935.0, + 1094.0, + 1935.0, + 1094.0, + 1971.0, + 495.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1935.0, + 1213.0, + 1935.0, + 1213.0, + 1971.0, + 1126.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1640.0, + 694.0, + 1640.0, + 694.0, + 1673.0, + 295.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 1640.0, + 774.0, + 1640.0, + 774.0, + 1673.0, + 725.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1640.0, + 1200.0, + 1640.0, + 1200.0, + 1673.0, + 804.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1640.0, + 1404.0, + 1640.0, + 1404.0, + 1673.0, + 1228.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1668.0, + 1405.0, + 1668.0, + 1405.0, + 1706.0, + 294.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1702.0, + 1405.0, + 1702.0, + 1405.0, + 1738.0, + 294.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1730.0, + 822.0, + 1730.0, + 822.0, + 1768.0, + 292.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1730.0, + 1405.0, + 1730.0, + 1405.0, + 1768.0, + 852.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1757.0, + 297.0, + 1757.0, + 297.0, + 1807.0, + 292.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 1757.0, + 693.0, + 1757.0, + 693.0, + 1807.0, + 636.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1757.0, + 975.0, + 1757.0, + 975.0, + 1807.0, + 963.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1393.0, + 1405.0, + 1393.0, + 1405.0, + 1431.0, + 294.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1425.0, + 1214.0, + 1425.0, + 1214.0, + 1459.0, + 296.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1425.0, + 1405.0, + 1425.0, + 1405.0, + 1459.0, + 1239.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1458.0, + 613.0, + 1458.0, + 613.0, + 1489.0, + 293.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1558.0, + 1082.0, + 1558.0, + 1082.0, + 1600.0, + 292.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 1558.0, + 1211.0, + 1558.0, + 1211.0, + 1600.0, + 1112.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1558.0, + 1366.0, + 1558.0, + 1366.0, + 1600.0, + 1235.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1558.0, + 1404.0, + 1558.0, + 1404.0, + 1600.0, + 1394.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1590.0, + 1317.0, + 1590.0, + 1317.0, + 1629.0, + 293.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1114.0, + 809.0, + 1114.0, + 809.0, + 1148.0, + 296.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 1114.0, + 1400.0, + 1114.0, + 1400.0, + 1148.0, + 838.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1144.0, + 888.0, + 1144.0, + 888.0, + 1180.0, + 294.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 1144.0, + 1404.0, + 1144.0, + 1404.0, + 1180.0, + 918.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1176.0, + 994.0, + 1176.0, + 994.0, + 1210.0, + 296.0, + 1210.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 963, + 1406, + 963, + 1406, + 1150, + 297, + 1150 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 296, + 761, + 1406, + 761, + 1406, + 888, + 296, + 888 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1562, + 1404, + 1562, + 1404, + 1657, + 297, + 1657 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1403, + 1941, + 1403, + 2036, + 299, + 2036 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 301, + 1368, + 1399, + 1368, + 1399, + 1462, + 301, + 1462 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 292, + 227, + 1403, + 227, + 1403, + 299, + 292, + 299 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 295, + 561, + 1400, + 561, + 1400, + 631, + 295, + 631 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 290, + 311, + 1403, + 311, + 1403, + 376, + 290, + 376 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 331, + 1478, + 1313, + 1478, + 1313, + 1533, + 331, + 1533 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 298, + 713, + 976, + 713, + 976, + 750, + 298, + 750 + ], + "score": 0.932 + }, + { + "category_id": 8, + "poly": [ + 445, + 902, + 1253, + 902, + 1253, + 950, + 445, + 950 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 303, + 1740, + 1324, + 1740, + 1324, + 1813, + 303, + 1813 + ], + "score": 0.931 + }, + { + "category_id": 8, + "poly": [ + 484, + 647, + 1206, + 647, + 1206, + 695, + 484, + 695 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 299, + 1892, + 977, + 1892, + 977, + 1929, + 299, + 1929 + ], + "score": 0.929 + }, + { + "category_id": 8, + "poly": [ + 506, + 1829, + 1187, + 1829, + 1187, + 1875, + 506, + 1875 + ], + "score": 0.927 + }, + { + "category_id": 8, + "poly": [ + 517, + 1673, + 1180, + 1673, + 1180, + 1727, + 517, + 1727 + ], + "score": 0.901 + }, + { + "category_id": 8, + "poly": [ + 355, + 390, + 1344, + 390, + 1344, + 503, + 355, + 503 + ], + "score": 0.897 + }, + { + "category_id": 1, + "poly": [ + 298, + 510, + 1214, + 510, + 1214, + 548, + 298, + 548 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1347, + 1838, + 1401, + 1838, + 1401, + 1869, + 1347, + 1869 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1346, + 1188, + 1398, + 1188, + 1398, + 1220, + 1346, + 1220 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1347, + 1307, + 1400, + 1307, + 1400, + 1338, + 1347, + 1338 + ], + "score": 0.875 + }, + { + "category_id": 9, + "poly": [ + 1348, + 1495, + 1400, + 1495, + 1400, + 1526, + 1348, + 1526 + ], + "score": 0.872 + }, + { + "category_id": 9, + "poly": [ + 1346, + 1251, + 1398, + 1251, + 1398, + 1282, + 1346, + 1282 + ], + "score": 0.872 + }, + { + "category_id": 9, + "poly": [ + 1350, + 1746, + 1400, + 1746, + 1400, + 1777, + 1350, + 1777 + ], + "score": 0.841 + }, + { + "category_id": 2, + "poly": [ + 839, + 2088, + 859, + 2088, + 859, + 2113, + 839, + 2113 + ], + "score": 0.809 + }, + { + "category_id": 8, + "poly": [ + 364, + 1176, + 1224, + 1176, + 1224, + 1230, + 364, + 1230 + ], + "score": 0.79 + }, + { + "category_id": 8, + "poly": [ + 355, + 1298, + 1272, + 1298, + 1272, + 1347, + 355, + 1347 + ], + "score": 0.639 + }, + { + "category_id": 1, + "poly": [ + 361, + 1238, + 1249, + 1238, + 1249, + 1291, + 361, + 1291 + ], + "score": 0.608 + }, + { + "category_id": 8, + "poly": [ + 361, + 1238, + 1249, + 1238, + 1249, + 1291, + 361, + 1291 + ], + "score": 0.349 + }, + { + "category_id": 1, + "poly": [ + 355, + 1298, + 1272, + 1298, + 1272, + 1347, + 355, + 1347 + ], + "score": 0.314 + }, + { + "category_id": 8, + "poly": [ + 361, + 391, + 1334, + 391, + 1334, + 438, + 361, + 438 + ], + "score": 0.155 + }, + { + "category_id": 1, + "poly": [ + 364, + 1176, + 1224, + 1176, + 1224, + 1230, + 364, + 1230 + ], + "score": 0.111 + }, + { + "category_id": 8, + "poly": [ + 351, + 454, + 1341, + 454, + 1341, + 502, + 351, + 502 + ], + "score": 0.1 + }, + { + "category_id": 13, + "poly": [ + 373, + 1891, + 565, + 1891, + 565, + 1930, + 373, + 1930 + ], + "score": 0.93, + "latex": "\\{ \\boldsymbol { u } _ { i } ^ { C } \\in \\mathbb { R } ^ { 2 5 0 } \\} _ { i = 1 } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 373, + 711, + 565, + 711, + 565, + 752, + 373, + 752 + ], + "score": 0.93, + "latex": "\\{ \\boldsymbol { u } _ { i } ^ { Q } \\in \\mathbb { R } ^ { 2 5 0 } \\} _ { i = 1 } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 458, + 591, + 567, + 591, + 567, + 629, + 458, + 629 + ], + "score": 0.93, + "latex": "{ h ^ { Q l } , h ^ { Q h } }" + }, + { + "category_id": 13, + "poly": [ + 930, + 260, + 1174, + 260, + 1174, + 300, + 930, + 300 + ], + "score": 0.93, + "latex": "\\mathbf { \\tilde { w } } _ { i } ^ { C } = [ \\mathbf { w } _ { i } ^ { C } ; \\mathrm { e m } _ { i } ; \\bar { \\mathbf { g } } _ { i } ^ { C } ]" + }, + { + "category_id": 13, + "poly": [ + 754, + 510, + 916, + 510, + 916, + 548, + 754, + 548 + ], + "score": 0.92, + "latex": "h ^ { l } , h ^ { h } \\in \\mathbb { R } ^ { 2 5 0 }" + }, + { + "category_id": 14, + "poly": [ + 333, + 1477, + 1314, + 1477, + 1314, + 1531, + 333, + 1531 + ], + "score": 0.91, + "latex": "\\{ \\pmb { v } _ { 1 } ^ { C } , \\ldots , \\pmb { v } _ { m } ^ { C } \\} = \\mathrm { B i L S T M } ( [ { \\pmb { h } } _ { 1 } ^ { C l } ; { \\pmb { h } } _ { 1 } ^ { C h } ; { \\hat { \\pmb { h } } } _ { 1 } ^ { C l } ; { \\hat { \\pmb { h } } } _ { 1 } ^ { C h } ; { \\hat { \\pmb { u } } } _ { 1 } ^ { C l } ] , \\ldots , [ { \\pmb { h } } _ { m } ^ { C l } ; { \\pmb { h } } _ { m } ^ { C h } ; { \\hat { \\pmb { h } } } _ { m } ^ { C l } ; { \\hat { \\pmb { h } } } _ { m } ^ { C h } ; { \\hat { \\pmb { u } } } _ { m } ^ { C } ] ) ." + }, + { + "category_id": 13, + "poly": [ + 373, + 227, + 548, + 227, + 548, + 260, + 373, + 260 + ], + "score": 0.91, + "latex": "W \\in \\mathbb { R } ^ { 3 0 0 \\times 3 0 0 }" + }, + { + "category_id": 14, + "poly": [ + 488, + 647, + 1210, + 647, + 1210, + 694, + 488, + 694 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { U _ { Q } = \\{ \\boldsymbol { { u } } _ { 1 } ^ { Q } , \\ldots , \\boldsymbol { { u } } _ { n } ^ { Q } \\} = \\mathrm { { B i L S T M } } ( [ \\boldsymbol { h } _ { 1 } ^ { Q l } ; \\boldsymbol { h } _ { 1 } ^ { Q h } ] , \\ldots , [ \\boldsymbol { h } _ { n } ^ { Q l } ; \\boldsymbol { h } _ { n } ^ { Q h } ] ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1215, + 1944, + 1254, + 1944, + 1254, + 1973, + 1215, + 1973 + ], + "score": 0.91, + "latex": "U _ { C }" + }, + { + "category_id": 13, + "poly": [ + 900, + 856, + 964, + 856, + 964, + 888, + 900, + 888 + ], + "score": 0.91, + "latex": "C , Q" + }, + { + "category_id": 14, + "poly": [ + 443, + 903, + 1251, + 903, + 1251, + 949, + 443, + 949 + ], + "score": 0.91, + "latex": "\\mathrm { H o W } _ { i } ^ { C } = [ \\pmb { g } _ { i } ^ { C } ; \\pmb { c } _ { i } ^ { C } ; \\pmb { h } _ { i } ^ { C l } ; \\pmb { h } _ { i } ^ { C h } ] , ~ \\mathrm { H o W } _ { i } ^ { Q } = [ \\pmb { g } _ { i } ^ { Q } ; \\pmb { c } _ { i } ^ { Q } ; \\pmb { h } _ { i } ^ { Q l } ; \\pmb { h } _ { i } ^ { Q h } ] \\in \\mathbb { R } ^ { 1 4 0 0 } ," + }, + { + "category_id": 13, + "poly": [ + 962, + 1118, + 1059, + 1118, + 1059, + 1146, + 962, + 1146 + ], + "score": 0.9, + "latex": "k = 2 5 0" + }, + { + "category_id": 13, + "poly": [ + 1041, + 598, + 1080, + 598, + 1080, + 632, + 1041, + 632 + ], + "score": 0.9, + "latex": "U _ { Q }" + }, + { + "category_id": 14, + "poly": [ + 516, + 1672, + 1180, + 1672, + 1180, + 1724, + 516, + 1724 + ], + "score": 0.89, + "latex": "\\operatorname { H o W } _ { i } ^ { C } = [ \\pmb { g } _ { i } ^ { C } ; \\pmb { c } _ { i } ^ { C } ; \\pmb { h } _ { i } ^ { C l } ; \\pmb { h } _ { i } ^ { C h } ; \\hat { \\pmb { h } } _ { i } ^ { C l } ; \\hat { \\pmb { h } } _ { i } ^ { C h } ; \\hat { \\pmb { u } } _ { i } ^ { C } ; \\pmb { v } _ { i } ^ { C } ] \\in \\mathbb { R } ^ { 2 4 0 0 } ." + }, + { + "category_id": 13, + "poly": [ + 1314, + 1974, + 1354, + 1974, + 1354, + 2007, + 1314, + 2007 + ], + "score": 0.89, + "latex": "U _ { Q }" + }, + { + "category_id": 14, + "poly": [ + 511, + 1829, + 1190, + 1829, + 1190, + 1873, + 511, + 1873 + ], + "score": 0.88, + "latex": "U _ { C } = \\{ \\pmb { u } _ { 1 } ^ { C } , \\ldots , \\pmb { u } _ { m } ^ { C } \\} = \\mathrm { B i L S T M } ( [ \\pmb { v } _ { 1 } ^ { C } ; \\hat { \\pmb { v } } _ { 1 } ^ { C } ] , \\ldots , [ \\pmb { v } _ { m } ^ { C } ; \\hat { \\pmb { v } } _ { m } ^ { C } ] ) ." + }, + { + "category_id": 13, + "poly": [ + 891, + 1024, + 1219, + 1024, + 1219, + 1060, + 891, + 1060 + ], + "score": 0.88, + "latex": "S ^ { \\tilde { l } } ( x , y ) , S ^ { h } ( x , y ) , S ^ { u } ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 794, + 344, + 820, + 344, + 820, + 374, + 794, + 374 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 858, + 1431, + 885, + 1431, + 885, + 1461, + 858, + 1461 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 439, + 2004, + 465, + 2004, + 465, + 2035, + 439, + 2035 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 732, + 998, + 760, + 998, + 760, + 1028, + 732, + 1028 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 941, + 718, + 967, + 718, + 967, + 748, + 941, + 748 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 745, + 970, + 772, + 970, + 772, + 996, + 745, + 996 + ], + "score": 0.85, + "latex": "c _ { i }" + }, + { + "category_id": 13, + "poly": [ + 477, + 796, + 505, + 796, + 505, + 826, + 477, + 826 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 373, + 970, + 404, + 970, + 404, + 999, + 373, + 999 + ], + "score": 0.85, + "latex": "\\mathbf { \\pmb { g } } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 824, + 1974, + 850, + 1974, + 850, + 2004, + 824, + 2004 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 941, + 1896, + 967, + 1896, + 967, + 1922, + 941, + 1922 + ], + "score": 0.85, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 716, + 344, + 743, + 344, + 743, + 370, + 716, + 370 + ], + "score": 0.84, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 337, + 1431, + 364, + 1431, + 364, + 1457, + 337, + 1457 + ], + "score": 0.83, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 346, + 1974, + 373, + 1974, + 373, + 2001, + 346, + 2001 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 798, + 998, + 827, + 998, + 827, + 1025, + 798, + 1025 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 679, + 796, + 707, + 796, + 707, + 823, + 679, + 823 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 14, + "poly": [ + 361, + 391, + 1336, + 391, + 1336, + 437, + 361, + 437 + ], + "score": 0.81, + "latex": "{ h } _ { 1 } ^ { C l } , \\dots , { h } _ { m } ^ { C l } = \\mathrm { B i L S T M } ( \\tilde { w } _ { 1 } ^ { C } , \\dots , \\tilde { w } _ { m } ^ { C } ) , \\quad { h } _ { 1 } ^ { Q l } , \\dots , { h } _ { n } ^ { Q l } = \\mathrm { B i L S T M } ( w _ { 1 } ^ { Q } , \\dots , w _ { n } ^ { Q } ) ," + }, + { + "category_id": 13, + "poly": [ + 742, + 1740, + 934, + 1740, + 934, + 1785, + 742, + 1785 + ], + "score": 0.77, + "latex": "\\begin{array} { r } { \\hat { \\pmb { v } } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } ^ { s } { \\pmb { v } } _ { j } ^ { C } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 614, + 1241, + 1268, + 1241, + 1268, + 1291, + 614, + 1291 + ], + "score": 0.76, + "latex": "\\begin{array} { r } { \\hat { \\boldsymbol { \\mathsf { h } } } _ { i } ^ { C h } = \\sum _ { j } \\alpha _ { i j } ^ { h } \\boldsymbol { h } _ { j } ^ { Q h } , \\quad \\alpha _ { i j } ^ { h } \\propto \\exp ( S ^ { h } ( \\mathrm { H o W } _ { i } ^ { C } , \\mathrm { H o W } _ { j } ^ { Q } ) ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 349, + 454, + 1345, + 454, + 1345, + 500, + 349, + 500 + ], + "score": 0.75, + "latex": "{ h } _ { 1 } ^ { C h } , \\ldots , { h } _ { m } ^ { C h } = \\mathrm { B i L S T M } ( { h } _ { 1 } ^ { C l } , \\ldots , { h } _ { m } ^ { C l } ) , \\quad { h } _ { 1 } ^ { Q h } , \\ldots , { h } _ { n } ^ { Q h } = \\mathrm { B i L S T M } ( { h } _ { 1 } ^ { Q l } , \\ldots , { h } _ { n } ^ { Q l } ) ." + }, + { + "category_id": 13, + "poly": [ + 605, + 1238, + 829, + 1238, + 829, + 1291, + 605, + 1291 + ], + "score": 0.71, + "latex": "\\begin{array} { r } { \\hat { \\pmb { h } } _ { i } ^ { C h } = \\sum _ { j } \\alpha _ { i j } ^ { h } \\pmb { h } _ { j } ^ { Q h } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 654, + 1299, + 1270, + 1299, + 1270, + 1346, + 654, + 1346 + ], + "score": 0.69, + "latex": "\\begin{array} { r } { \\hat { \\pmb { u } } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } ^ { u } \\pmb { u } _ { j } ^ { Q } , \\quad \\alpha _ { i j } ^ { u } \\propto \\mathrm { e x p } ( S ^ { u } ( \\mathrm { H o W } _ { i } ^ { C } , \\mathrm { H o W } _ { j } ^ { Q } ) ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 599, + 1176, + 1227, + 1176, + 1227, + 1228, + 599, + 1228 + ], + "score": 0.67, + "latex": "\\begin{array} { r } { \\hat { \\boldsymbol { h } } _ { i } ^ { C l } = \\sum _ { j } \\alpha _ { i j } ^ { l } \\boldsymbol { h } _ { j } ^ { Q l } , \\quad \\alpha _ { i j } ^ { l } \\propto \\exp ( S ^ { l } ( \\mathrm { H o W } _ { i } ^ { C } , \\mathrm { H o W } _ { j } ^ { Q } ) ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 600, + 1175, + 1227, + 1175, + 1227, + 1229, + 600, + 1229 + ], + "score": 0.64, + "latex": "\\begin{array} { r } { \\hat { \\boldsymbol { h } } _ { i } ^ { C l } = \\sum _ { j } \\alpha _ { i j } ^ { l } \\boldsymbol { h } _ { j } ^ { Q l } , \\quad \\alpha _ { i j } ^ { l } \\propto \\exp ( S ^ { l } ( \\mathrm { H o W } _ { i } ^ { C } , \\mathrm { H o W } _ { j } ^ { Q } ) ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 739, + 1739, + 1336, + 1739, + 1336, + 1785, + 739, + 1785 + ], + "score": 0.56, + "latex": "\\begin{array} { r } { \\hat { \\pmb v } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } ^ { s } \\pmb { v } _ { j } ^ { C } , \\alpha _ { i j } ^ { s } \\propto \\exp ( S ^ { s } ( \\mathrm { H o W } _ { i } ^ { C } , \\mathrm { H o W } _ { j } ^ { C } ) ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 651, + 1299, + 1273, + 1299, + 1273, + 1347, + 651, + 1347 + ], + "score": 0.5, + "latex": "\\begin{array} { r } { \\hat { \\pmb { u } } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } ^ { u } \\pmb { u } _ { j } ^ { Q } , \\quad \\alpha _ { i j } ^ { u } \\propto \\mathrm { e x p } ( S ^ { u } ( \\mathrm { H o W } _ { i } ^ { C } , \\mathrm { H o W } _ { j } ^ { Q } ) ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 609, + 1241, + 1266, + 1241, + 1266, + 1291, + 609, + 1291 + ], + "score": 0.36, + "latex": "\\begin{array} { r } { \\hat { \\boldsymbol { h } } _ { i } ^ { C h } = \\sum _ { j } \\alpha _ { i j } ^ { h } \\boldsymbol { h } _ { j } ^ { Q h } , \\quad \\alpha _ { i j } ^ { h } \\propto \\exp ( S ^ { h } ( \\mathrm { H o W } _ { i } ^ { C } , \\mathrm { H o W } _ { j } ^ { Q } ) ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 600, + 1175, + 809, + 1175, + 809, + 1229, + 600, + 1229 + ], + "score": 0.32, + "latex": "\\begin{array} { r } { \\hat { \\pmb { h } } _ { i } ^ { C l } = \\sum _ { j } \\alpha _ { i j } ^ { l } \\pmb { h } _ { j } ^ { Q l } } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2117.0, + 840.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 963.0, + 372.0, + 963.0, + 372.0, + 999.0, + 296.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 963.0, + 744.0, + 963.0, + 744.0, + 999.0, + 405.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 963.0, + 1404.0, + 963.0, + 1404.0, + 999.0, + 773.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 995.0, + 731.0, + 995.0, + 731.0, + 1031.0, + 295.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 995.0, + 797.0, + 995.0, + 797.0, + 1031.0, + 761.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 995.0, + 1404.0, + 995.0, + 1404.0, + 1031.0, + 828.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1023.0, + 890.0, + 1023.0, + 890.0, + 1063.0, + 292.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1023.0, + 1406.0, + 1023.0, + 1406.0, + 1063.0, + 1220.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1055.0, + 1404.0, + 1055.0, + 1404.0, + 1090.0, + 292.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1089.0, + 1404.0, + 1089.0, + 1404.0, + 1121.0, + 295.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1118.0, + 961.0, + 1118.0, + 961.0, + 1150.0, + 292.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1118.0, + 1071.0, + 1118.0, + 1071.0, + 1150.0, + 1060.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 761.0, + 1406.0, + 761.0, + 1406.0, + 799.0, + 293.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 794.0, + 476.0, + 794.0, + 476.0, + 830.0, + 293.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 794.0, + 678.0, + 794.0, + 678.0, + 830.0, + 506.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 794.0, + 1406.0, + 794.0, + 1406.0, + 830.0, + 708.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 826.0, + 1406.0, + 826.0, + 1406.0, + 861.0, + 293.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 856.0, + 899.0, + 856.0, + 899.0, + 890.0, + 293.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 856.0, + 1106.0, + 856.0, + 1106.0, + 890.0, + 965.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1561.0, + 1404.0, + 1561.0, + 1404.0, + 1597.0, + 294.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1591.0, + 1406.0, + 1591.0, + 1406.0, + 1630.0, + 292.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1623.0, + 910.0, + 1623.0, + 910.0, + 1661.0, + 294.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1939.0, + 1214.0, + 1939.0, + 1214.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 1939.0, + 1403.0, + 1939.0, + 1403.0, + 1979.0, + 1255.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1969.0, + 345.0, + 1969.0, + 345.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 1969.0, + 823.0, + 1969.0, + 823.0, + 2009.0, + 374.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1969.0, + 1313.0, + 1969.0, + 1313.0, + 2009.0, + 851.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 1969.0, + 1405.0, + 1969.0, + 1405.0, + 2009.0, + 1355.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1998.0, + 438.0, + 1998.0, + 438.0, + 2041.0, + 293.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1998.0, + 477.0, + 1998.0, + 477.0, + 2041.0, + 466.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1369.0, + 1404.0, + 1369.0, + 1404.0, + 1403.0, + 296.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1397.0, + 1405.0, + 1397.0, + 1405.0, + 1436.0, + 293.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1426.0, + 336.0, + 1426.0, + 336.0, + 1466.0, + 292.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1426.0, + 857.0, + 1426.0, + 857.0, + 1466.0, + 365.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1426.0, + 896.0, + 1426.0, + 896.0, + 1466.0, + 886.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 221.0, + 372.0, + 221.0, + 372.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 221.0, + 1409.0, + 221.0, + 1409.0, + 267.0, + 549.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 255.0, + 929.0, + 255.0, + 929.0, + 306.0, + 292.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 255.0, + 1186.0, + 255.0, + 1186.0, + 306.0, + 1175.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 559.0, + 1405.0, + 559.0, + 1405.0, + 600.0, + 296.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 587.0, + 457.0, + 587.0, + 457.0, + 639.0, + 293.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 587.0, + 1040.0, + 587.0, + 1040.0, + 639.0, + 568.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 587.0, + 1095.0, + 587.0, + 1095.0, + 639.0, + 1081.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 310.0, + 1405.0, + 310.0, + 1405.0, + 350.0, + 293.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 342.0, + 715.0, + 342.0, + 715.0, + 378.0, + 294.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 342.0, + 793.0, + 342.0, + 793.0, + 378.0, + 744.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 342.0, + 830.0, + 342.0, + 830.0, + 378.0, + 821.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 700.0, + 372.0, + 700.0, + 372.0, + 765.0, + 289.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 700.0, + 940.0, + 700.0, + 940.0, + 765.0, + 566.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 700.0, + 984.0, + 700.0, + 984.0, + 765.0, + 968.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1734.0, + 738.0, + 1734.0, + 738.0, + 1788.0, + 292.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1774.0, + 821.0, + 1774.0, + 821.0, + 1819.0, + 295.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1877.0, + 372.0, + 1877.0, + 372.0, + 1945.0, + 287.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1877.0, + 940.0, + 1877.0, + 940.0, + 1945.0, + 566.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1877.0, + 986.0, + 1877.0, + 986.0, + 1945.0, + 968.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 506.0, + 753.0, + 506.0, + 753.0, + 553.0, + 291.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 506.0, + 1217.0, + 506.0, + 1217.0, + 553.0, + 917.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1236.0, + 604.0, + 1236.0, + 604.0, + 1287.0, + 357.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.25, + 1235.0, + 850.25, + 1235.0, + 850.25, + 1305.0, + 642.25, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1292.0, + 650.0, + 1292.0, + 650.0, + 1354.0, + 354.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1152.0, + 598.0, + 1152.0, + 598.0, + 1249.0, + 346.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1152.0, + 1237.0, + 1152.0, + 1237.0, + 1249.0, + 1228.0, + 1249.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 568, + 1405, + 568, + 1405, + 698, + 298, + 698 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1438, + 1403, + 1438, + 1403, + 1624, + 298, + 1624 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1300, + 1403, + 1300, + 1403, + 1424, + 299, + 1424 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1081, + 1404, + 1081, + 1404, + 1206, + 298, + 1206 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1718, + 1403, + 1718, + 1403, + 1903, + 298, + 1903 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 398, + 1404, + 398, + 1404, + 525, + 299, + 525 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 285, + 1403, + 285, + 1403, + 389, + 298, + 389 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 296, + 817, + 1401, + 817, + 1401, + 884, + 296, + 884 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 694, + 714, + 1005, + 714, + 1005, + 757, + 694, + 757 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 295, + 903, + 1400, + 903, + 1400, + 968, + 295, + 968 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 300, + 1917, + 1396, + 1917, + 1396, + 1981, + 300, + 1981 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 696, + 522, + 1003, + 522, + 1003, + 563, + 696, + 563 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 300, + 769, + 820, + 769, + 820, + 803, + 300, + 803 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 300, + 1012, + 558, + 1012, + 558, + 1048, + 300, + 1048 + ], + "score": 0.911 + }, + { + "category_id": 0, + "poly": [ + 299, + 1661, + 550, + 1661, + 550, + 1693, + 299, + 1693 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 298, + 1243, + 489, + 1243, + 489, + 1275, + 298, + 1275 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 314, + 2005, + 1373, + 2005, + 1373, + 2034, + 314, + 2034 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.661 + }, + { + "category_id": 0, + "poly": [ + 302, + 230, + 899, + 230, + 899, + 262, + 302, + 262 + ], + "score": 0.548 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2111, + 841, + 2111 + ], + "score": 0.309 + }, + { + "category_id": 2, + "poly": [ + 314, + 2005, + 1373, + 2005, + 1373, + 2034, + 314, + 2034 + ], + "score": 0.1 + }, + { + "category_id": 13, + "poly": [ + 769, + 430, + 961, + 430, + 961, + 471, + 769, + 471 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { { \\pmb u } ^ { Q } = \\sum _ { i } \\beta _ { i } { \\pmb u } _ { i } ^ { Q } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 373, + 568, + 520, + 568, + 520, + 601, + 373, + 601 + ], + "score": 0.93, + "latex": "W _ { S } \\in \\mathbb { R } ^ { d \\times d }" + }, + { + "category_id": 13, + "poly": [ + 297, + 662, + 418, + 662, + 418, + 700, + 297, + 700 + ], + "score": 0.93, + "latex": "\\textstyle \\sum _ { i } P _ { i } ^ { S } { \\boldsymbol { u } } _ { i } ^ { C }" + }, + { + "category_id": 13, + "poly": [ + 296, + 847, + 591, + 847, + 591, + 889, + 296, + 889 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\sum _ { k } ( \\log \\mathsf { \\bar { ( } } P _ { i _ { k } ^ { s } } ^ { S } ) + \\mathsf { \\bar { l o g } } ( P _ { i _ { k } ^ { e } } ^ { E } ) ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1092, + 903, + 1172, + 903, + 1172, + 939, + 1092, + 939 + ], + "score": 0.93, + "latex": "P _ { i ^ { s } } ^ { S } P _ { i ^ { e } } ^ { E }" + }, + { + "category_id": 13, + "poly": [ + 372, + 768, + 515, + 768, + 515, + 803, + 372, + 803 + ], + "score": 0.92, + "latex": "W _ { E } \\in \\mathbb { R } ^ { d \\times d }" + }, + { + "category_id": 14, + "poly": [ + 694, + 520, + 1002, + 520, + 1002, + 563, + 694, + 563 + ], + "score": 0.91, + "latex": "P _ { i } ^ { S } \\propto \\exp ( ( \\boldsymbol { \\mathbf { \\mathit { u } } } ^ { Q } ) ^ { T } W _ { S } \\boldsymbol { \\mathbf { \\mathit { u } } } _ { i } ^ { C } ) ," + }, + { + "category_id": 13, + "poly": [ + 1052, + 430, + 1268, + 430, + 1268, + 470, + 1052, + 470 + ], + "score": 0.91, + "latex": "\\beta _ { i } \\propto \\mathrm { { e x p } } ( { \\pmb w } ^ { T } { \\pmb u } _ { i } ^ { Q } )" + }, + { + "category_id": 14, + "poly": [ + 693, + 713, + 1003, + 713, + 1003, + 756, + 693, + 756 + ], + "score": 0.91, + "latex": "P _ { i } ^ { E } \\propto \\exp ( ( \\pmb { v } ^ { Q } ) ^ { T } W _ { E } \\pmb { u } _ { i } ^ { C } ) ," + }, + { + "category_id": 13, + "poly": [ + 605, + 628, + 943, + 628, + 943, + 666, + 605, + 666 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { { \\pmb v } ^ { Q } = \\mathrm { G R U } ( { \\pmb u } ^ { Q } , \\sum _ { i } P _ { i } ^ { S } { \\pmb u } _ { i } ^ { \\top } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 297, + 936, + 492, + 936, + 492, + 967, + 297, + 967 + ], + "score": 0.91, + "latex": "0 \\leq i ^ { e } - i ^ { s } \\leq 1 5" + }, + { + "category_id": 13, + "poly": [ + 811, + 907, + 870, + 907, + 870, + 937, + 811, + 937 + ], + "score": 0.91, + "latex": "i ^ { s } , i ^ { e }" + }, + { + "category_id": 13, + "poly": [ + 679, + 850, + 740, + 850, + 740, + 883, + 679, + 883 + ], + "score": 0.9, + "latex": "i _ { k } ^ { s } , i _ { k } ^ { e }" + }, + { + "category_id": 13, + "poly": [ + 1035, + 629, + 1075, + 629, + 1075, + 660, + 1035, + 660 + ], + "score": 0.89, + "latex": "\\pmb { u } ^ { Q }" + }, + { + "category_id": 13, + "poly": [ + 1266, + 599, + 1305, + 599, + 1305, + 629, + 1266, + 629 + ], + "score": 0.88, + "latex": "\\pmb { u } ^ { Q }" + }, + { + "category_id": 13, + "poly": [ + 373, + 495, + 413, + 495, + 413, + 525, + 373, + 525 + ], + "score": 0.87, + "latex": "\\pmb { u } ^ { Q }" + }, + { + "category_id": 13, + "poly": [ + 971, + 1332, + 1081, + 1332, + 1081, + 1362, + 971, + 1362 + ], + "score": 0.87, + "latex": "1 0 0 { , } 0 0 0 { + }" + }, + { + "category_id": 13, + "poly": [ + 1178, + 663, + 1215, + 663, + 1215, + 694, + 1178, + 694 + ], + "score": 0.86, + "latex": "v ^ { Q }" + }, + { + "category_id": 13, + "poly": [ + 668, + 348, + 910, + 348, + 910, + 389, + 668, + 389 + ], + "score": 0.85, + "latex": "U _ { Q } = \\{ \\bar { \\pmb { u } } _ { 1 } ^ { Q } , \\dots , \\pmb { u } _ { n } ^ { Q } \\}" + }, + { + "category_id": 13, + "poly": [ + 1049, + 850, + 1067, + 850, + 1067, + 876, + 1049, + 876 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 413, + 350, + 656, + 350, + 656, + 388, + 413, + 388 + ], + "score": 0.79, + "latex": "U _ { C } = \\{ \\mathbf { { u } } _ { 1 } ^ { C } , \\dots , \\mathbf { { u } } _ { m } ^ { C } \\}" + }, + { + "category_id": 13, + "poly": [ + 297, + 353, + 325, + 353, + 325, + 382, + 297, + 382 + ], + "score": 0.78, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1324, + 439, + 1352, + 439, + 1352, + 464, + 1324, + 464 + ], + "score": 0.72, + "latex": "\\pmb { w }" + }, + { + "category_id": 13, + "poly": [ + 375, + 353, + 403, + 353, + 403, + 386, + 375, + 386 + ], + "score": 0.55, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 823, + 288, + 918, + 288, + 918, + 318, + 823, + 318 + ], + "score": 0.36, + "latex": "\\mathrm { S Q u A D }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1010.0, + 560.0, + 1010.0, + 560.0, + 1052.0, + 292.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1658.0, + 553.0, + 1658.0, + 553.0, + 1698.0, + 294.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1241.0, + 494.0, + 1241.0, + 494.0, + 1279.0, + 294.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 2002.0, + 1378.0, + 2002.0, + 1378.0, + 2036.0, + 334.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 904.0, + 228.0, + 904.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 2002.0, + 1378.0, + 2002.0, + 1378.0, + 2036.0, + 334.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 562.0, + 372.0, + 562.0, + 372.0, + 607.0, + 292.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 562.0, + 1407.0, + 562.0, + 1407.0, + 607.0, + 521.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 598.0, + 1265.0, + 598.0, + 1265.0, + 632.0, + 295.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 598.0, + 1402.0, + 598.0, + 1402.0, + 632.0, + 1306.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 627.0, + 604.0, + 627.0, + 604.0, + 668.0, + 291.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 627.0, + 1034.0, + 627.0, + 1034.0, + 668.0, + 944.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 627.0, + 1407.0, + 627.0, + 1407.0, + 668.0, + 1076.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 662.0, + 296.0, + 662.0, + 296.0, + 701.0, + 292.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 662.0, + 1177.0, + 662.0, + 1177.0, + 701.0, + 419.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 662.0, + 1227.0, + 662.0, + 1227.0, + 701.0, + 1216.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1434.0, + 1405.0, + 1434.0, + 1405.0, + 1477.0, + 295.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1472.0, + 1405.0, + 1472.0, + 1405.0, + 1504.0, + 294.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1502.0, + 1404.0, + 1502.0, + 1404.0, + 1534.0, + 296.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1532.0, + 1404.0, + 1532.0, + 1404.0, + 1564.0, + 296.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1560.0, + 1405.0, + 1560.0, + 1405.0, + 1595.0, + 293.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1592.0, + 1187.0, + 1592.0, + 1187.0, + 1628.0, + 294.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1300.0, + 1405.0, + 1300.0, + 1405.0, + 1336.0, + 294.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1330.0, + 970.0, + 1330.0, + 970.0, + 1367.0, + 293.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1330.0, + 1407.0, + 1330.0, + 1407.0, + 1367.0, + 1082.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1364.0, + 1405.0, + 1364.0, + 1405.0, + 1397.0, + 295.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1394.0, + 910.0, + 1394.0, + 910.0, + 1426.0, + 294.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1083.0, + 1402.0, + 1083.0, + 1402.0, + 1115.0, + 294.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1114.0, + 1406.0, + 1114.0, + 1406.0, + 1147.0, + 294.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1142.0, + 1404.0, + 1142.0, + 1404.0, + 1179.0, + 295.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1174.0, + 1293.0, + 1174.0, + 1293.0, + 1209.0, + 292.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1716.0, + 1405.0, + 1716.0, + 1405.0, + 1753.0, + 294.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1748.0, + 1405.0, + 1748.0, + 1405.0, + 1782.0, + 292.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1780.0, + 1403.0, + 1780.0, + 1403.0, + 1816.0, + 293.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1811.0, + 1405.0, + 1811.0, + 1405.0, + 1844.0, + 292.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1841.0, + 1405.0, + 1841.0, + 1405.0, + 1877.0, + 293.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1869.0, + 1060.0, + 1869.0, + 1060.0, + 1906.0, + 292.0, + 1906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 396.0, + 1404.0, + 396.0, + 1404.0, + 436.0, + 294.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 428.0, + 768.0, + 428.0, + 768.0, + 472.0, + 292.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 428.0, + 1051.0, + 428.0, + 1051.0, + 472.0, + 962.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 428.0, + 1323.0, + 428.0, + 1323.0, + 472.0, + 1269.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 428.0, + 1406.0, + 428.0, + 1406.0, + 472.0, + 1353.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 460.0, + 1406.0, + 460.0, + 1406.0, + 505.0, + 292.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 496.0, + 372.0, + 496.0, + 372.0, + 527.0, + 293.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 496.0, + 426.0, + 496.0, + 426.0, + 527.0, + 414.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 286.0, + 822.0, + 286.0, + 822.0, + 322.0, + 296.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 286.0, + 1405.0, + 286.0, + 1405.0, + 322.0, + 919.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 318.0, + 1404.0, + 318.0, + 1404.0, + 354.0, + 294.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 347.0, + 374.0, + 347.0, + 374.0, + 392.0, + 326.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 347.0, + 412.0, + 347.0, + 412.0, + 392.0, + 404.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 347.0, + 667.0, + 347.0, + 667.0, + 392.0, + 657.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 347.0, + 922.0, + 347.0, + 922.0, + 392.0, + 911.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 813.0, + 1406.0, + 813.0, + 1406.0, + 854.0, + 294.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 841.0, + 295.0, + 841.0, + 295.0, + 887.0, + 291.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 841.0, + 678.0, + 841.0, + 678.0, + 887.0, + 592.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 841.0, + 1048.0, + 841.0, + 1048.0, + 887.0, + 741.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 841.0, + 1209.0, + 841.0, + 1209.0, + 887.0, + 1068.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 893.0, + 810.0, + 893.0, + 810.0, + 950.0, + 288.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 893.0, + 1091.0, + 893.0, + 1091.0, + 950.0, + 871.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 893.0, + 1411.0, + 893.0, + 1411.0, + 950.0, + 1173.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 933.0, + 296.0, + 933.0, + 296.0, + 970.0, + 293.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 933.0, + 505.0, + 933.0, + 505.0, + 970.0, + 493.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1914.0, + 1404.0, + 1914.0, + 1404.0, + 1954.0, + 294.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1950.0, + 1400.0, + 1950.0, + 1400.0, + 1982.0, + 297.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 762.0, + 371.0, + 762.0, + 371.0, + 809.0, + 293.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 762.0, + 826.0, + 762.0, + 826.0, + 809.0, + 516.0, + 809.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 297, + 223, + 914, + 223, + 914, + 885, + 297, + 885 + ], + "score": 0.977, + "html": "
Single ModelTest Set EM/F1
LR Baseline (Rajpurkar et al., 2016) Match-LSTM (Wang & Jiang,2016) BiDAF (Seo et al., 2017) SEDT (Liu et al., 2017) RaSoR (Lee et al., 2016) DrQA (Chen et al., 2017a) ReasoNet (Shen et al.,2017) R.Mnemonic Reader (Hu et al., 2017) DCN+ R-nett FusionNet40.4 /51.0 64.7/73.7 68.0 / 77.3 68.2 /77.5 70.8/78.7 70.7 /79.4 70.6 / 79.4 73.2/81.8 74.9 / 82.8 75.7 /83.5 76.0 / 83.9
EnsembleModel ReasoNet (Shen et al., 2017) MEMEN (Pan et al., 2017) R.Mnemonic Reader (Hu et al., 2017) R-nett DCN+ FusionNet75.0 / 82.3 75.4/82.7 77.7 / 84.9 78.2/85.2 78.7 / 85.6
Human (Rajpurkar et al., 2016)78.8 / 85.9 82.3/91.2
" + }, + { + "category_id": 5, + "poly": [ + 943, + 229, + 1382, + 229, + 1382, + 513, + 943, + 513 + ], + "score": 0.973, + "html": "
AddSentEM/F1
LRBaseline17.0/23.2
Match-LSTM (E) BiDAF (E)24.3 /34.2 29.6 /34.2
SEDT (E) Mnemonic Reader (S)30.0 /35.0
Mnemonic Reader (E)39.8/46.6
40.7 / 46.2
ReasoNet (E) FusionNet (E)34.6 /39.4 46.2 / 51.4
" + }, + { + "category_id": 5, + "poly": [ + 943, + 632, + 1383, + 632, + 1383, + 916, + 943, + 916 + ], + "score": 0.971, + "html": "
AddOneSentEM/F1
LRBaseline Match-LSTM (E)22.3/30.4 34.8 / 41.8
BiDAF (E) SEDT (E)40.7 /46.9 40.0 / 46.5
Mnemonic Reader (S)48.5 /56.0
Mnemonic Reader (E)48.7 / 55.3
ReasoNet (E) FusionNet (E)43.6 /49.8
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1138, + 1402, + 1138, + 1402, + 1233, + 299, + 1233 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 299, + 1328, + 1405, + 1328, + 1405, + 1484, + 299, + 1484 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 298, + 1830, + 1405, + 1830, + 1405, + 1925, + 298, + 1925 + ], + "score": 0.951 + }, + { + "category_id": 2, + "poly": [ + 297, + 1947, + 1404, + 1947, + 1404, + 2035, + 297, + 2035 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 360, + 1507, + 1405, + 1507, + 1405, + 1808, + 360, + 1808 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 292, + 1061, + 1401, + 1061, + 1401, + 1125, + 292, + 1125 + ], + "score": 0.936 + }, + { + "category_id": 6, + "poly": [ + 296, + 907, + 910, + 907, + 910, + 1001, + 296, + 1001 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 302, + 1271, + 847, + 1271, + 847, + 1302, + 302, + 1302 + ], + "score": 0.888 + }, + { + "category_id": 7, + "poly": [ + 922, + 939, + 1400, + 939, + 1400, + 1001, + 922, + 1001 + ], + "score": 0.866 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.804 + }, + { + "category_id": 6, + "poly": [ + 920, + 536, + 1401, + 536, + 1401, + 599, + 920, + 599 + ], + "score": 0.625 + }, + { + "category_id": 6, + "poly": [ + 921, + 536, + 1401, + 536, + 1401, + 599, + 921, + 599 + ], + "score": 0.248 + }, + { + "category_id": 13, + "poly": [ + 1271, + 1329, + 1361, + 1329, + 1361, + 1362, + 1271, + 1362 + ], + "score": 0.93, + "latex": "S ( { \\pmb x } , { \\pmb y } )" + }, + { + "category_id": 13, + "poly": [ + 759, + 1592, + 914, + 1592, + 914, + 1637, + 759, + 1637 + ], + "score": 0.93, + "latex": "\\scriptstyle { \\frac { 1 } { \\sqrt { k } } } x ^ { T } U ^ { T } V y" + }, + { + "category_id": 13, + "poly": [ + 898, + 1768, + 1102, + 1768, + 1102, + 1806, + 898, + 1806 + ], + "score": 0.92, + "latex": "f ( U \\mathbf { x } ) ^ { T } D f ( U \\mathbf { y } )" + }, + { + "category_id": 13, + "poly": [ + 673, + 1549, + 791, + 1549, + 791, + 1586, + 673, + 1586 + ], + "score": 0.92, + "latex": "\\pmb { x } ^ { T } \\pmb { U } ^ { T } \\pmb { V } \\pmb { y }" + }, + { + "category_id": 13, + "poly": [ + 845, + 1673, + 1057, + 1673, + 1057, + 1717, + 845, + 1717 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\frac { 1 } { \\sqrt { k } } f ( U \\pmb { x } ) ^ { T } f ( V \\pmb { y } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 694, + 1831, + 751, + 1831, + 751, + 1865, + 694, + 1865 + ], + "score": 0.92, + "latex": "f ( x )" + }, + { + "category_id": 13, + "poly": [ + 749, + 1726, + 891, + 1726, + 891, + 1762, + 749, + 1762 + ], + "score": 0.92, + "latex": "\\pmb { x } ^ { T } \\pmb { U } ^ { T } \\pmb { D } \\pmb { U } \\pmb { y }" + }, + { + "category_id": 13, + "poly": [ + 815, + 1832, + 933, + 1832, + 933, + 1864, + 815, + 1864 + ], + "score": 0.89, + "latex": "\\operatorname* { m a x } ( 0 , x )" + }, + { + "category_id": 13, + "poly": [ + 906, + 1170, + 947, + 1170, + 947, + 1200, + 906, + 1200 + ], + "score": 0.87, + "latex": "5 \\%" + }, + { + "category_id": 13, + "poly": [ + 976, + 1731, + 1003, + 1731, + 1003, + 1757, + 976, + 1757 + ], + "score": 0.84, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1003, + 1598, + 1022, + 1598, + 1022, + 1624, + 1003, + 1624 + ], + "score": 0.83, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 960, + 1508, + 1227, + 1508, + 1227, + 1544, + 960, + 1544 + ], + "score": 0.76, + "latex": "\\pmb { s } ^ { T } \\operatorname { t a n h } ( W _ { 1 } \\pmb { x } + W _ { 2 } \\pmb { y } ) ." + }, + { + "category_id": 13, + "poly": [ + 353, + 1975, + 521, + 1975, + 521, + 2002, + 353, + 2002 + ], + "score": 0.69, + "latex": "\\mathrm { F 1 } = 7 1 . 3 / 7 9 . 7" + }, + { + "category_id": 13, + "poly": [ + 961, + 1508, + 995, + 1508, + 995, + 1540, + 961, + 1540 + ], + "score": 0.62, + "latex": "s ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 700, + 1975, + 814, + 1975, + 814, + 2002, + 700, + 2002 + ], + "score": 0.42, + "latex": "7 5 . 9 / 8 2 . { \\bar { 9 } }" + }, + { + "category_id": 13, + "poly": [ + 314, + 538, + 394, + 538, + 394, + 566, + 314, + 566 + ], + "score": 0.33, + "latex": "\\mathrm { D C N + }" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1946.0, + 1404.0, + 1946.0, + 1404.0, + 1979.0, + 340.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1975.0, + 352.0, + 1975.0, + 352.0, + 2004.0, + 296.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1975.0, + 699.0, + 1975.0, + 699.0, + 2004.0, + 522.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 1975.0, + 956.0, + 1975.0, + 956.0, + 2004.0, + 815.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 2000.0, + 1106.0, + 2000.0, + 1106.0, + 2037.0, + 329.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 902.0, + 910.0, + 902.0, + 910.0, + 944.0, + 293.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 938.0, + 912.0, + 938.0, + 912.0, + 971.0, + 294.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 969.0, + 575.0, + 969.0, + 575.0, + 1002.0, + 295.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1267.0, + 853.0, + 1267.0, + 853.0, + 1307.0, + 293.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 936.0, + 1402.0, + 936.0, + 1402.0, + 972.0, + 920.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 969.0, + 1240.0, + 969.0, + 1240.0, + 1001.0, + 923.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 535.0, + 1400.0, + 535.0, + 1400.0, + 569.0, + 921.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 566.0, + 1205.0, + 566.0, + 1205.0, + 600.0, + 920.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 535.0, + 1400.0, + 535.0, + 1400.0, + 569.0, + 921.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 566.0, + 1205.0, + 566.0, + 1205.0, + 600.0, + 920.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1136.0, + 1406.0, + 1136.0, + 1406.0, + 1176.0, + 293.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1170.0, + 905.0, + 1170.0, + 905.0, + 1204.0, + 294.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1170.0, + 1406.0, + 1170.0, + 1406.0, + 1204.0, + 948.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1199.0, + 1359.0, + 1199.0, + 1359.0, + 1235.0, + 294.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1327.0, + 1270.0, + 1327.0, + 1270.0, + 1363.0, + 292.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1327.0, + 1405.0, + 1327.0, + 1405.0, + 1363.0, + 1362.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1359.0, + 1403.0, + 1359.0, + 1403.0, + 1393.0, + 297.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1391.0, + 1402.0, + 1391.0, + 1402.0, + 1425.0, + 295.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1418.0, + 1406.0, + 1418.0, + 1406.0, + 1457.0, + 293.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1453.0, + 882.0, + 1453.0, + 882.0, + 1486.0, + 295.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1828.0, + 693.0, + 1828.0, + 693.0, + 1868.0, + 293.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 1828.0, + 814.0, + 1828.0, + 814.0, + 1868.0, + 752.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 1828.0, + 1406.0, + 1828.0, + 1406.0, + 1868.0, + 934.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1863.0, + 1403.0, + 1863.0, + 1403.0, + 1897.0, + 295.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1891.0, + 1405.0, + 1891.0, + 1405.0, + 1930.0, + 292.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1505.0, + 959.0, + 1505.0, + 959.0, + 1547.0, + 361.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1505.0, + 1233.0, + 1505.0, + 1233.0, + 1547.0, + 1228.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1546.0, + 672.0, + 1546.0, + 672.0, + 1590.0, + 358.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1546.0, + 802.0, + 1546.0, + 802.0, + 1590.0, + 792.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1587.0, + 758.0, + 1587.0, + 758.0, + 1639.0, + 353.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1587.0, + 1002.0, + 1587.0, + 1002.0, + 1639.0, + 915.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1587.0, + 1408.0, + 1587.0, + 1408.0, + 1639.0, + 1023.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1634.0, + 789.0, + 1634.0, + 789.0, + 1667.0, + 393.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1671.0, + 844.0, + 1671.0, + 844.0, + 1719.0, + 354.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 1671.0, + 1070.0, + 1671.0, + 1070.0, + 1719.0, + 1058.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1726.0, + 748.0, + 1726.0, + 748.0, + 1765.0, + 359.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1726.0, + 975.0, + 1726.0, + 975.0, + 1765.0, + 892.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 1726.0, + 1139.0, + 1726.0, + 1139.0, + 1765.0, + 1004.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1770.0, + 897.0, + 1770.0, + 897.0, + 1809.0, + 359.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 1770.0, + 1113.0, + 1770.0, + 1113.0, + 1809.0, + 1103.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1061.0, + 1404.0, + 1061.0, + 1404.0, + 1094.0, + 294.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1090.0, + 593.0, + 1090.0, + 593.0, + 1126.0, + 294.0, + 1126.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 709, + 1405, + 709, + 1405, + 864, + 298, + 864 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 983, + 1404, + 983, + 1404, + 1167, + 298, + 1167 + ], + "score": 0.975 + }, + { + "category_id": 5, + "poly": [ + 302, + 257, + 846, + 257, + 846, + 550, + 302, + 550 + ], + "score": 0.974, + "html": "
Attention FunctionEM/F1
Additive (MLP)71.8/ 80.172.1 / 80.672.4 / 80.772.6 / 80.8
MultiplicativeScaled MultiplicativeScaled Multiplicative + ReLU
Symmetric FormSymmetric Form + ReLU73.1 /81.575.3 / 83.6
Previous SotA (Hu et al., 2017)72.1/ 81.6
" + }, + { + "category_id": 5, + "poly": [ + 867, + 223, + 1412, + 223, + 1412, + 550, + 867, + 550 + ], + "score": 0.973, + "html": "
ConfigurationC,Q Fusion Self CEM/F1
High-LevelFA High-LevelFA All-LevelFA Multi-LevelNone64.6/73.273.3 /81.472.3 / 80.774.6 / 82.7
FA Multi-LevelNormalFA74.4 / 82.675.3 / 83.6
Previous SotA (Hu et al., 2017)72.1/ 81.6
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1664, + 1403, + 1664, + 1403, + 1787, + 299, + 1787 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 299, + 1802, + 1402, + 1802, + 1402, + 1926, + 299, + 1926 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1401, + 1942, + 1401, + 2034, + 300, + 2034 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 299, + 1182, + 1403, + 1182, + 1403, + 1276, + 299, + 1276 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 300, + 1415, + 1398, + 1415, + 1398, + 1479, + 300, + 1479 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 297, + 1540, + 1402, + 1540, + 1402, + 1603, + 297, + 1603 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 299, + 1337, + 1394, + 1337, + 1394, + 1401, + 299, + 1401 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 298, + 1290, + 1383, + 1290, + 1383, + 1323, + 298, + 1323 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 295, + 1492, + 1028, + 1492, + 1028, + 1524, + 295, + 1524 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 298, + 1617, + 1215, + 1617, + 1215, + 1649, + 298, + 1649 + ], + "score": 0.917 + }, + { + "category_id": 6, + "poly": [ + 296, + 573, + 848, + 573, + 848, + 635, + 296, + 635 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 300, + 919, + 837, + 919, + 837, + 951, + 300, + 951 + ], + "score": 0.879 + }, + { + "category_id": 6, + "poly": [ + 860, + 573, + 1418, + 573, + 1418, + 634, + 860, + 634 + ], + "score": 0.834 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.787 + }, + { + "category_id": 13, + "poly": [ + 359, + 602, + 448, + 602, + 448, + 636, + 359, + 636 + ], + "score": 0.93, + "latex": "S ( { \\pmb x } , { \\pmb y } )" + }, + { + "category_id": 13, + "poly": [ + 349, + 1618, + 441, + 1618, + 441, + 1647, + 349, + 1647 + ], + "score": 0.91, + "latex": "C = \\mathbf { F } \\mathbf { A }" + }, + { + "category_id": 13, + "poly": [ + 808, + 769, + 874, + 769, + 874, + 800, + 808, + 800 + ], + "score": 0.9, + "latex": "U ^ { T } V" + }, + { + "category_id": 13, + "poly": [ + 1157, + 770, + 1245, + 770, + 1245, + 801, + 1157, + 801 + ], + "score": 0.9, + "latex": "U ^ { T } D U" + }, + { + "category_id": 13, + "poly": [ + 644, + 1726, + 685, + 1726, + 685, + 1756, + 644, + 1756 + ], + "score": 0.86, + "latex": "8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1262, + 1184, + 1291, + 1184, + 1291, + 1215, + 1262, + 1215 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 399, + 1835, + 427, + 1835, + 427, + 1867, + 399, + 1867 + ], + "score": 0.84, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1329, + 1184, + 1357, + 1184, + 1357, + 1212, + 1329, + 1212 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1373, + 1865, + 1401, + 1865, + 1401, + 1897, + 1373, + 1897 + ], + "score": 0.8, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 416, + 808, + 437, + 808, + 437, + 830, + 416, + 830 + ], + "score": 0.76, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 693, + 808, + 713, + 808, + 713, + 835, + 693, + 835 + ], + "score": 0.75, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 379, + 712, + 404, + 712, + 404, + 738, + 379, + 738 + ], + "score": 0.75, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 551, + 1835, + 578, + 1835, + 578, + 1863, + 551, + 1863 + ], + "score": 0.65, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 349, + 1493, + 468, + 1493, + 468, + 1523, + 349, + 1523 + ], + "score": 0.65, + "latex": "C = \\mathbf { N o n e }" + }, + { + "category_id": 13, + "poly": [ + 347, + 1943, + 374, + 1943, + 374, + 1971, + 347, + 1971 + ], + "score": 0.63, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 353, + 1541, + 412, + 1541, + 412, + 1569, + 353, + 1569 + ], + "score": 0.52, + "latex": "C =" + }, + { + "category_id": 13, + "poly": [ + 528, + 474, + 552, + 474, + 552, + 498, + 528, + 498 + ], + "score": 0.39, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 550, + 1866, + 584, + 1866, + 584, + 1893, + 550, + 1893 + ], + "score": 0.37, + "latex": "F A" + }, + { + "category_id": 13, + "poly": [ + 353, + 1540, + 509, + 1540, + 509, + 1571, + 353, + 1571 + ], + "score": 0.34, + "latex": "C = \\mathrm { { N o r m a l } }" + }, + { + "category_id": 13, + "poly": [ + 519, + 1896, + 553, + 1896, + 553, + 1922, + 519, + 1922 + ], + "score": 0.27, + "latex": "F A" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 570.0, + 853.0, + 570.0, + 853.0, + 606.0, + 294.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 603.0, + 358.0, + 603.0, + 358.0, + 635.0, + 297.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 603.0, + 675.0, + 603.0, + 675.0, + 635.0, + 449.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 919.0, + 841.0, + 919.0, + 841.0, + 955.0, + 295.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 569.0, + 1421.0, + 569.0, + 1421.0, + 607.0, + 862.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 598.0, + 1420.0, + 598.0, + 1420.0, + 639.0, + 860.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 709.0, + 378.0, + 709.0, + 378.0, + 743.0, + 295.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 709.0, + 1403.0, + 709.0, + 1403.0, + 743.0, + 405.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 739.0, + 1405.0, + 739.0, + 1405.0, + 776.0, + 295.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 768.0, + 807.0, + 768.0, + 807.0, + 808.0, + 291.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 768.0, + 1156.0, + 768.0, + 1156.0, + 808.0, + 875.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 768.0, + 1407.0, + 768.0, + 1407.0, + 808.0, + 1246.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 801.0, + 415.0, + 801.0, + 415.0, + 838.0, + 295.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 801.0, + 692.0, + 801.0, + 692.0, + 838.0, + 438.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 801.0, + 1406.0, + 801.0, + 1406.0, + 838.0, + 714.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 834.0, + 702.0, + 834.0, + 702.0, + 868.0, + 296.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 982.0, + 1406.0, + 982.0, + 1406.0, + 1019.0, + 292.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1013.0, + 1405.0, + 1013.0, + 1405.0, + 1051.0, + 292.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1047.0, + 1404.0, + 1047.0, + 1404.0, + 1079.0, + 294.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1074.0, + 1405.0, + 1074.0, + 1405.0, + 1111.0, + 293.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1105.0, + 1404.0, + 1105.0, + 1404.0, + 1140.0, + 295.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1136.0, + 474.0, + 1136.0, + 474.0, + 1173.0, + 293.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1664.0, + 1404.0, + 1664.0, + 1404.0, + 1701.0, + 293.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1696.0, + 1405.0, + 1696.0, + 1405.0, + 1729.0, + 295.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1727.0, + 643.0, + 1727.0, + 643.0, + 1762.0, + 294.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1727.0, + 1402.0, + 1727.0, + 1402.0, + 1762.0, + 686.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1755.0, + 1314.0, + 1755.0, + 1314.0, + 1793.0, + 293.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1804.0, + 1403.0, + 1804.0, + 1403.0, + 1834.0, + 297.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1834.0, + 398.0, + 1834.0, + 398.0, + 1869.0, + 293.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 1834.0, + 550.0, + 1834.0, + 550.0, + 1869.0, + 428.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1834.0, + 1407.0, + 1834.0, + 1407.0, + 1869.0, + 579.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1864.0, + 549.0, + 1864.0, + 549.0, + 1900.0, + 293.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 1864.0, + 1372.0, + 1864.0, + 1372.0, + 1900.0, + 585.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1893.0, + 518.0, + 1893.0, + 518.0, + 1931.0, + 294.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1893.0, + 1235.0, + 1893.0, + 1235.0, + 1931.0, + 554.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 346.0, + 1941.0, + 346.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1978.0, + 375.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2001.0, + 1405.0, + 2001.0, + 1405.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1183.0, + 1261.0, + 1183.0, + 1261.0, + 1217.0, + 295.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1183.0, + 1328.0, + 1183.0, + 1328.0, + 1217.0, + 1292.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1358.0, + 1183.0, + 1405.0, + 1183.0, + 1405.0, + 1217.0, + 1358.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1213.0, + 1403.0, + 1213.0, + 1403.0, + 1250.0, + 294.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1243.0, + 694.0, + 1243.0, + 694.0, + 1280.0, + 296.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1415.0, + 1402.0, + 1415.0, + 1402.0, + 1451.0, + 295.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1446.0, + 848.0, + 1446.0, + 848.0, + 1482.0, + 295.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1535.0, + 352.0, + 1535.0, + 352.0, + 1579.0, + 292.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 1535.0, + 1407.0, + 1535.0, + 1407.0, + 1579.0, + 510.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1569.0, + 1320.0, + 1569.0, + 1320.0, + 1608.0, + 292.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1336.0, + 1400.0, + 1336.0, + 1400.0, + 1373.0, + 294.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1369.0, + 978.0, + 1369.0, + 978.0, + 1405.0, + 295.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1287.0, + 1387.0, + 1287.0, + 1387.0, + 1327.0, + 294.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1489.0, + 348.0, + 1489.0, + 348.0, + 1530.0, + 293.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1489.0, + 1031.0, + 1489.0, + 1031.0, + 1530.0, + 469.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1610.0, + 348.0, + 1610.0, + 348.0, + 1659.0, + 292.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 1610.0, + 1221.0, + 1610.0, + 1221.0, + 1659.0, + 442.0, + 1659.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 481, + 1404, + 481, + 1404, + 786, + 297, + 786 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 873, + 1403, + 873, + 1403, + 965, + 299, + 965 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 294, + 229, + 1402, + 229, + 1402, + 292, + 294, + 292 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 294, + 308, + 1400, + 308, + 1400, + 368, + 294, + 368 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 299, + 1012, + 488, + 1012, + 488, + 1044, + 299, + 1044 + ], + "score": 0.88 + }, + { + "category_id": 0, + "poly": [ + 301, + 413, + 561, + 413, + 561, + 448, + 301, + 448 + ], + "score": 0.88 + }, + { + "category_id": 0, + "poly": [ + 301, + 823, + 557, + 823, + 557, + 851, + 301, + 851 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 837, + 2088, + 865, + 2088, + 865, + 2112, + 837, + 2112 + ], + "score": 0.831 + }, + { + "category_id": 1, + "poly": [ + 298, + 1651, + 1371, + 1651, + 1371, + 1685, + 298, + 1685 + ], + "score": 0.654 + }, + { + "category_id": 1, + "poly": [ + 298, + 1700, + 1398, + 1700, + 1398, + 1764, + 298, + 1764 + ], + "score": 0.651 + }, + { + "category_id": 1, + "poly": [ + 297, + 1780, + 1398, + 1780, + 1398, + 1845, + 297, + 1845 + ], + "score": 0.587 + }, + { + "category_id": 1, + "poly": [ + 297, + 1061, + 1402, + 1061, + 1402, + 1123, + 297, + 1123 + ], + "score": 0.58 + }, + { + "category_id": 1, + "poly": [ + 300, + 1571, + 1398, + 1571, + 1398, + 1635, + 300, + 1635 + ], + "score": 0.571 + }, + { + "category_id": 1, + "poly": [ + 296, + 1140, + 1399, + 1140, + 1399, + 1204, + 296, + 1204 + ], + "score": 0.568 + }, + { + "category_id": 1, + "poly": [ + 298, + 1380, + 1399, + 1380, + 1399, + 1444, + 298, + 1444 + ], + "score": 0.524 + }, + { + "category_id": 1, + "poly": [ + 298, + 1300, + 1399, + 1300, + 1399, + 1364, + 298, + 1364 + ], + "score": 0.522 + }, + { + "category_id": 1, + "poly": [ + 296, + 1860, + 1398, + 1860, + 1398, + 1924, + 296, + 1924 + ], + "score": 0.521 + }, + { + "category_id": 1, + "poly": [ + 296, + 1220, + 1399, + 1220, + 1399, + 1284, + 296, + 1284 + ], + "score": 0.519 + }, + { + "category_id": 1, + "poly": [ + 299, + 1460, + 1401, + 1460, + 1401, + 1554, + 299, + 1554 + ], + "score": 0.517 + }, + { + "category_id": 1, + "poly": [ + 295, + 1941, + 1402, + 1941, + 1402, + 2033, + 295, + 2033 + ], + "score": 0.403 + }, + { + "category_id": 13, + "poly": [ + 453, + 230, + 517, + 230, + 517, + 262, + 453, + 262 + ], + "score": 0.86, + "latex": "C , Q" + }, + { + "category_id": 13, + "poly": [ + 889, + 232, + 923, + 232, + 923, + 259, + 889, + 259 + ], + "score": 0.62, + "latex": "F A" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1009.0, + 491.0, + 1009.0, + 491.0, + 1049.0, + 296.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 406.0, + 566.0, + 406.0, + 566.0, + 457.0, + 291.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 824.0, + 558.0, + 824.0, + 558.0, + 853.0, + 299.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 479.0, + 1404.0, + 479.0, + 1404.0, + 517.0, + 292.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 511.0, + 1404.0, + 511.0, + 1404.0, + 549.0, + 294.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 544.0, + 1402.0, + 544.0, + 1402.0, + 575.0, + 295.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 575.0, + 1404.0, + 575.0, + 1404.0, + 607.0, + 296.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 603.0, + 1406.0, + 603.0, + 1406.0, + 637.0, + 291.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 632.0, + 1406.0, + 632.0, + 1406.0, + 670.0, + 292.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 663.0, + 1407.0, + 663.0, + 1407.0, + 702.0, + 292.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 696.0, + 1404.0, + 696.0, + 1404.0, + 727.0, + 296.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 727.0, + 1404.0, + 727.0, + 1404.0, + 759.0, + 296.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 756.0, + 682.0, + 756.0, + 682.0, + 789.0, + 293.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 866.0, + 1405.0, + 866.0, + 1405.0, + 913.0, + 292.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 902.0, + 1405.0, + 902.0, + 1405.0, + 937.0, + 294.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 930.0, + 1040.0, + 930.0, + 1040.0, + 973.0, + 292.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 452.0, + 230.0, + 452.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 230.0, + 888.0, + 230.0, + 888.0, + 266.0, + 518.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 230.0, + 1405.0, + 230.0, + 1405.0, + 266.0, + 924.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 261.0, + 1354.0, + 261.0, + 1354.0, + 296.0, + 296.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 307.0, + 1404.0, + 307.0, + 1404.0, + 342.0, + 296.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 339.0, + 876.0, + 339.0, + 876.0, + 370.0, + 296.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1648.0, + 1375.0, + 1648.0, + 1375.0, + 1690.0, + 293.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1700.0, + 1402.0, + 1700.0, + 1402.0, + 1736.0, + 294.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1733.0, + 837.0, + 1733.0, + 837.0, + 1764.0, + 323.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1779.0, + 1402.0, + 1779.0, + 1402.0, + 1818.0, + 293.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1811.0, + 500.0, + 1811.0, + 500.0, + 1845.0, + 325.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1057.0, + 1404.0, + 1057.0, + 1404.0, + 1098.0, + 294.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1091.0, + 814.0, + 1091.0, + 814.0, + 1124.0, + 322.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1567.0, + 1404.0, + 1567.0, + 1404.0, + 1609.0, + 295.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1603.0, + 692.0, + 1603.0, + 692.0, + 1634.0, + 322.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1139.0, + 1401.0, + 1139.0, + 1401.0, + 1177.0, + 295.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1171.0, + 1118.0, + 1171.0, + 1118.0, + 1205.0, + 322.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1377.0, + 1401.0, + 1377.0, + 1401.0, + 1417.0, + 294.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1409.0, + 1014.0, + 1409.0, + 1014.0, + 1444.0, + 322.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1296.0, + 1403.0, + 1296.0, + 1403.0, + 1340.0, + 293.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1331.0, + 999.0, + 1331.0, + 999.0, + 1367.0, + 324.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1855.0, + 1404.0, + 1855.0, + 1404.0, + 1898.0, + 292.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1892.0, + 598.0, + 1892.0, + 598.0, + 1923.0, + 322.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1220.0, + 1404.0, + 1220.0, + 1404.0, + 1256.0, + 295.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1251.0, + 1058.0, + 1251.0, + 1058.0, + 1287.0, + 322.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1459.0, + 1405.0, + 1459.0, + 1405.0, + 1496.0, + 293.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1491.0, + 1406.0, + 1491.0, + 1406.0, + 1526.0, + 322.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1523.0, + 883.0, + 1523.0, + 883.0, + 1553.0, + 325.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1940.0, + 1403.0, + 1940.0, + 1403.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2007.0, + 323.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2003.0, + 609.0, + 2003.0, + 609.0, + 2034.0, + 322.0, + 2034.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1681, + 1405, + 1681, + 1405, + 1835, + 297, + 1835 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 295, + 1851, + 1404, + 1851, + 1404, + 2035, + 295, + 2035 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.83 + }, + { + "category_id": 0, + "poly": [ + 299, + 1610, + 943, + 1610, + 943, + 1646, + 299, + 1646 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 291, + 220, + 1407, + 220, + 1407, + 1569, + 291, + 1569 + ], + "score": 0.56 + }, + { + "category_id": 13, + "poly": [ + 1179, + 611, + 1289, + 611, + 1289, + 641, + 1179, + 641 + ], + "score": 0.72, + "latex": "1 0 0 { , } 0 0 0 { + }" + }, + { + "category_id": 13, + "poly": [ + 715, + 1976, + 739, + 1976, + 739, + 2000, + 715, + 2000 + ], + "score": 0.57, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 1055, + 1976, + 1078, + 1976, + 1078, + 2000, + 1055, + 2000 + ], + "score": 0.39, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1607.0, + 947.0, + 1607.0, + 947.0, + 1651.0, + 294.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1680.0, + 1405.0, + 1680.0, + 1405.0, + 1717.0, + 295.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1710.0, + 1405.0, + 1710.0, + 1405.0, + 1746.0, + 295.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1739.0, + 1406.0, + 1739.0, + 1406.0, + 1778.0, + 294.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1767.0, + 1403.0, + 1767.0, + 1403.0, + 1812.0, + 291.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1803.0, + 733.0, + 1803.0, + 733.0, + 1836.0, + 296.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1849.0, + 1025.0, + 1849.0, + 1025.0, + 1885.0, + 295.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1878.0, + 1122.0, + 1878.0, + 1122.0, + 1918.0, + 294.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1910.0, + 1206.0, + 1910.0, + 1206.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1939.0, + 1215.0, + 1939.0, + 1215.0, + 1977.0, + 292.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1970.0, + 714.0, + 1970.0, + 714.0, + 2008.0, + 292.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1970.0, + 1054.0, + 1970.0, + 1054.0, + 2008.0, + 740.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2008.0, + 1079.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1999.0, + 1406.0, + 1999.0, + 1406.0, + 2041.0, + 290.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 230.0, + 1407.0, + 230.0, + 1407.0, + 273.0, + 293.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 261.0, + 1063.0, + 261.0, + 1063.0, + 303.0, + 320.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 318.0, + 1407.0, + 318.0, + 1407.0, + 360.0, + 291.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 350.0, + 876.0, + 350.0, + 876.0, + 387.0, + 322.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 401.0, + 1405.0, + 401.0, + 1405.0, + 448.0, + 291.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 430.0, + 1407.0, + 430.0, + 1407.0, + 481.0, + 317.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 461.0, + 398.0, + 461.0, + 398.0, + 507.0, + 320.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 523.0, + 1407.0, + 523.0, + 1407.0, + 565.0, + 291.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 555.0, + 706.0, + 555.0, + 706.0, + 592.0, + 317.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 608.0, + 1178.0, + 608.0, + 1178.0, + 653.0, + 291.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 608.0, + 1405.0, + 608.0, + 1405.0, + 653.0, + 1290.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 642.0, + 904.0, + 642.0, + 904.0, + 680.0, + 318.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 700.0, + 1404.0, + 700.0, + 1404.0, + 738.0, + 294.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 730.0, + 881.0, + 730.0, + 881.0, + 768.0, + 322.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 783.0, + 1405.0, + 783.0, + 1405.0, + 830.0, + 294.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 818.0, + 812.0, + 818.0, + 812.0, + 855.0, + 318.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 870.0, + 1405.0, + 870.0, + 1405.0, + 916.0, + 291.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 904.0, + 1231.0, + 904.0, + 1231.0, + 946.0, + 320.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 956.0, + 1407.0, + 956.0, + 1407.0, + 1003.0, + 291.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 993.0, + 1097.0, + 993.0, + 1097.0, + 1030.0, + 320.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1045.0, + 1404.0, + 1045.0, + 1404.0, + 1091.0, + 291.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1080.0, + 776.0, + 1080.0, + 776.0, + 1118.0, + 320.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1130.0, + 1407.0, + 1130.0, + 1407.0, + 1180.0, + 290.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1166.0, + 1075.0, + 1166.0, + 1075.0, + 1208.0, + 319.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1222.0, + 1407.0, + 1222.0, + 1407.0, + 1264.0, + 293.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1252.0, + 1065.0, + 1252.0, + 1065.0, + 1294.0, + 320.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1308.0, + 1407.0, + 1308.0, + 1407.0, + 1353.0, + 291.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1343.0, + 619.0, + 1343.0, + 619.0, + 1379.0, + 321.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1396.0, + 1407.0, + 1396.0, + 1407.0, + 1441.0, + 291.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1429.0, + 1256.0, + 1429.0, + 1256.0, + 1470.0, + 318.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1483.0, + 1405.0, + 1483.0, + 1405.0, + 1528.0, + 291.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1518.0, + 600.0, + 1518.0, + 600.0, + 1557.0, + 322.0, + 1557.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1582, + 1405, + 1582, + 1405, + 1707, + 297, + 1707 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 296, + 219, + 1406, + 219, + 1406, + 767, + 296, + 767 + ], + "score": 0.969 + }, + { + "category_id": 3, + "poly": [ + 299, + 857, + 1407, + 857, + 1407, + 1394, + 299, + 1394 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 297, + 1747, + 1401, + 1747, + 1401, + 1811, + 297, + 1811 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 649, + 1816, + 1048, + 1816, + 1048, + 1861, + 649, + 1861 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 297, + 1871, + 972, + 1871, + 972, + 1906, + 297, + 1906 + ], + "score": 0.926 + }, + { + "category_id": 4, + "poly": [ + 441, + 1415, + 1253, + 1415, + 1253, + 1451, + 441, + 1451 + ], + "score": 0.923 + }, + { + "category_id": 4, + "poly": [ + 437, + 788, + 1259, + 788, + 1259, + 824, + 437, + 824 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 297, + 1509, + 1139, + 1509, + 1139, + 1548, + 297, + 1548 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 866, + 2087, + 866, + 2113, + 836, + 2113 + ], + "score": 0.833 + }, + { + "category_id": 8, + "poly": [ + 348, + 1992, + 1346, + 1992, + 1346, + 2041, + 348, + 2041 + ], + "score": 0.656 + }, + { + "category_id": 8, + "poly": [ + 353, + 1923, + 1346, + 1923, + 1346, + 2042, + 353, + 2042 + ], + "score": 0.508 + }, + { + "category_id": 8, + "poly": [ + 357, + 1923, + 1337, + 1923, + 1337, + 1971, + 357, + 1971 + ], + "score": 0.439 + }, + { + "category_id": 14, + "poly": [ + 646, + 1814, + 1052, + 1814, + 1052, + 1859, + 646, + 1859 + ], + "score": 0.91, + "latex": "\\{ \\pmb { w } _ { 1 } ^ { C } , \\ldots , \\pmb { w } _ { m } ^ { C } \\} , \\quad \\{ \\pmb { w } _ { 1 } ^ { Q } , \\ldots , \\pmb { w } _ { n } ^ { Q } \\} ." + }, + { + "category_id": 13, + "poly": [ + 1321, + 1615, + 1349, + 1615, + 1349, + 1646, + 1321, + 1646 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1615, + 1119, + 1615, + 1119, + 1642, + 1091, + 1642 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 14, + "poly": [ + 351, + 1920, + 1348, + 1920, + 1348, + 2042, + 351, + 2042 + ], + "score": 0.74, + "latex": "\\begin{array} { r l } & { h _ { 1 } ^ { C l } , \\ldots , h _ { m } ^ { C l } = \\mathrm { B i L S T M } ( w _ { 1 } ^ { C } , \\ldots , w _ { m } ^ { C } ) , \\quad h _ { 1 } ^ { Q l } , \\ldots , h _ { n } ^ { Q l } = \\mathrm { B i L S T M } ( w _ { 1 } ^ { Q } , \\ldots , w _ { n } ^ { Q } ) , } \\\\ & { h _ { 1 } ^ { C h } , \\ldots , h _ { m } ^ { C h } = \\mathrm { B i L S T M } ( h _ { 1 } ^ { C l } , \\ldots , h _ { m } ^ { C l } ) , \\quad h _ { 1 } ^ { Q h } , \\ldots , h _ { n } ^ { Q h } = \\mathrm { B i L S T M } ( h _ { 1 } ^ { Q l } , \\ldots , h _ { n } ^ { Q l } ) . } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 225.0, + 391.0, + 225.0, + 391.0, + 264.0, + 346.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 297.0, + 390.0, + 297.0, + 390.0, + 332.0, + 347.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 297.0, + 1203.0, + 297.0, + 1203.0, + 331.0, + 986.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 337.0, + 337.0, + 337.0, + 337.0, + 567.0, + 297.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 346.0, + 1233.0, + 346.0, + 1233.0, + 374.0, + 1005.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 373.0, + 377.0, + 373.0, + 377.0, + 392.0, + 356.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 364.0, + 518.0, + 364.0, + 518.0, + 414.0, + 480.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 368.0, + 1278.0, + 368.0, + 1278.0, + 399.0, + 988.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 391.0, + 488.0, + 391.0, + 488.0, + 452.0, + 461.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 394.0, + 1404.0, + 394.0, + 1404.0, + 429.0, + 1155.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 437.0, + 385.0, + 437.0, + 385.0, + 468.0, + 351.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 431.0, + 471.0, + 431.0, + 471.0, + 488.0, + 446.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 428.0, + 1133.0, + 428.0, + 1133.0, + 461.0, + 1002.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 426.0, + 1312.0, + 426.0, + 1312.0, + 455.0, + 1159.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 451.0, + 1325.0, + 451.0, + 1325.0, + 484.0, + 1155.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 480.0, + 458.0, + 480.0, + 458.0, + 487.0, + 451.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 466.0, + 1138.0, + 466.0, + 1138.0, + 499.0, + 1002.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 504.0, + 387.0, + 504.0, + 387.0, + 540.0, + 349.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 525.0, + 438.0, + 525.0, + 438.0, + 546.0, + 419.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 520.0, + 1123.0, + 520.0, + 1123.0, + 552.0, + 1001.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 549.0, + 1198.0, + 549.0, + 1198.0, + 583.0, + 1000.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 573.0, + 391.0, + 573.0, + 391.0, + 612.0, + 347.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 637.0, + 421.0, + 637.0, + 421.0, + 665.0, + 397.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 644.0, + 388.0, + 644.0, + 388.0, + 678.0, + 347.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 675.0, + 998.0, + 675.0, + 998.0, + 711.0, + 392.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 726.0, + 820.0, + 726.0, + 820.0, + 769.0, + 588.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 860.0, + 391.0, + 860.0, + 391.0, + 895.0, + 350.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 911.0, + 1198.0, + 911.0, + 1198.0, + 948.0, + 993.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 944.0, + 390.0, + 944.0, + 390.0, + 977.0, + 351.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 956.0, + 1271.0, + 956.0, + 1271.0, + 987.0, + 994.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 977.0, + 337.0, + 977.0, + 337.0, + 1191.0, + 297.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 984.0, + 521.0, + 984.0, + 521.0, + 1005.0, + 502.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 982.0, + 1389.0, + 982.0, + 1389.0, + 1017.0, + 1160.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 996.0, + 506.0, + 996.0, + 506.0, + 1028.0, + 482.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 1012.0, + 1315.0, + 1012.0, + 1315.0, + 1045.0, + 1161.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1037.0, + 1126.0, + 1037.0, + 1126.0, + 1066.0, + 998.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 1038.0, + 1405.0, + 1038.0, + 1405.0, + 1070.0, + 1163.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1077.0, + 1131.0, + 1077.0, + 1131.0, + 1106.0, + 999.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 1065.0, + 1329.0, + 1065.0, + 1329.0, + 1097.0, + 1155.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1108.0, + 391.0, + 1108.0, + 391.0, + 1143.0, + 348.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1132.0, + 423.0, + 1132.0, + 423.0, + 1143.0, + 411.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1123.0, + 1120.0, + 1123.0, + 1120.0, + 1155.0, + 998.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 1172.0, + 1191.0, + 1172.0, + 1191.0, + 1203.0, + 994.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1189.0, + 394.0, + 1189.0, + 394.0, + 1228.0, + 348.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 1249.0, + 423.0, + 1249.0, + 423.0, + 1276.0, + 399.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1272.0, + 391.0, + 1272.0, + 391.0, + 1306.0, + 350.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1305.0, + 993.0, + 1305.0, + 993.0, + 1339.0, + 396.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 1354.0, + 823.0, + 1354.0, + 823.0, + 1397.0, + 582.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 919.0, + 1003.0, + 919.0, + 1003.0, + 933.0, + 980.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1044.0, + 503.0, + 1044.0, + 503.0, + 1059.0, + 429.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.75, + 1129.5, + 447.75, + 1129.5, + 447.75, + 1145.5, + 413.75, + 1145.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1413.0, + 1254.0, + 1413.0, + 1254.0, + 1453.0, + 443.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 786.0, + 1259.0, + 786.0, + 1259.0, + 827.0, + 437.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1509.0, + 1142.0, + 1509.0, + 1142.0, + 1550.0, + 294.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1580.0, + 1405.0, + 1580.0, + 1405.0, + 1618.0, + 292.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1611.0, + 1090.0, + 1611.0, + 1090.0, + 1648.0, + 292.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 1611.0, + 1320.0, + 1611.0, + 1320.0, + 1648.0, + 1120.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 1611.0, + 1406.0, + 1611.0, + 1406.0, + 1648.0, + 1350.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1646.0, + 1402.0, + 1646.0, + 1402.0, + 1678.0, + 295.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1676.0, + 669.0, + 1676.0, + 669.0, + 1709.0, + 295.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1744.0, + 1406.0, + 1744.0, + 1406.0, + 1785.0, + 292.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1779.0, + 573.0, + 1779.0, + 573.0, + 1815.0, + 295.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1870.0, + 972.0, + 1870.0, + 972.0, + 1910.0, + 294.0, + 1910.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1848, + 1406, + 1848, + 1406, + 2034, + 296, + 2034 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 891, + 1405, + 891, + 1405, + 1019, + 297, + 1019 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 374, + 1403, + 374, + 1403, + 479, + 299, + 479 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 302, + 1498, + 1399, + 1498, + 1399, + 1607, + 302, + 1607 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 427, + 1324, + 1271, + 1324, + 1271, + 1488, + 427, + 1488 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 300, + 649, + 1404, + 649, + 1404, + 713, + 300, + 713 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 637, + 1103, + 1062, + 1103, + 1062, + 1247, + 637, + 1247 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 296, + 1249, + 1404, + 1249, + 1404, + 1313, + 296, + 1313 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 291, + 753, + 1401, + 753, + 1401, + 819, + 291, + 819 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 675, + 595, + 1023, + 595, + 1023, + 641, + 675, + 641 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 464, + 274, + 1233, + 274, + 1233, + 355, + 464, + 355 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 536, + 491, + 1161, + 491, + 1161, + 543, + 536, + 543 + ], + "score": 0.931 + }, + { + "category_id": 8, + "poly": [ + 382, + 829, + 1313, + 829, + 1313, + 877, + 382, + 877 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 297, + 1058, + 1098, + 1058, + 1098, + 1092, + 297, + 1092 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 295, + 1774, + 1273, + 1774, + 1273, + 1809, + 295, + 1809 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 293, + 550, + 1191, + 550, + 1191, + 584, + 293, + 584 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1254, + 228, + 1254, + 263, + 298, + 263 + ], + "score": 0.919 + }, + { + "category_id": 8, + "poly": [ + 446, + 1720, + 1252, + 1720, + 1252, + 1767, + 446, + 1767 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 303, + 1676, + 1396, + 1676, + 1396, + 1710, + 303, + 1710 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.864 + }, + { + "category_id": 1, + "poly": [ + 339, + 1618, + 1345, + 1618, + 1345, + 1668, + 339, + 1668 + ], + "score": 0.686 + }, + { + "category_id": 8, + "poly": [ + 339, + 1618, + 1345, + 1618, + 1345, + 1668, + 339, + 1668 + ], + "score": 0.343 + }, + { + "category_id": 13, + "poly": [ + 372, + 888, + 535, + 888, + 535, + 927, + 372, + 927 + ], + "score": 0.94, + "latex": "[ g _ { i } ; c _ { i } ; h _ { i } ^ { l } ; h _ { i } ^ { h } ]" + }, + { + "category_id": 14, + "poly": [ + 462, + 272, + 1235, + 272, + 1235, + 362, + 462, + 362 + ], + "score": 0.94, + "latex": "\\hat { \\boldsymbol { h } } _ { i } ^ { C h } = \\sum _ { j } \\alpha _ { i j } \\boldsymbol { h } _ { j } ^ { Q h } , \\quad \\alpha _ { i j } = \\frac { \\exp ( S _ { i j } ) } { \\sum _ { k } \\exp ( S _ { i k } ) } , \\quad S _ { i j } = S ( \\boldsymbol { h } _ { i } ^ { C h } , \\boldsymbol { h } _ { j } ^ { Q h } ) ." + }, + { + "category_id": 13, + "poly": [ + 1299, + 381, + 1352, + 381, + 1352, + 420, + 1299, + 420 + ], + "score": 0.93, + "latex": "h _ { i } ^ { C h }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1537, + 514, + 1537, + 514, + 1577, + 298, + 1577 + ], + "score": 0.92, + "latex": "[ { \\pmb g } _ { i } ^ { C } ; { \\pmb c } _ { i } ^ { C } ; { \\pmb h } _ { i } ^ { C l } ; { \\pmb h } _ { i } ^ { C h } ]" + }, + { + "category_id": 13, + "poly": [ + 763, + 373, + 816, + 373, + 816, + 420, + 763, + 420 + ], + "score": 0.92, + "latex": "\\hat { h } _ { i } ^ { C h }" + }, + { + "category_id": 14, + "poly": [ + 673, + 594, + 1024, + 594, + 1024, + 639, + 673, + 639 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { { \\pmb u } _ { 1 } ^ { Q } , \\dots , { \\pmb u } _ { n } ^ { Q } = { \\pmb h } _ { 1 } ^ { Q h } , \\dots , { \\pmb h } _ { n } ^ { Q h } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 538, + 489, + 1158, + 489, + 1158, + 541, + 538, + 541 + ], + "score": 0.92, + "latex": "\\pmb { u } _ { 1 } ^ { C } , \\ldots , \\pmb { u } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ \\pmb { h } _ { 1 } ^ { C h } ; \\hat { \\pmb { h } } _ { 1 } ^ { C h } ] , \\dots , [ \\pmb { h } _ { m } ^ { C h } ; \\hat { \\pmb { h } } _ { m } ^ { C h } ] )" + }, + { + "category_id": 13, + "poly": [ + 909, + 1496, + 997, + 1496, + 997, + 1541, + 909, + 1541 + ], + "score": 0.91, + "latex": "\\mathrm { H } \\mathrm { \\hat { o } } \\mathrm { W } _ { i } ^ { C }" + }, + { + "category_id": 14, + "poly": [ + 386, + 828, + 1311, + 828, + 1311, + 878, + 386, + 878 + ], + "score": 0.9, + "latex": "S _ { i j } = S ( { h _ { i } ^ { C h } } , { h _ { j } ^ { Q h } } ) \\quad \\Longrightarrow \\qquad S _ { i j } = S ( [ g _ { i } ^ { C } ; { c _ { i } ^ { C } } ; { h _ { i } ^ { C l } } ; { h _ { i } ^ { C h } } ] , [ g _ { j } ^ { Q } ; { c _ { j } ^ { Q } } ; { h _ { j } ^ { Q l } } ; { h _ { j } ^ { Q h } } ] ) ," + }, + { + "category_id": 14, + "poly": [ + 446, + 1720, + 1250, + 1720, + 1250, + 1765, + 446, + 1765 + ], + "score": 0.9, + "latex": "\\pmb { u } _ { 1 } ^ { Q } , \\ldots , \\pmb { u } _ { n } ^ { Q } = \\mathrm { B i L S T M } ( [ g _ { 1 } ^ { Q } ; c _ { 1 } ^ { Q } ; \\pmb { h } _ { 1 } ^ { Q l } ; \\pmb { h } _ { 1 } ^ { Q h } ] , \\ldots , [ g _ { m } ^ { Q } ; c _ { m } ^ { Q } ; \\pmb { h } _ { m } ^ { Q l } ; \\pmb { h } _ { m } ^ { Q h } ] ) ." + }, + { + "category_id": 14, + "poly": [ + 354, + 1616, + 1343, + 1616, + 1343, + 1668, + 354, + 1668 + ], + "score": 0.89, + "latex": "\\pmb { u } _ { 1 } ^ { C } , \\dots , \\pmb { u } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ g _ { 1 } ^ { C } ; c _ { 1 } ^ { C } ; h _ { 1 } ^ { C l } ; h _ { 1 } ^ { C h } ; \\mathrm { H \\hat { o } W } _ { 1 } ^ { C } ] , \\dots , [ g _ { m } ^ { C } ; c _ { m } ^ { C } ; h _ { m } ^ { C l } ; h _ { m } ^ { C h } ; \\mathrm { H \\hat { o } W } _ { m } ^ { C } ] )" + }, + { + "category_id": 14, + "poly": [ + 632, + 1203, + 1063, + 1203, + 1063, + 1246, + 632, + 1246 + ], + "score": 0.8, + "latex": "\\{ \\boldsymbol { h } _ { 1 } ^ { C h } , \\ldots , \\boldsymbol { h } _ { m } ^ { C h } \\} , \\quad \\{ \\boldsymbol { h } _ { 1 } ^ { Q h } , \\ldots , \\boldsymbol { h } _ { n } ^ { Q h } \\} ." + }, + { + "category_id": 14, + "poly": [ + 646, + 1103, + 1048, + 1103, + 1048, + 1147, + 646, + 1147 + ], + "score": 0.79, + "latex": "\\{ \\pmb { w } _ { 1 } ^ { C } , \\ldots , \\pmb { w } _ { m } ^ { C } \\} , \\quad \\{ \\pmb { w } _ { 1 } ^ { Q } , \\ldots , \\pmb { w } _ { n } ^ { Q } \\} ," + }, + { + "category_id": 13, + "poly": [ + 880, + 1917, + 901, + 1917, + 901, + 1939, + 880, + 1939 + ], + "score": 0.77, + "latex": "\\alpha" + }, + { + "category_id": 14, + "poly": [ + 640, + 1156, + 1054, + 1156, + 1054, + 1199, + 640, + 1199 + ], + "score": 0.75, + "latex": "\\{ \\pmb { h } _ { 1 } ^ { C l } , \\ldots , \\pmb { h } _ { m } ^ { C l } \\} , \\quad \\{ \\pmb { h } _ { 1 } ^ { Q l } , \\ldots , \\pmb { h } _ { n } ^ { Q l } \\} ," + }, + { + "category_id": 14, + "poly": [ + 633, + 1409, + 1063, + 1409, + 1063, + 1489, + 633, + 1489 + ], + "score": 0.66, + "latex": "\\mathrm { \\hat { H o W } } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } [ \\pmb { g } _ { j } ^ { Q } ; \\pmb { c } _ { j } ^ { Q } ; \\pmb { h } _ { j } ^ { Q l } ; \\pmb { h } _ { j } ^ { Q h } ] ." + }, + { + "category_id": 14, + "poly": [ + 426, + 1321, + 1269, + 1321, + 1269, + 1490, + 426, + 1490 + ], + "score": 0.65, + "latex": "\\begin{array} { c } { \\displaystyle \\alpha _ { i j } = \\frac { \\exp ( S _ { i j } ) } { \\sum _ { k } \\exp ( S _ { i k } ) } , \\quad { S _ { i j } = S ( [ g _ { i } ^ { C } ; c _ { i } ^ { C } ; h _ { i } ^ { C l } ; h _ { i } ^ { C h } ] , [ g _ { j } ^ { Q } ; c _ { j } ^ { Q } ; h _ { j } ^ { Q l } ; h _ { j } ^ { Q h } ] ) } , } \\\\ { \\displaystyle { \\mathrm { H o W } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } [ g _ { j } ^ { Q } ; c _ { j } ^ { Q } ; h _ { j } ^ { Q l } ; h _ { j } ^ { Q h } ] } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 950, + 1252, + 985, + 1252, + 985, + 1279, + 950, + 1279 + ], + "score": 0.6, + "latex": "F A" + }, + { + "category_id": 13, + "poly": [ + 442, + 956, + 477, + 956, + 477, + 983, + 442, + 983 + ], + "score": 0.56, + "latex": "F A" + }, + { + "category_id": 13, + "poly": [ + 974, + 1883, + 1009, + 1883, + 1009, + 1910, + 974, + 1910 + ], + "score": 0.36, + "latex": "F A" + }, + { + "category_id": 14, + "poly": [ + 426, + 1323, + 1266, + 1323, + 1266, + 1399, + 426, + 1399 + ], + "score": 0.33, + "latex": "\\alpha _ { i j } = \\frac { \\exp ( S _ { i j } ) } { \\sum _ { k } \\exp ( S _ { i k } ) } , \\quad S _ { i j } = S ( [ { \\bf g } _ { i } ^ { C } ; { c } _ { i } ^ { C } ; { h } _ { i } ^ { C l } ; { h } _ { i } ^ { C h } ] , [ { \\bf g } _ { j } ^ { Q } ; { c } _ { j } ^ { Q } ; { h } _ { j } ^ { Q l } ; { h } _ { j } ^ { Q h } ] ) ," + }, + { + "category_id": 13, + "poly": [ + 1221, + 1944, + 1256, + 1944, + 1256, + 1970, + 1221, + 1970 + ], + "score": 0.33, + "latex": "F A" + }, + { + "category_id": 14, + "poly": [ + 635, + 1103, + 1061, + 1103, + 1061, + 1248, + 635, + 1248 + ], + "score": 0.27, + "latex": "\\begin{array} { r l } { \\{ \\pmb { w } _ { 1 } ^ { C } , \\ldots , \\pmb { w } _ { m } ^ { C } \\} , } & { \\{ \\pmb { w } _ { 1 } ^ { Q } , \\ldots , \\pmb { w } _ { n } ^ { Q } \\} , } \\\\ & { \\{ \\pmb { h } _ { 1 } ^ { C l } , \\ldots , \\pmb { h } _ { m } ^ { C l } \\} , \\quad \\{ \\pmb { h } _ { 1 } ^ { Q l } , \\ldots , \\pmb { h } _ { n } ^ { Q l } \\} , } \\\\ & { \\{ \\pmb { h } _ { 1 } ^ { C h } , \\ldots , \\pmb { h } _ { m } ^ { C h } \\} , \\quad \\{ \\pmb { h } _ { 1 } ^ { Q h } , \\ldots , \\pmb { h } _ { n } ^ { Q h } \\} . } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1849.0, + 1404.0, + 1849.0, + 1404.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1880.0, + 973.0, + 1880.0, + 973.0, + 1918.0, + 291.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 1880.0, + 1407.0, + 1880.0, + 1407.0, + 1918.0, + 1010.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1906.0, + 879.0, + 1906.0, + 879.0, + 1950.0, + 291.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1906.0, + 1404.0, + 1906.0, + 1404.0, + 1950.0, + 902.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1944.0, + 1220.0, + 1944.0, + 1220.0, + 1975.0, + 295.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1944.0, + 1403.0, + 1944.0, + 1403.0, + 1975.0, + 1257.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1968.0, + 1406.0, + 1968.0, + 1406.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1998.0, + 375.0, + 1998.0, + 375.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 890.0, + 371.0, + 890.0, + 371.0, + 930.0, + 295.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 890.0, + 1406.0, + 890.0, + 1406.0, + 930.0, + 536.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 925.0, + 1403.0, + 925.0, + 1403.0, + 959.0, + 295.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 954.0, + 441.0, + 954.0, + 441.0, + 991.0, + 294.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 954.0, + 1405.0, + 954.0, + 1405.0, + 991.0, + 478.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 985.0, + 1368.0, + 985.0, + 1368.0, + 1022.0, + 294.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 373.0, + 762.0, + 373.0, + 762.0, + 429.0, + 286.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 373.0, + 1298.0, + 373.0, + 1298.0, + 429.0, + 817.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 373.0, + 1402.0, + 373.0, + 1402.0, + 429.0, + 1353.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 415.0, + 1405.0, + 415.0, + 1405.0, + 451.0, + 293.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 448.0, + 1083.0, + 448.0, + 1083.0, + 480.0, + 295.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1502.0, + 908.0, + 1502.0, + 908.0, + 1542.0, + 294.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1502.0, + 1404.0, + 1502.0, + 1404.0, + 1542.0, + 998.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1521.0, + 297.0, + 1521.0, + 297.0, + 1594.0, + 287.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1521.0, + 1405.0, + 1521.0, + 1405.0, + 1594.0, + 515.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1573.0, + 1332.0, + 1573.0, + 1332.0, + 1606.0, + 294.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 648.0, + 1405.0, + 648.0, + 1405.0, + 686.0, + 294.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 680.0, + 1404.0, + 680.0, + 1404.0, + 716.0, + 295.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1248.0, + 949.0, + 1248.0, + 949.0, + 1284.0, + 295.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 1248.0, + 1402.0, + 1248.0, + 1402.0, + 1284.0, + 986.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1280.0, + 485.0, + 1280.0, + 485.0, + 1313.0, + 295.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 750.0, + 1403.0, + 750.0, + 1403.0, + 793.0, + 294.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 781.0, + 628.0, + 781.0, + 628.0, + 824.0, + 294.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1055.0, + 1098.0, + 1055.0, + 1098.0, + 1096.0, + 293.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1774.0, + 1276.0, + 1774.0, + 1276.0, + 1812.0, + 296.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 548.0, + 1192.0, + 548.0, + 1192.0, + 588.0, + 296.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 223.0, + 1259.0, + 223.0, + 1259.0, + 271.0, + 291.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1673.0, + 1403.0, + 1673.0, + 1403.0, + 1713.0, + 299.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1610.0, + 353.0, + 1610.0, + 353.0, + 1680.0, + 347.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1610.0, + 1352.0, + 1610.0, + 1352.0, + 1680.0, + 1344.0, + 1680.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 302, + 1224, + 846, + 1224, + 846, + 1415, + 302, + 1415 + ], + "score": 0.98, + "html": "
ConfigurationEM/F1
FusionNetFusionNet (without CoVe)FusionNet (fixing GloVe)75.3 / 83.674.1 / 82.575.0 / 83.2
Previous SotA (Hu et al., 2017)72.1/ 81.6
" + }, + { + "category_id": 5, + "poly": [ + 881, + 1224, + 1399, + 1224, + 1399, + 1449, + 881, + 1449 + ], + "score": 0.976, + "html": "
ConfigurationEM/F1
FusionNet (S,10-run best)FusionNet (S,10-run mean)FusionNet (S, without CoVe)FusionNet (E)45.6 / 51.144.9 / 50.147.4 / 52.446.2 / 51.4
Previous SotA (E)40.7/46.2
" + }, + { + "category_id": 5, + "poly": [ + 880, + 1561, + 1400, + 1561, + 1400, + 1786, + 880, + 1786 + ], + "score": 0.976, + "html": "
ConfigurationEM/F1
FusionNet (S,10-run best)FusionNet (S,10-run mean)FusionNet (S, without CoVe)FusionNet (E)54.8/60.953.1/ 59.355.2 / 61.254.7 / 60.7
Previous SotA (E)48.7 / 55.3
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1911, + 1405, + 1911, + 1405, + 2035, + 298, + 2035 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 394, + 1009, + 1403, + 1009, + 1403, + 1103, + 394, + 1103 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 296, + 1512, + 849, + 1512, + 849, + 1756, + 296, + 1756 + ], + "score": 0.97 + }, + { + "category_id": 4, + "poly": [ + 296, + 1778, + 851, + 1778, + 851, + 1872, + 296, + 1872 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 369, + 228, + 1403, + 228, + 1403, + 324, + 369, + 324 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 392, + 732, + 1400, + 732, + 1400, + 795, + 392, + 795 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 562, + 632, + 1233, + 632, + 1233, + 714, + 562, + 714 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 365, + 864, + 1400, + 864, + 1400, + 932, + 365, + 932 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 609, + 805, + 1185, + 805, + 1185, + 852, + 609, + 852 + ], + "score": 0.938 + }, + { + "category_id": 6, + "poly": [ + 861, + 1471, + 1418, + 1471, + 1418, + 1534, + 861, + 1534 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 389, + 401, + 1399, + 401, + 1399, + 464, + 389, + 464 + ], + "score": 0.93 + }, + { + "category_id": 8, + "poly": [ + 434, + 944, + 1361, + 944, + 1361, + 1000, + 434, + 1000 + ], + "score": 0.924 + }, + { + "category_id": 8, + "poly": [ + 417, + 337, + 1376, + 337, + 1376, + 391, + 417, + 391 + ], + "score": 0.909 + }, + { + "category_id": 1, + "poly": [ + 379, + 472, + 1399, + 472, + 1399, + 507, + 379, + 507 + ], + "score": 0.902 + }, + { + "category_id": 1, + "poly": [ + 403, + 584, + 1235, + 584, + 1235, + 618, + 403, + 618 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.863 + }, + { + "category_id": 6, + "poly": [ + 296, + 1438, + 852, + 1438, + 852, + 1500, + 296, + 1500 + ], + "score": 0.809 + }, + { + "category_id": 8, + "poly": [ + 409, + 520, + 1378, + 520, + 1378, + 574, + 409, + 574 + ], + "score": 0.807 + }, + { + "category_id": 6, + "poly": [ + 861, + 1808, + 1416, + 1808, + 1416, + 1872, + 861, + 1872 + ], + "score": 0.791 + }, + { + "category_id": 6, + "poly": [ + 297, + 1147, + 1102, + 1147, + 1102, + 1184, + 297, + 1184 + ], + "score": 0.663 + }, + { + "category_id": 0, + "poly": [ + 297, + 1147, + 1102, + 1147, + 1102, + 1184, + 297, + 1184 + ], + "score": 0.268 + }, + { + "category_id": 4, + "poly": [ + 296, + 1438, + 852, + 1438, + 852, + 1500, + 296, + 1500 + ], + "score": 0.133 + }, + { + "category_id": 1, + "poly": [ + 409, + 520, + 1378, + 520, + 1378, + 574, + 409, + 574 + ], + "score": 0.107 + }, + { + "category_id": 13, + "poly": [ + 865, + 865, + 1073, + 865, + 1073, + 906, + 865, + 906 + ], + "score": 0.93, + "latex": "S _ { i j } = S ( \\pmb { v } _ { i } ^ { C } , \\pmb { v } _ { j } ^ { C } )" + }, + { + "category_id": 14, + "poly": [ + 562, + 631, + 1237, + 631, + 1237, + 718, + 562, + 718 + ], + "score": 0.92, + "latex": "S _ { i j } = S ( \\pmb { v } _ { i } ^ { C } , \\pmb { v } _ { j } ^ { C } ) , \\alpha _ { i j } = \\frac { \\exp ( S _ { i j } ) } { \\sum _ { k } \\exp ( S _ { i k } ) } , \\hat { \\pmb { v } } _ { i } ^ { C } = \\sum _ { j } \\alpha _ { i j } \\pmb { v } _ { j } ^ { C } ." + }, + { + "category_id": 14, + "poly": [ + 419, + 336, + 1376, + 336, + 1376, + 388, + 419, + 388 + ], + "score": 0.91, + "latex": "\\pmb { u } _ { 1 } ^ { C } , \\dots , \\pmb { u } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ \\pmb { h } _ { 1 } ^ { C l } ; \\pmb { h } _ { 1 } ^ { C h } ; \\hat { \\pmb { h } } _ { 1 } ^ { C l } ; \\hat { \\pmb { h } } _ { 1 } ^ { C h } ; \\hat { \\pmb { u } } _ { 1 } ^ { C } ] , \\dots , [ \\pmb { h } _ { m } ^ { C l } ; \\pmb { h } _ { m } ^ { C h } ; \\hat { \\pmb { h } } _ { m } ^ { C l } ; \\hat { \\pmb { h } } _ { m } ^ { C h } ; \\hat { \\pmb { u } } _ { m } ^ { C } ] ) ." + }, + { + "category_id": 14, + "poly": [ + 422, + 519, + 1374, + 519, + 1374, + 572, + 422, + 572 + ], + "score": 0.9, + "latex": "\\pmb { v } _ { 1 } ^ { C } , \\dots , \\pmb { v } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ h _ { 1 } ^ { C l } ; h _ { 1 } ^ { C h } ; \\hat { h } _ { 1 } ^ { C l } ; \\hat { h } _ { 1 } ^ { C h } ; \\hat { u } _ { 1 } ^ { C } ] , \\dots , [ h _ { m } ^ { C l } ; h _ { m } ^ { C h } ; \\hat { h } _ { m } ^ { C l } ; \\hat { h } _ { m } ^ { C h } ; \\hat { u } _ { m } ^ { C } ] ) ." + }, + { + "category_id": 14, + "poly": [ + 611, + 805, + 1186, + 805, + 1186, + 850, + 611, + 850 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\pmb { u } _ { 1 } ^ { C } , \\ldots , \\pmb { u } _ { m } ^ { C } = \\mathrm { B i L S T M } ( [ \\pmb { v } _ { 1 } ^ { C } ; \\hat { \\pmb { v } } _ { 1 } ^ { C } ] , \\dots , [ \\pmb { v } _ { m } ^ { C } ; \\hat { \\pmb { v } } _ { m } ^ { C } ] ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 434, + 944, + 1363, + 944, + 1363, + 1000, + 434, + 1000 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { S _ { i j } = S ( [ { \\pmb w } _ { i } ^ { C } ; { \\pmb h } _ { i } ^ { C l } ; { \\pmb h } _ { i } ^ { C h } ; { \\hat { \\pmb h } } _ { u } ^ { C l } ; { \\hat { \\pmb h } } _ { i } ^ { C h } ; { \\hat { \\pmb u } } _ { i } ^ { C } ; { \\pmb v } _ { i } ^ { C } ] , [ { \\pmb w } _ { j } ^ { C } ; { \\pmb h } _ { j } ^ { C l } ; { \\pmb h } _ { j } ^ { C h } ; { \\hat { \\pmb h } } _ { j } ^ { C l } ; { \\hat { \\pmb h } } _ { j } ^ { C h } ; { \\hat { \\pmb u } } _ { j } ^ { C } ; { \\pmb v } _ { j } ^ { C } ] ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 450, + 1973, + 508, + 1973, + 508, + 2002, + 450, + 2002 + ], + "score": 0.89, + "latex": "+ 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 918, + 735, + 945, + 735, + 945, + 761, + 918, + 761 + ], + "score": 0.84, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 485, + 293, + 513, + 293, + 513, + 319, + 485, + 319 + ], + "score": 0.84, + "latex": "C" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1516.0, + 316.0, + 1516.0, + 316.0, + 1539.0, + 298.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1583.0, + 315.0, + 1583.0, + 315.0, + 1604.0, + 299.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1648.0, + 317.0, + 1648.0, + 317.0, + 1673.0, + 298.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1719.0, + 314.0, + 1719.0, + 314.0, + 1733.0, + 302.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1728.0, + 383.0, + 1728.0, + 383.0, + 1755.0, + 351.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 1727.0, + 481.0, + 1727.0, + 481.0, + 1757.0, + 417.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1723.0, + 780.0, + 1723.0, + 780.0, + 1759.0, + 483.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1730.0, + 840.0, + 1730.0, + 840.0, + 1754.0, + 801.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1776.0, + 854.0, + 1776.0, + 854.0, + 1813.0, + 294.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1808.0, + 855.0, + 1808.0, + 855.0, + 1842.0, + 296.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1838.0, + 761.0, + 1838.0, + 761.0, + 1875.0, + 294.0, + 1875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1470.0, + 1417.0, + 1470.0, + 1417.0, + 1505.0, + 862.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1502.0, + 1143.0, + 1502.0, + 1143.0, + 1534.0, + 861.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2122.0, + 832.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1435.0, + 854.0, + 1435.0, + 854.0, + 1471.0, + 294.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1468.0, + 647.0, + 1468.0, + 647.0, + 1500.0, + 297.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1807.0, + 1420.0, + 1807.0, + 1420.0, + 1842.0, + 861.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1840.0, + 1180.0, + 1840.0, + 1180.0, + 1873.0, + 863.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1143.0, + 1106.0, + 1143.0, + 1106.0, + 1189.0, + 295.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1143.0, + 1106.0, + 1143.0, + 1106.0, + 1189.0, + 295.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1435.0, + 854.0, + 1435.0, + 854.0, + 1471.0, + 294.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1468.0, + 647.0, + 1468.0, + 647.0, + 1500.0, + 297.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 1405.0, + 1909.0, + 1405.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 1403.0, + 1941.0, + 1403.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 449.0, + 1972.0, + 449.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 1972.0, + 1403.0, + 1972.0, + 1403.0, + 2008.0, + 509.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 1048.0, + 2003.0, + 1048.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1010.0, + 1402.0, + 1010.0, + 1402.0, + 1044.0, + 396.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1041.0, + 1404.0, + 1041.0, + 1404.0, + 1075.0, + 395.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1069.0, + 1224.0, + 1069.0, + 1224.0, + 1105.0, + 394.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 226.0, + 1406.0, + 226.0, + 1406.0, + 266.0, + 367.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 261.0, + 1405.0, + 261.0, + 1405.0, + 296.0, + 395.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 289.0, + 484.0, + 289.0, + 484.0, + 326.0, + 395.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 289.0, + 1134.0, + 289.0, + 1134.0, + 326.0, + 514.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 728.0, + 917.0, + 728.0, + 917.0, + 772.0, + 394.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 728.0, + 1405.0, + 728.0, + 1405.0, + 772.0, + 946.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 764.0, + 857.0, + 764.0, + 857.0, + 795.0, + 396.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 863.0, + 864.0, + 863.0, + 864.0, + 907.0, + 367.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 863.0, + 1405.0, + 863.0, + 1405.0, + 907.0, + 1074.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 895.0, + 636.0, + 895.0, + 636.0, + 938.0, + 392.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 401.0, + 1403.0, + 401.0, + 1403.0, + 436.0, + 396.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 430.0, + 663.0, + 430.0, + 663.0, + 466.0, + 395.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 473.0, + 1404.0, + 473.0, + 1404.0, + 508.0, + 371.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 580.0, + 1237.0, + 580.0, + 1237.0, + 622.0, + 396.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 500.0, + 421.0, + 500.0, + 421.0, + 591.0, + 407.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 500.0, + 1389.0, + 500.0, + 1389.0, + 591.0, + 1375.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 525.0, + 940.0, + 525.0, + 940.0, + 552.0, + 873.0, + 552.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 229, + 1404, + 229, + 1404, + 566, + 297, + 566 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1169, + 1404, + 1169, + 1404, + 1324, + 297, + 1324 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 970, + 1406, + 970, + 1406, + 1156, + 298, + 1156 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 679, + 1400, + 679, + 1400, + 803, + 300, + 803 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 1861, + 1403, + 1861, + 1403, + 1955, + 299, + 1955 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 295, + 1390, + 1402, + 1390, + 1402, + 1454, + 295, + 1454 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 716, + 1333, + 980, + 1333, + 980, + 1378, + 716, + 1378 + ], + "score": 0.946 + }, + { + "category_id": 2, + "poly": [ + 296, + 1977, + 1407, + 1977, + 1407, + 2034, + 296, + 2034 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 300, + 1577, + 1402, + 1577, + 1402, + 1647, + 300, + 1647 + ], + "score": 0.92 + }, + { + "category_id": 0, + "poly": [ + 299, + 611, + 1090, + 611, + 1090, + 647, + 299, + 647 + ], + "score": 0.904 + }, + { + "category_id": 8, + "poly": [ + 471, + 1467, + 1230, + 1467, + 1230, + 1572, + 471, + 1572 + ], + "score": 0.888 + }, + { + "category_id": 1, + "poly": [ + 361, + 829, + 1142, + 829, + 1142, + 945, + 361, + 945 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.866 + }, + { + "category_id": 8, + "poly": [ + 351, + 1769, + 1344, + 1769, + 1344, + 1852, + 351, + 1852 + ], + "score": 0.764 + }, + { + "category_id": 8, + "poly": [ + 357, + 1662, + 1340, + 1662, + 1340, + 1750, + 357, + 1750 + ], + "score": 0.731 + }, + { + "category_id": 8, + "poly": [ + 547, + 1468, + 1148, + 1468, + 1148, + 1513, + 547, + 1513 + ], + "score": 0.385 + }, + { + "category_id": 8, + "poly": [ + 469, + 1526, + 1232, + 1526, + 1232, + 1572, + 469, + 1572 + ], + "score": 0.349 + }, + { + "category_id": 8, + "poly": [ + 355, + 1662, + 1345, + 1662, + 1345, + 1852, + 355, + 1852 + ], + "score": 0.164 + }, + { + "category_id": 8, + "poly": [ + 351, + 1769, + 1342, + 1769, + 1342, + 1853, + 351, + 1853 + ], + "score": 0.099 + }, + { + "category_id": 14, + "poly": [ + 360, + 1660, + 1336, + 1660, + 1336, + 1753, + 360, + 1753 + ], + "score": 0.93, + "latex": "\\boldsymbol { g } _ { i } ^ { P } = [ h _ { i } ^ { P h } ; \\hat { h } _ { i } ^ { P h } ] , \\boldsymbol { \\hat { h } } _ { i } ^ { P h } = \\sum _ { j } \\alpha _ { i j } ^ { P } \\boldsymbol { h } _ { j } ^ { H h } , \\boldsymbol { \\alpha } _ { i j } ^ { P } = \\frac { \\exp ( S _ { i j } ^ { P } ) } { \\sum _ { k } \\exp ( S _ { i k } ^ { P } ) } , S _ { i j } ^ { P } = S ^ { P } ( h _ { i } ^ { P h } , h _ { j } ^ { H h } ) ," + }, + { + "category_id": 14, + "poly": [ + 349, + 1766, + 1346, + 1766, + 1346, + 1855, + 349, + 1855 + ], + "score": 0.93, + "latex": "{ g } _ { j } ^ { H } = [ { h } _ { j } ^ { H h } ; \\hat { h } _ { j } ^ { H h } ] , \\ \\hat { h } _ { j } ^ { H h } = \\sum _ { i } \\alpha _ { i j } ^ { H } { h } _ { i } ^ { P h } , \\ \\alpha _ { i j } ^ { H } = \\frac { \\exp ( S _ { i j } ^ { H } ) } { \\sum _ { k } \\exp ( S _ { k j } ^ { H } ) } , \\ S _ { i j } ^ { H } = S ^ { H } ( { h } _ { i } ^ { P h } , { h } _ { j } ^ { H h } ) ." + }, + { + "category_id": 13, + "poly": [ + 354, + 1890, + 443, + 1890, + 443, + 1928, + 354, + 1928 + ], + "score": 0.92, + "latex": "g _ { i } ^ { P } , g _ { j } ^ { H }" + }, + { + "category_id": 14, + "poly": [ + 714, + 1334, + 984, + 1334, + 984, + 1380, + 714, + 1380 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\pmb { w } _ { i } ^ { P } , \\pmb { w } _ { j } ^ { H } \\in \\mathbb { R } ^ { 9 0 0 + 2 0 + 1 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 990, + 1200, + 1066, + 1200, + 1066, + 1230, + 990, + 1230 + ], + "score": 0.89, + "latex": "8 8 . 0 \\%" + }, + { + "category_id": 14, + "poly": [ + 548, + 1467, + 1150, + 1467, + 1150, + 1514, + 548, + 1514 + ], + "score": 0.87, + "latex": "\\{ \\boldsymbol { h } _ { i } ^ { P l } \\} = \\mathrm { B i L S T M } ( \\boldsymbol { w } _ { i } ^ { P } ) , \\quad \\{ \\boldsymbol { h } _ { j } ^ { H l } \\} = \\mathrm { B i L S T M } ( \\boldsymbol { w } _ { j } ^ { H } ) ," + }, + { + "category_id": 13, + "poly": [ + 443, + 1231, + 519, + 1231, + 519, + 1262, + 443, + 1262 + ], + "score": 0.86, + "latex": "7 2 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1326, + 1200, + 1402, + 1200, + 1402, + 1231, + 1326, + 1231 + ], + "score": 0.86, + "latex": "7 2 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1145, + 1122, + 1239, + 1122, + 1239, + 1155, + 1145, + 1155 + ], + "score": 0.85, + "latex": "8 7 . 7 \\% ) ^ { 3 }" + }, + { + "category_id": 14, + "poly": [ + 468, + 1525, + 1230, + 1525, + 1230, + 1572, + 468, + 1572 + ], + "score": 0.85, + "latex": "\\{ { \\pmb h } _ { i } ^ { P h } \\} = \\mathrm { B i L S T M } ( [ { \\pmb w } _ { i } ^ { P } ; { \\pmb h } _ { i } ^ { P l } ] ) , \\quad \\{ { \\pmb h } _ { j } ^ { H h } \\} = \\mathrm { B i L S T M } ( [ { \\pmb w } _ { j } ^ { H } ; { \\pmb h } _ { j } ^ { H l } ] ) ." + }, + { + "category_id": 13, + "poly": [ + 409, + 1616, + 436, + 1616, + 436, + 1642, + 409, + 1642 + ], + "score": 0.84, + "latex": "_ { P }" + }, + { + "category_id": 13, + "poly": [ + 860, + 1263, + 888, + 1263, + 888, + 1289, + 860, + 1289 + ], + "score": 0.84, + "latex": "_ { r }" + }, + { + "category_id": 13, + "poly": [ + 762, + 1578, + 1083, + 1578, + 1083, + 1622, + 762, + 1622 + ], + "score": 0.84, + "latex": "h _ { i } ^ { P l } , h _ { i } ^ { P h } , h _ { j } ^ { H l } , h _ { j } ^ { H h } \\in \\mathbb { R } ^ { 3 0 0 }" + }, + { + "category_id": 13, + "poly": [ + 745, + 1616, + 772, + 1616, + 772, + 1642, + 745, + 1642 + ], + "score": 0.83, + "latex": "_ { P }" + }, + { + "category_id": 13, + "poly": [ + 392, + 1423, + 420, + 1423, + 420, + 1449, + 392, + 1449 + ], + "score": 0.83, + "latex": "_ { r }" + }, + { + "category_id": 13, + "poly": [ + 596, + 1423, + 627, + 1423, + 627, + 1449, + 596, + 1449 + ], + "score": 0.83, + "latex": "\\pmb { H }" + }, + { + "category_id": 13, + "poly": [ + 1306, + 743, + 1334, + 743, + 1334, + 769, + 1306, + 769 + ], + "score": 0.82, + "latex": "_ { r }" + }, + { + "category_id": 13, + "poly": [ + 681, + 1616, + 712, + 1616, + 712, + 1642, + 681, + 1642 + ], + "score": 0.81, + "latex": "\\pmb { H }" + }, + { + "category_id": 13, + "poly": [ + 469, + 1615, + 501, + 1615, + 501, + 1642, + 469, + 1642 + ], + "score": 0.8, + "latex": "\\pmb { H }" + }, + { + "category_id": 13, + "poly": [ + 943, + 1263, + 976, + 1263, + 976, + 1289, + 943, + 1289 + ], + "score": 0.8, + "latex": "\\pmb { H }" + }, + { + "category_id": 13, + "poly": [ + 386, + 1293, + 413, + 1293, + 413, + 1320, + 386, + 1320 + ], + "score": 0.79, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1108, + 832, + 1134, + 832, + 1134, + 858, + 1108, + 858 + ], + "score": 0.79, + "latex": "_ { r }" + }, + { + "category_id": 13, + "poly": [ + 1039, + 872, + 1065, + 872, + 1065, + 899, + 1039, + 899 + ], + "score": 0.78, + "latex": "_ { P }" + }, + { + "category_id": 13, + "poly": [ + 1227, + 1863, + 1248, + 1863, + 1248, + 1889, + 1227, + 1889 + ], + "score": 0.77, + "latex": "^ { h }" + }, + { + "category_id": 13, + "poly": [ + 739, + 872, + 771, + 872, + 771, + 900, + 739, + 900 + ], + "score": 0.75, + "latex": "\\pmb { H }" + }, + { + "category_id": 13, + "poly": [ + 708, + 831, + 740, + 831, + 740, + 859, + 708, + 859 + ], + "score": 0.69, + "latex": "\\pmb { H }" + }, + { + "category_id": 13, + "poly": [ + 423, + 773, + 455, + 773, + 455, + 800, + 423, + 800 + ], + "score": 0.59, + "latex": "\\pmb { H }" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1967.0, + 1408.0, + 1967.0, + 1408.0, + 2015.0, + 324.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 588.0, + 2003.0, + 588.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 610.0, + 1093.0, + 610.0, + 1093.0, + 650.0, + 295.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1405.0, + 230.0, + 1405.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 262.0, + 1404.0, + 262.0, + 1404.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 288.0, + 1406.0, + 288.0, + 1406.0, + 328.0, + 292.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 321.0, + 1404.0, + 321.0, + 1404.0, + 358.0, + 294.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 353.0, + 1406.0, + 353.0, + 1406.0, + 386.0, + 294.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 384.0, + 1405.0, + 384.0, + 1405.0, + 415.0, + 295.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 411.0, + 1406.0, + 411.0, + 1406.0, + 450.0, + 294.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 442.0, + 1407.0, + 442.0, + 1407.0, + 479.0, + 291.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 473.0, + 1404.0, + 473.0, + 1404.0, + 509.0, + 294.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 504.0, + 1404.0, + 504.0, + 1404.0, + 539.0, + 295.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 535.0, + 863.0, + 535.0, + 863.0, + 570.0, + 295.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1171.0, + 1405.0, + 1171.0, + 1405.0, + 1204.0, + 296.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1199.0, + 989.0, + 1199.0, + 989.0, + 1233.0, + 293.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 1199.0, + 1325.0, + 1199.0, + 1325.0, + 1233.0, + 1067.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1231.0, + 442.0, + 1231.0, + 442.0, + 1266.0, + 294.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1231.0, + 1405.0, + 1231.0, + 1405.0, + 1266.0, + 520.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1257.0, + 859.0, + 1257.0, + 859.0, + 1298.0, + 294.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1257.0, + 942.0, + 1257.0, + 942.0, + 1298.0, + 889.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1257.0, + 1405.0, + 1257.0, + 1405.0, + 1298.0, + 977.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1293.0, + 385.0, + 1293.0, + 385.0, + 1326.0, + 295.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1293.0, + 800.0, + 1293.0, + 800.0, + 1326.0, + 414.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 969.0, + 1406.0, + 969.0, + 1406.0, + 1006.0, + 295.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1002.0, + 1406.0, + 1002.0, + 1406.0, + 1036.0, + 292.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1029.0, + 1407.0, + 1029.0, + 1407.0, + 1069.0, + 291.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1062.0, + 1404.0, + 1062.0, + 1404.0, + 1097.0, + 293.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1094.0, + 1404.0, + 1094.0, + 1404.0, + 1126.0, + 296.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1123.0, + 1144.0, + 1123.0, + 1144.0, + 1157.0, + 293.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 1123.0, + 1252.0, + 1123.0, + 1252.0, + 1157.0, + 1240.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 680.0, + 1404.0, + 680.0, + 1404.0, + 713.0, + 295.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 712.0, + 1404.0, + 712.0, + 1404.0, + 745.0, + 296.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 741.0, + 1305.0, + 741.0, + 1305.0, + 777.0, + 295.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 741.0, + 1408.0, + 741.0, + 1408.0, + 777.0, + 1335.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 774.0, + 422.0, + 774.0, + 422.0, + 806.0, + 296.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 774.0, + 1064.0, + 774.0, + 1064.0, + 806.0, + 456.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1861.0, + 1226.0, + 1861.0, + 1226.0, + 1895.0, + 297.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1861.0, + 1405.0, + 1861.0, + 1405.0, + 1895.0, + 1249.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1887.0, + 353.0, + 1887.0, + 353.0, + 1929.0, + 293.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1887.0, + 1408.0, + 1887.0, + 1408.0, + 1929.0, + 444.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1920.0, + 1405.0, + 1920.0, + 1405.0, + 1959.0, + 293.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1390.0, + 1404.0, + 1390.0, + 1404.0, + 1426.0, + 295.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1419.0, + 391.0, + 1419.0, + 391.0, + 1459.0, + 293.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1419.0, + 595.0, + 1419.0, + 595.0, + 1459.0, + 421.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 1419.0, + 689.0, + 1419.0, + 689.0, + 1459.0, + 628.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1556.0, + 408.0, + 1556.0, + 408.0, + 1653.0, + 287.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 1556.0, + 468.0, + 1556.0, + 468.0, + 1653.0, + 437.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1556.0, + 680.0, + 1556.0, + 680.0, + 1653.0, + 502.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1556.0, + 744.0, + 1556.0, + 744.0, + 1653.0, + 713.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1556.0, + 1413.0, + 1556.0, + 1413.0, + 1653.0, + 1084.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 828.0, + 707.0, + 828.0, + 707.0, + 864.0, + 361.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 828.0, + 1107.0, + 828.0, + 1107.0, + 864.0, + 741.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 828.0, + 1144.0, + 828.0, + 1144.0, + 864.0, + 1135.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 869.0, + 738.0, + 869.0, + 738.0, + 906.0, + 358.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 869.0, + 1038.0, + 869.0, + 1038.0, + 906.0, + 772.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 869.0, + 1075.0, + 869.0, + 1075.0, + 906.0, + 1066.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 910.0, + 714.0, + 910.0, + 714.0, + 948.0, + 359.0, + 948.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 297, + 223, + 1404, + 223, + 1404, + 455, + 297, + 455 + ], + "score": 0.981, + "html": "
Cross-DomainIn-Domain
Our ESIM without CoVe (d = 300) Our ESIM without CoVe + fully-aware (d = 250)73.4 76.973.3 76.2
Our ESIM without CoVe + fully-aware + multi-level (d = 250) Our ESIM (d = 300) Our ESIM + fully-aware (d = 250) Our ESIM + fully-aware + multi-level (d = 250)78.2 73.9 77.3 78.477.9 73.7 76.5 78.2
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1710, + 1404, + 1710, + 1404, + 1866, + 297, + 1866 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1193, + 1403, + 1193, + 1403, + 1352, + 298, + 1352 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1880, + 1403, + 1880, + 1403, + 2035, + 299, + 2035 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 296, + 768, + 1404, + 768, + 1404, + 894, + 296, + 894 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1366, + 1404, + 1366, + 1404, + 1491, + 298, + 1491 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1506, + 1403, + 1506, + 1403, + 1598, + 299, + 1598 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 592, + 1124, + 1105, + 1124, + 1105, + 1176, + 592, + 1176 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 620, + 983, + 1080, + 983, + 1080, + 1030, + 620, + 1030 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 429, + 673, + 1265, + 673, + 1265, + 754, + 429, + 754 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 297, + 907, + 1401, + 907, + 1401, + 971, + 297, + 971 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 298, + 1044, + 1401, + 1044, + 1401, + 1111, + 298, + 1111 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 296, + 592, + 1403, + 592, + 1403, + 660, + 296, + 660 + ], + "score": 0.946 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.861 + }, + { + "category_id": 0, + "poly": [ + 300, + 1642, + 597, + 1642, + 597, + 1677, + 300, + 1677 + ], + "score": 0.855 + }, + { + "category_id": 1, + "poly": [ + 295, + 475, + 1402, + 475, + 1402, + 540, + 295, + 540 + ], + "score": 0.636 + }, + { + "category_id": 6, + "poly": [ + 295, + 475, + 1402, + 475, + 1402, + 540, + 295, + 540 + ], + "score": 0.245 + }, + { + "category_id": 14, + "poly": [ + 431, + 671, + 1266, + 671, + 1266, + 757, + 431, + 757 + ], + "score": 0.94, + "latex": "\\boldsymbol h _ { P , H } = \\big [ { \\frac { 1 } { n } } \\sum _ { i } { \\boldsymbol u } _ { i } ^ { P } ; \\operatorname* { m a x } ( { \\boldsymbol u } _ { 1 } ^ { P } , \\ldots , { \\boldsymbol u } _ { n } ^ { P } ) ; { \\frac { 1 } { m } } \\sum _ { j } { \\boldsymbol u } _ { j } ^ { H } ; \\operatorname* { m a x } ( { \\boldsymbol u } _ { 1 } ^ { H } , \\ldots , { \\boldsymbol u } _ { m } ^ { H } ) \\big ] ." + }, + { + "category_id": 13, + "poly": [ + 687, + 594, + 926, + 594, + 926, + 635, + 687, + 635 + ], + "score": 0.93, + "latex": "\\{ \\boldsymbol { u } _ { i } ^ { P } \\} , \\{ \\boldsymbol { u } _ { j } ^ { H } \\} \\subset \\mathbb { R } ^ { 6 0 0 }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1186, + 447, + 1186, + 447, + 1232, + 372, + 1232 + ], + "score": 0.93, + "latex": "\\hat { \\pmb { h } } _ { i } ^ { l } , \\hat { \\pmb { h } } _ { i } ^ { h }" + }, + { + "category_id": 13, + "poly": [ + 706, + 1042, + 841, + 1042, + 841, + 1082, + 706, + 1082 + ], + "score": 0.93, + "latex": "[ \\pmb { w } _ { i } , \\pmb { h } _ { i } ^ { l } , \\pmb { h } _ { i } ^ { h } ]" + }, + { + "category_id": 14, + "poly": [ + 618, + 982, + 1079, + 982, + 1079, + 1029, + 618, + 1029 + ], + "score": 0.93, + "latex": "S ( \\boldsymbol { h } _ { i } ^ { P h } , \\boldsymbol { h } _ { j } ^ { H h } ) \\implies S ( \\mathrm { H o W } _ { i } ^ { P } , \\mathrm { H o W } _ { j } ^ { H } ) ," + }, + { + "category_id": 13, + "poly": [ + 573, + 770, + 637, + 770, + 637, + 804, + 573, + 804 + ], + "score": 0.92, + "latex": "{ h _ { P , H } }" + }, + { + "category_id": 13, + "poly": [ + 684, + 1910, + 796, + 1910, + 796, + 1940, + 684, + 1940 + ], + "score": 0.91, + "latex": "\\epsilon = 1 0 ^ { - 8 }" + }, + { + "category_id": 14, + "poly": [ + 593, + 1122, + 1103, + 1122, + 1103, + 1174, + 593, + 1174 + ], + "score": 0.91, + "latex": "[ { \\pmb h } ^ { h } ; \\hat { \\pmb h } ^ { h } ] \\in \\mathbb { R } ^ { 2 d } \\implies [ { \\pmb h } ^ { l } ; { \\pmb h } ^ { h } ; \\hat { \\pmb h } ^ { l } ; \\hat { \\pmb h } ^ { h } ] \\in \\mathbb { R } ^ { 4 d } ," + }, + { + "category_id": 13, + "poly": [ + 676, + 829, + 719, + 829, + 719, + 868, + 676, + 868 + ], + "score": 0.91, + "latex": "\\pmb { u } _ { j } ^ { H }" + }, + { + "category_id": 13, + "poly": [ + 585, + 829, + 624, + 829, + 624, + 864, + 585, + 864 + ], + "score": 0.9, + "latex": "\\boldsymbol { \\mathbf { \\mathit { u } } } _ { i } ^ { P }" + }, + { + "category_id": 13, + "poly": [ + 1281, + 598, + 1351, + 598, + 1351, + 630, + 1281, + 630 + ], + "score": 0.89, + "latex": "P , H" + }, + { + "category_id": 13, + "poly": [ + 371, + 1049, + 447, + 1049, + 447, + 1079, + 371, + 1079 + ], + "score": 0.88, + "latex": "\\mathrm { H o W } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 436, + 1911, + 629, + 1911, + 629, + 1944, + 436, + 1944 + ], + "score": 0.88, + "latex": "\\beta = ( 0 . 9 , 0 . 9 9 9 )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1912, + 423, + 1912, + 423, + 1941, + 298, + 1941 + ], + "score": 0.84, + "latex": "\\alpha = 0 . 0 0 2" + }, + { + "category_id": 13, + "poly": [ + 447, + 355, + 545, + 355, + 545, + 385, + 447, + 385 + ], + "score": 0.83, + "latex": "\\overline { { d = 3 0 0 } }" + }, + { + "category_id": 13, + "poly": [ + 1230, + 1200, + 1248, + 1200, + 1248, + 1226, + 1230, + 1226 + ], + "score": 0.81, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 562, + 1231, + 583, + 1231, + 583, + 1257, + 562, + 1257 + ], + "score": 0.78, + "latex": "^ { h }" + }, + { + "category_id": 13, + "poly": [ + 607, + 266, + 706, + 266, + 706, + 293, + 607, + 293 + ], + "score": 0.77, + "latex": "\\overline { { d = 3 0 0 } }" + }, + { + "category_id": 13, + "poly": [ + 872, + 508, + 891, + 508, + 891, + 534, + 872, + 534 + ], + "score": 0.77, + "latex": "\\mathit { \\Pi } _ { d }" + }, + { + "category_id": 13, + "poly": [ + 601, + 387, + 701, + 387, + 701, + 416, + 601, + 416 + ], + "score": 0.74, + "latex": "( d = 2 5 0 )" + }, + { + "category_id": 13, + "poly": [ + 436, + 390, + 460, + 390, + 460, + 414, + 436, + 414 + ], + "score": 0.7, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 596, + 297, + 619, + 297, + 619, + 321, + 596, + 321 + ], + "score": 0.66, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 761, + 294, + 864, + 294, + 864, + 323, + 761, + 323 + ], + "score": 0.66, + "latex": "( d = 2 5 0 )" + }, + { + "category_id": 13, + "poly": [ + 750, + 417, + 854, + 417, + 854, + 447, + 750, + 447 + ], + "score": 0.62, + "latex": "( d = 2 5 0 )" + }, + { + "category_id": 13, + "poly": [ + 753, + 330, + 776, + 330, + 776, + 352, + 753, + 352 + ], + "score": 0.61, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 593, + 422, + 615, + 422, + 615, + 444, + 593, + 444 + ], + "score": 0.53, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 436, + 420, + 459, + 420, + 459, + 444, + 436, + 444 + ], + "score": 0.5, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 529, + 325, + 619, + 325, + 619, + 353, + 529, + 353 + ], + "score": 0.35, + "latex": "\\mathrm { C o V e + }" + }, + { + "category_id": 13, + "poly": [ + 596, + 328, + 619, + 328, + 619, + 351, + 596, + 351 + ], + "score": 0.31, + "latex": "^ +" + }, + { + "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": [ + 292.0, + 1638.0, + 602.0, + 1638.0, + 602.0, + 1684.0, + 292.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 474.0, + 1405.0, + 474.0, + 1405.0, + 511.0, + 294.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 505.0, + 871.0, + 505.0, + 871.0, + 541.0, + 295.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 505.0, + 1315.0, + 505.0, + 1315.0, + 541.0, + 892.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1709.0, + 1405.0, + 1709.0, + 1405.0, + 1748.0, + 295.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1741.0, + 1404.0, + 1741.0, + 1404.0, + 1777.0, + 295.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1771.0, + 1404.0, + 1771.0, + 1404.0, + 1811.0, + 292.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1804.0, + 1404.0, + 1804.0, + 1404.0, + 1837.0, + 295.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1833.0, + 610.0, + 1833.0, + 610.0, + 1871.0, + 295.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1189.0, + 371.0, + 1189.0, + 371.0, + 1240.0, + 291.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 1189.0, + 1229.0, + 1189.0, + 1229.0, + 1240.0, + 448.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1189.0, + 1408.0, + 1189.0, + 1408.0, + 1240.0, + 1249.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1229.0, + 561.0, + 1229.0, + 561.0, + 1263.0, + 296.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1229.0, + 1404.0, + 1229.0, + 1404.0, + 1263.0, + 584.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1258.0, + 1405.0, + 1258.0, + 1405.0, + 1295.0, + 293.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1290.0, + 1404.0, + 1290.0, + 1404.0, + 1324.0, + 296.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1320.0, + 1033.0, + 1320.0, + 1033.0, + 1355.0, + 293.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1878.0, + 1404.0, + 1878.0, + 1404.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1907.0, + 297.0, + 1907.0, + 297.0, + 1948.0, + 293.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 1907.0, + 435.0, + 1907.0, + 435.0, + 1948.0, + 424.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1907.0, + 683.0, + 1907.0, + 683.0, + 1948.0, + 630.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1907.0, + 1405.0, + 1907.0, + 1405.0, + 1948.0, + 797.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1979.0, + 295.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 1316.0, + 2001.0, + 1316.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 766.0, + 572.0, + 766.0, + 572.0, + 804.0, + 293.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 766.0, + 1405.0, + 766.0, + 1405.0, + 804.0, + 638.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 799.0, + 1404.0, + 799.0, + 1404.0, + 833.0, + 293.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 827.0, + 584.0, + 827.0, + 584.0, + 866.0, + 293.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 827.0, + 675.0, + 827.0, + 675.0, + 866.0, + 625.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 827.0, + 1406.0, + 827.0, + 1406.0, + 866.0, + 720.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 860.0, + 899.0, + 860.0, + 899.0, + 897.0, + 294.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1368.0, + 1404.0, + 1368.0, + 1404.0, + 1400.0, + 296.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1396.0, + 1406.0, + 1396.0, + 1406.0, + 1433.0, + 292.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1429.0, + 1404.0, + 1429.0, + 1404.0, + 1461.0, + 294.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1457.0, + 1137.0, + 1457.0, + 1137.0, + 1493.0, + 294.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1505.0, + 1403.0, + 1505.0, + 1403.0, + 1539.0, + 294.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1535.0, + 1402.0, + 1535.0, + 1402.0, + 1569.0, + 294.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1565.0, + 771.0, + 1565.0, + 771.0, + 1600.0, + 294.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 906.0, + 1405.0, + 906.0, + 1405.0, + 944.0, + 293.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 935.0, + 1239.0, + 935.0, + 1239.0, + 976.0, + 293.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1041.0, + 370.0, + 1041.0, + 370.0, + 1088.0, + 292.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 1041.0, + 705.0, + 1041.0, + 705.0, + 1088.0, + 448.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 1041.0, + 1406.0, + 1041.0, + 1406.0, + 1088.0, + 842.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1078.0, + 1359.0, + 1078.0, + 1359.0, + 1113.0, + 293.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 588.0, + 686.0, + 588.0, + 686.0, + 636.0, + 290.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 588.0, + 1280.0, + 588.0, + 1280.0, + 636.0, + 927.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 588.0, + 1408.0, + 588.0, + 1408.0, + 636.0, + 1352.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 620.0, + 460.0, + 620.0, + 460.0, + 664.0, + 292.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 474.0, + 1405.0, + 474.0, + 1405.0, + 511.0, + 294.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 505.0, + 871.0, + 505.0, + 871.0, + 541.0, + 295.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 505.0, + 1315.0, + 505.0, + 1315.0, + 541.0, + 892.0, + 541.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 494, + 989, + 494, + 989, + 769, + 299, + 769 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 1004, + 1405, + 1004, + 1405, + 1246, + 296, + 1246 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1465, + 1404, + 1465, + 1404, + 1677, + 298, + 1677 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 293, + 989, + 293, + 989, + 478, + 299, + 478 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 784, + 1400, + 784, + 1400, + 876, + 299, + 876 + ], + "score": 0.955 + }, + { + "category_id": 3, + "poly": [ + 1027, + 333, + 1399, + 333, + 1399, + 636, + 1027, + 636 + ], + "score": 0.95 + }, + { + "category_id": 4, + "poly": [ + 1011, + 663, + 1401, + 663, + 1401, + 727, + 1011, + 727 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 297, + 1261, + 1071, + 1261, + 1071, + 1323, + 297, + 1323 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 297, + 1338, + 770, + 1338, + 770, + 1400, + 297, + 1400 + ], + "score": 0.902 + }, + { + "category_id": 1, + "poly": [ + 298, + 1800, + 757, + 1800, + 757, + 1863, + 298, + 1863 + ], + "score": 0.901 + }, + { + "category_id": 1, + "poly": [ + 298, + 1692, + 1400, + 1692, + 1400, + 1754, + 298, + 1754 + ], + "score": 0.875 + }, + { + "category_id": 1, + "poly": [ + 298, + 1893, + 1341, + 1893, + 1341, + 1956, + 298, + 1956 + ], + "score": 0.858 + }, + { + "category_id": 0, + "poly": [ + 304, + 971, + 872, + 971, + 872, + 1000, + 304, + 1000 + ], + "score": 0.857 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.833 + }, + { + "category_id": 1, + "poly": [ + 299, + 1972, + 663, + 1972, + 663, + 2034, + 299, + 2034 + ], + "score": 0.823 + }, + { + "category_id": 1, + "poly": [ + 300, + 1755, + 598, + 1755, + 598, + 1784, + 300, + 1784 + ], + "score": 0.821 + }, + { + "category_id": 0, + "poly": [ + 297, + 1433, + 871, + 1433, + 871, + 1462, + 297, + 1462 + ], + "score": 0.787 + }, + { + "category_id": 0, + "poly": [ + 300, + 913, + 1141, + 913, + 1141, + 945, + 300, + 945 + ], + "score": 0.738 + }, + { + "category_id": 2, + "poly": [ + 295, + 226, + 1208, + 226, + 1208, + 262, + 295, + 262 + ], + "score": 0.441 + }, + { + "category_id": 1, + "poly": [ + 300, + 913, + 1141, + 913, + 1141, + 945, + 300, + 945 + ], + "score": 0.191 + }, + { + "category_id": 1, + "poly": [ + 297, + 1433, + 871, + 1433, + 871, + 1462, + 297, + 1462 + ], + "score": 0.119 + }, + { + "category_id": 13, + "poly": [ + 672, + 677, + 768, + 677, + 768, + 706, + 672, + 706 + ], + "score": 0.91, + "latex": "\\sim 1 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 767, + 647, + 870, + 647, + 870, + 676, + 767, + 676 + ], + "score": 0.89, + "latex": "\\sim 1 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 296, + 738, + 388, + 738, + 388, + 768, + 296, + 768 + ], + "score": 0.87, + "latex": "\\sim 0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 942, + 1693, + 983, + 1693, + 983, + 1721, + 942, + 1721 + ], + "score": 0.86, + "latex": "1 \\%" + }, + { + "category_id": 13, + "poly": [ + 816, + 616, + 878, + 616, + 878, + 645, + 816, + 645 + ], + "score": 0.86, + "latex": "3 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 416, + 1646, + 457, + 1646, + 457, + 1674, + 416, + 1674 + ], + "score": 0.84, + "latex": "2 \\%" + }, + { + "category_id": 13, + "poly": [ + 744, + 1646, + 798, + 1646, + 798, + 1675, + 744, + 1675 + ], + "score": 0.84, + "latex": "80 \\%" + }, + { + "category_id": 13, + "poly": [ + 382, + 1724, + 437, + 1724, + 437, + 1752, + 382, + 1752 + ], + "score": 0.8, + "latex": "90 \\%" + }, + { + "category_id": 13, + "poly": [ + 1287, + 596, + 1398, + 596, + 1398, + 635, + 1287, + 635 + ], + "score": 0.25, + "latex": "( 5 4 . 7 \\% )" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 333.0, + 1263.0, + 333.0, + 1263.0, + 380.0, + 1034.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 440.0, + 1096.0, + 440.0, + 1096.0, + 481.0, + 1020.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 439.0, + 1380.0, + 439.0, + 1380.0, + 479.0, + 1289.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 463.0, + 1257.0, + 463.0, + 1257.0, + 509.0, + 1150.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 592.0, + 1286.0, + 592.0, + 1286.0, + 638.0, + 1116.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 592.0, + 1404.0, + 592.0, + 1404.0, + 638.0, + 1399.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 663.0, + 1402.0, + 663.0, + 1402.0, + 696.0, + 1011.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 694.0, + 1274.0, + 694.0, + 1274.0, + 728.0, + 1009.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 966.0, + 878.0, + 966.0, + 878.0, + 1009.0, + 296.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1425.0, + 876.0, + 1425.0, + 876.0, + 1473.0, + 292.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 910.0, + 1146.0, + 910.0, + 1146.0, + 948.0, + 294.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 223.0, + 1213.0, + 223.0, + 1213.0, + 267.0, + 291.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 494.0, + 993.0, + 494.0, + 993.0, + 527.0, + 294.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 524.0, + 991.0, + 524.0, + 991.0, + 555.0, + 294.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 553.0, + 992.0, + 553.0, + 992.0, + 589.0, + 294.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 585.0, + 991.0, + 585.0, + 991.0, + 618.0, + 295.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 615.0, + 815.0, + 615.0, + 815.0, + 648.0, + 294.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 615.0, + 993.0, + 615.0, + 993.0, + 648.0, + 879.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 646.0, + 766.0, + 646.0, + 766.0, + 680.0, + 294.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 646.0, + 993.0, + 646.0, + 993.0, + 680.0, + 871.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 675.0, + 671.0, + 675.0, + 671.0, + 709.0, + 294.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 675.0, + 992.0, + 675.0, + 992.0, + 709.0, + 769.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 704.0, + 994.0, + 704.0, + 994.0, + 744.0, + 294.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 736.0, + 859.0, + 736.0, + 859.0, + 771.0, + 389.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1002.0, + 1402.0, + 1002.0, + 1402.0, + 1035.0, + 298.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1030.0, + 1406.0, + 1030.0, + 1406.0, + 1068.0, + 294.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1061.0, + 1406.0, + 1061.0, + 1406.0, + 1098.0, + 293.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1090.0, + 1405.0, + 1090.0, + 1405.0, + 1129.0, + 293.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1124.0, + 1402.0, + 1124.0, + 1402.0, + 1157.0, + 294.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1153.0, + 1403.0, + 1153.0, + 1403.0, + 1189.0, + 293.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1181.0, + 1405.0, + 1181.0, + 1405.0, + 1220.0, + 293.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1216.0, + 1383.0, + 1216.0, + 1383.0, + 1249.0, + 295.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1464.0, + 1404.0, + 1464.0, + 1404.0, + 1494.0, + 297.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1491.0, + 1406.0, + 1491.0, + 1406.0, + 1527.0, + 293.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1523.0, + 1402.0, + 1523.0, + 1402.0, + 1558.0, + 294.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1554.0, + 1404.0, + 1554.0, + 1404.0, + 1587.0, + 294.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1584.0, + 1405.0, + 1584.0, + 1405.0, + 1619.0, + 294.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1615.0, + 1405.0, + 1615.0, + 1405.0, + 1649.0, + 294.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1647.0, + 415.0, + 1647.0, + 415.0, + 1677.0, + 296.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 1647.0, + 743.0, + 1647.0, + 743.0, + 1677.0, + 458.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 1647.0, + 1024.0, + 1647.0, + 1024.0, + 1677.0, + 799.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 293.0, + 992.0, + 293.0, + 992.0, + 327.0, + 295.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 326.0, + 991.0, + 326.0, + 991.0, + 357.0, + 296.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 355.0, + 990.0, + 355.0, + 990.0, + 387.0, + 295.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 386.0, + 992.0, + 386.0, + 992.0, + 421.0, + 295.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 417.0, + 991.0, + 417.0, + 991.0, + 448.0, + 296.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 447.0, + 770.0, + 447.0, + 770.0, + 481.0, + 295.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 784.0, + 992.0, + 784.0, + 992.0, + 818.0, + 295.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 814.0, + 1402.0, + 814.0, + 1402.0, + 848.0, + 293.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 839.0, + 375.0, + 839.0, + 375.0, + 880.0, + 291.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1261.0, + 1074.0, + 1261.0, + 1074.0, + 1296.0, + 298.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1289.0, + 612.0, + 1289.0, + 612.0, + 1328.0, + 295.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1334.0, + 771.0, + 1334.0, + 771.0, + 1375.0, + 294.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1367.0, + 648.0, + 1367.0, + 648.0, + 1403.0, + 295.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1798.0, + 761.0, + 1798.0, + 761.0, + 1835.0, + 294.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1830.0, + 752.0, + 1830.0, + 752.0, + 1864.0, + 295.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1689.0, + 941.0, + 1689.0, + 941.0, + 1728.0, + 294.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1689.0, + 1405.0, + 1689.0, + 1405.0, + 1728.0, + 984.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1723.0, + 381.0, + 1723.0, + 381.0, + 1756.0, + 294.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1723.0, + 453.0, + 1723.0, + 453.0, + 1756.0, + 438.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1893.0, + 1340.0, + 1893.0, + 1340.0, + 1928.0, + 297.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1925.0, + 504.0, + 1925.0, + 504.0, + 1955.0, + 294.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1973.0, + 662.0, + 1973.0, + 662.0, + 2004.0, + 296.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2002.0, + 617.0, + 2002.0, + 617.0, + 2033.0, + 296.0, + 2033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1750.0, + 601.0, + 1750.0, + 601.0, + 1787.0, + 294.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 910.0, + 1146.0, + 910.0, + 1146.0, + 948.0, + 294.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1425.0, + 876.0, + 1425.0, + 876.0, + 1473.0, + 292.0, + 1473.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 263, + 1406, + 263, + 1406, + 506, + 298, + 506 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1360, + 1405, + 1360, + 1405, + 1602, + 297, + 1602 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 725, + 1406, + 725, + 1406, + 1058, + 297, + 1058 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 301, + 1945, + 1402, + 1945, + 1402, + 2034, + 301, + 2034 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 298, + 1758, + 1403, + 1758, + 1403, + 1879, + 298, + 1879 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 298, + 1152, + 823, + 1152, + 823, + 1213, + 298, + 1213 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 298, + 599, + 1057, + 599, + 1057, + 660, + 298, + 660 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 298, + 521, + 890, + 521, + 890, + 583, + 298, + 583 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 301, + 1912, + 872, + 1912, + 872, + 1942, + 301, + 1942 + ], + "score": 0.876 + }, + { + "category_id": 0, + "poly": [ + 301, + 231, + 874, + 231, + 874, + 260, + 301, + 260 + ], + "score": 0.871 + }, + { + "category_id": 0, + "poly": [ + 297, + 692, + 872, + 692, + 872, + 722, + 297, + 722 + ], + "score": 0.843 + }, + { + "category_id": 2, + "poly": [ + 837, + 2088, + 864, + 2088, + 864, + 2112, + 837, + 2112 + ], + "score": 0.834 + }, + { + "category_id": 0, + "poly": [ + 303, + 1328, + 864, + 1328, + 864, + 1358, + 303, + 1358 + ], + "score": 0.83 + }, + { + "category_id": 0, + "poly": [ + 298, + 1270, + 939, + 1270, + 939, + 1301, + 298, + 1301 + ], + "score": 0.776 + }, + { + "category_id": 1, + "poly": [ + 298, + 1074, + 1156, + 1074, + 1156, + 1106, + 298, + 1106 + ], + "score": 0.764 + }, + { + "category_id": 1, + "poly": [ + 299, + 1107, + 665, + 1107, + 665, + 1135, + 299, + 1135 + ], + "score": 0.712 + }, + { + "category_id": 1, + "poly": [ + 300, + 1650, + 538, + 1650, + 538, + 1680, + 300, + 1680 + ], + "score": 0.657 + }, + { + "category_id": 1, + "poly": [ + 297, + 1695, + 643, + 1695, + 643, + 1756, + 297, + 1756 + ], + "score": 0.649 + }, + { + "category_id": 1, + "poly": [ + 300, + 1618, + 832, + 1618, + 832, + 1648, + 300, + 1648 + ], + "score": 0.634 + }, + { + "category_id": 1, + "poly": [ + 298, + 1270, + 939, + 1270, + 939, + 1301, + 298, + 1301 + ], + "score": 0.127 + }, + { + "category_id": 0, + "poly": [ + 304, + 1328, + 864, + 1328, + 864, + 1358, + 304, + 1358 + ], + "score": 0.126 + }, + { + "category_id": 13, + "poly": [ + 297, + 1480, + 388, + 1480, + 388, + 1510, + 297, + 1510 + ], + "score": 0.69, + "latex": "3 0 0 ~ \\mathrm { k m }" + }, + { + "category_id": 13, + "poly": [ + 566, + 1480, + 644, + 1480, + 644, + 1509, + 566, + 1509 + ], + "score": 0.67, + "latex": "4 0 ~ \\mathrm { k m }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1902.0, + 878.0, + 1902.0, + 878.0, + 1954.0, + 293.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 880.0, + 228.0, + 880.0, + 267.0, + 296.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 690.0, + 874.0, + 690.0, + 874.0, + 729.0, + 294.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2122.0, + 832.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1321.0, + 869.0, + 1321.0, + 869.0, + 1368.0, + 294.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1268.0, + 943.0, + 1268.0, + 943.0, + 1305.0, + 293.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1320.0, + 869.0, + 1320.0, + 869.0, + 1368.0, + 295.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 261.0, + 1406.0, + 261.0, + 1406.0, + 295.0, + 297.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 291.0, + 1404.0, + 291.0, + 1404.0, + 324.0, + 295.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 317.0, + 1406.0, + 317.0, + 1406.0, + 356.0, + 293.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 350.0, + 1407.0, + 350.0, + 1407.0, + 391.0, + 293.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 379.0, + 1403.0, + 379.0, + 1403.0, + 417.0, + 293.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 411.0, + 1404.0, + 411.0, + 1404.0, + 449.0, + 293.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 443.0, + 1406.0, + 443.0, + 1406.0, + 477.0, + 296.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 471.0, + 432.0, + 471.0, + 432.0, + 509.0, + 293.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1358.0, + 1405.0, + 1358.0, + 1405.0, + 1391.0, + 297.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1387.0, + 1403.0, + 1387.0, + 1403.0, + 1421.0, + 295.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1414.0, + 1406.0, + 1414.0, + 1406.0, + 1454.0, + 294.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1448.0, + 1407.0, + 1448.0, + 1407.0, + 1485.0, + 294.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1480.0, + 565.0, + 1480.0, + 565.0, + 1513.0, + 389.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1480.0, + 1405.0, + 1480.0, + 1405.0, + 1513.0, + 645.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1510.0, + 1405.0, + 1510.0, + 1405.0, + 1544.0, + 295.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1538.0, + 1405.0, + 1538.0, + 1405.0, + 1576.0, + 294.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1568.0, + 400.0, + 1568.0, + 400.0, + 1606.0, + 293.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 724.0, + 1403.0, + 724.0, + 1403.0, + 755.0, + 297.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 753.0, + 1404.0, + 753.0, + 1404.0, + 786.0, + 294.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 786.0, + 1403.0, + 786.0, + 1403.0, + 816.0, + 296.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 814.0, + 1404.0, + 814.0, + 1404.0, + 848.0, + 295.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 845.0, + 1402.0, + 845.0, + 1402.0, + 876.0, + 295.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 874.0, + 1406.0, + 874.0, + 1406.0, + 910.0, + 295.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 905.0, + 1404.0, + 905.0, + 1404.0, + 939.0, + 295.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 938.0, + 1404.0, + 938.0, + 1404.0, + 969.0, + 296.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 964.0, + 1404.0, + 964.0, + 1404.0, + 1002.0, + 294.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 995.0, + 1403.0, + 995.0, + 1403.0, + 1032.0, + 292.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1027.0, + 396.0, + 1027.0, + 396.0, + 1060.0, + 294.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1941.0, + 1404.0, + 1941.0, + 1404.0, + 1978.0, + 296.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1403.0, + 1972.0, + 1403.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 1406.0, + 2002.0, + 1406.0, + 2039.0, + 295.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1753.0, + 1404.0, + 1753.0, + 1404.0, + 1792.0, + 293.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1789.0, + 1405.0, + 1789.0, + 1405.0, + 1821.0, + 294.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1817.0, + 1406.0, + 1817.0, + 1406.0, + 1851.0, + 293.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1850.0, + 682.0, + 1850.0, + 682.0, + 1882.0, + 296.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1150.0, + 826.0, + 1150.0, + 826.0, + 1187.0, + 295.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1179.0, + 795.0, + 1179.0, + 795.0, + 1217.0, + 294.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 595.0, + 1051.0, + 595.0, + 1051.0, + 635.0, + 295.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 626.0, + 1061.0, + 626.0, + 1061.0, + 664.0, + 295.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 522.0, + 834.0, + 522.0, + 834.0, + 556.0, + 296.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 551.0, + 891.0, + 551.0, + 891.0, + 592.0, + 293.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1070.0, + 1160.0, + 1070.0, + 1160.0, + 1111.0, + 295.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1104.0, + 666.0, + 1104.0, + 666.0, + 1139.0, + 296.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1646.0, + 541.0, + 1646.0, + 541.0, + 1683.0, + 295.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1693.0, + 643.0, + 1693.0, + 643.0, + 1728.0, + 296.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1721.0, + 605.0, + 1721.0, + 605.0, + 1760.0, + 296.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1616.0, + 836.0, + 1616.0, + 836.0, + 1653.0, + 295.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1268.0, + 943.0, + 1268.0, + 943.0, + 1305.0, + 293.0, + 1305.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1461, + 1404, + 1461, + 1404, + 1704, + 298, + 1704 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 570, + 1403, + 570, + 1403, + 721, + 299, + 721 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 298, + 1245, + 1403, + 1245, + 1403, + 1397, + 298, + 1397 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 299, + 1860, + 1404, + 1860, + 1404, + 2011, + 299, + 2011 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1404, + 229, + 1404, + 414, + 299, + 414 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 298, + 786, + 1405, + 786, + 1405, + 1029, + 298, + 1029 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 299, + 1121, + 1397, + 1121, + 1397, + 1182, + 299, + 1182 + ], + "score": 0.904 + }, + { + "category_id": 1, + "poly": [ + 299, + 1184, + 1403, + 1184, + 1403, + 1243, + 299, + 1243 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 301, + 754, + 874, + 754, + 874, + 784, + 301, + 784 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 837, + 2089, + 864, + 2089, + 864, + 2112, + 837, + 2112 + ], + "score": 0.835 + }, + { + "category_id": 1, + "poly": [ + 303, + 1078, + 930, + 1078, + 930, + 1106, + 303, + 1106 + ], + "score": 0.802 + }, + { + "category_id": 1, + "poly": [ + 301, + 539, + 737, + 539, + 737, + 567, + 301, + 567 + ], + "score": 0.734 + }, + { + "category_id": 1, + "poly": [ + 298, + 1719, + 1166, + 1719, + 1166, + 1779, + 298, + 1779 + ], + "score": 0.673 + }, + { + "category_id": 1, + "poly": [ + 300, + 1044, + 1113, + 1044, + 1113, + 1075, + 300, + 1075 + ], + "score": 0.651 + }, + { + "category_id": 1, + "poly": [ + 301, + 1829, + 689, + 1829, + 689, + 1858, + 301, + 1858 + ], + "score": 0.582 + }, + { + "category_id": 1, + "poly": [ + 297, + 429, + 1085, + 429, + 1085, + 492, + 297, + 492 + ], + "score": 0.542 + }, + { + "category_id": 0, + "poly": [ + 297, + 1429, + 873, + 1429, + 873, + 1459, + 297, + 1459 + ], + "score": 0.526 + }, + { + "category_id": 0, + "poly": [ + 301, + 508, + 768, + 508, + 768, + 537, + 301, + 537 + ], + "score": 0.499 + }, + { + "category_id": 0, + "poly": [ + 300, + 1797, + 726, + 1797, + 726, + 1827, + 300, + 1827 + ], + "score": 0.491 + }, + { + "category_id": 1, + "poly": [ + 301, + 508, + 768, + 508, + 768, + 537, + 301, + 537 + ], + "score": 0.311 + }, + { + "category_id": 0, + "poly": [ + 298, + 1428, + 875, + 1428, + 875, + 1459, + 298, + 1459 + ], + "score": 0.255 + }, + { + "category_id": 1, + "poly": [ + 300, + 1797, + 726, + 1797, + 726, + 1827, + 300, + 1827 + ], + "score": 0.126 + }, + { + "category_id": 15, + "poly": [ + 292.0, + 745.0, + 881.0, + 745.0, + 881.0, + 797.0, + 292.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 2086.0, + 869.0, + 2086.0, + 869.0, + 2125.0, + 833.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1423.0, + 880.0, + 1423.0, + 880.0, + 1467.0, + 293.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 503.0, + 775.0, + 503.0, + 775.0, + 544.0, + 294.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1792.0, + 727.0, + 1792.0, + 727.0, + 1833.0, + 295.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1421.0, + 880.0, + 1421.0, + 880.0, + 1469.0, + 293.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1459.0, + 1404.0, + 1459.0, + 1404.0, + 1492.0, + 297.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1490.0, + 1405.0, + 1490.0, + 1405.0, + 1523.0, + 294.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1521.0, + 1404.0, + 1521.0, + 1404.0, + 1552.0, + 294.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1552.0, + 1404.0, + 1552.0, + 1404.0, + 1581.0, + 296.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1582.0, + 1405.0, + 1582.0, + 1405.0, + 1612.0, + 296.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1611.0, + 1404.0, + 1611.0, + 1404.0, + 1644.0, + 296.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1643.0, + 1404.0, + 1643.0, + 1404.0, + 1673.0, + 297.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1672.0, + 1198.0, + 1672.0, + 1198.0, + 1706.0, + 293.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 566.0, + 1404.0, + 566.0, + 1404.0, + 604.0, + 294.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 600.0, + 1404.0, + 600.0, + 1404.0, + 632.0, + 294.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 630.0, + 1403.0, + 630.0, + 1403.0, + 662.0, + 295.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 659.0, + 1405.0, + 659.0, + 1405.0, + 696.0, + 293.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 687.0, + 716.0, + 687.0, + 716.0, + 727.0, + 294.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1242.0, + 1405.0, + 1242.0, + 1405.0, + 1278.0, + 296.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1271.0, + 1407.0, + 1271.0, + 1407.0, + 1309.0, + 293.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1303.0, + 1404.0, + 1303.0, + 1404.0, + 1342.0, + 291.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1334.0, + 1405.0, + 1334.0, + 1405.0, + 1371.0, + 294.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1364.0, + 1397.0, + 1364.0, + 1397.0, + 1402.0, + 293.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1858.0, + 1404.0, + 1858.0, + 1404.0, + 1891.0, + 297.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1883.0, + 1405.0, + 1883.0, + 1405.0, + 1928.0, + 293.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1917.0, + 1406.0, + 1917.0, + 1406.0, + 1954.0, + 293.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1951.0, + 1404.0, + 1951.0, + 1404.0, + 1984.0, + 295.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1979.0, + 975.0, + 1979.0, + 975.0, + 2015.0, + 294.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 231.0, + 1404.0, + 231.0, + 1404.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 260.0, + 1403.0, + 260.0, + 1403.0, + 292.0, + 295.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 288.0, + 1404.0, + 288.0, + 1404.0, + 325.0, + 294.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 319.0, + 1404.0, + 319.0, + 1404.0, + 357.0, + 294.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 349.0, + 1405.0, + 349.0, + 1405.0, + 386.0, + 294.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 381.0, + 1121.0, + 381.0, + 1121.0, + 416.0, + 295.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 786.0, + 1405.0, + 786.0, + 1405.0, + 819.0, + 297.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 815.0, + 1403.0, + 815.0, + 1403.0, + 849.0, + 296.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 842.0, + 1405.0, + 842.0, + 1405.0, + 881.0, + 292.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 874.0, + 1405.0, + 874.0, + 1405.0, + 912.0, + 295.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 905.0, + 1406.0, + 905.0, + 1406.0, + 940.0, + 292.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 934.0, + 1407.0, + 934.0, + 1407.0, + 973.0, + 295.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 968.0, + 1405.0, + 968.0, + 1405.0, + 1001.0, + 296.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 999.0, + 865.0, + 999.0, + 865.0, + 1032.0, + 295.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1116.0, + 1403.0, + 1116.0, + 1403.0, + 1158.0, + 293.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1150.0, + 446.0, + 1150.0, + 446.0, + 1189.0, + 293.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1177.0, + 1404.0, + 1177.0, + 1404.0, + 1218.0, + 293.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1215.0, + 413.0, + 1215.0, + 413.0, + 1248.0, + 291.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1073.0, + 937.0, + 1073.0, + 937.0, + 1112.0, + 297.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 533.0, + 736.0, + 533.0, + 736.0, + 574.0, + 295.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1719.0, + 1167.0, + 1719.0, + 1167.0, + 1753.0, + 297.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1750.0, + 546.0, + 1750.0, + 546.0, + 1782.0, + 296.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1041.0, + 1115.0, + 1041.0, + 1115.0, + 1083.0, + 296.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1822.0, + 688.0, + 1822.0, + 688.0, + 1864.0, + 295.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 425.0, + 1089.0, + 425.0, + 1089.0, + 468.0, + 295.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 460.0, + 610.0, + 460.0, + 610.0, + 496.0, + 294.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 503.0, + 775.0, + 503.0, + 775.0, + 544.0, + 294.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1792.0, + 727.0, + 1792.0, + 727.0, + 1833.0, + 295.0, + 1833.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 662, + 1405, + 662, + 1405, + 939, + 297, + 939 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 294, + 1406, + 294, + 1406, + 510, + 297, + 510 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 301, + 989, + 1400, + 989, + 1400, + 1441, + 301, + 1441 + ], + "score": 0.955 + }, + { + "category_id": 4, + "poly": [ + 295, + 1450, + 1403, + 1450, + 1403, + 1512, + 295, + 1512 + ], + "score": 0.931 + }, + { + "category_id": 4, + "poly": [ + 291, + 1948, + 1404, + 1948, + 1404, + 2011, + 291, + 2011 + ], + "score": 0.911 + }, + { + "category_id": 1, + "poly": [ + 430, + 523, + 1270, + 523, + 1270, + 556, + 430, + 556 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 866, + 2088, + 866, + 2113, + 835, + 2113 + ], + "score": 0.866 + }, + { + "category_id": 1, + "poly": [ + 530, + 617, + 1168, + 617, + 1168, + 649, + 530, + 649 + ], + "score": 0.863 + }, + { + "category_id": 1, + "poly": [ + 298, + 570, + 646, + 570, + 646, + 601, + 298, + 601 + ], + "score": 0.809 + }, + { + "category_id": 3, + "poly": [ + 323, + 1526, + 1379, + 1526, + 1379, + 1941, + 323, + 1941 + ], + "score": 0.801 + }, + { + "category_id": 0, + "poly": [ + 296, + 226, + 976, + 226, + 976, + 262, + 296, + 262 + ], + "score": 0.606 + }, + { + "category_id": 13, + "poly": [ + 348, + 1980, + 375, + 1980, + 375, + 2010, + 348, + 2010 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 347, + 1482, + 375, + 1482, + 375, + 1509, + 347, + 1509 + ], + "score": 0.81, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 298, + 327, + 325, + 327, + 325, + 358, + 298, + 358 + ], + "score": 0.81, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1187, + 297, + 1215, + 297, + 1215, + 324, + 1187, + 324 + ], + "score": 0.77, + "latex": "C" + }, + { + "category_id": 14, + "poly": [ + 397, + 1886, + 748, + 1886, + 748, + 1945, + 397, + 1945 + ], + "score": 0.42, + "latex": "\\therefore \\sin ^ { \\alpha } \\alpha ^ { \\alpha } - \\alpha ^ { \\alpha } - \\alpha ^ { \\alpha } - \\alpha ^ { \\alpha } \\cos ^ { \\alpha } \\alpha ^ { \\alpha } - \\alpha ^ { \\alpha } \\alpha ^ { \\alpha } \\alpha ^ { \\alpha } \\alpha ^ { \\alpha }" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 988.0, + 708.0, + 988.0, + 708.0, + 1020.0, + 492.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 990.0, + 1265.0, + 990.0, + 1265.0, + 1022.0, + 1042.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 1024.0, + 436.0, + 1024.0, + 436.0, + 1056.0, + 387.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 1024.0, + 979.0, + 1024.0, + 979.0, + 1056.0, + 934.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1052.0, + 435.0, + 1052.0, + 435.0, + 1084.0, + 305.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1052.0, + 978.0, + 1052.0, + 978.0, + 1083.0, + 846.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1078.0, + 438.0, + 1078.0, + 438.0, + 1111.0, + 400.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1078.0, + 849.0, + 1078.0, + 849.0, + 1102.0, + 818.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 1079.0, + 978.0, + 1079.0, + 978.0, + 1110.0, + 945.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 1078.0, + 1393.0, + 1078.0, + 1393.0, + 1102.0, + 1363.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 1107.0, + 437.0, + 1107.0, + 437.0, + 1144.0, + 387.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1107.0, + 980.0, + 1107.0, + 980.0, + 1144.0, + 932.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1140.0, + 436.0, + 1140.0, + 436.0, + 1173.0, + 355.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1142.0, + 849.0, + 1142.0, + 849.0, + 1166.0, + 818.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1138.0, + 980.0, + 1138.0, + 980.0, + 1175.0, + 899.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1364.0, + 1144.0, + 1394.0, + 1144.0, + 1394.0, + 1166.0, + 1364.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1168.0, + 437.0, + 1168.0, + 437.0, + 1204.0, + 378.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 1168.0, + 980.0, + 1168.0, + 980.0, + 1204.0, + 923.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1199.0, + 433.0, + 1199.0, + 433.0, + 1232.0, + 332.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1206.0, + 849.0, + 1206.0, + 849.0, + 1230.0, + 818.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1199.0, + 978.0, + 1199.0, + 978.0, + 1232.0, + 877.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 1210.0, + 1393.0, + 1210.0, + 1393.0, + 1229.0, + 1365.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1231.0, + 437.0, + 1231.0, + 437.0, + 1264.0, + 301.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1234.0, + 980.0, + 1234.0, + 980.0, + 1263.0, + 845.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1259.0, + 439.0, + 1259.0, + 439.0, + 1323.0, + 347.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1270.0, + 849.0, + 1270.0, + 849.0, + 1294.0, + 818.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1262.0, + 981.0, + 1262.0, + 981.0, + 1323.0, + 893.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1364.0, + 1273.0, + 1394.0, + 1273.0, + 1394.0, + 1295.0, + 1364.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 1335.0, + 849.0, + 1335.0, + 849.0, + 1357.0, + 819.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 1369.0, + 667.0, + 1369.0, + 667.0, + 1395.0, + 641.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1370.0, + 763.0, + 1370.0, + 763.0, + 1392.0, + 742.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1370.0, + 1211.0, + 1370.0, + 1211.0, + 1394.0, + 1184.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1367.5, + 1305.0, + 1367.5, + 1305.0, + 1387.5, + 1286.0, + 1387.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1370.0, + 498.0, + 1370.0, + 498.0, + 1397.0, + 425.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.75, + 1365.5, + 741.75, + 1365.5, + 741.75, + 1389.5, + 665.75, + 1389.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.75, + 1370.0, + 1039.75, + 1370.0, + 1039.75, + 1395.0, + 969.75, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 1364.0, + 1287.0, + 1364.0, + 1287.0, + 1389.0, + 1208.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1375.5, + 603.0, + 1375.5, + 603.0, + 1399.5, + 506.0, + 1399.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1373.5, + 1147.0, + 1373.5, + 1147.0, + 1398.0, + 1048.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1375.0, + 567.0, + 1375.0, + 567.0, + 1403.5, + 443.0, + 1403.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.75, + 1379.5, + 664.75, + 1379.5, + 664.75, + 1402.5, + 546.75, + 1402.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 1374.5, + 1110.0, + 1374.5, + 1110.0, + 1402.5, + 987.0, + 1402.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 1380.5, + 1204.0, + 1380.5, + 1204.0, + 1401.0, + 1093.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1447.0, + 1404.0, + 1447.0, + 1404.0, + 1487.0, + 293.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1481.0, + 346.0, + 1481.0, + 346.0, + 1513.0, + 297.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 1481.0, + 862.0, + 1481.0, + 862.0, + 1513.0, + 376.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1945.0, + 1403.0, + 1945.0, + 1403.0, + 1982.0, + 293.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1976.0, + 347.0, + 1976.0, + 347.0, + 2011.0, + 294.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 1976.0, + 734.0, + 1976.0, + 734.0, + 2011.0, + 376.0, + 2011.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": [ + 474.0, + 1526.0, + 691.0, + 1526.0, + 691.0, + 1558.0, + 474.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 1526.0, + 1244.0, + 1526.0, + 1244.0, + 1561.0, + 1017.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1554.0, + 405.0, + 1554.0, + 405.0, + 1590.0, + 354.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1553.0, + 952.0, + 1553.0, + 952.0, + 1592.0, + 900.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1577.0, + 407.0, + 1577.0, + 407.0, + 1618.0, + 325.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1578.0, + 952.0, + 1578.0, + 952.0, + 1617.0, + 872.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1605.0, + 404.0, + 1605.0, + 404.0, + 1639.0, + 344.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1616.0, + 825.0, + 1616.0, + 825.0, + 1638.0, + 796.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1605.0, + 949.0, + 1605.0, + 949.0, + 1639.0, + 891.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 1616.0, + 1370.0, + 1616.0, + 1370.0, + 1638.0, + 1341.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1628.0, + 403.0, + 1628.0, + 403.0, + 1659.0, + 352.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1631.0, + 949.0, + 1631.0, + 949.0, + 1660.0, + 898.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1648.0, + 405.0, + 1648.0, + 405.0, + 1684.0, + 323.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1651.0, + 950.0, + 1651.0, + 950.0, + 1688.0, + 873.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1675.0, + 402.0, + 1675.0, + 402.0, + 1708.0, + 361.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1682.0, + 826.0, + 1682.0, + 826.0, + 1704.0, + 794.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1675.0, + 947.0, + 1675.0, + 947.0, + 1708.0, + 908.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 1682.0, + 1371.0, + 1682.0, + 1371.0, + 1704.0, + 1341.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1695.0, + 402.0, + 1695.0, + 402.0, + 1729.0, + 357.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1694.0, + 948.0, + 1694.0, + 948.0, + 1730.0, + 903.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1741.0, + 404.0, + 1741.0, + 404.0, + 1777.0, + 368.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1746.0, + 825.0, + 1746.0, + 825.0, + 1769.0, + 794.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1745.0, + 949.0, + 1745.0, + 949.0, + 1776.0, + 915.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 1746.0, + 1370.0, + 1746.0, + 1370.0, + 1768.0, + 1341.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1763.0, + 407.0, + 1763.0, + 407.0, + 1805.0, + 323.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1764.0, + 953.0, + 1764.0, + 953.0, + 1805.0, + 869.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1792.0, + 405.0, + 1792.0, + 405.0, + 1826.0, + 367.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1810.0, + 826.0, + 1810.0, + 826.0, + 1834.0, + 794.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 1793.0, + 952.0, + 1793.0, + 952.0, + 1826.0, + 912.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 1810.0, + 1370.0, + 1810.0, + 1370.0, + 1834.0, + 1341.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1829.0, + 405.0, + 1829.0, + 405.0, + 1870.0, + 348.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1831.0, + 951.0, + 1831.0, + 951.0, + 1877.0, + 894.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 1901.0, + 1103.0, + 1901.0, + 1103.0, + 1915.0, + 1088.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1902.0, + 1288.0, + 1902.0, + 1288.0, + 1922.0, + 1268.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1920.0, + 1123.0, + 1920.0, + 1123.0, + 1934.0, + 1105.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1714.5, + 400.0, + 1714.5, + 400.0, + 1753.0, + 356.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.75, + 1716.0, + 945.75, + 1716.0, + 945.75, + 1752.0, + 900.75, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1899.0, + 490.0, + 1899.0, + 490.0, + 1927.5, + 441.0, + 1927.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1899.0, + 459.0, + 1899.0, + 459.0, + 1926.0, + 391.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 1903.5, + 526.0, + 1903.5, + 526.0, + 1922.5, + 480.0, + 1922.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.25, + 1912.0, + 593.25, + 1912.0, + 593.25, + 1922.0, + 568.25, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 1900.0, + 655.0, + 1900.0, + 655.0, + 1926.0, + 591.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1904.5, + 717.0, + 1904.5, + 717.0, + 1921.5, + 675.0, + 1921.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.25, + 1901.5, + 1003.25, + 1901.5, + 1003.25, + 1926.0, + 936.25, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.25, + 1902.0, + 1038.25, + 1902.0, + 1038.25, + 1927.0, + 986.25, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.75, + 1906.0, + 1069.75, + 1906.0, + 1069.75, + 1922.0, + 1027.75, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1901.0, + 1203.0, + 1901.0, + 1203.0, + 1927.5, + 1134.0, + 1927.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.75, + 1898.5, + 1247.75, + 1898.5, + 1247.75, + 1927.0, + 1163.75, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.25, + 1905.5, + 1260.25, + 1905.5, + 1260.25, + 1920.0, + 1224.25, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1899.0, + 703.0, + 1899.0, + 703.0, + 1928.5, + 617.0, + 1928.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 223.0, + 980.0, + 223.0, + 980.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 660.0, + 1402.0, + 660.0, + 1402.0, + 698.0, + 294.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 694.0, + 1402.0, + 694.0, + 1402.0, + 723.0, + 296.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 726.0, + 1405.0, + 726.0, + 1405.0, + 756.0, + 294.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 752.0, + 1405.0, + 752.0, + 1405.0, + 790.0, + 292.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 785.0, + 1406.0, + 785.0, + 1406.0, + 821.0, + 295.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 815.0, + 1405.0, + 815.0, + 1405.0, + 850.0, + 292.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 846.0, + 1405.0, + 846.0, + 1405.0, + 879.0, + 296.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 878.0, + 1403.0, + 878.0, + 1403.0, + 910.0, + 294.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 905.0, + 1030.0, + 905.0, + 1030.0, + 942.0, + 295.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 293.0, + 1186.0, + 293.0, + 1186.0, + 329.0, + 292.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 293.0, + 1404.0, + 293.0, + 1404.0, + 329.0, + 1216.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 327.0, + 1406.0, + 327.0, + 1406.0, + 361.0, + 326.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 356.0, + 1406.0, + 356.0, + 1406.0, + 391.0, + 295.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 386.0, + 1406.0, + 386.0, + 1406.0, + 422.0, + 292.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 419.0, + 1404.0, + 419.0, + 1404.0, + 450.0, + 295.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 449.0, + 1406.0, + 449.0, + 1406.0, + 483.0, + 295.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 479.0, + 805.0, + 479.0, + 805.0, + 513.0, + 294.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 519.0, + 1271.0, + 519.0, + 1271.0, + 562.0, + 426.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 612.0, + 1169.0, + 612.0, + 1169.0, + 653.0, + 530.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 566.0, + 647.0, + 566.0, + 647.0, + 607.0, + 294.0, + 607.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/BJxkOlSYDH/images/05b054841f5c76e56f878861bd60aa93b37e61ae728ba1f602a1d56876ecafe8.jpg b/parse/train/BJxkOlSYDH/images/05b054841f5c76e56f878861bd60aa93b37e61ae728ba1f602a1d56876ecafe8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a978e9218b27c12724a67297ec1ea3eec1cfc72e --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/05b054841f5c76e56f878861bd60aa93b37e61ae728ba1f602a1d56876ecafe8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e38de85cd166ae5553bc022b381d5e9eb9d1ff572e0d976f468d6878f15a031 +size 32497 diff --git a/parse/train/BJxkOlSYDH/images/0caac36c8d5b526ddb0dcbfd633e23c157c331e8a73308bc17b3edc4ddc6839b.jpg b/parse/train/BJxkOlSYDH/images/0caac36c8d5b526ddb0dcbfd633e23c157c331e8a73308bc17b3edc4ddc6839b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8dcfa7fda9704691a32a5f764e7bb1846d97ea74 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/0caac36c8d5b526ddb0dcbfd633e23c157c331e8a73308bc17b3edc4ddc6839b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e558ce19c25e8283debd58a4f4f80388cf2e2c3fbf063d655c409644906141a3 +size 6645 diff --git a/parse/train/BJxkOlSYDH/images/0fc0c316a79ce8f98281a8283bdc6a654e3fc881ae2b277006b9c1879397eac3.jpg b/parse/train/BJxkOlSYDH/images/0fc0c316a79ce8f98281a8283bdc6a654e3fc881ae2b277006b9c1879397eac3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b8cd5bb4765cc613b470f35f83410fa91ba0c0e --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/0fc0c316a79ce8f98281a8283bdc6a654e3fc881ae2b277006b9c1879397eac3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ace3cc3bf728b1b707aefde433c892d7e81a942ffc64fbd6d3c3838cd399ea1 +size 10563 diff --git a/parse/train/BJxkOlSYDH/images/13e0b6d86277c96fed2d0064dc7bbe413222d4cb8e6c186d72852bbea36d0734.jpg b/parse/train/BJxkOlSYDH/images/13e0b6d86277c96fed2d0064dc7bbe413222d4cb8e6c186d72852bbea36d0734.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1d176f34b7b74fa500fcdf75460a3b66b5a377b --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/13e0b6d86277c96fed2d0064dc7bbe413222d4cb8e6c186d72852bbea36d0734.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:597e32cc75fe47a570913d6aa97b97e35d0459288c8e18bb054a4971f71931f4 +size 11311 diff --git a/parse/train/BJxkOlSYDH/images/1c66a0267aa365b5642b55719edb4ec67b6153c7f41166a358b1937fe89c2bd9.jpg b/parse/train/BJxkOlSYDH/images/1c66a0267aa365b5642b55719edb4ec67b6153c7f41166a358b1937fe89c2bd9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d4721ee86b5d8bf00b2c4e2072a394d0d06e7e8 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/1c66a0267aa365b5642b55719edb4ec67b6153c7f41166a358b1937fe89c2bd9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f02e11374756530af73c06ba280c989dd4d1207e9ad78e04d84fb3c7e47954f +size 3440 diff --git a/parse/train/BJxkOlSYDH/images/1d6660a3c67971841756293391178cc36703894eda9607bfd046c1e220669c9b.jpg b/parse/train/BJxkOlSYDH/images/1d6660a3c67971841756293391178cc36703894eda9607bfd046c1e220669c9b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35a6173fb7e3bcd9a43b5b75ee20ab96edfd922c --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/1d6660a3c67971841756293391178cc36703894eda9607bfd046c1e220669c9b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e9f06e00c914c920b35800f8a22d573b272de1a1a6caad816199ee542d0af1 +size 9079 diff --git a/parse/train/BJxkOlSYDH/images/1dc90d36581819c933370862b916ca80be8e357e3e53cb42fe2925f7bd37a704.jpg b/parse/train/BJxkOlSYDH/images/1dc90d36581819c933370862b916ca80be8e357e3e53cb42fe2925f7bd37a704.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da3d5e23b4845f3d95075d2b5b5a8412477af393 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/1dc90d36581819c933370862b916ca80be8e357e3e53cb42fe2925f7bd37a704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d12236db2f53a0961e2c89f2938fceb1e5944fc0cd897ab4e42752f8bb80659 +size 52503 diff --git a/parse/train/BJxkOlSYDH/images/24d51d594c1bad0fb4ad4da7a3c3cdfdeee1a1b9fbcd710afcee4891ba948f3c.jpg b/parse/train/BJxkOlSYDH/images/24d51d594c1bad0fb4ad4da7a3c3cdfdeee1a1b9fbcd710afcee4891ba948f3c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89fdea823a034a0b3796a810d3d884fd91d746d3 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/24d51d594c1bad0fb4ad4da7a3c3cdfdeee1a1b9fbcd710afcee4891ba948f3c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b9cc6ce189ac0e52d2a5ff9f25241fc47873e3f829ccdfe782a26fcf1af3e0 +size 7252 diff --git a/parse/train/BJxkOlSYDH/images/28ff31b94c29584a4af7966633e95b0934ff8b7b9b3e0b8ed5e8872c31b1eb74.jpg b/parse/train/BJxkOlSYDH/images/28ff31b94c29584a4af7966633e95b0934ff8b7b9b3e0b8ed5e8872c31b1eb74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ae4d0585f3e7d9403ec25a0838f5d70173d70c7 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/28ff31b94c29584a4af7966633e95b0934ff8b7b9b3e0b8ed5e8872c31b1eb74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7aaf50e96970dae4f553d7ec850b77fe6cf53e66ac609d3ea5e273652e9c8f4 +size 11919 diff --git a/parse/train/BJxkOlSYDH/images/29ee6a483b214eb8f2bdf62fca08ec50ce72912dcacfa49f31bcc1c32454cb43.jpg b/parse/train/BJxkOlSYDH/images/29ee6a483b214eb8f2bdf62fca08ec50ce72912dcacfa49f31bcc1c32454cb43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1321859a2338a07466e643237530281e3e924904 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/29ee6a483b214eb8f2bdf62fca08ec50ce72912dcacfa49f31bcc1c32454cb43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b7605e5fd0456e8687cd2257cf11cb7c7bd5987623fb7832198e92253840aca +size 4609 diff --git a/parse/train/BJxkOlSYDH/images/2dfc8e2c4144df5f76656d8248c6f7d344a8ffeba1c0c25d30bc9f26b0230db8.jpg b/parse/train/BJxkOlSYDH/images/2dfc8e2c4144df5f76656d8248c6f7d344a8ffeba1c0c25d30bc9f26b0230db8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3870705055cf59320e421da659a0535cf861696 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/2dfc8e2c4144df5f76656d8248c6f7d344a8ffeba1c0c25d30bc9f26b0230db8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58ea00d47e9e88d3d3bb2df3b1c2bef1e28ffbcdd2e47d726909b28c9eb323a3 +size 10877 diff --git a/parse/train/BJxkOlSYDH/images/31894c7498b5a2bcea030db9bf024419e5b77567aac7b383fea7bbae6128ec3f.jpg b/parse/train/BJxkOlSYDH/images/31894c7498b5a2bcea030db9bf024419e5b77567aac7b383fea7bbae6128ec3f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..486904e32ba48168589267f18163a063a7d681e1 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/31894c7498b5a2bcea030db9bf024419e5b77567aac7b383fea7bbae6128ec3f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcfda6f5b2637eb2f666308928b6ae2b6804560f6ad7ae8746b5b559ae70d7ea +size 19675 diff --git a/parse/train/BJxkOlSYDH/images/3d352f86b7c326ce2abd0af0fc19fba921ae63e75aa6764ab60866c21738f52c.jpg b/parse/train/BJxkOlSYDH/images/3d352f86b7c326ce2abd0af0fc19fba921ae63e75aa6764ab60866c21738f52c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f895de089b4ee48acb4f6e477a83beb7f0151b3f --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/3d352f86b7c326ce2abd0af0fc19fba921ae63e75aa6764ab60866c21738f52c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a272e6fdba83c092df3c0e6b7483f035d1b5af3d28e9907e04655e2c8f654b51 +size 9401 diff --git a/parse/train/BJxkOlSYDH/images/3fa0fef57d0a834846ed93dc4d956ac22960d1646be039ecde87a2e769b58f36.jpg b/parse/train/BJxkOlSYDH/images/3fa0fef57d0a834846ed93dc4d956ac22960d1646be039ecde87a2e769b58f36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd7d81d4aaeea42959e6c22eebc1b03703fc730e --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/3fa0fef57d0a834846ed93dc4d956ac22960d1646be039ecde87a2e769b58f36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:089c55f7bfae0a3afaaf7815abec3e968e279dcfde5406564bb94450512acaa1 +size 10209 diff --git a/parse/train/BJxkOlSYDH/images/3faddd6c4d690acb1acf8b32a0a7553eeca94d2f50b64bbeb1406e1201f78d9d.jpg b/parse/train/BJxkOlSYDH/images/3faddd6c4d690acb1acf8b32a0a7553eeca94d2f50b64bbeb1406e1201f78d9d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49704dcedd183569b3efe90da1d64234237a2014 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/3faddd6c4d690acb1acf8b32a0a7553eeca94d2f50b64bbeb1406e1201f78d9d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9fa7ef511b8bbd78495629f091b2280618acbab46699c729993b7cee8439600 +size 17177 diff --git a/parse/train/BJxkOlSYDH/images/490800f9137ce860c112b3470e79b80527273ceae41aec3add65bf81517ec7b5.jpg b/parse/train/BJxkOlSYDH/images/490800f9137ce860c112b3470e79b80527273ceae41aec3add65bf81517ec7b5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..120f82fc6203ee4a956442debd9c243b7d9da2c7 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/490800f9137ce860c112b3470e79b80527273ceae41aec3add65bf81517ec7b5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a787f4b344edf7eda42f7488a9e08648cd6370bbf9a1ac1f4933acbea7733221 +size 8572 diff --git a/parse/train/BJxkOlSYDH/images/4aa7e2ff009664a12241e15faa5caffb5ac70444ecc60b402d022341674bf635.jpg b/parse/train/BJxkOlSYDH/images/4aa7e2ff009664a12241e15faa5caffb5ac70444ecc60b402d022341674bf635.jpg new file mode 100644 index 0000000000000000000000000000000000000000..417a9bef92dc5b6be76854df14fce2e6b126edee --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/4aa7e2ff009664a12241e15faa5caffb5ac70444ecc60b402d022341674bf635.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed9ba5c498e0d3c9cc82f6dfb0100f0c727f98e1e4eb268e94b743d1097eece +size 9575 diff --git a/parse/train/BJxkOlSYDH/images/4b03e23222a7314a052f86df3c61a4fa37f119f29ee1a25634af99ca89352299.jpg b/parse/train/BJxkOlSYDH/images/4b03e23222a7314a052f86df3c61a4fa37f119f29ee1a25634af99ca89352299.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ec1b2b4bb8d9c6acff332f7b54a234d8028c894 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/4b03e23222a7314a052f86df3c61a4fa37f119f29ee1a25634af99ca89352299.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9196b2dc885c65eefcec1cd488cadebe14ba9689a325b3d63b7e8e23011c34ae +size 7992 diff --git a/parse/train/BJxkOlSYDH/images/4b90d824ed4763ce1ceba3ce0a390efd416e28138e530faf007dda803a8d3350.jpg b/parse/train/BJxkOlSYDH/images/4b90d824ed4763ce1ceba3ce0a390efd416e28138e530faf007dda803a8d3350.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3d59f25dc7c8468e0ce701f96b1ee9a742830f6 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/4b90d824ed4763ce1ceba3ce0a390efd416e28138e530faf007dda803a8d3350.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01b330bf812515d2550abc9d446142cc3cc420734cb60d3d58e1a3d3cd0a74a0 +size 5668 diff --git a/parse/train/BJxkOlSYDH/images/54c14f92bb9625e1145c0561db65f9e6192f84479830d7dd50f8fe016586dd34.jpg b/parse/train/BJxkOlSYDH/images/54c14f92bb9625e1145c0561db65f9e6192f84479830d7dd50f8fe016586dd34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df30b9dd93361658ca56969f2b208126114f0ad9 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/54c14f92bb9625e1145c0561db65f9e6192f84479830d7dd50f8fe016586dd34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7acf2024fec473b9998e5e6f4268a86c195e0acd1dd9305716d7aa9d9c8a8136 +size 11716 diff --git a/parse/train/BJxkOlSYDH/images/56bb6ebc8e6333ec77dd4882732436e8767a5dcbf38b7a2048dfedc2908276d3.jpg b/parse/train/BJxkOlSYDH/images/56bb6ebc8e6333ec77dd4882732436e8767a5dcbf38b7a2048dfedc2908276d3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c724c9f9fa44b5eda52f9bb570f4878679edd09 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/56bb6ebc8e6333ec77dd4882732436e8767a5dcbf38b7a2048dfedc2908276d3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:909765f2229b9c1c629d4bf487492199523522a04055087ee4998af0d9317cbd +size 72082 diff --git a/parse/train/BJxkOlSYDH/images/5f8a179f59d78e1d46a84b6ceeae26d399c6d174ff92b7c531196a1a8a9db5bd.jpg b/parse/train/BJxkOlSYDH/images/5f8a179f59d78e1d46a84b6ceeae26d399c6d174ff92b7c531196a1a8a9db5bd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d22e42938a02b05b4d53259e7183d0cdd0a5a2f1 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/5f8a179f59d78e1d46a84b6ceeae26d399c6d174ff92b7c531196a1a8a9db5bd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf029b18ffc0753ead47311b300d925712413eb61d3a49279e0ab8a1418f451 +size 17336 diff --git a/parse/train/BJxkOlSYDH/images/638c915a40b1a8bde7b1f2b836b9179e609e1a39c06de1850c9b414c099910bd.jpg b/parse/train/BJxkOlSYDH/images/638c915a40b1a8bde7b1f2b836b9179e609e1a39c06de1850c9b414c099910bd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dcb3981007888a4b620854132cb2b9da99a3a3a9 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/638c915a40b1a8bde7b1f2b836b9179e609e1a39c06de1850c9b414c099910bd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe41f1df18887e2c698d0fb7f05932d5e894aacea88f0b20d310c339463173ee +size 3072 diff --git a/parse/train/BJxkOlSYDH/images/63d22dc4b0fbee0c38346f3448173b3ab259c2db3cf40d90dfac48f314e2d4e5.jpg b/parse/train/BJxkOlSYDH/images/63d22dc4b0fbee0c38346f3448173b3ab259c2db3cf40d90dfac48f314e2d4e5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0cf7b2cb2d669823687eecc8df3297f8b5e6f05 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/63d22dc4b0fbee0c38346f3448173b3ab259c2db3cf40d90dfac48f314e2d4e5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7cf8e510c1607558f21fe3966381fd6251511d678854f36a0b963c33e2835c6 +size 60768 diff --git a/parse/train/BJxkOlSYDH/images/67c5be44b246d2b1ec39bcb2ff6cf8f484926c3c29fe12e52233bc290a490094.jpg b/parse/train/BJxkOlSYDH/images/67c5be44b246d2b1ec39bcb2ff6cf8f484926c3c29fe12e52233bc290a490094.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5ed833552d3124045879b0779c4622bd4dcaedd --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/67c5be44b246d2b1ec39bcb2ff6cf8f484926c3c29fe12e52233bc290a490094.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35c1f176334c698d5ae51bf2fe8ff1922e1eafd7a234a830ca6e3442541bc3ef +size 4014 diff --git a/parse/train/BJxkOlSYDH/images/7831e6044f78a7de7de57cde249c9c96a339182dd82fdb10528c6ad8fcb943e6.jpg b/parse/train/BJxkOlSYDH/images/7831e6044f78a7de7de57cde249c9c96a339182dd82fdb10528c6ad8fcb943e6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a20b2ea565f85e7527590dc9e58473488beb7a2 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/7831e6044f78a7de7de57cde249c9c96a339182dd82fdb10528c6ad8fcb943e6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a17a14d2a80dfa2a148a39282be4dc3ec026d0b115633363afb9b7435957803e +size 3217 diff --git a/parse/train/BJxkOlSYDH/images/7a815320770a0363d47280bea25e21f485d02077f1951cea220f58299299d858.jpg b/parse/train/BJxkOlSYDH/images/7a815320770a0363d47280bea25e21f485d02077f1951cea220f58299299d858.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c02f1d78f3f0e755d113662e7a7097d6a4b271b --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/7a815320770a0363d47280bea25e21f485d02077f1951cea220f58299299d858.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3c2cb02b81a612f91123b943cac9b0e09b719f857541a80eb9ad105fa54667d +size 7990 diff --git a/parse/train/BJxkOlSYDH/images/7ae728d0f7eb2baecfb0b3b986995838c54102d39d2c716797fdc6507d0c544a.jpg b/parse/train/BJxkOlSYDH/images/7ae728d0f7eb2baecfb0b3b986995838c54102d39d2c716797fdc6507d0c544a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c179490ad28c9714c88c165964f888491fd9e4b6 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/7ae728d0f7eb2baecfb0b3b986995838c54102d39d2c716797fdc6507d0c544a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78f6b0671da9bd2da1a06758d9201fd9634595f7c7cbe7f76b943783023bef34 +size 3914 diff --git a/parse/train/BJxkOlSYDH/images/80914f8b07f686dd4b2ad42c8135c0ba175c6d6f69e3d7a8605a83d9a98caa1d.jpg b/parse/train/BJxkOlSYDH/images/80914f8b07f686dd4b2ad42c8135c0ba175c6d6f69e3d7a8605a83d9a98caa1d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..555f8bcb40d8bff2531ee169a75ca3ceeef33d56 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/80914f8b07f686dd4b2ad42c8135c0ba175c6d6f69e3d7a8605a83d9a98caa1d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43dd55fb11c796c793e5a50ca74e0b362ca4fb781df9f23a2b3a9ec41bc8bc9 +size 8157 diff --git a/parse/train/BJxkOlSYDH/images/80e2cff613da76587858144e7c4c79716aaf483d99890acb0c307102f8edf3db.jpg b/parse/train/BJxkOlSYDH/images/80e2cff613da76587858144e7c4c79716aaf483d99890acb0c307102f8edf3db.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f89bd844bcafcc0641ddffe6428126e6aeacc0f7 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/80e2cff613da76587858144e7c4c79716aaf483d99890acb0c307102f8edf3db.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:784516089948a5f70709d5a8e57590ac243d24c0a2a7b0a8e3ed8b6fa42359e8 +size 3103 diff --git a/parse/train/BJxkOlSYDH/images/8e72dfba39670e169365ad18eedb784c30d7023a272c5c76814cd0351443910a.jpg b/parse/train/BJxkOlSYDH/images/8e72dfba39670e169365ad18eedb784c30d7023a272c5c76814cd0351443910a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..190f694875bbcce2ac522de2b3bed4ec95c2f04d --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/8e72dfba39670e169365ad18eedb784c30d7023a272c5c76814cd0351443910a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:118018089ea2ff29af524aa3e6b91e355db18d58b944f85ed905b32a6cce2220 +size 1764 diff --git a/parse/train/BJxkOlSYDH/images/9eac9b75502579637d17f6c5b279f8c4031323d1287ce38789bba54af2a6508d.jpg b/parse/train/BJxkOlSYDH/images/9eac9b75502579637d17f6c5b279f8c4031323d1287ce38789bba54af2a6508d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8f9d8ff60fd016d65039185fe0eac9ec9325e0a --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/9eac9b75502579637d17f6c5b279f8c4031323d1287ce38789bba54af2a6508d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eef6be10e667f483a6f23fe62bbf380512535eec2e0aedc6802338d6516d2c0e +size 3282 diff --git a/parse/train/BJxkOlSYDH/images/9fc511433e27a62cd980c3e03bc4bc942c3dc49eb5c6ad4bccf559cc0544594c.jpg b/parse/train/BJxkOlSYDH/images/9fc511433e27a62cd980c3e03bc4bc942c3dc49eb5c6ad4bccf559cc0544594c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fcd8c895965551e084a519e81f2b449ced9e570e --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/9fc511433e27a62cd980c3e03bc4bc942c3dc49eb5c6ad4bccf559cc0544594c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ba9cdf4097c65a81a977344caa0bf4f207022f2094f386a6c7ea1542ea0ff0 +size 61932 diff --git a/parse/train/BJxkOlSYDH/images/a4d710e0ffd1967e6339e729be59da8296206a4a79c06a7897fb4edb98e294ed.jpg b/parse/train/BJxkOlSYDH/images/a4d710e0ffd1967e6339e729be59da8296206a4a79c06a7897fb4edb98e294ed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a309dfc30e3e525d28c26b3c44968452620ffc3 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/a4d710e0ffd1967e6339e729be59da8296206a4a79c06a7897fb4edb98e294ed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ef0cde386440ecffdea40f0297ee8ed6b9f9a3a0c3ce49ec8b9e5f70ad8f68 +size 51246 diff --git a/parse/train/BJxkOlSYDH/images/a6999c15dad288c2393d150c518395b6b18d3c5d4aa58f5e1760a81a3a89e175.jpg b/parse/train/BJxkOlSYDH/images/a6999c15dad288c2393d150c518395b6b18d3c5d4aa58f5e1760a81a3a89e175.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bcc1d1ead498d2cd6a53f52e38ef06b024f92ba9 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/a6999c15dad288c2393d150c518395b6b18d3c5d4aa58f5e1760a81a3a89e175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a87c30d7fa2df063514e2b57a0a87b3d5cc5f32d8fdf83e9e0a3211c8fcd00b4 +size 8373 diff --git a/parse/train/BJxkOlSYDH/images/a7baa2acb47ed7cb2f9a6c08684b8cfd5488aa2b433ea6b876ec3a5a34a149ce.jpg b/parse/train/BJxkOlSYDH/images/a7baa2acb47ed7cb2f9a6c08684b8cfd5488aa2b433ea6b876ec3a5a34a149ce.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c72315f7dd77cf236979b0ffd1c0f7cb200c5f6b --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/a7baa2acb47ed7cb2f9a6c08684b8cfd5488aa2b433ea6b876ec3a5a34a149ce.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096ea40aa2a0ad2a41b7895cf750274bc3e11823dd577e2efafe8353bbfb5ec7 +size 7944 diff --git a/parse/train/BJxkOlSYDH/images/abd3fe8e109e2b68c5f586eea491b84d1ea7ccb7f6645bd7fad74cb03a4e8b3a.jpg b/parse/train/BJxkOlSYDH/images/abd3fe8e109e2b68c5f586eea491b84d1ea7ccb7f6645bd7fad74cb03a4e8b3a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f73bf63d2bb76eb034dcc82d659153867c544ff3 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/abd3fe8e109e2b68c5f586eea491b84d1ea7ccb7f6645bd7fad74cb03a4e8b3a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18646967b79ab2804f9cd2ce3f3829c0451b32210715de6da17940c35f8ef635 +size 2329 diff --git a/parse/train/BJxkOlSYDH/images/acf73d5cf7bd602ef929f899c1533cc280a0e0b3ec6b1cf1a1b262057d4cdc90.jpg b/parse/train/BJxkOlSYDH/images/acf73d5cf7bd602ef929f899c1533cc280a0e0b3ec6b1cf1a1b262057d4cdc90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..93c16d8c5466df4b13cd267781be38abdf409846 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/acf73d5cf7bd602ef929f899c1533cc280a0e0b3ec6b1cf1a1b262057d4cdc90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e53103175d74c63640c297b0a5d7c24ec35206b0ea709c47d7626bcb8d6cbe +size 24585 diff --git a/parse/train/BJxkOlSYDH/images/adaca90be412a0b77e34a71a99df04e7164835bc8cc11426362119bcd0a6d96d.jpg b/parse/train/BJxkOlSYDH/images/adaca90be412a0b77e34a71a99df04e7164835bc8cc11426362119bcd0a6d96d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c59456ea331f426b4d0e1b4e0da45d51f79e1b1 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/adaca90be412a0b77e34a71a99df04e7164835bc8cc11426362119bcd0a6d96d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf59a17e0a2d6f31f00f668d37882e26b5ec3f3560c9e0dbc7f46dbb117299ad +size 179745 diff --git a/parse/train/BJxkOlSYDH/images/ae0212e506a30850ddb32f41d5a61ed371f3b1c35be0d3bc5815c8d7b490a6f4.jpg b/parse/train/BJxkOlSYDH/images/ae0212e506a30850ddb32f41d5a61ed371f3b1c35be0d3bc5815c8d7b490a6f4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..603e1924865e6020aad91866f3e8c8141997410c --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/ae0212e506a30850ddb32f41d5a61ed371f3b1c35be0d3bc5815c8d7b490a6f4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0893a306e18d277f55421e082aede515757fbce938940e522c6e0fc208e773a +size 8053 diff --git a/parse/train/BJxkOlSYDH/images/ae340d6d0e68cd187e65cc1d12231a2444facea7b4d5c5eaa8ba909811dda868.jpg b/parse/train/BJxkOlSYDH/images/ae340d6d0e68cd187e65cc1d12231a2444facea7b4d5c5eaa8ba909811dda868.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3651b84e27c67a2c12ff8a8bfd66a8d268351a4c --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/ae340d6d0e68cd187e65cc1d12231a2444facea7b4d5c5eaa8ba909811dda868.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:057e8882c6b46a34ef978c7f021965afcda22e08aff80c7fb312d196f177d0ec +size 9994 diff --git a/parse/train/BJxkOlSYDH/images/afd44e788e6688686ea08ded859c4bb63a8d2aad63eacd2517849ad6d4e131f1.jpg b/parse/train/BJxkOlSYDH/images/afd44e788e6688686ea08ded859c4bb63a8d2aad63eacd2517849ad6d4e131f1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d078d63f1a232837412991f3fae8fb1905bd8811 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/afd44e788e6688686ea08ded859c4bb63a8d2aad63eacd2517849ad6d4e131f1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb2ccc02ef091b3c02c13ec127686f308faadeb2df3f68936c96ee45ef8d506 +size 39884 diff --git a/parse/train/BJxkOlSYDH/images/b177e94d407ff3490b658256018ac1f74b364be422f80d714a67c087136f62b6.jpg b/parse/train/BJxkOlSYDH/images/b177e94d407ff3490b658256018ac1f74b364be422f80d714a67c087136f62b6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ff7249ec00ef92fcee104cbfeaa2268c3f210c4 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/b177e94d407ff3490b658256018ac1f74b364be422f80d714a67c087136f62b6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc62cf6533b416deaf9c10d36c75d13c4039ca96dd2e5bdc1605cd7efa9fad9b +size 12241 diff --git a/parse/train/BJxkOlSYDH/images/b53fc9682d408a4f2cd7bfc985fd3da4733fb1dd9c3d61b121ca2042358aee6a.jpg b/parse/train/BJxkOlSYDH/images/b53fc9682d408a4f2cd7bfc985fd3da4733fb1dd9c3d61b121ca2042358aee6a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3358dd3f22c461a2a1d337ea1f8e9ed1281f741a --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/b53fc9682d408a4f2cd7bfc985fd3da4733fb1dd9c3d61b121ca2042358aee6a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f57aeef78a603124cc9ee2396166e5c08328d3878b96836d52a80b6e38fba6c +size 26782 diff --git a/parse/train/BJxkOlSYDH/images/b59a8a824aee018ee7dbe20c2bbda29e2f219ac09435444013d6d75210456f6f.jpg b/parse/train/BJxkOlSYDH/images/b59a8a824aee018ee7dbe20c2bbda29e2f219ac09435444013d6d75210456f6f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0613e65d477d18f845b239e3f700aa46e8225279 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/b59a8a824aee018ee7dbe20c2bbda29e2f219ac09435444013d6d75210456f6f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59a07d52bc3779f462a2dee1fa776287137419dd87fccde2c38a882189aa5dbd +size 7165 diff --git a/parse/train/BJxkOlSYDH/images/b97b554ae68356cb1990f9d8a47bc2a44ba6928feaa701b4d88e6cd3cdf2e479.jpg b/parse/train/BJxkOlSYDH/images/b97b554ae68356cb1990f9d8a47bc2a44ba6928feaa701b4d88e6cd3cdf2e479.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4d5311d79e5b20b9185d017dbed731122c53b31 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/b97b554ae68356cb1990f9d8a47bc2a44ba6928feaa701b4d88e6cd3cdf2e479.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef8c6ca8af34eea7d126e25bdf90662664ca68309519d07de87e0d96bea2c4b +size 20396 diff --git a/parse/train/BJxkOlSYDH/images/bcf376bd59290dd3a26c86e79003d7c3c70b0513ffde967705b0fc45f543842c.jpg b/parse/train/BJxkOlSYDH/images/bcf376bd59290dd3a26c86e79003d7c3c70b0513ffde967705b0fc45f543842c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9ebda2921d407ea2654609054252796eb5208c9 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/bcf376bd59290dd3a26c86e79003d7c3c70b0513ffde967705b0fc45f543842c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fe75e2793de008672905a739c7e1c6e8a9b94fbbd450885763e049b20c16809 +size 160254 diff --git a/parse/train/BJxkOlSYDH/images/bf4562c649d2fce947ee99715f4b3dce90d263253b0c6f0f88c5adb1bd7a3b7e.jpg b/parse/train/BJxkOlSYDH/images/bf4562c649d2fce947ee99715f4b3dce90d263253b0c6f0f88c5adb1bd7a3b7e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9bfc5417a7e69729e075f850984087051d98621 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/bf4562c649d2fce947ee99715f4b3dce90d263253b0c6f0f88c5adb1bd7a3b7e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf34c3794e02fb33c387e0a19316bee30a5e26507cd9148d1b388ea70dd44f04 +size 2070 diff --git a/parse/train/BJxkOlSYDH/images/c1a416bc0de12cb850d886b1ceca739291f70f2988ee1e1a8001afc6fe67b4ab.jpg b/parse/train/BJxkOlSYDH/images/c1a416bc0de12cb850d886b1ceca739291f70f2988ee1e1a8001afc6fe67b4ab.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07117a02b98fb7f96acef4c5a45591d46e6521d6 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/c1a416bc0de12cb850d886b1ceca739291f70f2988ee1e1a8001afc6fe67b4ab.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d035005ce0ebc7f6a5b79dde2a1c87bfbe97959a0c29ff0d27efb737c023c7db +size 5694 diff --git a/parse/train/BJxkOlSYDH/images/ce20bd9fa1e8cdb8bf9a36a8c7c83df6d1266a68ec731b95e631cffc2d7a4b59.jpg b/parse/train/BJxkOlSYDH/images/ce20bd9fa1e8cdb8bf9a36a8c7c83df6d1266a68ec731b95e631cffc2d7a4b59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..249030fb0ce5aa931fe2bbcfe3e4bca54cb81326 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/ce20bd9fa1e8cdb8bf9a36a8c7c83df6d1266a68ec731b95e631cffc2d7a4b59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad34a3997f83b9eec97eafe69cfc4e30068163f1b391abbcf04fdd2cce6832b3 +size 33480 diff --git a/parse/train/BJxkOlSYDH/images/d055ab0662f91d369e0ccb99672f0b63ea3557e0949aa28582576421e66b4a51.jpg b/parse/train/BJxkOlSYDH/images/d055ab0662f91d369e0ccb99672f0b63ea3557e0949aa28582576421e66b4a51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e76527a9763a1349d0e5e9321034f1a7c12ca27c --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/d055ab0662f91d369e0ccb99672f0b63ea3557e0949aa28582576421e66b4a51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf2882a81570c6cf51fc942a1adf5a505f5875a95d95176c6d8c067d8897bf24 +size 107167 diff --git a/parse/train/BJxkOlSYDH/images/d8f996b7e38be453bf5c49b3c956c46b3a53b41e84dc26b3e424239abf994d10.jpg b/parse/train/BJxkOlSYDH/images/d8f996b7e38be453bf5c49b3c956c46b3a53b41e84dc26b3e424239abf994d10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af7b09030baf02ca58e9b423d1263db58dcc9995 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/d8f996b7e38be453bf5c49b3c956c46b3a53b41e84dc26b3e424239abf994d10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a722bbfea438bfcb7205010c9920046b6f46b3586e9c74ec409b96eb510d86b8 +size 5399 diff --git a/parse/train/BJxkOlSYDH/images/d9942659e2e9e183c9a6ababdee290e0457ea3093773c3a3c4c8874a06bcf5eb.jpg b/parse/train/BJxkOlSYDH/images/d9942659e2e9e183c9a6ababdee290e0457ea3093773c3a3c4c8874a06bcf5eb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3f3ed3ef6d734eebc7b20f89c6e88ddcd13fbe4 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/d9942659e2e9e183c9a6ababdee290e0457ea3093773c3a3c4c8874a06bcf5eb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dae669b1ccc75cb0ddd50ecd444a0dc631e942d22c4c6cf87159603c84e965c8 +size 15825 diff --git a/parse/train/BJxkOlSYDH/images/dfeb5a748a332671cf4c43b26e0df501cf49a02642867ddad0f55ad0e925b738.jpg b/parse/train/BJxkOlSYDH/images/dfeb5a748a332671cf4c43b26e0df501cf49a02642867ddad0f55ad0e925b738.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef2ab49a573bfa65e4cf46285b50f0078ab66b6b --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/dfeb5a748a332671cf4c43b26e0df501cf49a02642867ddad0f55ad0e925b738.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:714a20f69f027b0bb490c6f42583940f813915e3c0995112b492466e376248d3 +size 23009 diff --git a/parse/train/BJxkOlSYDH/images/e002012672d6aac7c2b58229c31e0e0e5b0e02353ba5aaf8be11e3d6d32a2c4d.jpg b/parse/train/BJxkOlSYDH/images/e002012672d6aac7c2b58229c31e0e0e5b0e02353ba5aaf8be11e3d6d32a2c4d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..043f8c2028a32cf8ceb9bb0a9590ea421e684938 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/e002012672d6aac7c2b58229c31e0e0e5b0e02353ba5aaf8be11e3d6d32a2c4d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620119b4ddc6dea7e9453c8f57f5e6f7d32a2c4382752b7fbac7e6b5eb537c97 +size 4864 diff --git a/parse/train/BJxkOlSYDH/images/e755a1af30a9045332ee57919751b6dc264f438a897237c1b7cf9d6b0c0d36f4.jpg b/parse/train/BJxkOlSYDH/images/e755a1af30a9045332ee57919751b6dc264f438a897237c1b7cf9d6b0c0d36f4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fbf85eb7de5ae70564efaf37b82072a4bff3fa3a --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/e755a1af30a9045332ee57919751b6dc264f438a897237c1b7cf9d6b0c0d36f4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23be53821ba1b9c309271f1b9ed3c6d5081135b4bac067d5168b5a1ce1b0c396 +size 5025 diff --git a/parse/train/BJxkOlSYDH/images/ea2c09e4e3ef8fe5f93e26b6eeb6a767c322862406897af4b9b07d9d574ef8f7.jpg b/parse/train/BJxkOlSYDH/images/ea2c09e4e3ef8fe5f93e26b6eeb6a767c322862406897af4b9b07d9d574ef8f7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43930d8da54f3a5244949ca5aef02f2d58cdbb39 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/ea2c09e4e3ef8fe5f93e26b6eeb6a767c322862406897af4b9b07d9d574ef8f7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be0e0e653e3be416e05762b9a53a8598556ef047c5ea6e9f0dcc35896dfb57e0 +size 40578 diff --git a/parse/train/BJxkOlSYDH/images/ea3a5b1557e53a07af9354334f49aba142dcb32859390716dc2c90b6360cd6e1.jpg b/parse/train/BJxkOlSYDH/images/ea3a5b1557e53a07af9354334f49aba142dcb32859390716dc2c90b6360cd6e1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc872e29410df2043f444d5e57f64f2bdf79d885 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/ea3a5b1557e53a07af9354334f49aba142dcb32859390716dc2c90b6360cd6e1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9671cb120f944b8f32ddc61f66ff9072f8582a51675ebd867514a30c0212a078 +size 31379 diff --git a/parse/train/BJxkOlSYDH/images/eabacd44bbac2e6df02af73e8bbcacc0c5fe28f84a901ec7d2416fc8a299b336.jpg b/parse/train/BJxkOlSYDH/images/eabacd44bbac2e6df02af73e8bbcacc0c5fe28f84a901ec7d2416fc8a299b336.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49d01798da6ee208224d83b85f1c1ee99ad88c4b --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/eabacd44bbac2e6df02af73e8bbcacc0c5fe28f84a901ec7d2416fc8a299b336.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0ef9531fdd0b776da23a30b66fe4279a98995e6f1ecb759b7bf1b24d9cb98ef +size 19769 diff --git a/parse/train/BJxkOlSYDH/images/eb92029c8e1480f307c30185fe40422751740babfbb6f971c078c4d16b8e5057.jpg b/parse/train/BJxkOlSYDH/images/eb92029c8e1480f307c30185fe40422751740babfbb6f971c078c4d16b8e5057.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3da65c5d84e0a0adfdb364d5c4dcd3bfe30891b --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/eb92029c8e1480f307c30185fe40422751740babfbb6f971c078c4d16b8e5057.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25de5f73d594629cf25da7be912fee465b0bfd9e2f7f0e1b1e36b8ae07e7d548 +size 6040 diff --git a/parse/train/BJxkOlSYDH/images/ece661a757bea261d08e7885e1deaa7e98dd749dd72d767581d88d11f1aaa3de.jpg b/parse/train/BJxkOlSYDH/images/ece661a757bea261d08e7885e1deaa7e98dd749dd72d767581d88d11f1aaa3de.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4fbf79c27755aded99b6b0e9bf4b7a570819f928 --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/ece661a757bea261d08e7885e1deaa7e98dd749dd72d767581d88d11f1aaa3de.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1498da5f952f6e6065d2b23cada64ad563d0121897114b76fe41843ce3db6f73 +size 54794 diff --git a/parse/train/BJxkOlSYDH/images/f1a6e5642f6f21a4b05f66dee98d89401cf38afeebfc86787e82a53f97cc8437.jpg b/parse/train/BJxkOlSYDH/images/f1a6e5642f6f21a4b05f66dee98d89401cf38afeebfc86787e82a53f97cc8437.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64f44a7e0c6992174ffe10028f275e7a47e28b7a --- /dev/null +++ b/parse/train/BJxkOlSYDH/images/f1a6e5642f6f21a4b05f66dee98d89401cf38afeebfc86787e82a53f97cc8437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed46e77f2bbf0728085177eebaf8bee7472fdb03b18db66dace69e5d48b9f640 +size 4462 diff --git a/parse/train/BkLhzHtlg/images/0501a2c84e7c8147b2909c69de0e18e50cd4367858626bafb09585cc17d850a2.jpg b/parse/train/BkLhzHtlg/images/0501a2c84e7c8147b2909c69de0e18e50cd4367858626bafb09585cc17d850a2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..146e67ac3efe46b8fdb8086501d12dae289a6210 --- /dev/null +++ b/parse/train/BkLhzHtlg/images/0501a2c84e7c8147b2909c69de0e18e50cd4367858626bafb09585cc17d850a2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9211e498ac4fab5506de6f2b2064b2e4b255849b9f26558073ebd1223ecf262e +size 59207 diff --git a/parse/train/BkLhzHtlg/images/08cc50ddfa9eb2302d406d2b269df3c0d7573a8bc0186c48acfdcb44a1c61412.jpg b/parse/train/BkLhzHtlg/images/08cc50ddfa9eb2302d406d2b269df3c0d7573a8bc0186c48acfdcb44a1c61412.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e1b59e00efb4b0b31ff5b92568b30bdb806feb8 --- /dev/null +++ b/parse/train/BkLhzHtlg/images/08cc50ddfa9eb2302d406d2b269df3c0d7573a8bc0186c48acfdcb44a1c61412.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61e25202ef3d744f6263b6421808afbc908975885badf0c98fcbaf2989d00c08 +size 29946 diff --git a/parse/train/BkLhzHtlg/images/0d551afa184533b64e9762b219e8b1bf98c01276ba0f89494409c508623708fa.jpg b/parse/train/BkLhzHtlg/images/0d551afa184533b64e9762b219e8b1bf98c01276ba0f89494409c508623708fa.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41fbe65165e6d771f1b047805d10e2c421950ca8 --- /dev/null +++ b/parse/train/BkLhzHtlg/images/0d551afa184533b64e9762b219e8b1bf98c01276ba0f89494409c508623708fa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c54aa33554445464a97fc14d90fdae8c05eed8d45189cdf3d65a2bd69f3dda0e +size 52860 diff --git a/parse/train/BkLhzHtlg/images/1518169447b0a1f01f97c62b8a104d7d33c490630ecb6c985320dcffc79d8265.jpg b/parse/train/BkLhzHtlg/images/1518169447b0a1f01f97c62b8a104d7d33c490630ecb6c985320dcffc79d8265.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99d921c4b0d07da5e02d888bb846a5f6fe17de15 --- /dev/null +++ b/parse/train/BkLhzHtlg/images/1518169447b0a1f01f97c62b8a104d7d33c490630ecb6c985320dcffc79d8265.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa95dc21e9bb0d1f90f5be120658c26e3abf00b2cb59d5fa3f1896c88ef2ae5 +size 58530 diff --git a/parse/train/BkLhzHtlg/images/416b74bfcbf5d01bcf21d4dd8a217f057019397ebe4af0b863ca126cad460643.jpg b/parse/train/BkLhzHtlg/images/416b74bfcbf5d01bcf21d4dd8a217f057019397ebe4af0b863ca126cad460643.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5d032a134d50341328135ca25a93c5522b91536 --- /dev/null +++ b/parse/train/BkLhzHtlg/images/416b74bfcbf5d01bcf21d4dd8a217f057019397ebe4af0b863ca126cad460643.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad205baa1706bd2c9f2f612ac50d0c2964b0f1de99d8f909d075dac48cd2f28 +size 55398 diff --git a/parse/train/BkLhzHtlg/images/5b044416366f3fc00d29b298d6af8d2a88e4fd24b20c7533ed3bbad95221e757.jpg b/parse/train/BkLhzHtlg/images/5b044416366f3fc00d29b298d6af8d2a88e4fd24b20c7533ed3bbad95221e757.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e575f185463d628b8423b0eab35630066e76c519 --- /dev/null +++ b/parse/train/BkLhzHtlg/images/5b044416366f3fc00d29b298d6af8d2a88e4fd24b20c7533ed3bbad95221e757.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:917abf0d53c314e138cd57c981d62e693e57328373f458af968a03d2296ae34f +size 23599 diff --git a/parse/train/BkLhzHtlg/images/6122d23e292ada2f9718073ff6e41343732ee6fba496e43b45bb24dce1c0157e.jpg b/parse/train/BkLhzHtlg/images/6122d23e292ada2f9718073ff6e41343732ee6fba496e43b45bb24dce1c0157e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50a1c59de833da95ea7c90249491a63270ca798e --- /dev/null +++ b/parse/train/BkLhzHtlg/images/6122d23e292ada2f9718073ff6e41343732ee6fba496e43b45bb24dce1c0157e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94982d4b91ee4ecfbe741f4eb827afccddb18ee35c0cff1d19564b5dc5b8e8f5 +size 50294 diff --git a/parse/train/BkLhzHtlg/images/63308561b782eeeff1123c91bbf8fa3c0c0a378d44ecebc3ba71c45eafa23d3f.jpg b/parse/train/BkLhzHtlg/images/63308561b782eeeff1123c91bbf8fa3c0c0a378d44ecebc3ba71c45eafa23d3f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7e587a8fe71b6202eeb3cc625ef39ae373e07da --- /dev/null +++ b/parse/train/BkLhzHtlg/images/63308561b782eeeff1123c91bbf8fa3c0c0a378d44ecebc3ba71c45eafa23d3f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ecc576994c87bd1b30d055c3113549409954883bb1310cd7bea25ba6782b7fb +size 18448 diff --git a/parse/train/BkLhzHtlg/images/8cfbcb94cbe6d80e4e1b1b337a3f51c147e58118fc5f8df92fd4a0f7be6e402a.jpg b/parse/train/BkLhzHtlg/images/8cfbcb94cbe6d80e4e1b1b337a3f51c147e58118fc5f8df92fd4a0f7be6e402a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bfef28ef80ca3a5dc9513fe1e630b7cc094a8ae0 --- /dev/null +++ b/parse/train/BkLhzHtlg/images/8cfbcb94cbe6d80e4e1b1b337a3f51c147e58118fc5f8df92fd4a0f7be6e402a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93cb5182bc95c7a518f148380192924d18ceb3821dd0a0a6c779529a33467beb +size 27941 diff --git a/parse/train/BkLhzHtlg/images/93b3dff0bfaf4facff66b1d2039e823118aebff7174260f4fcc03bdad39911b1.jpg b/parse/train/BkLhzHtlg/images/93b3dff0bfaf4facff66b1d2039e823118aebff7174260f4fcc03bdad39911b1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26c10bf171892e806f47d249ab40ea52c5d5eb7e --- /dev/null +++ b/parse/train/BkLhzHtlg/images/93b3dff0bfaf4facff66b1d2039e823118aebff7174260f4fcc03bdad39911b1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c5fd8ac1d06f52bf9ddbd3369bad0d677b796fcc1ac3f0c19ab03a141b31f4a +size 16287 diff --git a/parse/train/BkLhzHtlg/images/947cbe53d030058ac0feed431ce63a3ff067627bb0db24994807f5151a7428f7.jpg b/parse/train/BkLhzHtlg/images/947cbe53d030058ac0feed431ce63a3ff067627bb0db24994807f5151a7428f7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6eaca560b6056ecbe26e2512284a7268c7ade299 --- /dev/null +++ b/parse/train/BkLhzHtlg/images/947cbe53d030058ac0feed431ce63a3ff067627bb0db24994807f5151a7428f7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0453c7db779d0fe6d3669a1dad5871d01af52cbcbe465c3b4bd4e6ab577de1f0 +size 24345 diff --git a/parse/train/BkLhzHtlg/images/bdc4ebe3a762a85ec23da17e615604be7192cc6a4286f710de08165a46cfed82.jpg b/parse/train/BkLhzHtlg/images/bdc4ebe3a762a85ec23da17e615604be7192cc6a4286f710de08165a46cfed82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97e4959165ddd98278134124962ed0f9b3b947f7 --- /dev/null +++ b/parse/train/BkLhzHtlg/images/bdc4ebe3a762a85ec23da17e615604be7192cc6a4286f710de08165a46cfed82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5317f2545469139ad89af5eb1c8f933ebad534312c7a427b4ae66400dd1def0 +size 62913 diff --git a/parse/train/BkLhzHtlg/images/c2db86514d23a0e71c2f7e8bdb56bbc226676c462e4a36af2b63e733b6e74657.jpg b/parse/train/BkLhzHtlg/images/c2db86514d23a0e71c2f7e8bdb56bbc226676c462e4a36af2b63e733b6e74657.jpg new file mode 100644 index 0000000000000000000000000000000000000000..600eff0a13760c63979960ee020e98427fba876c --- /dev/null +++ b/parse/train/BkLhzHtlg/images/c2db86514d23a0e71c2f7e8bdb56bbc226676c462e4a36af2b63e733b6e74657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0f2f2b5d7aca9bfa6435474a9d911c69b84b30dcb248d57aead972862301a78 +size 98789 diff --git a/parse/train/BkLhzHtlg/images/edb44f99f9043a58e041cc7e4c89c107a34c780fcf108bf58eacc0d3dee00cbb.jpg b/parse/train/BkLhzHtlg/images/edb44f99f9043a58e041cc7e4c89c107a34c780fcf108bf58eacc0d3dee00cbb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5fcd50ef814ef0ce0fb100fdab27c1b67450367 --- /dev/null +++ b/parse/train/BkLhzHtlg/images/edb44f99f9043a58e041cc7e4c89c107a34c780fcf108bf58eacc0d3dee00cbb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08eeb73522b456915ea358302fee968876b20daabd58c243c33b26fc26b541a7 +size 19874 diff --git a/parse/train/BkgBvsC9FQ/images/0e566274d64fbb8358f7ed3a1664deb6e09b1154b517e9d3fad48fb9a52dea96.jpg b/parse/train/BkgBvsC9FQ/images/0e566274d64fbb8358f7ed3a1664deb6e09b1154b517e9d3fad48fb9a52dea96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..62ec4767686f344f114b896fd9699f6d1d2269ce --- /dev/null +++ b/parse/train/BkgBvsC9FQ/images/0e566274d64fbb8358f7ed3a1664deb6e09b1154b517e9d3fad48fb9a52dea96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6afc3ba5e3aa47aa8409239de7005857d3cecc3e4f09af1267bf4c9896be0316 +size 8552 diff --git a/parse/train/BkgBvsC9FQ/images/1dbe8ed8d815d051d2e39a3104b9ba29747c0b6ab367513aa5b48fc138fda4eb.jpg b/parse/train/BkgBvsC9FQ/images/1dbe8ed8d815d051d2e39a3104b9ba29747c0b6ab367513aa5b48fc138fda4eb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11e6649fcd635019e0da271769afe3e6eb1cad61 --- /dev/null +++ b/parse/train/BkgBvsC9FQ/images/1dbe8ed8d815d051d2e39a3104b9ba29747c0b6ab367513aa5b48fc138fda4eb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:609adee475e1081cedd1e903d7f1c5212788baeabb37ca431aa922be339436f5 +size 6810 diff --git a/parse/train/BkgBvsC9FQ/images/360f1c5d465858d5397225665ec1567b500f8c527416826482524c49f82fb96b.jpg b/parse/train/BkgBvsC9FQ/images/360f1c5d465858d5397225665ec1567b500f8c527416826482524c49f82fb96b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa9af219d96d357d345de3e6dbc698d05389a5d2 --- /dev/null +++ b/parse/train/BkgBvsC9FQ/images/360f1c5d465858d5397225665ec1567b500f8c527416826482524c49f82fb96b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bb2008fbf2c4cddff35aecaa73c2f5c33c8db73ae0e4743d4e33987abbe541b +size 13251 diff --git a/parse/train/BkgBvsC9FQ/images/3f1a99f4770cb270e5da5e718f69d81970dbeef9b5f60cb5898096c0aa80f0dc.jpg b/parse/train/BkgBvsC9FQ/images/3f1a99f4770cb270e5da5e718f69d81970dbeef9b5f60cb5898096c0aa80f0dc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4cf41310ab9087b571e1a11e8b1d635e9b2e579b --- /dev/null +++ b/parse/train/BkgBvsC9FQ/images/3f1a99f4770cb270e5da5e718f69d81970dbeef9b5f60cb5898096c0aa80f0dc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:758590703c02eb515d5f7c0376727437ea007373732d9c0ccd3a9fee710af050 +size 106240 diff --git a/parse/train/BkgBvsC9FQ/images/4fb66034806b2cbe66f2cd7927adc2ee539bf63d96c6f57df759244e4e91bd99.jpg b/parse/train/BkgBvsC9FQ/images/4fb66034806b2cbe66f2cd7927adc2ee539bf63d96c6f57df759244e4e91bd99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..985617009edc6771b1f7fdffca7b02e4b2e87283 --- /dev/null +++ b/parse/train/BkgBvsC9FQ/images/4fb66034806b2cbe66f2cd7927adc2ee539bf63d96c6f57df759244e4e91bd99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49929a0df004433381e05dbd89a15add6b78bb42749810020763ff80249a271f +size 41565 diff --git a/parse/train/BkgBvsC9FQ/images/8fec31df25c9084bd3080830a4254bc27a4c296bf7c393e785dbbfa04d879698.jpg b/parse/train/BkgBvsC9FQ/images/8fec31df25c9084bd3080830a4254bc27a4c296bf7c393e785dbbfa04d879698.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d97d788694857eb7c1ce20c97cf569ebb4bb86e --- /dev/null +++ b/parse/train/BkgBvsC9FQ/images/8fec31df25c9084bd3080830a4254bc27a4c296bf7c393e785dbbfa04d879698.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9b2479cdb3b221ab0d1dd3b1fc1448e8db0ad063e1ede8d357cb37ec00cb455 +size 7394 diff --git a/parse/train/BkgBvsC9FQ/images/975a60fe0240c0d826731fc448d1d55fe68560134a186a8635f1c3d9c99efbff.jpg b/parse/train/BkgBvsC9FQ/images/975a60fe0240c0d826731fc448d1d55fe68560134a186a8635f1c3d9c99efbff.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2ec58d2764a630b62d9db6afa9a402dcc4d35ab --- /dev/null +++ b/parse/train/BkgBvsC9FQ/images/975a60fe0240c0d826731fc448d1d55fe68560134a186a8635f1c3d9c99efbff.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6de885cea917eaca035d6fc52e4b43738c180f9a76a64d2cc47fbdd93bf7abb +size 95399 diff --git a/parse/train/BkglSTNFDB/images/07ae804a6b110033f8bf12b32de163cad5567ec4167d97952b977363794b7bc4.jpg b/parse/train/BkglSTNFDB/images/07ae804a6b110033f8bf12b32de163cad5567ec4167d97952b977363794b7bc4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5dac627bc540dbbec72a48d6deb9d0f3187e182f --- /dev/null +++ b/parse/train/BkglSTNFDB/images/07ae804a6b110033f8bf12b32de163cad5567ec4167d97952b977363794b7bc4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64ff0c459dd0d3bd3d2b7891d1fb0faad32d7f44e3b6187804ca996de87ca1a1 +size 7968 diff --git a/parse/train/BkglSTNFDB/images/0a9ed2938f048cb014418095c8bf22495e13c88841960e9512dce70e6eff25c2.jpg b/parse/train/BkglSTNFDB/images/0a9ed2938f048cb014418095c8bf22495e13c88841960e9512dce70e6eff25c2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6beef7c5f4775b0bb97bbf1916e57e30cbe9c248 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/0a9ed2938f048cb014418095c8bf22495e13c88841960e9512dce70e6eff25c2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3da8d617f9f9d8bdf63aaf66be458df771a64e4127534131aca6a4da0cea1d +size 40577 diff --git a/parse/train/BkglSTNFDB/images/112b2a0ff239fa280515807bb22278ab6c902bb4dd2bada09b6a5e780e0dcd78.jpg b/parse/train/BkglSTNFDB/images/112b2a0ff239fa280515807bb22278ab6c902bb4dd2bada09b6a5e780e0dcd78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89af184bc50fdf4ba5e7c80b1a0ac54faed7a540 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/112b2a0ff239fa280515807bb22278ab6c902bb4dd2bada09b6a5e780e0dcd78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6ac79cc5be6248561c09fac5114e58176deed5cd817f1f9d72bd03de98bf72c +size 4036 diff --git a/parse/train/BkglSTNFDB/images/19060e0af63eb5746ff2fa8e81a511f198a258681b5fb178d09da3690eab476b.jpg b/parse/train/BkglSTNFDB/images/19060e0af63eb5746ff2fa8e81a511f198a258681b5fb178d09da3690eab476b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2918586c1254fd873292a415ecbd637efbe069d8 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/19060e0af63eb5746ff2fa8e81a511f198a258681b5fb178d09da3690eab476b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79828d5febebfa90a23cb780f982761a1d4351ab90cf68ae2454d055a7c0f1ed +size 48503 diff --git a/parse/train/BkglSTNFDB/images/1d7fa9ef3cc29e1e3ac2d0a868dec889d151fa6dfb8e0d2bbd8979285d9e7f25.jpg b/parse/train/BkglSTNFDB/images/1d7fa9ef3cc29e1e3ac2d0a868dec889d151fa6dfb8e0d2bbd8979285d9e7f25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0e594291f915a54a6aa3964dba81c5f8b273c11 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/1d7fa9ef3cc29e1e3ac2d0a868dec889d151fa6dfb8e0d2bbd8979285d9e7f25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e3edff28a0b8f747757cf6c59afe18de8c95b6a5f997be4428b07b75d5338b7 +size 16732 diff --git a/parse/train/BkglSTNFDB/images/242c5979af7b492fba1d80135236539576c26cc515f271d589d39be0ce0b496a.jpg b/parse/train/BkglSTNFDB/images/242c5979af7b492fba1d80135236539576c26cc515f271d589d39be0ce0b496a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f83df54209fe5086b5c29ab9f1eea30bd058de14 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/242c5979af7b492fba1d80135236539576c26cc515f271d589d39be0ce0b496a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:480336cf3115a36205638b832b6108482019603e5ec998b9456fc2446821ff63 +size 8309 diff --git a/parse/train/BkglSTNFDB/images/3659eb39bbdbcc0c60a416911c59460e57107ec3dbd0e6f62d3b7b93a525422e.jpg b/parse/train/BkglSTNFDB/images/3659eb39bbdbcc0c60a416911c59460e57107ec3dbd0e6f62d3b7b93a525422e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f239912b45337393e23cd525a17d876a8beb5257 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/3659eb39bbdbcc0c60a416911c59460e57107ec3dbd0e6f62d3b7b93a525422e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:652c3012fe89c85ec07414b621c622e2c10442e99537e169583f5d11375fe12f +size 7246 diff --git a/parse/train/BkglSTNFDB/images/446057ad76737ed78dbeb6c14c391ec04ae8a21d0dea27c95bf135aaaf7cc43f.jpg b/parse/train/BkglSTNFDB/images/446057ad76737ed78dbeb6c14c391ec04ae8a21d0dea27c95bf135aaaf7cc43f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c9b8d457cd5aae90e73425ff3646838541652b9a --- /dev/null +++ b/parse/train/BkglSTNFDB/images/446057ad76737ed78dbeb6c14c391ec04ae8a21d0dea27c95bf135aaaf7cc43f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e08d9571f1bb8cca4b1841a23104c50a0c4aee41b0ca2666bd4117b3f49060cf +size 3846 diff --git a/parse/train/BkglSTNFDB/images/4635fc976e34fd23da44f8967bc69d839d0dafaecc85d492653e8f8184e7782e.jpg b/parse/train/BkglSTNFDB/images/4635fc976e34fd23da44f8967bc69d839d0dafaecc85d492653e8f8184e7782e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6eba8677a9e95a9e01df7c79028427485b13ad40 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/4635fc976e34fd23da44f8967bc69d839d0dafaecc85d492653e8f8184e7782e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5ebdce92bf2d2203cdb5c393359a85c49356320d48470e3e303a0c900af112d +size 13729 diff --git a/parse/train/BkglSTNFDB/images/4b3ee4cb41b96d3c4f223bc4146fc59bb343a3cac7f567861e3ed3154212ede1.jpg b/parse/train/BkglSTNFDB/images/4b3ee4cb41b96d3c4f223bc4146fc59bb343a3cac7f567861e3ed3154212ede1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e979f15787cef4cc365b1a4f67c14076f414946 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/4b3ee4cb41b96d3c4f223bc4146fc59bb343a3cac7f567861e3ed3154212ede1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2edcd6d798cd9080ad8783ccca626500899aeba0d5cc707a6060e4feada9bfa5 +size 29577 diff --git a/parse/train/BkglSTNFDB/images/4c5556442dd84c67ed2f8017702e406cf2d4d5acde09b8b3242d907ec73dda13.jpg b/parse/train/BkglSTNFDB/images/4c5556442dd84c67ed2f8017702e406cf2d4d5acde09b8b3242d907ec73dda13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1f1d55622360990b1806c2d2eab7d8e87e6f9f0 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/4c5556442dd84c67ed2f8017702e406cf2d4d5acde09b8b3242d907ec73dda13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d98362da26637d2286ecb15dfeed38b3935d252afc2850a3c6135801675ca18f +size 2493 diff --git a/parse/train/BkglSTNFDB/images/52704ae56896c370e8ec3e398577b25911ebb487e2237bb93613270924e4d24c.jpg b/parse/train/BkglSTNFDB/images/52704ae56896c370e8ec3e398577b25911ebb487e2237bb93613270924e4d24c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14e62d31a01c78af02480e68ea5ef77bf44c573f --- /dev/null +++ b/parse/train/BkglSTNFDB/images/52704ae56896c370e8ec3e398577b25911ebb487e2237bb93613270924e4d24c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cc5dd70bb9968166a405f92d5f04d8ab3b49c1b3c800bb4522db058a5c442e0 +size 21401 diff --git a/parse/train/BkglSTNFDB/images/56de998ef0518be48301779db9712c42690034bbbfeba7d7ae47e786453e29e7.jpg b/parse/train/BkglSTNFDB/images/56de998ef0518be48301779db9712c42690034bbbfeba7d7ae47e786453e29e7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..071f29cce0abf9d0709c39332441efb5658be6f0 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/56de998ef0518be48301779db9712c42690034bbbfeba7d7ae47e786453e29e7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a30611a6b49a5713b8ff89f62c3cde568a0798bbacee737b3d8b20da3652441 +size 18025 diff --git a/parse/train/BkglSTNFDB/images/576704e0ba7bc113c9eb1c2218a2bd6ace18a8d09188a27f397409e00cdaad49.jpg b/parse/train/BkglSTNFDB/images/576704e0ba7bc113c9eb1c2218a2bd6ace18a8d09188a27f397409e00cdaad49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..837f899749686e8423643ef72dd42759402b8850 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/576704e0ba7bc113c9eb1c2218a2bd6ace18a8d09188a27f397409e00cdaad49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1072fa232f0fb3a7f0db3d305b086b41684c0282d8230e9078900b5f085138aa +size 13794 diff --git a/parse/train/BkglSTNFDB/images/59cd62d5ec6d571803efed659b258dfba8d0141783a9422cc7a1cf15db20a44e.jpg b/parse/train/BkglSTNFDB/images/59cd62d5ec6d571803efed659b258dfba8d0141783a9422cc7a1cf15db20a44e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14be3abe66b01a6c2ce4dd35a8455bb6c01d0051 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/59cd62d5ec6d571803efed659b258dfba8d0141783a9422cc7a1cf15db20a44e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:506c16d6fa4911985a4b3efcdeae0e17e17d90fc6e8d365e4d57f1d470e0097e +size 13507 diff --git a/parse/train/BkglSTNFDB/images/5cce7a222551bc6274bbc52ffdb272aeca3dced98abbbc8f80d2fab7858deadf.jpg b/parse/train/BkglSTNFDB/images/5cce7a222551bc6274bbc52ffdb272aeca3dced98abbbc8f80d2fab7858deadf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6359ab7c9fbb7b153f63dca2d8a71fb226d1c078 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/5cce7a222551bc6274bbc52ffdb272aeca3dced98abbbc8f80d2fab7858deadf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f68e228f48a7298789758185f07d4df93f4da5d307b3eafc9058f8a50482e93e +size 6652 diff --git a/parse/train/BkglSTNFDB/images/6163bc4f633c8d81c5759aacc60e20932b8157511f7dd0e021ff4e1df174dd54.jpg b/parse/train/BkglSTNFDB/images/6163bc4f633c8d81c5759aacc60e20932b8157511f7dd0e021ff4e1df174dd54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a56688c3faaca92f5d6e86e4b1faf6069b1336ee --- /dev/null +++ b/parse/train/BkglSTNFDB/images/6163bc4f633c8d81c5759aacc60e20932b8157511f7dd0e021ff4e1df174dd54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a5b8f02c8e147eca193fc0ab8018b17dcfac01e3b793289ee95ad8df9327034 +size 4496 diff --git a/parse/train/BkglSTNFDB/images/62ba3bea0f084d11903c964028d906643070d34916bde88924637c5e08ea73d6.jpg b/parse/train/BkglSTNFDB/images/62ba3bea0f084d11903c964028d906643070d34916bde88924637c5e08ea73d6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b545ac9689c09b02f29fe8a23ecf1a44883f3da --- /dev/null +++ b/parse/train/BkglSTNFDB/images/62ba3bea0f084d11903c964028d906643070d34916bde88924637c5e08ea73d6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0553053a6c76b52bc4a313672d5c781ee3ac8c3c95d2e351f5b03f97c27fbab9 +size 21090 diff --git a/parse/train/BkglSTNFDB/images/6648dce62ed22bd5032b6259b54c85d35efee676cf37255340a1199f339eda3d.jpg b/parse/train/BkglSTNFDB/images/6648dce62ed22bd5032b6259b54c85d35efee676cf37255340a1199f339eda3d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..540a4d3202ee7840b44c0037b4f3acfc0d6550e0 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/6648dce62ed22bd5032b6259b54c85d35efee676cf37255340a1199f339eda3d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9518a3d6f53c71902e4e8daca9d7a7e9927a9bbfb37f9b3ceb18cfb15a25c895 +size 2683 diff --git a/parse/train/BkglSTNFDB/images/70ff20e4e31a1bb0299ebb34008753b3eaca5c5e3da766015eda50bc514d5a51.jpg b/parse/train/BkglSTNFDB/images/70ff20e4e31a1bb0299ebb34008753b3eaca5c5e3da766015eda50bc514d5a51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c8727aca59309e055447b4b4881c431b6dd38f3 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/70ff20e4e31a1bb0299ebb34008753b3eaca5c5e3da766015eda50bc514d5a51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31a1e8145b682ef665c60516682bcbb3ff94bef6522938951bee87a6aaaec5e2 +size 14649 diff --git a/parse/train/BkglSTNFDB/images/7d918d021bc39256ac2de308ee455c6a54396bc36335cd0f685f840f0c5005d1.jpg b/parse/train/BkglSTNFDB/images/7d918d021bc39256ac2de308ee455c6a54396bc36335cd0f685f840f0c5005d1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7974b0a0d3edf1421db4e145cd7ec9a2edd7880 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/7d918d021bc39256ac2de308ee455c6a54396bc36335cd0f685f840f0c5005d1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11eb0e83a96b292433b989e3223419ffdb1b2251e67a26254cbcce924d53085e +size 4006 diff --git a/parse/train/BkglSTNFDB/images/7ed6137165be41b2ad3ac59dec10e06c5f86c9778d1953d9a7904ac5097d5be4.jpg b/parse/train/BkglSTNFDB/images/7ed6137165be41b2ad3ac59dec10e06c5f86c9778d1953d9a7904ac5097d5be4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65beb947505b0c5d59da5fce10fc4e881579a1c0 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/7ed6137165be41b2ad3ac59dec10e06c5f86c9778d1953d9a7904ac5097d5be4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d43613cb8bfe2fc1f5876010fffd0bbe25e23354ad9bc68e91b245e0a5e9c12e +size 5851 diff --git a/parse/train/BkglSTNFDB/images/7f3af02c43fff8510d8c8a82457783c482e400b5602396a1f237a333d06d0211.jpg b/parse/train/BkglSTNFDB/images/7f3af02c43fff8510d8c8a82457783c482e400b5602396a1f237a333d06d0211.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a753543e9996dfd96b6fe08fb8f4c0a3f7401f8 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/7f3af02c43fff8510d8c8a82457783c482e400b5602396a1f237a333d06d0211.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbec81f70c44c97c740ef3175fe70460d0c8b2414a27b4983df1644fd126a145 +size 10528 diff --git a/parse/train/BkglSTNFDB/images/8e6137e01a7beea297bf95283d863b21a785d17463e6944e2efedb515bf7d808.jpg b/parse/train/BkglSTNFDB/images/8e6137e01a7beea297bf95283d863b21a785d17463e6944e2efedb515bf7d808.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5182e6e0c0c5088f66a68dbd45eb74b9503619fc --- /dev/null +++ b/parse/train/BkglSTNFDB/images/8e6137e01a7beea297bf95283d863b21a785d17463e6944e2efedb515bf7d808.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca2c4915fdd8a1aeffe452b66cd580b5a4e3b0ae2c1c4823531b5f1af159e5ef +size 10106 diff --git a/parse/train/BkglSTNFDB/images/90d6cf339da0fc0bd898216b68464ffc95f01fd8012796a3a8c23865fc73b784.jpg b/parse/train/BkglSTNFDB/images/90d6cf339da0fc0bd898216b68464ffc95f01fd8012796a3a8c23865fc73b784.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3379c26c8cc01edb8abb664c2f18bd232a473139 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/90d6cf339da0fc0bd898216b68464ffc95f01fd8012796a3a8c23865fc73b784.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64346500661ba40c43b29d4ef56a37f25a72d6c02843380c65963687733d77d2 +size 6648 diff --git a/parse/train/BkglSTNFDB/images/9834ce9a1e7dc58cf0a708f75e6b5b858bcdc589ad24752ed45e1722a959c115.jpg b/parse/train/BkglSTNFDB/images/9834ce9a1e7dc58cf0a708f75e6b5b858bcdc589ad24752ed45e1722a959c115.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c7ae67340076d4b48426f11f625838171d1b614 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/9834ce9a1e7dc58cf0a708f75e6b5b858bcdc589ad24752ed45e1722a959c115.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e4eba20f0546be7b7e84c7af90cdacb4b0d264013ce2ae0513908d568a61241 +size 11884 diff --git a/parse/train/BkglSTNFDB/images/a1c63f8ce8866bfa935cc54ba0fa4060644052edbd98620aad79e7ef97f0f148.jpg b/parse/train/BkglSTNFDB/images/a1c63f8ce8866bfa935cc54ba0fa4060644052edbd98620aad79e7ef97f0f148.jpg new file mode 100644 index 0000000000000000000000000000000000000000..814e981ed0f5cc1c8e94e5b3f3a5fec10e827230 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/a1c63f8ce8866bfa935cc54ba0fa4060644052edbd98620aad79e7ef97f0f148.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18ce68d84930f82fbfb3051ca75a9186e75f018d948dd9fd73a02b41784bf073 +size 36454 diff --git a/parse/train/BkglSTNFDB/images/a3a5a1e7d68659f678d45d1177dbe36c95439ce8dceba0366c8e7ffef18cce5d.jpg b/parse/train/BkglSTNFDB/images/a3a5a1e7d68659f678d45d1177dbe36c95439ce8dceba0366c8e7ffef18cce5d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02ea4ea8060e7098384859cccd3f31b6c9efde98 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/a3a5a1e7d68659f678d45d1177dbe36c95439ce8dceba0366c8e7ffef18cce5d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bec677ac3d3465062777265590483fb34c8c2d095e9eebf25787a13fc90dde0 +size 10131 diff --git a/parse/train/BkglSTNFDB/images/ab4e05f21481995ad7b6907c39b07eca8dcf1b1707af7599ec0fb0ba9984a116.jpg b/parse/train/BkglSTNFDB/images/ab4e05f21481995ad7b6907c39b07eca8dcf1b1707af7599ec0fb0ba9984a116.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17003150f466cef5d3ba5be303d97d3476258f77 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/ab4e05f21481995ad7b6907c39b07eca8dcf1b1707af7599ec0fb0ba9984a116.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea8cf02e95046a17a40f42189fe7517f4d4c89502580ed69ab76a0ed5614cacb +size 14030 diff --git a/parse/train/BkglSTNFDB/images/ad0c57b5739df10ef8c0d2046656de08d85d51ac78dc2acbfb1350115223ebf4.jpg b/parse/train/BkglSTNFDB/images/ad0c57b5739df10ef8c0d2046656de08d85d51ac78dc2acbfb1350115223ebf4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f0a19ddba9f7940f35e5c1f44e0a9186705abb5 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/ad0c57b5739df10ef8c0d2046656de08d85d51ac78dc2acbfb1350115223ebf4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fa004ceb57a442edec4de7571ac86b3bb9fcd83841c375b6558dcad3799d1a5 +size 15408 diff --git a/parse/train/BkglSTNFDB/images/ad528682451c2a80d59b5c6f1508b5b7b9f26c92e6092f8aeb71c929441cec39.jpg b/parse/train/BkglSTNFDB/images/ad528682451c2a80d59b5c6f1508b5b7b9f26c92e6092f8aeb71c929441cec39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..052cb9c4ba857ad6cef9bd8f8ee47b80db0e786e --- /dev/null +++ b/parse/train/BkglSTNFDB/images/ad528682451c2a80d59b5c6f1508b5b7b9f26c92e6092f8aeb71c929441cec39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27b9becb8bf818b264bda7a4f3abc222a6cdf04400a5520758adb492c8f4a828 +size 10981 diff --git a/parse/train/BkglSTNFDB/images/b1e98198c486d877466252bbfdd5d0afb8e4019bc37fc19f80c274168b0bb6a3.jpg b/parse/train/BkglSTNFDB/images/b1e98198c486d877466252bbfdd5d0afb8e4019bc37fc19f80c274168b0bb6a3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab37a5e73b96a25fb40271db988d725e54355782 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/b1e98198c486d877466252bbfdd5d0afb8e4019bc37fc19f80c274168b0bb6a3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc816e2dd98e2ebd423e284b71af1b19fcfc9c660b13121444eeed756c5f4d8 +size 11104 diff --git a/parse/train/BkglSTNFDB/images/b83b246b4683938705ff27511cfa875c502578f40906ac3c2c49408d5a5881f3.jpg b/parse/train/BkglSTNFDB/images/b83b246b4683938705ff27511cfa875c502578f40906ac3c2c49408d5a5881f3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88eff3a32ec59d6044a2ec988477cfe0a3845c4c --- /dev/null +++ b/parse/train/BkglSTNFDB/images/b83b246b4683938705ff27511cfa875c502578f40906ac3c2c49408d5a5881f3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa16678774d5cf2fdea1afbdde01db3b50194e2057967d14e443bc985ef6cda3 +size 6216 diff --git a/parse/train/BkglSTNFDB/images/bae465b19e019059a91e97016934af5f7bf0c47e9357a7ca6741dfa6dd715015.jpg b/parse/train/BkglSTNFDB/images/bae465b19e019059a91e97016934af5f7bf0c47e9357a7ca6741dfa6dd715015.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2cc9e3ead823fc5a12e21649c5f4f191bb59e71d --- /dev/null +++ b/parse/train/BkglSTNFDB/images/bae465b19e019059a91e97016934af5f7bf0c47e9357a7ca6741dfa6dd715015.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2947ebdb4da425dab3caf12e2b9b891d4f45accc47e9ffc944cc8a4a57c6331d +size 30529 diff --git a/parse/train/BkglSTNFDB/images/bce9df1dbdecfd18cd0fbd700e55e9d74ea6aeee786233ea436d7b29badc95fc.jpg b/parse/train/BkglSTNFDB/images/bce9df1dbdecfd18cd0fbd700e55e9d74ea6aeee786233ea436d7b29badc95fc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a04e542033da39b39fca493d46826539f278d5b4 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/bce9df1dbdecfd18cd0fbd700e55e9d74ea6aeee786233ea436d7b29badc95fc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87263ac8b4cccf92cc76905c8c99296d2b0de9cc68a72180d25bdf1c440613d6 +size 20859 diff --git a/parse/train/BkglSTNFDB/images/c06bd9e11a4120e53c0b8d2cd822906d72211ae50589d30086bcbaef0151ca3a.jpg b/parse/train/BkglSTNFDB/images/c06bd9e11a4120e53c0b8d2cd822906d72211ae50589d30086bcbaef0151ca3a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..39905eda3867f2e794cf39023347c39e317a9bdf --- /dev/null +++ b/parse/train/BkglSTNFDB/images/c06bd9e11a4120e53c0b8d2cd822906d72211ae50589d30086bcbaef0151ca3a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9201afa0d20289a9e38fcf1327a27eff948f07ca450a376bb1f82421718a4cce +size 31418 diff --git a/parse/train/BkglSTNFDB/images/cc2b5aa0f63178566f02139857adabb797f2f963feb35907fc51fd7501fb1693.jpg b/parse/train/BkglSTNFDB/images/cc2b5aa0f63178566f02139857adabb797f2f963feb35907fc51fd7501fb1693.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77497edff745dd28b2ff6e0ec2de7f2276efe94c --- /dev/null +++ b/parse/train/BkglSTNFDB/images/cc2b5aa0f63178566f02139857adabb797f2f963feb35907fc51fd7501fb1693.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34edb7d45d02172f9af5f8ba7772c68fb1c497951d7dec8af82f82812a41dc9c +size 4449 diff --git a/parse/train/BkglSTNFDB/images/d2bbc005947d28dd95e009c07818fe62e6d9b1e5309a47331c5537b6fbe06992.jpg b/parse/train/BkglSTNFDB/images/d2bbc005947d28dd95e009c07818fe62e6d9b1e5309a47331c5537b6fbe06992.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e07ebd12601fb73c5c350901c815ad78e633477b --- /dev/null +++ b/parse/train/BkglSTNFDB/images/d2bbc005947d28dd95e009c07818fe62e6d9b1e5309a47331c5537b6fbe06992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a41fafddfb0f948208e5ceb70a1cec7b688de6a8f5a555e44029f81723fd6c0 +size 18591 diff --git a/parse/train/BkglSTNFDB/images/d36f303c3c54ca211346b95b702c878d2e496acc0473679ca8912f1c49bc42a5.jpg b/parse/train/BkglSTNFDB/images/d36f303c3c54ca211346b95b702c878d2e496acc0473679ca8912f1c49bc42a5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e831eaad0c1c93e476da44ec0d5ca8868224748 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/d36f303c3c54ca211346b95b702c878d2e496acc0473679ca8912f1c49bc42a5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99a3caa33bf1d7704f9275a96daa32ddba0503d9ccd91c04d05a60e439ce4e7c +size 7842 diff --git a/parse/train/BkglSTNFDB/images/d5388b49142af9a03fc552a4ec774a7df6c96f7f162f72703f3ded5df679058d.jpg b/parse/train/BkglSTNFDB/images/d5388b49142af9a03fc552a4ec774a7df6c96f7f162f72703f3ded5df679058d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5dc1eb6e835810e02aca5f1695962443af2a72c --- /dev/null +++ b/parse/train/BkglSTNFDB/images/d5388b49142af9a03fc552a4ec774a7df6c96f7f162f72703f3ded5df679058d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:078a57e12914283a472c734c75ec66d38bf6dd3f195bd3073beb5b24a188b471 +size 25475 diff --git a/parse/train/BkglSTNFDB/images/dc3a723cc9eab16cf16971abf7bbf69938ee49002e529fdd61110b29bb930e71.jpg b/parse/train/BkglSTNFDB/images/dc3a723cc9eab16cf16971abf7bbf69938ee49002e529fdd61110b29bb930e71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37d11d5e197b2815115edf02e39a7a01a7966aaa --- /dev/null +++ b/parse/train/BkglSTNFDB/images/dc3a723cc9eab16cf16971abf7bbf69938ee49002e529fdd61110b29bb930e71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07f613408596e768665fafb75ac7a372509c30b086a410060ff92e2f29a75d66 +size 12078 diff --git a/parse/train/BkglSTNFDB/images/dfeb0feb59d694c97b8d3ad8daa0ee95cb21f9b5f8a16f568ba86cb50b2a11bd.jpg b/parse/train/BkglSTNFDB/images/dfeb0feb59d694c97b8d3ad8daa0ee95cb21f9b5f8a16f568ba86cb50b2a11bd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89e5e184168f7307c8487dfe1f8418cae6dcc705 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/dfeb0feb59d694c97b8d3ad8daa0ee95cb21f9b5f8a16f568ba86cb50b2a11bd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddececc250deccb61f3a0e36423c9a268df9fc487bb3ad6bc9e92e5b133a4b74 +size 7043 diff --git a/parse/train/BkglSTNFDB/images/f086319de63ecc59068ffa365e9e62e72d387018083ec5144b0aa425136c465f.jpg b/parse/train/BkglSTNFDB/images/f086319de63ecc59068ffa365e9e62e72d387018083ec5144b0aa425136c465f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49e91eefcdd5bc116ce54b8999ba9d57d8e9a4fd --- /dev/null +++ b/parse/train/BkglSTNFDB/images/f086319de63ecc59068ffa365e9e62e72d387018083ec5144b0aa425136c465f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb3f8f88300e9f19c82705acf927783ec8a50d1e1afe292fe64c4912bb523042 +size 3373 diff --git a/parse/train/BkglSTNFDB/images/fb8a30f2f69b0a0ef551b8c5d16a0c30b4272df4f37761a5fa9bb9799022d5bd.jpg b/parse/train/BkglSTNFDB/images/fb8a30f2f69b0a0ef551b8c5d16a0c30b4272df4f37761a5fa9bb9799022d5bd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..368d6949d0db63a6427ff1db6678751de3fdd015 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/fb8a30f2f69b0a0ef551b8c5d16a0c30b4272df4f37761a5fa9bb9799022d5bd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4774b6988db52e607bdaf7c66b94504a4ccfe7b64a07bf322097f728b0fdc87 +size 4569 diff --git a/parse/train/BkglSTNFDB/images/fc17daba551915b444155b637b9972b89541ce4691b2e2c14706d565e8c89847.jpg b/parse/train/BkglSTNFDB/images/fc17daba551915b444155b637b9972b89541ce4691b2e2c14706d565e8c89847.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84c6cd9d30705025cdd28208aae3f8da814d72ef --- /dev/null +++ b/parse/train/BkglSTNFDB/images/fc17daba551915b444155b637b9972b89541ce4691b2e2c14706d565e8c89847.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac810e3603398a94c0b0fb0cba86cafbfaf1b13d5d084d697a43c5c0a1fb9bc1 +size 7867 diff --git a/parse/train/BkglSTNFDB/images/fca33e0caf6dada43c874ac741c299779e61219671c7f66b39e75e1f2d6533ae.jpg b/parse/train/BkglSTNFDB/images/fca33e0caf6dada43c874ac741c299779e61219671c7f66b39e75e1f2d6533ae.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ce2fa16284384e0ec6d86d2861dfd77d9e2ffcb --- /dev/null +++ b/parse/train/BkglSTNFDB/images/fca33e0caf6dada43c874ac741c299779e61219671c7f66b39e75e1f2d6533ae.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c0152f91bec5b95e9cdc5320376bad390495ad43d61fb8003cb8f61c5ec398d +size 17529 diff --git a/parse/train/BkglSTNFDB/images/ff487b4def18b98c770f155f72c7d52760fabc4d6097e5e050552ffa5fb8baab.jpg b/parse/train/BkglSTNFDB/images/ff487b4def18b98c770f155f72c7d52760fabc4d6097e5e050552ffa5fb8baab.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e34c25d03a7931f688a7be27187a28e81cb15ac --- /dev/null +++ b/parse/train/BkglSTNFDB/images/ff487b4def18b98c770f155f72c7d52760fabc4d6097e5e050552ffa5fb8baab.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c306c620ebfeb1c993bc85bc943d1314193ef43eb284a9a896b1eb6d06a9b824 +size 14216 diff --git a/parse/train/BkglSTNFDB/images/ffd9a755f0215c6d325747e98ccee281d70f6c17fc6631e7e6fc4606d3a5e751.jpg b/parse/train/BkglSTNFDB/images/ffd9a755f0215c6d325747e98ccee281d70f6c17fc6631e7e6fc4606d3a5e751.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65860100487cbdc02d59b3fed0fbc1668d5d4714 --- /dev/null +++ b/parse/train/BkglSTNFDB/images/ffd9a755f0215c6d325747e98ccee281d70f6c17fc6631e7e6fc4606d3a5e751.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:803b5eb8816bdd290460b654ed6f5b78999946844c2e8bd2815657f5356ef12c +size 5235 diff --git a/parse/train/HkE0Nvqlg/images/01cf72046b3248d5b66c418e6cd7163ab8e1f95091d95dd617a8310251335624.jpg b/parse/train/HkE0Nvqlg/images/01cf72046b3248d5b66c418e6cd7163ab8e1f95091d95dd617a8310251335624.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba890753d6f5bf1c1ad932801be4d9442f3bafe4 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/01cf72046b3248d5b66c418e6cd7163ab8e1f95091d95dd617a8310251335624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3540b23fa5d8e5fee3f32d51315a2dc87b94591c2926045c9cd833495d8105c7 +size 60877 diff --git a/parse/train/HkE0Nvqlg/images/0db412e2880d0e52e6de5fa708319f2d891972c2f6885adc6b4c5bff26d71002.jpg b/parse/train/HkE0Nvqlg/images/0db412e2880d0e52e6de5fa708319f2d891972c2f6885adc6b4c5bff26d71002.jpg new file mode 100644 index 0000000000000000000000000000000000000000..13ce18434fbe90d7aa9d492135a4b481fb0d8335 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/0db412e2880d0e52e6de5fa708319f2d891972c2f6885adc6b4c5bff26d71002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eb437e7d2d5176cc3bca6bd8143fde612c06b3bdb2de2cab06d7262783e5edc +size 20370 diff --git a/parse/train/HkE0Nvqlg/images/1227894611e2e407e0bd27e04ab879301f61038a709c1abee013d2db5af07bef.jpg b/parse/train/HkE0Nvqlg/images/1227894611e2e407e0bd27e04ab879301f61038a709c1abee013d2db5af07bef.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9dce9441f46e7a4477139d30d3aa04d331d692cd --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/1227894611e2e407e0bd27e04ab879301f61038a709c1abee013d2db5af07bef.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c9f4b3b8f2df1902f0ffe99566da5d53f2f55cd9352296906a44841c4bda3d2 +size 11651 diff --git a/parse/train/HkE0Nvqlg/images/15c32889c0edb75045466af0b721ecaeff4b50bfd9d643f5475febd677e89241.jpg b/parse/train/HkE0Nvqlg/images/15c32889c0edb75045466af0b721ecaeff4b50bfd9d643f5475febd677e89241.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e100bc930eb4e0f5daef3a946834fbf6f4c82296 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/15c32889c0edb75045466af0b721ecaeff4b50bfd9d643f5475febd677e89241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ce2aea54cbdcc3d230ebc3bf20216af506959f585d4084f0072f91e11b0c9ef +size 16523 diff --git a/parse/train/HkE0Nvqlg/images/1eba9c365722e0dbeb50c39e623c13011565796f4b607ac782d0965fe4013f8b.jpg b/parse/train/HkE0Nvqlg/images/1eba9c365722e0dbeb50c39e623c13011565796f4b607ac782d0965fe4013f8b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb09b412dcf2ab4f12f990ddeb9f2f29cdc6475a --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/1eba9c365722e0dbeb50c39e623c13011565796f4b607ac782d0965fe4013f8b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6567c928987a126cc5c2f16c1a2d882910d0bdabd6264ef976a72b42c1c68f40 +size 30761 diff --git a/parse/train/HkE0Nvqlg/images/1f505fae68bee69907f3cb88bbdf25d4f729ba2a8687494a9d0aa062d5fa7421.jpg b/parse/train/HkE0Nvqlg/images/1f505fae68bee69907f3cb88bbdf25d4f729ba2a8687494a9d0aa062d5fa7421.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ad79b7b53c40fe5b9ff43372642be9e31832ea3 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/1f505fae68bee69907f3cb88bbdf25d4f729ba2a8687494a9d0aa062d5fa7421.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1f1b8f9b6ade368624aa98c450b64c0d24cbeef988fe8368f37832c970c220c +size 13364 diff --git a/parse/train/HkE0Nvqlg/images/201a9da9f73f7d54f86cfb6638ac716f12d55522e5635bf2e25ca37a7f8be929.jpg b/parse/train/HkE0Nvqlg/images/201a9da9f73f7d54f86cfb6638ac716f12d55522e5635bf2e25ca37a7f8be929.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0cfbe45df0666b338ea6434acb9bddbaba9b3db --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/201a9da9f73f7d54f86cfb6638ac716f12d55522e5635bf2e25ca37a7f8be929.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:461242d02865bf999202bf236e4843de96750d46447bd7fe87aff99bc7b431c8 +size 8043 diff --git a/parse/train/HkE0Nvqlg/images/2302e7479f99605ba121d23d8e52d078deb9d2638d575ad83d431877f019411a.jpg b/parse/train/HkE0Nvqlg/images/2302e7479f99605ba121d23d8e52d078deb9d2638d575ad83d431877f019411a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6db09cc343b314b77229626cd275edb4a2485480 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/2302e7479f99605ba121d23d8e52d078deb9d2638d575ad83d431877f019411a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:108fd4449fdec1cac6fc1286e6e7ad612da8a42e502a92fbac3c18444d6965e0 +size 4342 diff --git a/parse/train/HkE0Nvqlg/images/248ffc791a6c827db6e5336cd107c7574e96e2cea416e7af6d7eb4ab818dc45d.jpg b/parse/train/HkE0Nvqlg/images/248ffc791a6c827db6e5336cd107c7574e96e2cea416e7af6d7eb4ab818dc45d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5646ba0656116546126c18169c62d0378f56782 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/248ffc791a6c827db6e5336cd107c7574e96e2cea416e7af6d7eb4ab818dc45d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9ec9866891f0e36381b2a436143f45aa2dfb600da63cd0e0bc662972f4d1295 +size 8651 diff --git a/parse/train/HkE0Nvqlg/images/262d5995677ddde68bc40dffaa47452aad658d0a67ba9ebfbb1e17f81a3bb272.jpg b/parse/train/HkE0Nvqlg/images/262d5995677ddde68bc40dffaa47452aad658d0a67ba9ebfbb1e17f81a3bb272.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2eafd45ac803fb39fd33e57a23eac42e1286b0b7 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/262d5995677ddde68bc40dffaa47452aad658d0a67ba9ebfbb1e17f81a3bb272.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc2b0c3c60e46c4fcec541c8f58194dfdec135f54ae8a616e21fb7284af8543 +size 75972 diff --git a/parse/train/HkE0Nvqlg/images/2f203d66d9b1d24251e48d0e0aabd72616f64a154aa559100848dc2ddc98bed8.jpg b/parse/train/HkE0Nvqlg/images/2f203d66d9b1d24251e48d0e0aabd72616f64a154aa559100848dc2ddc98bed8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8be057f2830dc6fa5f074c4dc32d4e44b49aa97 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/2f203d66d9b1d24251e48d0e0aabd72616f64a154aa559100848dc2ddc98bed8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a70afa8b626402aa9295d3e2b00427031e26a6e73702a1e20b2ce7f00332f3d +size 10565 diff --git a/parse/train/HkE0Nvqlg/images/30e0b10b2b5eefae0b3eab0f51ba24fe369b657f2834abb7fa7da336b8972800.jpg b/parse/train/HkE0Nvqlg/images/30e0b10b2b5eefae0b3eab0f51ba24fe369b657f2834abb7fa7da336b8972800.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1fdb07cb7da1e87456626c757d0b11488966c1ad --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/30e0b10b2b5eefae0b3eab0f51ba24fe369b657f2834abb7fa7da336b8972800.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f057aaabe93f57a54c5cc75e415882eb703106105bfd1e3cbcfddc602a3af3 +size 4627 diff --git a/parse/train/HkE0Nvqlg/images/3652c9cb183bec66f4a919c70e8c82201dd1bcb7cf67c16a4274372c6dce2b2a.jpg b/parse/train/HkE0Nvqlg/images/3652c9cb183bec66f4a919c70e8c82201dd1bcb7cf67c16a4274372c6dce2b2a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8a4e6220592224e7776e606378f073a91347aa2 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/3652c9cb183bec66f4a919c70e8c82201dd1bcb7cf67c16a4274372c6dce2b2a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83dd7c5d89a9e7124e133cfe0b7dcc0e491372ecde595c98a2b47ea9a75026d1 +size 15070 diff --git a/parse/train/HkE0Nvqlg/images/391121aa24f113be2de499d8bc95ea79fa9af2649c6e56330f3e697ebc2c09a2.jpg b/parse/train/HkE0Nvqlg/images/391121aa24f113be2de499d8bc95ea79fa9af2649c6e56330f3e697ebc2c09a2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7db3eef3740e4836d21fcff45e4f52f625f3851 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/391121aa24f113be2de499d8bc95ea79fa9af2649c6e56330f3e697ebc2c09a2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2c74ce03ca1783e1188fa5b357e762a1090e7da965c61a3aa65ab88a4ab9581 +size 12377 diff --git a/parse/train/HkE0Nvqlg/images/3cd6517a381aba58dbe8df55f86ee2ed582a8b7b71f037e2c9716dcf39d12fc5.jpg b/parse/train/HkE0Nvqlg/images/3cd6517a381aba58dbe8df55f86ee2ed582a8b7b71f037e2c9716dcf39d12fc5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0bf97bc2addf702a95fe2099dc99ad225576c61d --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/3cd6517a381aba58dbe8df55f86ee2ed582a8b7b71f037e2c9716dcf39d12fc5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3822a79a39cf849a08ffcc5b91efa6680a2be62897a633a63dc03cce5ce4f343 +size 47921 diff --git a/parse/train/HkE0Nvqlg/images/3d36663f6125985dfd7ea2edff3f70a45d85f41a5248b108f821f1232e109f09.jpg b/parse/train/HkE0Nvqlg/images/3d36663f6125985dfd7ea2edff3f70a45d85f41a5248b108f821f1232e109f09.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05a34bdd42e02465bbb732e67ee2bf3f936c7c1b --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/3d36663f6125985dfd7ea2edff3f70a45d85f41a5248b108f821f1232e109f09.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb05cb6810a18ce012ac2f64c559d3dee377f0a8be23cb13e6fbb3dea2970ea9 +size 7592 diff --git a/parse/train/HkE0Nvqlg/images/42de1a94f9ef76d0914c0a5d415f2d4a01b5fe6438ec89425872a006d9e84ccb.jpg b/parse/train/HkE0Nvqlg/images/42de1a94f9ef76d0914c0a5d415f2d4a01b5fe6438ec89425872a006d9e84ccb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..082d34e701b3c0e459ef1dee84dd21f4ac47aff8 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/42de1a94f9ef76d0914c0a5d415f2d4a01b5fe6438ec89425872a006d9e84ccb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03331c8aa8b3e6e0993869d9058b4a033a0d0c6b59c93cb1488d26f0baf1defa +size 5418 diff --git a/parse/train/HkE0Nvqlg/images/436aeea6818457c319a736ebf1815d87cc18bc41e7eb6f6580f9fc3f6c3fc796.jpg b/parse/train/HkE0Nvqlg/images/436aeea6818457c319a736ebf1815d87cc18bc41e7eb6f6580f9fc3f6c3fc796.jpg new file mode 100644 index 0000000000000000000000000000000000000000..424df0b60f1368bac25f29b63b32a87da99014be --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/436aeea6818457c319a736ebf1815d87cc18bc41e7eb6f6580f9fc3f6c3fc796.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d256425031f61eb114efbfc1e8b2c492a51ab0ff69d233f38bd82fb672d670e +size 43067 diff --git a/parse/train/HkE0Nvqlg/images/438ceb69e7a58d19ecff002cc2c2477284ea8b38fb39ad24fb7d882351204b5c.jpg b/parse/train/HkE0Nvqlg/images/438ceb69e7a58d19ecff002cc2c2477284ea8b38fb39ad24fb7d882351204b5c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7cf5ccff3294541d457e8c53da4bb46ff76357b7 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/438ceb69e7a58d19ecff002cc2c2477284ea8b38fb39ad24fb7d882351204b5c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:133a3691a297e871bed57436c1641bc745b40b76e9b39284b2786ec1f7be1a76 +size 100678 diff --git a/parse/train/HkE0Nvqlg/images/44702699f3a94321b353a2ecb785ebe1828896512509e1cc8f001fbb7f6acd9b.jpg b/parse/train/HkE0Nvqlg/images/44702699f3a94321b353a2ecb785ebe1828896512509e1cc8f001fbb7f6acd9b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a5718b50ebad88dea3b60a5ce8b47f395c56bc6 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/44702699f3a94321b353a2ecb785ebe1828896512509e1cc8f001fbb7f6acd9b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef4753de5f28ef76f84d805ef41a8c86abf066d12cc7e601bb6b26516849076a +size 6536 diff --git a/parse/train/HkE0Nvqlg/images/46e73151b1e6711bec7987e0d6a19875eab676ddbe5be67a05ae2ec618f35b9c.jpg b/parse/train/HkE0Nvqlg/images/46e73151b1e6711bec7987e0d6a19875eab676ddbe5be67a05ae2ec618f35b9c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de5ac072c7f08c81d4739422888f440a4601364a --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/46e73151b1e6711bec7987e0d6a19875eab676ddbe5be67a05ae2ec618f35b9c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d2d733311764d9c93313f55248f65b16b51351631df6d4692ef46bfe8b33e0a +size 14912 diff --git a/parse/train/HkE0Nvqlg/images/4d53745715287dee93963a9c2785f83b0071bb68673e44eda63e09d6730fb930.jpg b/parse/train/HkE0Nvqlg/images/4d53745715287dee93963a9c2785f83b0071bb68673e44eda63e09d6730fb930.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2eb94c81685b5c19d9d56d988817307d622e523f --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/4d53745715287dee93963a9c2785f83b0071bb68673e44eda63e09d6730fb930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7e0003cb6b6d9ee0d350d3627a6d0b3207eb0e4029d570fe8dcfd9924431e47 +size 14079 diff --git a/parse/train/HkE0Nvqlg/images/58b220c2381304ebbb4db56d0b6549ee91acbd21d683a6b5edc8e1c8375b6a2d.jpg b/parse/train/HkE0Nvqlg/images/58b220c2381304ebbb4db56d0b6549ee91acbd21d683a6b5edc8e1c8375b6a2d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..985c5d996f90afe104941e343e7c0c511384e630 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/58b220c2381304ebbb4db56d0b6549ee91acbd21d683a6b5edc8e1c8375b6a2d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa3db0922ce3a69c9552a106a01e01b7483f7b87337c968b12273d7f102e2763 +size 8202 diff --git a/parse/train/HkE0Nvqlg/images/5998b4a902ddb6890d3752b1f20bb3a609caf78c01d935b74db05167bf597d3d.jpg b/parse/train/HkE0Nvqlg/images/5998b4a902ddb6890d3752b1f20bb3a609caf78c01d935b74db05167bf597d3d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f2a895303bac6fe17bdccf76c19d573d790cd16 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/5998b4a902ddb6890d3752b1f20bb3a609caf78c01d935b74db05167bf597d3d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:446dbed073934c30434ba1d3f2bda1bf093a167b9096ed250da3ecff2d6c9536 +size 1991 diff --git a/parse/train/HkE0Nvqlg/images/5bb4578cfa6b872584b64e980b61a96e59c030ffc2a419946ab4617d68ac6eff.jpg b/parse/train/HkE0Nvqlg/images/5bb4578cfa6b872584b64e980b61a96e59c030ffc2a419946ab4617d68ac6eff.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83ece2504738843b9244dc60e6cbd2857679410a --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/5bb4578cfa6b872584b64e980b61a96e59c030ffc2a419946ab4617d68ac6eff.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0885825ff81bd33fdec29822aaec87b7b62dddf6824068fb8cf9d3a6af400039 +size 5445 diff --git a/parse/train/HkE0Nvqlg/images/7096cfbd42a60541e4e6ed568017246d6a9496d5ea8e1a40eb6815e9c2258437.jpg b/parse/train/HkE0Nvqlg/images/7096cfbd42a60541e4e6ed568017246d6a9496d5ea8e1a40eb6815e9c2258437.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76bc42006a80635da14a90e33e7b47d6e7499f92 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/7096cfbd42a60541e4e6ed568017246d6a9496d5ea8e1a40eb6815e9c2258437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67b307e06a05c5be43829acd199af943e42769edd3af9fe5bf7154ef1e2422d1 +size 3055 diff --git a/parse/train/HkE0Nvqlg/images/7356f4d408e1191a3fcfd637ccdb405f016904a5f3b2af767599fb730adaa942.jpg b/parse/train/HkE0Nvqlg/images/7356f4d408e1191a3fcfd637ccdb405f016904a5f3b2af767599fb730adaa942.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7f7f746a7bcecb6446b33e5177c14ff8d10e8df --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/7356f4d408e1191a3fcfd637ccdb405f016904a5f3b2af767599fb730adaa942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4761152576a3f44f5fc41d290eddeff84709682019750a6ae2bbab20b2c356d7 +size 7242 diff --git a/parse/train/HkE0Nvqlg/images/78aea0c03d9019fd322147455474e41d742fa0ecc612862da524617e9550c2eb.jpg b/parse/train/HkE0Nvqlg/images/78aea0c03d9019fd322147455474e41d742fa0ecc612862da524617e9550c2eb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f8064b343038099b4c5a206e149a3a7cbb0d1e37 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/78aea0c03d9019fd322147455474e41d742fa0ecc612862da524617e9550c2eb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c2c569bfb0723db074dbaea9294ae9d8a7d697993ed6630fcc867dcf3e699b +size 7984 diff --git a/parse/train/HkE0Nvqlg/images/7e7dd59308cc25262a130c62f89f370bd3d6830c35f1afe5dce0054e2e7ccc61.jpg b/parse/train/HkE0Nvqlg/images/7e7dd59308cc25262a130c62f89f370bd3d6830c35f1afe5dce0054e2e7ccc61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0959251a1952cc1376214ef9f62c0eb3171862f --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/7e7dd59308cc25262a130c62f89f370bd3d6830c35f1afe5dce0054e2e7ccc61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:493743b756b5a20c24766fc74e2ee12a5b917c11608ca66c10a15eef4aa3249f +size 6227 diff --git a/parse/train/HkE0Nvqlg/images/7f3c2e5bf0bbac0e3514835ca8ccd875a59b60660f276957d88c4145522572a3.jpg b/parse/train/HkE0Nvqlg/images/7f3c2e5bf0bbac0e3514835ca8ccd875a59b60660f276957d88c4145522572a3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9ec3e1606f51db871a963c07bd35c96e262065f --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/7f3c2e5bf0bbac0e3514835ca8ccd875a59b60660f276957d88c4145522572a3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7fa54673f5246c4dd7e6b449397764e5ae4ddb6bfd576446414d16c5ea24dbb +size 5247 diff --git a/parse/train/HkE0Nvqlg/images/8072f45bcaed1d141798e872f31d04cb3abc827f1fc32179ccb0f4267d2f9446.jpg b/parse/train/HkE0Nvqlg/images/8072f45bcaed1d141798e872f31d04cb3abc827f1fc32179ccb0f4267d2f9446.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83ca572aaca0f5786c96eb29fa13841e0ae924ff --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/8072f45bcaed1d141798e872f31d04cb3abc827f1fc32179ccb0f4267d2f9446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad20bdf8ebe0db7917f280ca0bcfba70e71b83414da542133cf678e5e77b1a3 +size 23092 diff --git a/parse/train/HkE0Nvqlg/images/85e3016b08a62362b26290b416e0a69204dcf46a5d64dc0f8a661b11ef4b42d3.jpg b/parse/train/HkE0Nvqlg/images/85e3016b08a62362b26290b416e0a69204dcf46a5d64dc0f8a661b11ef4b42d3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da594ef7ce4c82e603169641cfa21158504b4cb8 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/85e3016b08a62362b26290b416e0a69204dcf46a5d64dc0f8a661b11ef4b42d3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1fc59a7591be42b10ad51b234ad1bfd540533dcf3f9503f0d93994c087eaa13 +size 2681 diff --git a/parse/train/HkE0Nvqlg/images/876d0712aa69b8da051a3ef794a3ffec65bb73ee0b609a03fc4ba63ff805767d.jpg b/parse/train/HkE0Nvqlg/images/876d0712aa69b8da051a3ef794a3ffec65bb73ee0b609a03fc4ba63ff805767d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d63ed381f7c37e976cd7814c2b119477eed1f591 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/876d0712aa69b8da051a3ef794a3ffec65bb73ee0b609a03fc4ba63ff805767d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f4ad8b639a6568c51c54615e3f171ee0a53bc14e04e6a933c908d1786079163 +size 11529 diff --git a/parse/train/HkE0Nvqlg/images/88df808c4a687dd8ac94e703ee0dc6803f72e100b5d7815b379a01e2213f7062.jpg b/parse/train/HkE0Nvqlg/images/88df808c4a687dd8ac94e703ee0dc6803f72e100b5d7815b379a01e2213f7062.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3bba720c05aa653c77f906570bf0e1a090ba022d --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/88df808c4a687dd8ac94e703ee0dc6803f72e100b5d7815b379a01e2213f7062.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1fe097f08c49f4918d51af59e6dcb05215a50b3202a439837ce20bd5026f285 +size 11979 diff --git a/parse/train/HkE0Nvqlg/images/89cb87409906bd464614509aafc1628aadc28d56ce063f2ec730ddc9a2fff3ec.jpg b/parse/train/HkE0Nvqlg/images/89cb87409906bd464614509aafc1628aadc28d56ce063f2ec730ddc9a2fff3ec.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ad01cb7676a89855d1c18293c86996173e3a72e --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/89cb87409906bd464614509aafc1628aadc28d56ce063f2ec730ddc9a2fff3ec.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8019eec3cb2de93cb95e7ea3af0fd0a456ae607e58a537e39a00fb8f83af8f1c +size 22909 diff --git a/parse/train/HkE0Nvqlg/images/8cc092392cc3ec1606f840d3774075bfdc3c0c2f8e0526a94f63c07cf0773216.jpg b/parse/train/HkE0Nvqlg/images/8cc092392cc3ec1606f840d3774075bfdc3c0c2f8e0526a94f63c07cf0773216.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79e5d6c44b698ca24aaec8089573ff2b245ec851 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/8cc092392cc3ec1606f840d3774075bfdc3c0c2f8e0526a94f63c07cf0773216.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:994595735e61665e0d57257c7b39395d29db6c3a7d76d819291cb538a26af8b8 +size 98657 diff --git a/parse/train/HkE0Nvqlg/images/9075c06ecca7bc8c27b0b5fb87a2105683b288fc68509b9c49087ee1d130ccbc.jpg b/parse/train/HkE0Nvqlg/images/9075c06ecca7bc8c27b0b5fb87a2105683b288fc68509b9c49087ee1d130ccbc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1c2b73f4dd78302053e1d1485a5613bddf3e24b --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/9075c06ecca7bc8c27b0b5fb87a2105683b288fc68509b9c49087ee1d130ccbc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6c9e70ade7c41bb272425f4e3828758d214fd8987cf951d7965f68a243c671e +size 9834 diff --git a/parse/train/HkE0Nvqlg/images/90aa8bd446527d1dfa383bc6f2b9ea16eadb7dca4f2f752e28ce4db0d8452332.jpg b/parse/train/HkE0Nvqlg/images/90aa8bd446527d1dfa383bc6f2b9ea16eadb7dca4f2f752e28ce4db0d8452332.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c511d977730c0c6d67eba8176fd796f652ad6b4 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/90aa8bd446527d1dfa383bc6f2b9ea16eadb7dca4f2f752e28ce4db0d8452332.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:667da20c856644a5c43aaa792f06008757e9f31be77ca6fbbc1bce97689f19ea +size 6526 diff --git a/parse/train/HkE0Nvqlg/images/91665b8d0cc941db341ad59ddf99072ef0a39007a58cb6bc6b8da0591adf4805.jpg b/parse/train/HkE0Nvqlg/images/91665b8d0cc941db341ad59ddf99072ef0a39007a58cb6bc6b8da0591adf4805.jpg new file mode 100644 index 0000000000000000000000000000000000000000..955c010c6180de30f389b2f3d065c169da37040d --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/91665b8d0cc941db341ad59ddf99072ef0a39007a58cb6bc6b8da0591adf4805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc008b2699d2019a559397d7fd595c3232a003be6090b7307e427015c223a7ef +size 3305 diff --git a/parse/train/HkE0Nvqlg/images/92347d2bb93dba866bef9700bf1d67d0633b76466f6cb7813a094ba2722694bd.jpg b/parse/train/HkE0Nvqlg/images/92347d2bb93dba866bef9700bf1d67d0633b76466f6cb7813a094ba2722694bd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..822f368a3a66b1f1414f52e635c04d60429c8b18 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/92347d2bb93dba866bef9700bf1d67d0633b76466f6cb7813a094ba2722694bd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaf0cd76cdf3c5d066facd0896bbee1517d6ab4082b906ecba88b1b73aad929b +size 4157 diff --git a/parse/train/HkE0Nvqlg/images/9404030614191993497920914f88ae90228f5b05b42ba064a566775f96ac394d.jpg b/parse/train/HkE0Nvqlg/images/9404030614191993497920914f88ae90228f5b05b42ba064a566775f96ac394d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ec90b703d7696924abd45d7d960ef54b169c44d --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/9404030614191993497920914f88ae90228f5b05b42ba064a566775f96ac394d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7a349188101b58a6e90eb9bf80801b2bde1840b7ae05b4bfa3f3cb14e71d86 +size 9096 diff --git a/parse/train/HkE0Nvqlg/images/9601c3e8a44f43fc2265225d69e82fd4182bbd6caadf842bd3828bf88ee6a708.jpg b/parse/train/HkE0Nvqlg/images/9601c3e8a44f43fc2265225d69e82fd4182bbd6caadf842bd3828bf88ee6a708.jpg new file mode 100644 index 0000000000000000000000000000000000000000..578a9d0b27b3ca903b14d5d4aa0f6a0d2ea3839a --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/9601c3e8a44f43fc2265225d69e82fd4182bbd6caadf842bd3828bf88ee6a708.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:259ed1f6a7dad46d030f81a83d2e76f63724a3b152f10a9a3f555fc4e2a27236 +size 5861 diff --git a/parse/train/HkE0Nvqlg/images/b30533b88d08c4272fba21183fcaf2528db6f49f2b42452f6908c37db17c55e1.jpg b/parse/train/HkE0Nvqlg/images/b30533b88d08c4272fba21183fcaf2528db6f49f2b42452f6908c37db17c55e1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c2b0e8e2fcbd7308ad594d3722d801411ae2c2d --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/b30533b88d08c4272fba21183fcaf2528db6f49f2b42452f6908c37db17c55e1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca7df4320c3133a0c9a99611173f21b8b2142114942bd060abb640db6f0dafbe +size 4431 diff --git a/parse/train/HkE0Nvqlg/images/b9e81f522fe75acc234b0590a93684b898735d122f79720961efd8eaf65637ce.jpg b/parse/train/HkE0Nvqlg/images/b9e81f522fe75acc234b0590a93684b898735d122f79720961efd8eaf65637ce.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd70194277c488153f7915541120e0dcd3aa97a5 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/b9e81f522fe75acc234b0590a93684b898735d122f79720961efd8eaf65637ce.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72baebd44c32634bc774e25a8e5f168a75d83b3ee40cb221c8bf19acc26a42e8 +size 10440 diff --git a/parse/train/HkE0Nvqlg/images/ce2c72eae0d8cbccfb8e07918343f3ec515e584ae42f49754f692363be42c1f6.jpg b/parse/train/HkE0Nvqlg/images/ce2c72eae0d8cbccfb8e07918343f3ec515e584ae42f49754f692363be42c1f6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b42d10a6bdd4325e7b0f21ad8e950864d62054bf --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/ce2c72eae0d8cbccfb8e07918343f3ec515e584ae42f49754f692363be42c1f6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:719efebfbacfa10b627f055726eff90895234b219d8bd2901189e9cf3b92ff79 +size 6550 diff --git a/parse/train/HkE0Nvqlg/images/cf212ffbbf7290198ebab24840c992265c47cb286d5c32c5fd838ecf001bfebf.jpg b/parse/train/HkE0Nvqlg/images/cf212ffbbf7290198ebab24840c992265c47cb286d5c32c5fd838ecf001bfebf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d50f1c983c531cdf2d4e56e8f75d72b6069fefb --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/cf212ffbbf7290198ebab24840c992265c47cb286d5c32c5fd838ecf001bfebf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:915142ca86ddaeddb8c65ec37a2e22c9f65cd5c7c9240f9938df0b1cd4f90270 +size 71803 diff --git a/parse/train/HkE0Nvqlg/images/d2df93125762f07432c7735d8477f661560c940fc9f12323063956a881e6d244.jpg b/parse/train/HkE0Nvqlg/images/d2df93125762f07432c7735d8477f661560c940fc9f12323063956a881e6d244.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fafe7b3eceac9c140e97d0eeada5e1a7879946a9 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/d2df93125762f07432c7735d8477f661560c940fc9f12323063956a881e6d244.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48020764414aae96dea3cf12623a78b969e86e805b07459b5ef705c6519aea93 +size 18008 diff --git a/parse/train/HkE0Nvqlg/images/d4b60c7a4522f8f09939a5d623a5679274fce2ceef4097dce1a831f3bb3ce1ab.jpg b/parse/train/HkE0Nvqlg/images/d4b60c7a4522f8f09939a5d623a5679274fce2ceef4097dce1a831f3bb3ce1ab.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2d73c8042feec801e076637d6bd95138b91756f --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/d4b60c7a4522f8f09939a5d623a5679274fce2ceef4097dce1a831f3bb3ce1ab.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fad4de6fc85ba9ba5ebbd43e5b2730782fb1c359ce9a9abcf6318ec3be2108b6 +size 6238 diff --git a/parse/train/HkE0Nvqlg/images/dd23aa481310309b01f58bd5d998d44ffae66647df61357223424a2be239e730.jpg b/parse/train/HkE0Nvqlg/images/dd23aa481310309b01f58bd5d998d44ffae66647df61357223424a2be239e730.jpg new file mode 100644 index 0000000000000000000000000000000000000000..433493df6c0cf41aa7b029e2a412524714cd1451 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/dd23aa481310309b01f58bd5d998d44ffae66647df61357223424a2be239e730.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30edb05e6718dbe648761566628919b2465bb2332f9552dd8fc186fcbdcb1e97 +size 5230 diff --git a/parse/train/HkE0Nvqlg/images/e417ea2fee991766413f11f77e19f7557be0e317c7174f9a8358c8196e78b273.jpg b/parse/train/HkE0Nvqlg/images/e417ea2fee991766413f11f77e19f7557be0e317c7174f9a8358c8196e78b273.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e943bd70c1be2fb308a1ea22bef2358d0169ec85 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/e417ea2fee991766413f11f77e19f7557be0e317c7174f9a8358c8196e78b273.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fffd2828fe0119aa742e85a161f41244b5cbcab16096c7724abd0f3eb2525159 +size 6403 diff --git a/parse/train/HkE0Nvqlg/images/e6217a07b3fe2942dec42ff36407c2c217317be03d603ab57a2ee7c9a5b64dcd.jpg b/parse/train/HkE0Nvqlg/images/e6217a07b3fe2942dec42ff36407c2c217317be03d603ab57a2ee7c9a5b64dcd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17b97879dfd407a1c90dc44cb855c7a38a3c3772 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/e6217a07b3fe2942dec42ff36407c2c217317be03d603ab57a2ee7c9a5b64dcd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4210f7fccfe577e1e556f758f787461e00975045cb5211ea07137996c07a719b +size 11376 diff --git a/parse/train/HkE0Nvqlg/images/e6850f4c96d7f68cb321098d36975e49079958ab19798929380d22cd0963723b.jpg b/parse/train/HkE0Nvqlg/images/e6850f4c96d7f68cb321098d36975e49079958ab19798929380d22cd0963723b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6096e571d220f788cdf82fed023db1e3a19e12fb --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/e6850f4c96d7f68cb321098d36975e49079958ab19798929380d22cd0963723b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1e640fccadceba19d1db6b037bec281af2fd331de0846ce5b0e848828de85db +size 5062 diff --git a/parse/train/HkE0Nvqlg/images/eb418cf813dd66509a32c24c7f7b39a3d362ea1c88cebafda53eef1a4577e7aa.jpg b/parse/train/HkE0Nvqlg/images/eb418cf813dd66509a32c24c7f7b39a3d362ea1c88cebafda53eef1a4577e7aa.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9eac6af3bd0cd07cd32dfee50e8301a9b45ef17e --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/eb418cf813dd66509a32c24c7f7b39a3d362ea1c88cebafda53eef1a4577e7aa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fae0ba8432b038a6b1aca5b4c49c088423a373009093628e897cb7d4c11c058 +size 2713 diff --git a/parse/train/HkE0Nvqlg/images/ee5f8a71c8333eea2e69ddc3dfb2a7db4a71d6c173ba83f00c2de37f9f888970.jpg b/parse/train/HkE0Nvqlg/images/ee5f8a71c8333eea2e69ddc3dfb2a7db4a71d6c173ba83f00c2de37f9f888970.jpg new file mode 100644 index 0000000000000000000000000000000000000000..722cdb1abfb27bc11649bc44b8eafd7bea952774 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/ee5f8a71c8333eea2e69ddc3dfb2a7db4a71d6c173ba83f00c2de37f9f888970.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f51e1eef5eb928c46cdcb06d7d55fa5aa48d20b9ad164cacf6ef2415997e151 +size 10773 diff --git a/parse/train/HkE0Nvqlg/images/f0dc43bae0537aad2ac51c6cae8147be71e7fa79a3f44e1fb2e34f9d7fd84525.jpg b/parse/train/HkE0Nvqlg/images/f0dc43bae0537aad2ac51c6cae8147be71e7fa79a3f44e1fb2e34f9d7fd84525.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a2a951f7eea6ff0e6aef93e798593f275023a58 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/f0dc43bae0537aad2ac51c6cae8147be71e7fa79a3f44e1fb2e34f9d7fd84525.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b719d413b545d47ecd431da282d9433bb053bedf8688b24482cad32cc80e141 +size 9957 diff --git a/parse/train/HkE0Nvqlg/images/f2c80bbf0bce046d6cd030558f8af5888cfafd20b957f505b132ecb4a94887fb.jpg b/parse/train/HkE0Nvqlg/images/f2c80bbf0bce046d6cd030558f8af5888cfafd20b957f505b132ecb4a94887fb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3aba96baca6e2413ceee5ef6f4cc4e48f8787bb --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/f2c80bbf0bce046d6cd030558f8af5888cfafd20b957f505b132ecb4a94887fb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef3303935cf47bd3b2dd782e45bfc4986fb0bc227afacd11befcbcfd1134c679 +size 5606 diff --git a/parse/train/HkE0Nvqlg/images/fccd66f5a24c6e14dd15c4850be511d41d9b5e3a62c8d1d3c778925cb6e782a6.jpg b/parse/train/HkE0Nvqlg/images/fccd66f5a24c6e14dd15c4850be511d41d9b5e3a62c8d1d3c778925cb6e782a6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1caab31f350e771ac11419385d0fe9305c8dac74 --- /dev/null +++ b/parse/train/HkE0Nvqlg/images/fccd66f5a24c6e14dd15c4850be511d41d9b5e3a62c8d1d3c778925cb6e782a6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c962171143c68844e1a813b4fb70ffb0a617898562344cd329d753c3dd47a2a +size 12985 diff --git a/parse/train/HygQBn0cYm/images/013a8170c906a68097301bec9c294dfd829dab3f753ef9c75a89f02b551d7295.jpg b/parse/train/HygQBn0cYm/images/013a8170c906a68097301bec9c294dfd829dab3f753ef9c75a89f02b551d7295.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16ae352848af9003a5426157f4ddcc0f9f5c7054 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/013a8170c906a68097301bec9c294dfd829dab3f753ef9c75a89f02b551d7295.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc5f024a662d1758720b38646263a698126824854193464d52ab2350cc31e9f4 +size 16093 diff --git a/parse/train/HygQBn0cYm/images/0833ea6dfd7ff54ba29b481a6391b4c17288cd005136498d0e60f382ecd07aa4.jpg b/parse/train/HygQBn0cYm/images/0833ea6dfd7ff54ba29b481a6391b4c17288cd005136498d0e60f382ecd07aa4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61155eaed1540e8824303e44d6732a24dca9fe5f --- /dev/null +++ b/parse/train/HygQBn0cYm/images/0833ea6dfd7ff54ba29b481a6391b4c17288cd005136498d0e60f382ecd07aa4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5d2a9e94b683b23d9c74b15fbb57f73fbb6c0316514e539b8bb6d7e52e3023d +size 90174 diff --git a/parse/train/HygQBn0cYm/images/0aee0f342d62b81f11289c6ed60184f07bc3a441553c3103f7d45224272f4323.jpg b/parse/train/HygQBn0cYm/images/0aee0f342d62b81f11289c6ed60184f07bc3a441553c3103f7d45224272f4323.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4eb779449ce260900627fb4724181a2c22451168 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/0aee0f342d62b81f11289c6ed60184f07bc3a441553c3103f7d45224272f4323.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa57be322a200e943e9042ee45a97759107e85277e90f0729cbe4bcc746835a3 +size 18469 diff --git a/parse/train/HygQBn0cYm/images/0d3566bdca35bf04fd39ddd2f4e096e61355d4543fd907a7303448a9fd03fbff.jpg b/parse/train/HygQBn0cYm/images/0d3566bdca35bf04fd39ddd2f4e096e61355d4543fd907a7303448a9fd03fbff.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf1fb6f9a69ff9e80540c4932a9e033a95070cf4 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/0d3566bdca35bf04fd39ddd2f4e096e61355d4543fd907a7303448a9fd03fbff.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0807051d8785cdf536b7db858396abae7cef4f32a786f15b5f901aba67651971 +size 4249 diff --git a/parse/train/HygQBn0cYm/images/0de372701340f71210194d284438d6a4517ee0915771e80da4dd1c4789ee4319.jpg b/parse/train/HygQBn0cYm/images/0de372701340f71210194d284438d6a4517ee0915771e80da4dd1c4789ee4319.jpg new file mode 100644 index 0000000000000000000000000000000000000000..597aea47fb010fc1db872d8e1c8e87f115b00b20 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/0de372701340f71210194d284438d6a4517ee0915771e80da4dd1c4789ee4319.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1c34f5bac434c3b289ea8cd11ad0882f75bedd2e69a3594737eadead90c66d6 +size 7527 diff --git a/parse/train/HygQBn0cYm/images/0f8a225e425f62dce07bd5bef742fa4e2f99e91d6cf8f0cc4156e29151836294.jpg b/parse/train/HygQBn0cYm/images/0f8a225e425f62dce07bd5bef742fa4e2f99e91d6cf8f0cc4156e29151836294.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92ad1a34cbb732639e3cfbfc74368a0fb1b8445d --- /dev/null +++ b/parse/train/HygQBn0cYm/images/0f8a225e425f62dce07bd5bef742fa4e2f99e91d6cf8f0cc4156e29151836294.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5779ff6e59144d477d2e706aa09f1f2f294fd06bda1f1debfe67101ace2e66ee +size 61235 diff --git a/parse/train/HygQBn0cYm/images/1c1a45684895ba69c95602eaa9568fe4f3d968d96cebd56688a7015d9ac8614a.jpg b/parse/train/HygQBn0cYm/images/1c1a45684895ba69c95602eaa9568fe4f3d968d96cebd56688a7015d9ac8614a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80588cfc78b530c8f2d1354097e3cd9a7300ef4a --- /dev/null +++ b/parse/train/HygQBn0cYm/images/1c1a45684895ba69c95602eaa9568fe4f3d968d96cebd56688a7015d9ac8614a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b797b79bf347f544aeac5bdf10fd5331400cce20ff57247da0c5c33dc0607fae +size 23696 diff --git a/parse/train/HygQBn0cYm/images/220312232871dbe4d44fa3cb521828a37bee59f094777d267224ee0e33c3e117.jpg b/parse/train/HygQBn0cYm/images/220312232871dbe4d44fa3cb521828a37bee59f094777d267224ee0e33c3e117.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd806b0f94d9b3d9a495f1708e0ca955652325fc --- /dev/null +++ b/parse/train/HygQBn0cYm/images/220312232871dbe4d44fa3cb521828a37bee59f094777d267224ee0e33c3e117.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8448f8a77384f35f25f9646aac246dc8a30747b8c5022ec4ac12f7bc50024466 +size 101601 diff --git a/parse/train/HygQBn0cYm/images/24ac6a5788bf5bb4fcd64fa71d6bb22ffad38882ab3081c73af21e1a9b7703ed.jpg b/parse/train/HygQBn0cYm/images/24ac6a5788bf5bb4fcd64fa71d6bb22ffad38882ab3081c73af21e1a9b7703ed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0db7ea80bafd545fd90b35c9d65e231d96952538 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/24ac6a5788bf5bb4fcd64fa71d6bb22ffad38882ab3081c73af21e1a9b7703ed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:523b8da7d85eab1a01d7ee9c304b202302696905a22b80b65b4a9dc56b03452e +size 5038 diff --git a/parse/train/HygQBn0cYm/images/35ece1ff6b43cd4885195d36891c560a48009c0f0519497e890434441b651d79.jpg b/parse/train/HygQBn0cYm/images/35ece1ff6b43cd4885195d36891c560a48009c0f0519497e890434441b651d79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87bcbd891ab042e1ebae22cf62fbe5f476c61c1c --- /dev/null +++ b/parse/train/HygQBn0cYm/images/35ece1ff6b43cd4885195d36891c560a48009c0f0519497e890434441b651d79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fd4e7c1035321f39982e4e7d4771fa841f65c079a73d2719d9acd46a554ff68 +size 10034 diff --git a/parse/train/HygQBn0cYm/images/3722c4bd90c6afea0b6dbf846244f4e1a85bddeee969e5ec6e217edefe82475c.jpg b/parse/train/HygQBn0cYm/images/3722c4bd90c6afea0b6dbf846244f4e1a85bddeee969e5ec6e217edefe82475c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba3fe221cfed5af29dcc0aa1e5c4fc921fb5fed0 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/3722c4bd90c6afea0b6dbf846244f4e1a85bddeee969e5ec6e217edefe82475c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:723c1e019a4e2a2e59401153943ca1201ca459fd0e3d0cba3baf5bd34d60baac +size 33073 diff --git a/parse/train/HygQBn0cYm/images/3e260f40c6a4c84942a40d5dd999f186d464f2d0f946284f7b3684ff0939e3c6.jpg b/parse/train/HygQBn0cYm/images/3e260f40c6a4c84942a40d5dd999f186d464f2d0f946284f7b3684ff0939e3c6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..69189aabc9c09ce3ab4c855f2a92ca79023b871f --- /dev/null +++ b/parse/train/HygQBn0cYm/images/3e260f40c6a4c84942a40d5dd999f186d464f2d0f946284f7b3684ff0939e3c6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7376574a91296af7a6c6c7ba7c9ea7ec9124a85dd6a323604124f6910d7156c +size 37899 diff --git a/parse/train/HygQBn0cYm/images/4372b386d02516b42dd3f6025fc15537d2afb9fe05aadb661dafaa394dc15c69.jpg b/parse/train/HygQBn0cYm/images/4372b386d02516b42dd3f6025fc15537d2afb9fe05aadb661dafaa394dc15c69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be3b143e713b8a02a51d63a2fb710b004ae377ab --- /dev/null +++ b/parse/train/HygQBn0cYm/images/4372b386d02516b42dd3f6025fc15537d2afb9fe05aadb661dafaa394dc15c69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1108101d0c677196f4937688c47256d436cadf474e38b016b9960ce17f99d439 +size 121051 diff --git a/parse/train/HygQBn0cYm/images/5b7d40eb45db6bfec564eb2fc8fc722ea1aa4db744ab7e58dd286e57b212d76b.jpg b/parse/train/HygQBn0cYm/images/5b7d40eb45db6bfec564eb2fc8fc722ea1aa4db744ab7e58dd286e57b212d76b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00c5058bdb19b240905a5b91cd01fc6b3263f259 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/5b7d40eb45db6bfec564eb2fc8fc722ea1aa4db744ab7e58dd286e57b212d76b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6537dfbb1c2191d0c6614697cc39299455b4f34eeca7536219c01d8d4cb9a09 +size 49445 diff --git a/parse/train/HygQBn0cYm/images/6357d5ef90cb7996387b32d648965ec64dd37b3674481c8612030be088ae9c3b.jpg b/parse/train/HygQBn0cYm/images/6357d5ef90cb7996387b32d648965ec64dd37b3674481c8612030be088ae9c3b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7a72b06e6639365c98ffde2427f80b276c018f0 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/6357d5ef90cb7996387b32d648965ec64dd37b3674481c8612030be088ae9c3b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fc8ad9df041ffed972afa56bcfd0a34755c08d20fc6020ed59d58b1a84c727d +size 31047 diff --git a/parse/train/HygQBn0cYm/images/655034576fffbbe5ecbb1bd65955630a3159fcab85820b8d0e7083de3fc628ba.jpg b/parse/train/HygQBn0cYm/images/655034576fffbbe5ecbb1bd65955630a3159fcab85820b8d0e7083de3fc628ba.jpg new file mode 100644 index 0000000000000000000000000000000000000000..530bde7c790a6ffa04e6fd32803e06b0615eb8b8 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/655034576fffbbe5ecbb1bd65955630a3159fcab85820b8d0e7083de3fc628ba.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a010e0f242effcdb0e175ad5977730932a1951585c53f3408bc2247d8910c870 +size 22374 diff --git a/parse/train/HygQBn0cYm/images/66900dcd89593d494cbbea6b299375836408ab008987bd278fe1456262fa1063.jpg b/parse/train/HygQBn0cYm/images/66900dcd89593d494cbbea6b299375836408ab008987bd278fe1456262fa1063.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0aafc0892f03d63793da073018e76a3488e856ab --- /dev/null +++ b/parse/train/HygQBn0cYm/images/66900dcd89593d494cbbea6b299375836408ab008987bd278fe1456262fa1063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d46d5bd2790345651157c552ca8428455b5af63ed9e6dc60230a6b2c35fc2cc +size 11937 diff --git a/parse/train/HygQBn0cYm/images/6d1e985c9f351bf8ba109f5fd93ac8a4e86398f068a30857ffc55818662c028b.jpg b/parse/train/HygQBn0cYm/images/6d1e985c9f351bf8ba109f5fd93ac8a4e86398f068a30857ffc55818662c028b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..067f8145c22b98bf00f20e017d3ccb5017d0441d --- /dev/null +++ b/parse/train/HygQBn0cYm/images/6d1e985c9f351bf8ba109f5fd93ac8a4e86398f068a30857ffc55818662c028b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46639f78c5276baa8583eb4502ff65df1872b1f25999a1011a43e0c6af8d3e46 +size 13801 diff --git a/parse/train/HygQBn0cYm/images/6deb1d0f839607d1ef9654e2f1b505e411661732520802653415ef0dd1f07bdd.jpg b/parse/train/HygQBn0cYm/images/6deb1d0f839607d1ef9654e2f1b505e411661732520802653415ef0dd1f07bdd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..627e368153b867390c0692881f634b69ad60e527 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/6deb1d0f839607d1ef9654e2f1b505e411661732520802653415ef0dd1f07bdd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2f825599205b02acf31ae438a77f941f7976c48be59e573f7b18e0b27796e3f +size 10503 diff --git a/parse/train/HygQBn0cYm/images/76825210ce09aa99f491dcbbfecb4c56a0ffedc1b303f8454b48d7c63c4cdfdf.jpg b/parse/train/HygQBn0cYm/images/76825210ce09aa99f491dcbbfecb4c56a0ffedc1b303f8454b48d7c63c4cdfdf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04395ec76e223a5e2f94e47fcd76b26508081bbb --- /dev/null +++ b/parse/train/HygQBn0cYm/images/76825210ce09aa99f491dcbbfecb4c56a0ffedc1b303f8454b48d7c63c4cdfdf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21c3dd8cdc786c6be30b0d360ceeae3ac2200be7577bd0031bbaf031027d56ad +size 7678 diff --git a/parse/train/HygQBn0cYm/images/7ede62fa522bbbcf0bf2ca24f4a9b0b223c60e709f0c69587d6fbe393bf33387.jpg b/parse/train/HygQBn0cYm/images/7ede62fa522bbbcf0bf2ca24f4a9b0b223c60e709f0c69587d6fbe393bf33387.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed1fdfcc596650277b3a57d9238ffacb3f587cbd --- /dev/null +++ b/parse/train/HygQBn0cYm/images/7ede62fa522bbbcf0bf2ca24f4a9b0b223c60e709f0c69587d6fbe393bf33387.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a789e38699e5bfebe19fcd30ec268fec28b6194da337ea001de5ed4e653e9efd +size 11371 diff --git a/parse/train/HygQBn0cYm/images/806366e5792d1c5e4c4ef69d6ad4001a8278aaecf21b777456fc511d99697323.jpg b/parse/train/HygQBn0cYm/images/806366e5792d1c5e4c4ef69d6ad4001a8278aaecf21b777456fc511d99697323.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bfc49646b53ed019042694e008d81b90d7df53bc --- /dev/null +++ b/parse/train/HygQBn0cYm/images/806366e5792d1c5e4c4ef69d6ad4001a8278aaecf21b777456fc511d99697323.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4634980fc0312aeb5b2ebbdbf5d28b334a6cf1e120ba71bfd5c33ef2490b977d +size 4621 diff --git a/parse/train/HygQBn0cYm/images/8f630d026ac6bd4facbab59930f7d1c688d42a0076b241e460e6cb661b4e0d0c.jpg b/parse/train/HygQBn0cYm/images/8f630d026ac6bd4facbab59930f7d1c688d42a0076b241e460e6cb661b4e0d0c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46cca5aa5d2ec1f1212dd481880f0a1245018b81 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/8f630d026ac6bd4facbab59930f7d1c688d42a0076b241e460e6cb661b4e0d0c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a37d3f68a59e2ccf99b295426135f34591f8698824953620f4e5632f90eab730 +size 3050 diff --git a/parse/train/HygQBn0cYm/images/9cae1ce358067f4239293354ec761755546c8604bfe57e3674974af1d2b8bb9a.jpg b/parse/train/HygQBn0cYm/images/9cae1ce358067f4239293354ec761755546c8604bfe57e3674974af1d2b8bb9a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b98ff4cb8cd79f6c997d936a987f9f013f779d24 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/9cae1ce358067f4239293354ec761755546c8604bfe57e3674974af1d2b8bb9a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80e7dd0fc322c8acb23e86c24d9cc4b86f26b6c5a84c4c54f9a8e91489909c3 +size 9380 diff --git a/parse/train/HygQBn0cYm/images/ac6fd2bd66f6e4b677cbd244ae915701b357bd9d87f2ddadb8f9c6dc9b48afa7.jpg b/parse/train/HygQBn0cYm/images/ac6fd2bd66f6e4b677cbd244ae915701b357bd9d87f2ddadb8f9c6dc9b48afa7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aabe97fd058ee1b27caca8772efe5a0f7498c6e4 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/ac6fd2bd66f6e4b677cbd244ae915701b357bd9d87f2ddadb8f9c6dc9b48afa7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7edc798efe14e2314cd50abb85ec084aa34b072a04158aee112acda2114bfd1e +size 10775 diff --git a/parse/train/HygQBn0cYm/images/ad2eb7cdeedb75d3cc34c743f991b6f5ec46aae800391d62cb0fa0399d3d13be.jpg b/parse/train/HygQBn0cYm/images/ad2eb7cdeedb75d3cc34c743f991b6f5ec46aae800391d62cb0fa0399d3d13be.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b64085ade1bb617bf8c78991ea225a41408fa7e --- /dev/null +++ b/parse/train/HygQBn0cYm/images/ad2eb7cdeedb75d3cc34c743f991b6f5ec46aae800391d62cb0fa0399d3d13be.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf32c4276bad36a5e2e19ab0d87214dadad12ee3de95ce1425264f5fe8f07299 +size 13546 diff --git a/parse/train/HygQBn0cYm/images/b7cb759134c016ae65c70c1b2ae1f7c7dfd28cf58f1e0207fa80e6a9ea556197.jpg b/parse/train/HygQBn0cYm/images/b7cb759134c016ae65c70c1b2ae1f7c7dfd28cf58f1e0207fa80e6a9ea556197.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9feded4f602c741e2e54d1c83691937690a680ab --- /dev/null +++ b/parse/train/HygQBn0cYm/images/b7cb759134c016ae65c70c1b2ae1f7c7dfd28cf58f1e0207fa80e6a9ea556197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adebf9bb71f182e79183055d7eb4f5cf261c396ab28f213e2ed174d29b611680 +size 4354 diff --git a/parse/train/HygQBn0cYm/images/bdad96762d5fd5f955e2606a87bdfaec85fdc8603b54308bd098d56eb19b0b3a.jpg b/parse/train/HygQBn0cYm/images/bdad96762d5fd5f955e2606a87bdfaec85fdc8603b54308bd098d56eb19b0b3a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..571234ac3c630c7837a10cdc885b0391d6a6c142 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/bdad96762d5fd5f955e2606a87bdfaec85fdc8603b54308bd098d56eb19b0b3a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8ed2bedb0bf854b57ac9dd83268b84454a31919eab99d655dfb3c56f34277f +size 9846 diff --git a/parse/train/HygQBn0cYm/images/bee19c8b218eddbeee1ff1f1a4087c9e6def191a4daee9f78308adb982266444.jpg b/parse/train/HygQBn0cYm/images/bee19c8b218eddbeee1ff1f1a4087c9e6def191a4daee9f78308adb982266444.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd57cdf73b135e84a9f640360ffba72a78d0ac5b --- /dev/null +++ b/parse/train/HygQBn0cYm/images/bee19c8b218eddbeee1ff1f1a4087c9e6def191a4daee9f78308adb982266444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c723b4b4efbc8593c1f2c994a0eaeddcdcf35339c23f62699d02d8759784caed +size 37566 diff --git a/parse/train/HygQBn0cYm/images/cf5fd7d3589678d9e30b8a3027a15c1fc54c3d2ad9879e8d6cc3ffa792f3b844.jpg b/parse/train/HygQBn0cYm/images/cf5fd7d3589678d9e30b8a3027a15c1fc54c3d2ad9879e8d6cc3ffa792f3b844.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd33df85d41d9999755fad008a0b7617773d0a21 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/cf5fd7d3589678d9e30b8a3027a15c1fc54c3d2ad9879e8d6cc3ffa792f3b844.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b94e134b2f085ef6c024ad0a6fbfd58a681b403026d6021bce8fd7b2f9b4aabe +size 8267 diff --git a/parse/train/HygQBn0cYm/images/d27fad572b03e63ec5a6f605fda1e169a70e15fda90aa7f2b447162f38b8431d.jpg b/parse/train/HygQBn0cYm/images/d27fad572b03e63ec5a6f605fda1e169a70e15fda90aa7f2b447162f38b8431d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8efa29478575e409f2c7fc525366c91513c722d7 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/d27fad572b03e63ec5a6f605fda1e169a70e15fda90aa7f2b447162f38b8431d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33217316269255dadde708c255d0346462cbbf5f9b059271462db4bf8ccfa0f9 +size 22184 diff --git a/parse/train/HygQBn0cYm/images/d75168c1f434fd3a6ad0e20cca84db0c1c9b790b96f09a5a4c38062cc20028d4.jpg b/parse/train/HygQBn0cYm/images/d75168c1f434fd3a6ad0e20cca84db0c1c9b790b96f09a5a4c38062cc20028d4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0bc4912aa465b1f4a6aeb8026d9f5725cf67aae --- /dev/null +++ b/parse/train/HygQBn0cYm/images/d75168c1f434fd3a6ad0e20cca84db0c1c9b790b96f09a5a4c38062cc20028d4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a91e9ebc7b4ca702162d17b1de39b2c4441fe7fe5e1bc8b81b4a146b205a0d8 +size 8096 diff --git a/parse/train/HygQBn0cYm/images/e27c83f27f25b1eead4c8b947d4256f80add6bbcca3c562fed811f9758835665.jpg b/parse/train/HygQBn0cYm/images/e27c83f27f25b1eead4c8b947d4256f80add6bbcca3c562fed811f9758835665.jpg new file mode 100644 index 0000000000000000000000000000000000000000..430b2a55faf770410e017288a6af46e1476469d2 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/e27c83f27f25b1eead4c8b947d4256f80add6bbcca3c562fed811f9758835665.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:488b85155765d21c9e58a0a8604c76e0f8e7241a0bdcd315c92ff219913cb86c +size 11972 diff --git a/parse/train/HygQBn0cYm/images/e6d071dc74bf383b7e12e4c02f2121ee475a9260f0d636e3003f4d2ece4746cf.jpg b/parse/train/HygQBn0cYm/images/e6d071dc74bf383b7e12e4c02f2121ee475a9260f0d636e3003f4d2ece4746cf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89010e30187e419b339737af7a0b3438f2522d36 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/e6d071dc74bf383b7e12e4c02f2121ee475a9260f0d636e3003f4d2ece4746cf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0033e6335beaa914671474e994edd546529259842dce687a3e9d1adf788f091 +size 7506 diff --git a/parse/train/HygQBn0cYm/images/eb9db0f860e29a0604e6a7c01f10c559d8933c6f917bc1a3f1137a9c9dd14d01.jpg b/parse/train/HygQBn0cYm/images/eb9db0f860e29a0604e6a7c01f10c559d8933c6f917bc1a3f1137a9c9dd14d01.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae2908a235e125fafffad64d4a15bc70176b42f8 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/eb9db0f860e29a0604e6a7c01f10c559d8933c6f917bc1a3f1137a9c9dd14d01.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393ba8e8fa1da3daddf9da3697de0f4a329439aa0547ee87892d840851794fc5 +size 54750 diff --git a/parse/train/HygQBn0cYm/images/fcf640d0fa7b44801e0c0c30f649eb112d4341cd1b345f23a091384d3dd11c10.jpg b/parse/train/HygQBn0cYm/images/fcf640d0fa7b44801e0c0c30f649eb112d4341cd1b345f23a091384d3dd11c10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43cb40e7baa3b5bdd12f9bb399adca0af21cf0a1 --- /dev/null +++ b/parse/train/HygQBn0cYm/images/fcf640d0fa7b44801e0c0c30f649eb112d4341cd1b345f23a091384d3dd11c10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b0772bdfbe24234fd4648f78c76030020c580f7ee122ee147b1ca6ef79ea7f +size 45899 diff --git a/parse/train/IMPnRXEWpvr/images/02e62c9db0f39b4731901cfcb06b6b3785a1f298cf25b4cba0861717b006b4e9.jpg b/parse/train/IMPnRXEWpvr/images/02e62c9db0f39b4731901cfcb06b6b3785a1f298cf25b4cba0861717b006b4e9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e6310acba867db2227912d78603c322612242cdc --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/02e62c9db0f39b4731901cfcb06b6b3785a1f298cf25b4cba0861717b006b4e9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9cd736f09993f03c0686efbc58cfe0eb004feb833222dbce70cf53a06c49a43 +size 111000 diff --git a/parse/train/IMPnRXEWpvr/images/04854943d74d33d2092495ba4ef82ada574cd40d71f93d15b7cf31872b56319c.jpg b/parse/train/IMPnRXEWpvr/images/04854943d74d33d2092495ba4ef82ada574cd40d71f93d15b7cf31872b56319c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8fae788fa86407d71110573c4ffa7a4e710ec80 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/04854943d74d33d2092495ba4ef82ada574cd40d71f93d15b7cf31872b56319c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:902ec0babb390b58838ecd595e216c5659ea52345b3a2bcf4a09bb71e36940e3 +size 3661 diff --git a/parse/train/IMPnRXEWpvr/images/0b044822a05880c0ecf5a98bf97bee5bd8aee4c151398d5f97b8bd7058c6a959.jpg b/parse/train/IMPnRXEWpvr/images/0b044822a05880c0ecf5a98bf97bee5bd8aee4c151398d5f97b8bd7058c6a959.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5dfd66573ae7deb4e2ac6475dab6a632bf464532 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/0b044822a05880c0ecf5a98bf97bee5bd8aee4c151398d5f97b8bd7058c6a959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5bc7cad1b12a32156263d75de315424d917554f5be2be9b57423b9a3a5b6b7e +size 10001 diff --git a/parse/train/IMPnRXEWpvr/images/0cc456a558d91d5348db63c7ce2ae13f35779327ff115e981abb4de3646aaec9.jpg b/parse/train/IMPnRXEWpvr/images/0cc456a558d91d5348db63c7ce2ae13f35779327ff115e981abb4de3646aaec9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ba5128bbc60dc7556fb2c32fb8d29d73e4c810e --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/0cc456a558d91d5348db63c7ce2ae13f35779327ff115e981abb4de3646aaec9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c38d62b8738c036c21cee871dce70124444a92d3a4ba71bcd748a8ed38ef5961 +size 39757 diff --git a/parse/train/IMPnRXEWpvr/images/0d1c8665f71380ea326467faac31ccc483457fd1c46201862bd271672fad7afe.jpg b/parse/train/IMPnRXEWpvr/images/0d1c8665f71380ea326467faac31ccc483457fd1c46201862bd271672fad7afe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7343a51896b356ff3f2414f61605abf3d03e948 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/0d1c8665f71380ea326467faac31ccc483457fd1c46201862bd271672fad7afe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a777a79c1c3b9ace5de0e00cc72a09072ce0d0ef067f00963eb3b0a62e070d0 +size 9527 diff --git a/parse/train/IMPnRXEWpvr/images/1836064a7a62a4bc9a4d59b61005bd96527af8b554f334b9de43f7bb8947cef9.jpg b/parse/train/IMPnRXEWpvr/images/1836064a7a62a4bc9a4d59b61005bd96527af8b554f334b9de43f7bb8947cef9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fb370de90cf716704361f40a81ecc6e3ff2e680d --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/1836064a7a62a4bc9a4d59b61005bd96527af8b554f334b9de43f7bb8947cef9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9694ec0218e86270fa315aa449dc2c55566cad7c66e8b17ec5846bb9f059647 +size 18753 diff --git a/parse/train/IMPnRXEWpvr/images/18ebac42d7fc3902caa8548cc3d7021ba93b68818a17ef5e8cd38c91d84c2b58.jpg b/parse/train/IMPnRXEWpvr/images/18ebac42d7fc3902caa8548cc3d7021ba93b68818a17ef5e8cd38c91d84c2b58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f0589cf13fe7795bf57ed2672092367b6cf5346 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/18ebac42d7fc3902caa8548cc3d7021ba93b68818a17ef5e8cd38c91d84c2b58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a62f64f0ea18fea17179f528376bedf7617ada6bb57026b441f5a570ff04f35 +size 5120 diff --git a/parse/train/IMPnRXEWpvr/images/1cc516248f17902b189ee10f2a6c07ca21327a612cd4e70774ff756cfcb79e76.jpg b/parse/train/IMPnRXEWpvr/images/1cc516248f17902b189ee10f2a6c07ca21327a612cd4e70774ff756cfcb79e76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5525e66194d73dd8da5a52b890591b2c0f30ffe9 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/1cc516248f17902b189ee10f2a6c07ca21327a612cd4e70774ff756cfcb79e76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a137b35e7df2b468792d7ee87a5f8b88cba6ebab6596167eaab8fd0cd8b850e +size 4210 diff --git a/parse/train/IMPnRXEWpvr/images/24f4c6b25b018c711e2820e402bc69d39e6744159403435087a02d1a3195a470.jpg b/parse/train/IMPnRXEWpvr/images/24f4c6b25b018c711e2820e402bc69d39e6744159403435087a02d1a3195a470.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a9080c30c886ebb4a116324b120bf75b0deb91e --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/24f4c6b25b018c711e2820e402bc69d39e6744159403435087a02d1a3195a470.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:915927ee372f400c4fc2110a67756cfcefc31184c838e11f98c22e93c734d50c +size 4788 diff --git a/parse/train/IMPnRXEWpvr/images/2a4cd2a69bb826fea1c9dd45ecb98b49d3ab34d45e7cf17f6a2eb1a4a441b55b.jpg b/parse/train/IMPnRXEWpvr/images/2a4cd2a69bb826fea1c9dd45ecb98b49d3ab34d45e7cf17f6a2eb1a4a441b55b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72226dd6526bd3ebb6e028d98d01a436caa5b443 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/2a4cd2a69bb826fea1c9dd45ecb98b49d3ab34d45e7cf17f6a2eb1a4a441b55b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def2f96ea61d339b32be3f3c50ce191e68e94237507e4b87e95f5a8de279a3a9 +size 6861 diff --git a/parse/train/IMPnRXEWpvr/images/2d358fb92d5361d0e5f1e6f78a35f1d5d3ecdd4614fd53445791bf3602a36db7.jpg b/parse/train/IMPnRXEWpvr/images/2d358fb92d5361d0e5f1e6f78a35f1d5d3ecdd4614fd53445791bf3602a36db7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ad61882eb93863705fa4672500879f7f2f64933 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/2d358fb92d5361d0e5f1e6f78a35f1d5d3ecdd4614fd53445791bf3602a36db7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89d16d80026c3044d7a1f8738c611119f77e29d3c2f65ea17a8f6488ecce2926 +size 3490 diff --git a/parse/train/IMPnRXEWpvr/images/2d547c860617d78b116066e15c918471575cf5bf12a0ad8c0195d9b8f7ef260d.jpg b/parse/train/IMPnRXEWpvr/images/2d547c860617d78b116066e15c918471575cf5bf12a0ad8c0195d9b8f7ef260d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..266e9acc0970f6215b57479f5f8ca25f41066f80 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/2d547c860617d78b116066e15c918471575cf5bf12a0ad8c0195d9b8f7ef260d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4670cb93071972bc5abf7450c342845112ed67af382fd20ede164235e350bff5 +size 16456 diff --git a/parse/train/IMPnRXEWpvr/images/2e2fbb7c733d37326ffef13741ce8d363a5658c694ee7ce8e8ae70f917380a02.jpg b/parse/train/IMPnRXEWpvr/images/2e2fbb7c733d37326ffef13741ce8d363a5658c694ee7ce8e8ae70f917380a02.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf810925d187fdf3709d700a85dc938661886b3f --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/2e2fbb7c733d37326ffef13741ce8d363a5658c694ee7ce8e8ae70f917380a02.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdba8f5c00ca9c5785cfaa675ed0216b586a8ffc4d3976161ec2f7e297b5b807 +size 4324 diff --git a/parse/train/IMPnRXEWpvr/images/329043f98947ba54266311c34e7c5a852929a868f85aadad491b83016d6ba466.jpg b/parse/train/IMPnRXEWpvr/images/329043f98947ba54266311c34e7c5a852929a868f85aadad491b83016d6ba466.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3dd67c00149c65a856a9c78db0b8b315b7fd48d3 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/329043f98947ba54266311c34e7c5a852929a868f85aadad491b83016d6ba466.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb4e37b22c47792cb74e78521ee0f09df6e490f03047dc6cf1085d721eed32c +size 170304 diff --git a/parse/train/IMPnRXEWpvr/images/410cb0b07cb2cade2ba9ea3c260dcdafb3e3b4c029a25785b8c4f868c7ae84af.jpg b/parse/train/IMPnRXEWpvr/images/410cb0b07cb2cade2ba9ea3c260dcdafb3e3b4c029a25785b8c4f868c7ae84af.jpg new file mode 100644 index 0000000000000000000000000000000000000000..584109f73c82f767fe1df1ee578f740dce11ab1a --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/410cb0b07cb2cade2ba9ea3c260dcdafb3e3b4c029a25785b8c4f868c7ae84af.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ec93a2790ddf8180f2561285192bf34b155ee33cec176cd386535c899831d85 +size 4546 diff --git a/parse/train/IMPnRXEWpvr/images/525f9eb228d84d8098caa7d214fef1a95f32d7274b0f24718acc375782d9573b.jpg b/parse/train/IMPnRXEWpvr/images/525f9eb228d84d8098caa7d214fef1a95f32d7274b0f24718acc375782d9573b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a561b48705b7ab153260bd12e7efec468cfa947e --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/525f9eb228d84d8098caa7d214fef1a95f32d7274b0f24718acc375782d9573b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc1c0aeb7bad906aed13a8207c42e2a5ed625275cef1b6a0cf9369c88a5882c0 +size 9338 diff --git a/parse/train/IMPnRXEWpvr/images/5741f7a1e024f62c8e3f6e1c52b2c97c26400c323004e55c0b358f302d4f9015.jpg b/parse/train/IMPnRXEWpvr/images/5741f7a1e024f62c8e3f6e1c52b2c97c26400c323004e55c0b358f302d4f9015.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21c2a67f25a4a18a4c40006b28c7e5dc4d93873b --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/5741f7a1e024f62c8e3f6e1c52b2c97c26400c323004e55c0b358f302d4f9015.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:002bc223451857fcaa93f1600bbedecf55615de1eb0ed894be54c27a582b2494 +size 82577 diff --git a/parse/train/IMPnRXEWpvr/images/5b53832c0bcbbbddc105035e6cc2ef57e0cf13f1e0619a344699177a9fb54447.jpg b/parse/train/IMPnRXEWpvr/images/5b53832c0bcbbbddc105035e6cc2ef57e0cf13f1e0619a344699177a9fb54447.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d704aae9e2de863503f19afe50e19093ca740c82 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/5b53832c0bcbbbddc105035e6cc2ef57e0cf13f1e0619a344699177a9fb54447.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8da0d70421421946990fac9f5c2dea5a66a2aa213f99d0cafa738d85eff1898d +size 5027 diff --git a/parse/train/IMPnRXEWpvr/images/5d7cdaa8a9d2bf9f062dfc7fd31e8b48647690c2130d0b274a155a9edf4833c2.jpg b/parse/train/IMPnRXEWpvr/images/5d7cdaa8a9d2bf9f062dfc7fd31e8b48647690c2130d0b274a155a9edf4833c2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4375308500700c89131cf8a565260e7d1a826c8 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/5d7cdaa8a9d2bf9f062dfc7fd31e8b48647690c2130d0b274a155a9edf4833c2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1d6576fc2ce7c97e0c4712e185c1d79b3c9fed9ee5c2258af35a5b0d69890b +size 6006 diff --git a/parse/train/IMPnRXEWpvr/images/5db8d6d7d69251fe13c1d1fff8a7da59e50b850bb4b4703fd2b3513ed071d47d.jpg b/parse/train/IMPnRXEWpvr/images/5db8d6d7d69251fe13c1d1fff8a7da59e50b850bb4b4703fd2b3513ed071d47d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf6ff7f7456cbf8cee55222fa99e8b975b10e9c5 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/5db8d6d7d69251fe13c1d1fff8a7da59e50b850bb4b4703fd2b3513ed071d47d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf4e9753347211223dc02d1f0cb25f9e99077e95035a21529f6746efa46e771c +size 9923 diff --git a/parse/train/IMPnRXEWpvr/images/6b04ad5401c187c684a2b89e72be99cfda7291c9d15400d7a0085dfcc12207c4.jpg b/parse/train/IMPnRXEWpvr/images/6b04ad5401c187c684a2b89e72be99cfda7291c9d15400d7a0085dfcc12207c4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37bd7f685dc43c5d8d96938a4e71a361340c3baf --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/6b04ad5401c187c684a2b89e72be99cfda7291c9d15400d7a0085dfcc12207c4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b21e013bddfe3f46a8e47d44a2eb11d3d0f8945abde947d752526678b0dfb377 +size 11912 diff --git a/parse/train/IMPnRXEWpvr/images/7383361e60d36622e2010907d3404e1fc6318e03a6ff053fdd244f13e704ce03.jpg b/parse/train/IMPnRXEWpvr/images/7383361e60d36622e2010907d3404e1fc6318e03a6ff053fdd244f13e704ce03.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2e3bb0f4749e8c9df606faf752ea48845a82f2e --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/7383361e60d36622e2010907d3404e1fc6318e03a6ff053fdd244f13e704ce03.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2fa2b8279f2e82f1a45c8f49175c55d7b185e66280eb774c5da65873baa7bb4 +size 6843 diff --git a/parse/train/IMPnRXEWpvr/images/775a5257d59f02fa0cd2c44430dc54382627c36b0fb16466adf567fd399ad70d.jpg b/parse/train/IMPnRXEWpvr/images/775a5257d59f02fa0cd2c44430dc54382627c36b0fb16466adf567fd399ad70d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09c01b3277c5f9a68f7f39cc3ba6e08ffdc85140 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/775a5257d59f02fa0cd2c44430dc54382627c36b0fb16466adf567fd399ad70d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6ca1a0a280d1d1afb461ddefb61d1287de64c0b38d61d0f6f10294e4553abc4 +size 8740 diff --git a/parse/train/IMPnRXEWpvr/images/7a1e0184d4af5f8a5cad055c7165c0b9552fb1c0f1630a96477a0c019c79d6ed.jpg b/parse/train/IMPnRXEWpvr/images/7a1e0184d4af5f8a5cad055c7165c0b9552fb1c0f1630a96477a0c019c79d6ed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74baec0f4c471ab8d5f48d5009784c134def32e7 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/7a1e0184d4af5f8a5cad055c7165c0b9552fb1c0f1630a96477a0c019c79d6ed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ba085939270182fbd3a42c23391c0f814d7fcb063a0158ecb7cff226a138e72 +size 4011 diff --git a/parse/train/IMPnRXEWpvr/images/7aba418e264cba80d30cbee02d98b0dd539035e3a86b8887e60a6241f6df5fd8.jpg b/parse/train/IMPnRXEWpvr/images/7aba418e264cba80d30cbee02d98b0dd539035e3a86b8887e60a6241f6df5fd8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..269c5808335a37a392bf716622c09fff0e334fe4 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/7aba418e264cba80d30cbee02d98b0dd539035e3a86b8887e60a6241f6df5fd8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:640a557bd0049716e68055362c2f7004166ba4f319e7e26fad8be0fdc2811e9c +size 6641 diff --git a/parse/train/IMPnRXEWpvr/images/802d76fe9cae532781d50df9b65c33bf521f8a0b271bbd89e93a693c951ac92b.jpg b/parse/train/IMPnRXEWpvr/images/802d76fe9cae532781d50df9b65c33bf521f8a0b271bbd89e93a693c951ac92b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e331cad094aee666f692fde261c6c26c461e2fe7 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/802d76fe9cae532781d50df9b65c33bf521f8a0b271bbd89e93a693c951ac92b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f94ff4a9153c6d49f01c4b909740e5d20eceb40865c603ed2074171b8ea94dc4 +size 6181 diff --git a/parse/train/IMPnRXEWpvr/images/820cb50072fe7e453ab170ba2fafd0a84e27e92d134473fd7b5bd5038d266e5c.jpg b/parse/train/IMPnRXEWpvr/images/820cb50072fe7e453ab170ba2fafd0a84e27e92d134473fd7b5bd5038d266e5c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3cf25b252fabe017c305ba662efb031473c56a6 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/820cb50072fe7e453ab170ba2fafd0a84e27e92d134473fd7b5bd5038d266e5c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6534d207e946bfe3fb7cae4ff529e07805ff045d93a985b24666dac76749b3f0 +size 2675 diff --git a/parse/train/IMPnRXEWpvr/images/874de1e08980998fe151563b87a28d67bbd57fb338aa046cb25fedcbb6237e75.jpg b/parse/train/IMPnRXEWpvr/images/874de1e08980998fe151563b87a28d67bbd57fb338aa046cb25fedcbb6237e75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a8084f9420284526c142e5fbe1336f121014c23 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/874de1e08980998fe151563b87a28d67bbd57fb338aa046cb25fedcbb6237e75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8013925cf5568064e1f69a2fbed4412e29d47e7e1f2d2cac2c535927892be835 +size 5336 diff --git a/parse/train/IMPnRXEWpvr/images/89e6e6cfe61ecfa10de979cda95b2dbd8b0296a6babcb9b83ee4ff45b40b8a9e.jpg b/parse/train/IMPnRXEWpvr/images/89e6e6cfe61ecfa10de979cda95b2dbd8b0296a6babcb9b83ee4ff45b40b8a9e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75dfc8867dfcf09f603d60dbc0607457fb29301a --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/89e6e6cfe61ecfa10de979cda95b2dbd8b0296a6babcb9b83ee4ff45b40b8a9e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bfdaf98ca503b2e30eae710e390ad5fc22a060859d93cf04a879601458e8024 +size 2539 diff --git a/parse/train/IMPnRXEWpvr/images/8ed1ae979f1abda875996e83cb8a3382f566b08774c382eebd1b44591d21a53b.jpg b/parse/train/IMPnRXEWpvr/images/8ed1ae979f1abda875996e83cb8a3382f566b08774c382eebd1b44591d21a53b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf9ddd3d7092448ab90a1146e812fa8c23ecbd1e --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/8ed1ae979f1abda875996e83cb8a3382f566b08774c382eebd1b44591d21a53b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c5416d389210131b8ea1f8425060e312ab583c69243bd6f4caa9ae546914362 +size 31426 diff --git a/parse/train/IMPnRXEWpvr/images/930ecf2f150430e547efaf93211118a568b2d614aa0dbcec03474a189e1e23a9.jpg b/parse/train/IMPnRXEWpvr/images/930ecf2f150430e547efaf93211118a568b2d614aa0dbcec03474a189e1e23a9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1177e93fe54fd4146a7395992f4ccb55fe93cc4e --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/930ecf2f150430e547efaf93211118a568b2d614aa0dbcec03474a189e1e23a9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d5b948f58db1e3f3e890a3d7dcec536d399ee7e65ed27b953da20155ea57a91 +size 21996 diff --git a/parse/train/IMPnRXEWpvr/images/9e225b6f3bfa4fb2cc7a9a36e38a6ac6948bb099795bdd03a79b88f51b3bf200.jpg b/parse/train/IMPnRXEWpvr/images/9e225b6f3bfa4fb2cc7a9a36e38a6ac6948bb099795bdd03a79b88f51b3bf200.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94a7ebe7c07daa8e23a0306ef38974ca30942cbe --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/9e225b6f3bfa4fb2cc7a9a36e38a6ac6948bb099795bdd03a79b88f51b3bf200.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e33e56b79e1ea743bdc74103a705dfdcdb114a2be99358134ed8a7da12309786 +size 191402 diff --git a/parse/train/IMPnRXEWpvr/images/aafc2e963f64bc47ad7bef6f3037f6089fd7a85d33685ac355ef20b2fdfc5d33.jpg b/parse/train/IMPnRXEWpvr/images/aafc2e963f64bc47ad7bef6f3037f6089fd7a85d33685ac355ef20b2fdfc5d33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7206c7cd7b1b05e3e35f80184c22c7d4151eaaf6 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/aafc2e963f64bc47ad7bef6f3037f6089fd7a85d33685ac355ef20b2fdfc5d33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2a265b22ed641104fa43ec82c764001b30d12ebd614280b13cc21a76b532395 +size 5147 diff --git a/parse/train/IMPnRXEWpvr/images/b4bb3e990562bc285aa67bd92d4e387a6461f9a99ed1fa36a54996d27c59cf51.jpg b/parse/train/IMPnRXEWpvr/images/b4bb3e990562bc285aa67bd92d4e387a6461f9a99ed1fa36a54996d27c59cf51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08da1376f2f9c3d4c3cd7f28930efa9a8111fae2 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/b4bb3e990562bc285aa67bd92d4e387a6461f9a99ed1fa36a54996d27c59cf51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5dd7706103abf140d15d0d97f6d34fd6365f3dc492544ca1499b6bfddf0cf20 +size 98826 diff --git a/parse/train/IMPnRXEWpvr/images/b5a88134a800c9e2307149f803de8edf7280da3b350d83cf0027e55949abdbdf.jpg b/parse/train/IMPnRXEWpvr/images/b5a88134a800c9e2307149f803de8edf7280da3b350d83cf0027e55949abdbdf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e2cb26af9269171ab3ac341066708161bf31147 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/b5a88134a800c9e2307149f803de8edf7280da3b350d83cf0027e55949abdbdf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a02f238639c88b535691a91779a9042fd627aec985397a888a705f811c7ca42e +size 5353 diff --git a/parse/train/IMPnRXEWpvr/images/c2956dd2f205868fc6f212a06e8fa0b69bcf2979e0115796a660737bc78a90ef.jpg b/parse/train/IMPnRXEWpvr/images/c2956dd2f205868fc6f212a06e8fa0b69bcf2979e0115796a660737bc78a90ef.jpg new file mode 100644 index 0000000000000000000000000000000000000000..267c3136d473fa3820bdfb0483d55bfd43dd94e0 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/c2956dd2f205868fc6f212a06e8fa0b69bcf2979e0115796a660737bc78a90ef.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9c1918889cde600add6dd12711b303272d5bdecb45873c43482ffaca52273d +size 55192 diff --git a/parse/train/IMPnRXEWpvr/images/cc3ce448ec130e929af873ebe907a6b1c3b310b2c52f99f4d55ed5deae84a8a3.jpg b/parse/train/IMPnRXEWpvr/images/cc3ce448ec130e929af873ebe907a6b1c3b310b2c52f99f4d55ed5deae84a8a3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..742a9817ba0458e94667a9058030a28352d59e42 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/cc3ce448ec130e929af873ebe907a6b1c3b310b2c52f99f4d55ed5deae84a8a3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aad922dae8ceffa1a9326cbcad29f0bb0f3142b1161a42715364dfe6116e8c0d +size 5240 diff --git a/parse/train/IMPnRXEWpvr/images/d2a946dfc143e428567d2172350ff2ff9a0a3a94c7bc674839beb98f97520b2d.jpg b/parse/train/IMPnRXEWpvr/images/d2a946dfc143e428567d2172350ff2ff9a0a3a94c7bc674839beb98f97520b2d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..727be02ef7588987a4ef73aae69c3d89755d8425 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/d2a946dfc143e428567d2172350ff2ff9a0a3a94c7bc674839beb98f97520b2d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d23ac241a6ac942252cbbb78b9df1d60219b620bebeba9f447a5b7cdcc491dbd +size 5719 diff --git a/parse/train/IMPnRXEWpvr/images/d37be3d62c364ca3334c7b72f20babb294268e2d301f67625bfc5939c021b343.jpg b/parse/train/IMPnRXEWpvr/images/d37be3d62c364ca3334c7b72f20babb294268e2d301f67625bfc5939c021b343.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14213f6b7e17ca5c17bef6602412549577bbbe7f --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/d37be3d62c364ca3334c7b72f20babb294268e2d301f67625bfc5939c021b343.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19819a8cabde9d41c54107b0e573d24de5540179853e6377d2d73ce6d7f1fbeb +size 3835 diff --git a/parse/train/IMPnRXEWpvr/images/df236f4ae4b72bf2bfaee826b3b3542eccb3ea1a80b716114bec311cc7653dc3.jpg b/parse/train/IMPnRXEWpvr/images/df236f4ae4b72bf2bfaee826b3b3542eccb3ea1a80b716114bec311cc7653dc3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e4cfb410da14e0bd8fd5f6470ccdb7292b75052 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/df236f4ae4b72bf2bfaee826b3b3542eccb3ea1a80b716114bec311cc7653dc3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5484699860b4b5e719ea06906fc31cd1b6369413d03f7097e690440232ea0a4a +size 5286 diff --git a/parse/train/IMPnRXEWpvr/images/e46d0c0293a53876b06be4fbd23def3ba3a0bd83236fa6a229d9df2a191399f6.jpg b/parse/train/IMPnRXEWpvr/images/e46d0c0293a53876b06be4fbd23def3ba3a0bd83236fa6a229d9df2a191399f6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..344c39a197e0da861ee14b8daf22ca07678980e7 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/e46d0c0293a53876b06be4fbd23def3ba3a0bd83236fa6a229d9df2a191399f6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9df4ac9b4308ae6fcb3835b205150917e333fa43afb90ec5256789811228ca9b +size 7207 diff --git a/parse/train/IMPnRXEWpvr/images/e726ffc1eecd763f2b76f05460b144772f6cb98c6142d85d87ff1754d574996f.jpg b/parse/train/IMPnRXEWpvr/images/e726ffc1eecd763f2b76f05460b144772f6cb98c6142d85d87ff1754d574996f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65e365043c374c2cd69b59261404ab1a5991a75d --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/e726ffc1eecd763f2b76f05460b144772f6cb98c6142d85d87ff1754d574996f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6474935773b484676b752fb3f51b67c5d38336fb34f1326e61d74a35f93a8dc +size 6230 diff --git a/parse/train/IMPnRXEWpvr/images/e80057bf640bab9268a4ae49a7aea82686beec4952e45caa6cbabd950cbfd43b.jpg b/parse/train/IMPnRXEWpvr/images/e80057bf640bab9268a4ae49a7aea82686beec4952e45caa6cbabd950cbfd43b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..423674e4a183d64d3fc1c0d8b5ec2ecdb74acd44 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/e80057bf640bab9268a4ae49a7aea82686beec4952e45caa6cbabd950cbfd43b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff76528bc55338a2023a2d7ab87becce5a519f37d2f80c5826d355f3070e2467 +size 234857 diff --git a/parse/train/IMPnRXEWpvr/images/eaad8c2e2e0b6841efd26c546ec79ad8fa5bd55e58321eefa34241f7b1dd678b.jpg b/parse/train/IMPnRXEWpvr/images/eaad8c2e2e0b6841efd26c546ec79ad8fa5bd55e58321eefa34241f7b1dd678b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a98d3e275c4cac904d548f7e96a60674c4eb8906 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/eaad8c2e2e0b6841efd26c546ec79ad8fa5bd55e58321eefa34241f7b1dd678b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a5d704a88e5ec1f9e149180ab5186db7fc460778e71d2640472733725c424fb +size 7211 diff --git a/parse/train/IMPnRXEWpvr/images/eca7f63e71e88766123444fa1c3f5cbb747ac264f29f6e0a2002154da823c750.jpg b/parse/train/IMPnRXEWpvr/images/eca7f63e71e88766123444fa1c3f5cbb747ac264f29f6e0a2002154da823c750.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f878064141daa42a5cb38d411842ef9f75ec2e6 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/eca7f63e71e88766123444fa1c3f5cbb747ac264f29f6e0a2002154da823c750.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32ef48a3fe9b3819b5f20b51468650cc31ee24b7e7f833489de52a8f5ab2c65e +size 2722 diff --git a/parse/train/IMPnRXEWpvr/images/f82a32d4ef2b9b95c9559d2d7c3a2bf72b078863059f21d39235b73f71a67ccd.jpg b/parse/train/IMPnRXEWpvr/images/f82a32d4ef2b9b95c9559d2d7c3a2bf72b078863059f21d39235b73f71a67ccd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..69e84832c1d9ab847cbdd006ee00780c16305c9e --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/f82a32d4ef2b9b95c9559d2d7c3a2bf72b078863059f21d39235b73f71a67ccd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3918d022e2197c110aaf4cf75e7eb0b650dd9fed424a1eff504e04aae6cf7db8 +size 7898 diff --git a/parse/train/IMPnRXEWpvr/images/f8d340711daabff9165faf55dfea43d8927606d47c14445821c398624fb91a07.jpg b/parse/train/IMPnRXEWpvr/images/f8d340711daabff9165faf55dfea43d8927606d47c14445821c398624fb91a07.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3dc816b4c67064be8f6eeb464ca8aa8317f39220 --- /dev/null +++ b/parse/train/IMPnRXEWpvr/images/f8d340711daabff9165faf55dfea43d8927606d47c14445821c398624fb91a07.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af45ea5b824e1370d54cf75698987ba384037f0aafd4ddfc788852f8dfc486a3 +size 5091 diff --git a/parse/train/LmUJqB1Cz8/images/0f907f7ece5730a333159afc26c6d6c772134fe68b3fc25e3caf93d742cae2d0.jpg b/parse/train/LmUJqB1Cz8/images/0f907f7ece5730a333159afc26c6d6c772134fe68b3fc25e3caf93d742cae2d0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e3471e53c5e62b784af486c4e92344d29e2e5e0 --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/0f907f7ece5730a333159afc26c6d6c772134fe68b3fc25e3caf93d742cae2d0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e544b21d9f1674b128eaed217472fcebdcc930ae63f89a6996eafa912204ea5 +size 10538 diff --git a/parse/train/LmUJqB1Cz8/images/192cd451605402843e6ea84fc695f81a8cb88d9dd6f5af968ccc111383a17925.jpg b/parse/train/LmUJqB1Cz8/images/192cd451605402843e6ea84fc695f81a8cb88d9dd6f5af968ccc111383a17925.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6256b72fffb674a260c119769b595b6d5ad324a5 --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/192cd451605402843e6ea84fc695f81a8cb88d9dd6f5af968ccc111383a17925.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab27e2c45a820300141fe60d21cf901af10f0242e2312dddc25131e9d07221e4 +size 18767 diff --git a/parse/train/LmUJqB1Cz8/images/38176934d2f30ad299fa15ba34979e865b250a1f31ec845403a647160a3ba66a.jpg b/parse/train/LmUJqB1Cz8/images/38176934d2f30ad299fa15ba34979e865b250a1f31ec845403a647160a3ba66a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d19ba3d7fa4b88ba31e6554bbf0214cd14528a67 --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/38176934d2f30ad299fa15ba34979e865b250a1f31ec845403a647160a3ba66a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e848cd4706342ff68a06660ddba54574f7f32782138ef06cf2a1e5991100ac8d +size 53456 diff --git a/parse/train/LmUJqB1Cz8/images/3b72eaf881cc0f2fc2c04f639d01dc0f27cf62e612cca427afe03e1acf025de9.jpg b/parse/train/LmUJqB1Cz8/images/3b72eaf881cc0f2fc2c04f639d01dc0f27cf62e612cca427afe03e1acf025de9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..643ffc9c93b43e53e1e224fc90019dc7a539b332 --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/3b72eaf881cc0f2fc2c04f639d01dc0f27cf62e612cca427afe03e1acf025de9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0bf44cfbf3e3fd83d0a9e533480dd68942a6f39d0bb4ba069a8908b0f6b1773 +size 10943 diff --git a/parse/train/LmUJqB1Cz8/images/428b50f6794d1b07f184fb9cc17a6417466026423d1565444d1e86323950251e.jpg b/parse/train/LmUJqB1Cz8/images/428b50f6794d1b07f184fb9cc17a6417466026423d1565444d1e86323950251e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..39022a070fc6277782e218cdca3cb5d69e8deafb --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/428b50f6794d1b07f184fb9cc17a6417466026423d1565444d1e86323950251e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbd22d047e7c1c0c47ac53fdccd6790eeedabf0ff85cf838faca982b0b76c4b +size 26977 diff --git a/parse/train/LmUJqB1Cz8/images/4b014401744f9f97df07e52565deba9519f2613f513a94b5fc1b0be12f45a894.jpg b/parse/train/LmUJqB1Cz8/images/4b014401744f9f97df07e52565deba9519f2613f513a94b5fc1b0be12f45a894.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e3518d7b525b34ee0c97df9d4ec927f769ee60c --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/4b014401744f9f97df07e52565deba9519f2613f513a94b5fc1b0be12f45a894.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d793b486a50ca54203f8ab5996f027afac98424e04a6dc60b07ae532528a63 +size 17045 diff --git a/parse/train/LmUJqB1Cz8/images/575bcce0bc84f0692721d3319f5bf16bf78786fa81802926378fbc0036bebd41.jpg b/parse/train/LmUJqB1Cz8/images/575bcce0bc84f0692721d3319f5bf16bf78786fa81802926378fbc0036bebd41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d6fc38d21b99658716fd36ff75473ad5f554b78 --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/575bcce0bc84f0692721d3319f5bf16bf78786fa81802926378fbc0036bebd41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e887a1ba0f04a8c0c9249f36fc344df3e4c04145e04f84b3aaf0a7875be440b +size 58690 diff --git a/parse/train/LmUJqB1Cz8/images/6a2dae1250a94c36fdecfc7b244dc1c61d35654d8e53a35533eaa302ddebfee0.jpg b/parse/train/LmUJqB1Cz8/images/6a2dae1250a94c36fdecfc7b244dc1c61d35654d8e53a35533eaa302ddebfee0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc54be977c8ca1cbafbe8189ec5029870030c439 --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/6a2dae1250a94c36fdecfc7b244dc1c61d35654d8e53a35533eaa302ddebfee0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d50788b13d14ac47735e9c734b9e6b24741b72ebb2509b3eda3bd2f00afa39f +size 5604 diff --git a/parse/train/LmUJqB1Cz8/images/71f7bdc9dff2a2053f4690b242043a0a9afdcfc371ad9e984060a18d8919e03a.jpg b/parse/train/LmUJqB1Cz8/images/71f7bdc9dff2a2053f4690b242043a0a9afdcfc371ad9e984060a18d8919e03a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e5f79466556e5fb7d35d16a251be02f318e2de2 --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/71f7bdc9dff2a2053f4690b242043a0a9afdcfc371ad9e984060a18d8919e03a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d99d9f64c4cc055ddde58c98b5810a0b5ccaa12674b17bfec473b0b85745e442 +size 12787 diff --git a/parse/train/LmUJqB1Cz8/images/74df8be44b31e70a5448a3df6fc3159c2ca328acf2dc59bf85d056f29085728f.jpg b/parse/train/LmUJqB1Cz8/images/74df8be44b31e70a5448a3df6fc3159c2ca328acf2dc59bf85d056f29085728f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66e71dbf3ad41329277ac83dc809b6cae00d38de --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/74df8be44b31e70a5448a3df6fc3159c2ca328acf2dc59bf85d056f29085728f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ba4c19da3e44401b2d46501c2b7ff17c811ed9e561e75eb95a62c97be44f011 +size 8219 diff --git a/parse/train/LmUJqB1Cz8/images/852ce1382f515a067e16954684f6e408ae923efdf34fb02065a98562e21bf111.jpg b/parse/train/LmUJqB1Cz8/images/852ce1382f515a067e16954684f6e408ae923efdf34fb02065a98562e21bf111.jpg new file mode 100644 index 0000000000000000000000000000000000000000..117f74d7936bc54f7a56949d91d9449950a36e1c --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/852ce1382f515a067e16954684f6e408ae923efdf34fb02065a98562e21bf111.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab1a02dee5e04b52b9808954213852f29df6888b157b588a9feff375f731b0be +size 177830 diff --git a/parse/train/LmUJqB1Cz8/images/9cba400df69bef347d26d4e61d5f46fc8c4b8b4f3c624940df7c7ee010529077.jpg b/parse/train/LmUJqB1Cz8/images/9cba400df69bef347d26d4e61d5f46fc8c4b8b4f3c624940df7c7ee010529077.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2545aae9fd6b61db84cfe7433f012fb03e362708 --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/9cba400df69bef347d26d4e61d5f46fc8c4b8b4f3c624940df7c7ee010529077.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c65f4f9c2209fd153d077f47aa988004c5768956f7c3c46f29f9c36ad359956f +size 5364 diff --git a/parse/train/LmUJqB1Cz8/images/bb5ecf15a07c1bd45ecd99a7dc0d2754377ccc986244415ddddce4b65fe575d2.jpg b/parse/train/LmUJqB1Cz8/images/bb5ecf15a07c1bd45ecd99a7dc0d2754377ccc986244415ddddce4b65fe575d2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..acc339331ef01c6e80c09734b3256780f9c30908 --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/bb5ecf15a07c1bd45ecd99a7dc0d2754377ccc986244415ddddce4b65fe575d2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad978334156f8d087dadc8b61894828648557a35358f6fbbd6f698de7c358a1 +size 63386 diff --git a/parse/train/LmUJqB1Cz8/images/c1a1c52c809d5f00edeb4ee88f2236d24eb3e784bcd14a0621ee5f7150919d2c.jpg b/parse/train/LmUJqB1Cz8/images/c1a1c52c809d5f00edeb4ee88f2236d24eb3e784bcd14a0621ee5f7150919d2c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4603e7e7bced39a1a34a284b0f182cece26a52b --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/c1a1c52c809d5f00edeb4ee88f2236d24eb3e784bcd14a0621ee5f7150919d2c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e809a54e07f4ce0b44d7773db2dcdaabff9e28d7c1e99e77abcd7fbafbc5a451 +size 51110 diff --git a/parse/train/LmUJqB1Cz8/images/d5a0d72e23ef54b77bfc63753902dec2aa30e3bfd6ea7fe3e9e11cc827f7c7eb.jpg b/parse/train/LmUJqB1Cz8/images/d5a0d72e23ef54b77bfc63753902dec2aa30e3bfd6ea7fe3e9e11cc827f7c7eb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5982d6c43a48727be4ed4e4634ef16c420df5e9 --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/d5a0d72e23ef54b77bfc63753902dec2aa30e3bfd6ea7fe3e9e11cc827f7c7eb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9390c2d6d1dd62bb6d488b79bc947b778da8048e10ecd472dbf60a31c6517f65 +size 25571 diff --git a/parse/train/LmUJqB1Cz8/images/d6f4ea352c42f8724dea9164f6ffaddc1715e915a0ac86d31ffc4d2e2d7c78b4.jpg b/parse/train/LmUJqB1Cz8/images/d6f4ea352c42f8724dea9164f6ffaddc1715e915a0ac86d31ffc4d2e2d7c78b4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75380176898931a02e63357e07d386b73cc6c958 --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/d6f4ea352c42f8724dea9164f6ffaddc1715e915a0ac86d31ffc4d2e2d7c78b4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55efebaa4801f8c75e36dda54f9b43bb84a6d4354e1abf8a4c37a7b69cea6ab +size 9237 diff --git a/parse/train/LmUJqB1Cz8/images/f6a3f940ee0b5c81962746c7bc2c53000e643cfc837fc3466d233cba9dfe0e2b.jpg b/parse/train/LmUJqB1Cz8/images/f6a3f940ee0b5c81962746c7bc2c53000e643cfc837fc3466d233cba9dfe0e2b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf07ebee454a03cfb32fdea5c1c589c5f00650c0 --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/f6a3f940ee0b5c81962746c7bc2c53000e643cfc837fc3466d233cba9dfe0e2b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40da1f12963ac1d888b0ab37eac7eba744ddae3d4411a4aef8b04b1037c135b +size 38520 diff --git a/parse/train/LmUJqB1Cz8/images/fedd3ad78603d4e3081df9bb13eae6e26da3c2eb402b12bebf2fd862027c55d0.jpg b/parse/train/LmUJqB1Cz8/images/fedd3ad78603d4e3081df9bb13eae6e26da3c2eb402b12bebf2fd862027c55d0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8e32614aa850089ceeee9fcedf150821e804e3c --- /dev/null +++ b/parse/train/LmUJqB1Cz8/images/fedd3ad78603d4e3081df9bb13eae6e26da3c2eb402b12bebf2fd862027c55d0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f62f35c8e41a0b0cc7213c6fde5a79244c9b98ea6d409f7c81de6dd5daa08ca2 +size 35785 diff --git a/parse/train/MlFcgL2AP4d/images/0b9af85ad6b8fdf1db46a305efc4d4d3d7b3b556b73e1b27c6ab7518f019c292.jpg b/parse/train/MlFcgL2AP4d/images/0b9af85ad6b8fdf1db46a305efc4d4d3d7b3b556b73e1b27c6ab7518f019c292.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00e921e858743011f684758b7ac6de7a5288d126 --- /dev/null +++ b/parse/train/MlFcgL2AP4d/images/0b9af85ad6b8fdf1db46a305efc4d4d3d7b3b556b73e1b27c6ab7518f019c292.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75c23a83adce9d23706b9d7fedaa5d244da41e16eca99222c2ae0aebca1bf4e5 +size 7697 diff --git a/parse/train/MlFcgL2AP4d/images/223e03317fef8d1d2a121f27b9e2e6447cba2963bde90d0fb78660f206b7242a.jpg b/parse/train/MlFcgL2AP4d/images/223e03317fef8d1d2a121f27b9e2e6447cba2963bde90d0fb78660f206b7242a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..807ce4e0e051a9857aedefdf5c0561328c78618a --- /dev/null +++ b/parse/train/MlFcgL2AP4d/images/223e03317fef8d1d2a121f27b9e2e6447cba2963bde90d0fb78660f206b7242a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e1aef6886521f115b80ded7638d6734cf615c011774ff0731eaa44da326ec4 +size 7911 diff --git a/parse/train/MlFcgL2AP4d/images/47e9d1c3dea2ae825e5a20d5f9357528cb6ced6483bcccd8c18d1c1630d55ccf.jpg b/parse/train/MlFcgL2AP4d/images/47e9d1c3dea2ae825e5a20d5f9357528cb6ced6483bcccd8c18d1c1630d55ccf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef031d047698955907544272be9813bc39da0a4f --- /dev/null +++ b/parse/train/MlFcgL2AP4d/images/47e9d1c3dea2ae825e5a20d5f9357528cb6ced6483bcccd8c18d1c1630d55ccf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0db37e2966204866a881ffb94be66ea0306470cdbf49596cf17f1cbaf4298cb +size 17208 diff --git a/parse/train/MlFcgL2AP4d/images/5039d12737ea5f30e0336ef4b7dcc8ce02b19670240d0f8f7cbce5ed5b915f1d.jpg b/parse/train/MlFcgL2AP4d/images/5039d12737ea5f30e0336ef4b7dcc8ce02b19670240d0f8f7cbce5ed5b915f1d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e6a56564caac1ae8df518c8ee347f0f5950fc00a --- /dev/null +++ b/parse/train/MlFcgL2AP4d/images/5039d12737ea5f30e0336ef4b7dcc8ce02b19670240d0f8f7cbce5ed5b915f1d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2456d6129b17b3790733b5b268290da10300154a710ed9bf5453833ebbe823d3 +size 4732 diff --git a/parse/train/MlFcgL2AP4d/images/66253805447d94bb8fc3cee8b21bc6bb3a48331c67cc660a54439f51515dcf17.jpg b/parse/train/MlFcgL2AP4d/images/66253805447d94bb8fc3cee8b21bc6bb3a48331c67cc660a54439f51515dcf17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e070119a3367b6a1ff34c806cbc6ef133de22cd --- /dev/null +++ b/parse/train/MlFcgL2AP4d/images/66253805447d94bb8fc3cee8b21bc6bb3a48331c67cc660a54439f51515dcf17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4093e70f64fefdd4f51934ee0697c4e6719a109143ac1a4ececd680e13422f3b +size 7148 diff --git a/parse/train/MlFcgL2AP4d/images/757a682cc941ebfe6bdb470b88ec05647dfd1909f17d5f032cf54af5958a387e.jpg b/parse/train/MlFcgL2AP4d/images/757a682cc941ebfe6bdb470b88ec05647dfd1909f17d5f032cf54af5958a387e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0967fad5911938d34432bc4e1b58a513e4c1a1ef --- /dev/null +++ b/parse/train/MlFcgL2AP4d/images/757a682cc941ebfe6bdb470b88ec05647dfd1909f17d5f032cf54af5958a387e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17390d5c99988182b0ce61c2f637854eab3c247dce44de743864168f3264c1ed +size 8034 diff --git a/parse/train/MlFcgL2AP4d/images/9f4d58c5db91d883dad056bf7216c439652183f5cae9decac3079defe9752264.jpg b/parse/train/MlFcgL2AP4d/images/9f4d58c5db91d883dad056bf7216c439652183f5cae9decac3079defe9752264.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68da168cf35f497652979dce923d79cc4c3c476b --- /dev/null +++ b/parse/train/MlFcgL2AP4d/images/9f4d58c5db91d883dad056bf7216c439652183f5cae9decac3079defe9752264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4feb4c4d93173d47aed9b89e503b323ce10f09197c9a9e21437e2ba756fe8775 +size 74541 diff --git a/parse/train/MlFcgL2AP4d/images/aae7b592d56efa8bf373f9d12c2e319eee0a5190c0b910b88f391f42e85d364f.jpg b/parse/train/MlFcgL2AP4d/images/aae7b592d56efa8bf373f9d12c2e319eee0a5190c0b910b88f391f42e85d364f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a734849bdd37ee23191001f7acd34c6e98299d57 --- /dev/null +++ b/parse/train/MlFcgL2AP4d/images/aae7b592d56efa8bf373f9d12c2e319eee0a5190c0b910b88f391f42e85d364f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b4c41c1a84f25f2e3529506ccc4228e101bcd6655c89eb9c5f125286b3c7af3 +size 7986 diff --git a/parse/train/MlFcgL2AP4d/images/c87071c7e36b78e824455e9e94dffd55c1921c359ba444198a4e126419f2fbbb.jpg b/parse/train/MlFcgL2AP4d/images/c87071c7e36b78e824455e9e94dffd55c1921c359ba444198a4e126419f2fbbb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d536ce0e42b20ac8b5bb6e30f146fbfa88f73315 --- /dev/null +++ b/parse/train/MlFcgL2AP4d/images/c87071c7e36b78e824455e9e94dffd55c1921c359ba444198a4e126419f2fbbb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e3fffeb5cef855ab43ee3a13b8aec3d22ded69c0db4a0b782837121e225ce73 +size 7444 diff --git a/parse/train/MlFcgL2AP4d/images/e9468959c1be0a29be7a1d38ccba62d88f8823ecace0a565e78d1f6568fc5ed1.jpg b/parse/train/MlFcgL2AP4d/images/e9468959c1be0a29be7a1d38ccba62d88f8823ecace0a565e78d1f6568fc5ed1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ca6707dcf124257fc327b52d870ed5b9e1a6ad2 --- /dev/null +++ b/parse/train/MlFcgL2AP4d/images/e9468959c1be0a29be7a1d38ccba62d88f8823ecace0a565e78d1f6568fc5ed1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3e4ee91272b8477ff88396ba845ebcfff39a9a24fdedd8b71e77c5d70894e82 +size 6287 diff --git a/parse/train/MlFcgL2AP4d/images/ff70f9ecdd7d5c4b814a68484016f26bef4d0d6055e9d72b3a0e8a7893f3dead.jpg b/parse/train/MlFcgL2AP4d/images/ff70f9ecdd7d5c4b814a68484016f26bef4d0d6055e9d72b3a0e8a7893f3dead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..573b226d7c4e7136b054f034bb272b93216f0412 --- /dev/null +++ b/parse/train/MlFcgL2AP4d/images/ff70f9ecdd7d5c4b814a68484016f26bef4d0d6055e9d72b3a0e8a7893f3dead.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7a9ef5029e2126a3f0176ffc1cb7dc8c9bf96f1324f169bae54981fa0695cc +size 64180 diff --git a/parse/train/QHUUrieaqai/images/03f3f0d177498d10cf96ec8e8c879d7dd94019a9731f87b8925fdc17c94029ed.jpg b/parse/train/QHUUrieaqai/images/03f3f0d177498d10cf96ec8e8c879d7dd94019a9731f87b8925fdc17c94029ed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67159b7244765e33c6f70ca4d35cb07c73412bf2 --- /dev/null +++ b/parse/train/QHUUrieaqai/images/03f3f0d177498d10cf96ec8e8c879d7dd94019a9731f87b8925fdc17c94029ed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc3350b4572979ef16ec5108c0d364e9cb3d48901ffde8e2e712c1b2a070f7de +size 34835 diff --git a/parse/train/QHUUrieaqai/images/10d71f0acfa4d0f15245d0060288c8fd8ef4d2d1a3642ee96b4096cc10a97096.jpg b/parse/train/QHUUrieaqai/images/10d71f0acfa4d0f15245d0060288c8fd8ef4d2d1a3642ee96b4096cc10a97096.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb07b48149ffcb191811e81aa5e598d9607390f6 --- /dev/null +++ b/parse/train/QHUUrieaqai/images/10d71f0acfa4d0f15245d0060288c8fd8ef4d2d1a3642ee96b4096cc10a97096.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cba05a2264172656b2865335825f800e9efda67f388bb9acf80e95802245ccf1 +size 27892 diff --git a/parse/train/QHUUrieaqai/images/13dac06d183c44371116316349d705b9dac11e5532f5e9230fb03222873cc934.jpg b/parse/train/QHUUrieaqai/images/13dac06d183c44371116316349d705b9dac11e5532f5e9230fb03222873cc934.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5db870e8e6207aec41bfd43851306331708f20fa --- /dev/null +++ b/parse/train/QHUUrieaqai/images/13dac06d183c44371116316349d705b9dac11e5532f5e9230fb03222873cc934.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa96319213bec6a080256583793323e097c95a8917a18ed4724d16f3cdaeec29 +size 8037 diff --git a/parse/train/QHUUrieaqai/images/35c7f32f89a0d4ba0361b8eea1e4c508d3e67aaa0c3423776db6be433bdd9cb8.jpg b/parse/train/QHUUrieaqai/images/35c7f32f89a0d4ba0361b8eea1e4c508d3e67aaa0c3423776db6be433bdd9cb8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a0bf37d05f0647d1d2f33afe550bdde13d72456 --- /dev/null +++ b/parse/train/QHUUrieaqai/images/35c7f32f89a0d4ba0361b8eea1e4c508d3e67aaa0c3423776db6be433bdd9cb8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95ded8aff9da970aaf7cda799e71c6a4e100922385aeaced60e99dfea00a8324 +size 17193 diff --git a/parse/train/QHUUrieaqai/images/3ce634cc7b9adbd7ca1992fecdd510a67e2b47765b40c5c74eb0f59f6baf8d75.jpg b/parse/train/QHUUrieaqai/images/3ce634cc7b9adbd7ca1992fecdd510a67e2b47765b40c5c74eb0f59f6baf8d75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f2d28433255e1e688f8b6d42238e160c9caf8a4 --- /dev/null +++ b/parse/train/QHUUrieaqai/images/3ce634cc7b9adbd7ca1992fecdd510a67e2b47765b40c5c74eb0f59f6baf8d75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa6640f0b1c91437cc781e09eba5e84f1380aa693adb1563bc1272e71e46b0cf +size 34231 diff --git a/parse/train/QHUUrieaqai/images/6f6ae9368dafd5838c593d2665e68bd69c9c162a0e0fa47d211539c760d567c0.jpg b/parse/train/QHUUrieaqai/images/6f6ae9368dafd5838c593d2665e68bd69c9c162a0e0fa47d211539c760d567c0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ccbe49347fa19947cffac663a3d0cf5f1518a26 --- /dev/null +++ b/parse/train/QHUUrieaqai/images/6f6ae9368dafd5838c593d2665e68bd69c9c162a0e0fa47d211539c760d567c0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cccbce5f4e0043cd2accc56ae9bf3f2abd1da73d9be84ea197a1106d4a17151 +size 21443 diff --git a/parse/train/QHUUrieaqai/images/727d681430aceca8bd3de53210726587a8535060761088d0628eee6c6f59bc08.jpg b/parse/train/QHUUrieaqai/images/727d681430aceca8bd3de53210726587a8535060761088d0628eee6c6f59bc08.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbb958d489db607100d794e6d5787ab4bb1e0aad --- /dev/null +++ b/parse/train/QHUUrieaqai/images/727d681430aceca8bd3de53210726587a8535060761088d0628eee6c6f59bc08.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd84bd5433e82b4c404903baf9c373480ce3d5ea0dcb5c415c73386f5a7db76e +size 23339 diff --git a/parse/train/QHUUrieaqai/images/a257066bcd989cc932ff5dbf9d6b592da336a1d927552b24da18709b8d7cdf57.jpg b/parse/train/QHUUrieaqai/images/a257066bcd989cc932ff5dbf9d6b592da336a1d927552b24da18709b8d7cdf57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..072d972bf13c4c9410a77b3ff45979e1a482f78e --- /dev/null +++ b/parse/train/QHUUrieaqai/images/a257066bcd989cc932ff5dbf9d6b592da336a1d927552b24da18709b8d7cdf57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fe8153bb676ab9cc4136c7f90b226f3861d399c54d9f10c0dac98f16a965f58 +size 30059 diff --git a/parse/train/QHUUrieaqai/images/a680a39735a308c7dc947d18f7851d0ed8766e23120b3e9de0acea9d78a9fe97.jpg b/parse/train/QHUUrieaqai/images/a680a39735a308c7dc947d18f7851d0ed8766e23120b3e9de0acea9d78a9fe97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1029119f439904d840ac24309d7b159e595b5467 --- /dev/null +++ b/parse/train/QHUUrieaqai/images/a680a39735a308c7dc947d18f7851d0ed8766e23120b3e9de0acea9d78a9fe97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ca37a7aa22a202bfc9e0fdc33e1dc9f57815f009d890bff06ab769bf76a8137 +size 23350 diff --git a/parse/train/QHUUrieaqai/images/bbcc3f63d963c1bdb64a158cec8ae17e67d73ab26fd6cf42aff261648bdcaeeb.jpg b/parse/train/QHUUrieaqai/images/bbcc3f63d963c1bdb64a158cec8ae17e67d73ab26fd6cf42aff261648bdcaeeb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f99aade48d230f9f5911a296ab219858f18bf79c --- /dev/null +++ b/parse/train/QHUUrieaqai/images/bbcc3f63d963c1bdb64a158cec8ae17e67d73ab26fd6cf42aff261648bdcaeeb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af2f97945b5f3ca35e5a6202be225cdf73799060f0f33304370bffbe9c815563 +size 23247 diff --git a/parse/train/QHUUrieaqai/images/e11b398f9d8ed9bb758159c2b100b291bc3e1df3f7b09c965f371eb98bdbc49b.jpg b/parse/train/QHUUrieaqai/images/e11b398f9d8ed9bb758159c2b100b291bc3e1df3f7b09c965f371eb98bdbc49b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..24bd890ccd3a63494d6a40eec7ed4b428995d0eb --- /dev/null +++ b/parse/train/QHUUrieaqai/images/e11b398f9d8ed9bb758159c2b100b291bc3e1df3f7b09c965f371eb98bdbc49b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aff08fc652360614caa71b6d134f5478eda083b04a9f25bdcc279ddd942ef7a4 +size 47237 diff --git a/parse/train/QHUUrieaqai/images/fc187f71034bd897540e52bbdb651ff4d0c19b94e71b73ffcbffba2bbaed8436.jpg b/parse/train/QHUUrieaqai/images/fc187f71034bd897540e52bbdb651ff4d0c19b94e71b73ffcbffba2bbaed8436.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6bb0375d53d2d4d82e510bd60df1275bb5056dff --- /dev/null +++ b/parse/train/QHUUrieaqai/images/fc187f71034bd897540e52bbdb651ff4d0c19b94e71b73ffcbffba2bbaed8436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24591f528b57577fa66b1aca0b9a46da329447877ef8fc43fb826b286a663a87 +size 31766 diff --git a/parse/train/RLRXCV6DbEJ/images/0caf4b37d9530a7ef2103ac7b494241f024ed07235e80cfe215e3028a8aa1b77.jpg b/parse/train/RLRXCV6DbEJ/images/0caf4b37d9530a7ef2103ac7b494241f024ed07235e80cfe215e3028a8aa1b77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72564cc8b2dd43465aee18d73591037bbf0db0e8 --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/0caf4b37d9530a7ef2103ac7b494241f024ed07235e80cfe215e3028a8aa1b77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e08eade9e27d07a126e33e85d3c600bc523b9d504ac5b260d7f25725fdef78 +size 11148 diff --git a/parse/train/RLRXCV6DbEJ/images/1383cbc638f3671885dcb578f0c17ad57ba286945313d824f2268f7a27c40c21.jpg b/parse/train/RLRXCV6DbEJ/images/1383cbc638f3671885dcb578f0c17ad57ba286945313d824f2268f7a27c40c21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..379c38805c47aac3cf2c23e8397e8e89802d42ec --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/1383cbc638f3671885dcb578f0c17ad57ba286945313d824f2268f7a27c40c21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6c7dcb1483ca74af75b4b8ee8ac46cf388717282bf55439bfd61b8bb5e82c1b +size 11058 diff --git a/parse/train/RLRXCV6DbEJ/images/1beb75946c96c9c4ef5684516023f4ebf89a00ada09dee2ec09590cd4ef1f8c8.jpg b/parse/train/RLRXCV6DbEJ/images/1beb75946c96c9c4ef5684516023f4ebf89a00ada09dee2ec09590cd4ef1f8c8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7253321b5f68a6964ef71003811de42d9c84ea8f --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/1beb75946c96c9c4ef5684516023f4ebf89a00ada09dee2ec09590cd4ef1f8c8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8595f2f440e2ee87d96185181f26b6d0bb209c34319f4d59e7e352e006d6b6bf +size 149256 diff --git a/parse/train/RLRXCV6DbEJ/images/429b97e84b158c54e3a5b77206a9ed1bec8360e363a3a2fcb44b1bd8ede0f83b.jpg b/parse/train/RLRXCV6DbEJ/images/429b97e84b158c54e3a5b77206a9ed1bec8360e363a3a2fcb44b1bd8ede0f83b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94fda04a38c66cae7848ec21c2ccae0517d85b49 --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/429b97e84b158c54e3a5b77206a9ed1bec8360e363a3a2fcb44b1bd8ede0f83b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:817934ca399cd8cbbf692b8cc6ea6e692100f61618d5d0b68b4fa8a9c2012b8e +size 33355 diff --git a/parse/train/RLRXCV6DbEJ/images/4be86e4e9fb62355f6379be9583bb6ac4fe7c666dcf9f6dfa075b70c1c59d3de.jpg b/parse/train/RLRXCV6DbEJ/images/4be86e4e9fb62355f6379be9583bb6ac4fe7c666dcf9f6dfa075b70c1c59d3de.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ddbb93065aa2d442612d7f99703cba04ef0edb2 --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/4be86e4e9fb62355f6379be9583bb6ac4fe7c666dcf9f6dfa075b70c1c59d3de.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:661c6eed1c472df864faec446252b28626b08c84ddc29726933f5e97faf994b4 +size 25296 diff --git a/parse/train/RLRXCV6DbEJ/images/51b68fcc859fd881f1bcdd2613b83b57d93e169c7975c42e686579766f63ad6d.jpg b/parse/train/RLRXCV6DbEJ/images/51b68fcc859fd881f1bcdd2613b83b57d93e169c7975c42e686579766f63ad6d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5941b9a8ca8e95affc49b95bcdde4a1721384500 --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/51b68fcc859fd881f1bcdd2613b83b57d93e169c7975c42e686579766f63ad6d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3db3bb5226e107b19ff5d36f16a8d8e30b60fedddbe72c368836a10b46ff721 +size 171278 diff --git a/parse/train/RLRXCV6DbEJ/images/7e09dae6c8b26c33413af8909cae34d8460058d3cb0d90a69da5245a88f01b73.jpg b/parse/train/RLRXCV6DbEJ/images/7e09dae6c8b26c33413af8909cae34d8460058d3cb0d90a69da5245a88f01b73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..274ff7228d3e73bf6201a3ca6213d7b83831aeb3 --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/7e09dae6c8b26c33413af8909cae34d8460058d3cb0d90a69da5245a88f01b73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b03e736ca03c5f62b8744db2247b7df0ad1489080ccb8009ac211c3fc2f8fd6 +size 149019 diff --git a/parse/train/RLRXCV6DbEJ/images/88521efcffa76ca2cb163809b5378e9cb553c64feb9b95f38a726f99ed6eb01b.jpg b/parse/train/RLRXCV6DbEJ/images/88521efcffa76ca2cb163809b5378e9cb553c64feb9b95f38a726f99ed6eb01b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e12651d34076f6bc63f2bfa49938905a78b976ae --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/88521efcffa76ca2cb163809b5378e9cb553c64feb9b95f38a726f99ed6eb01b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e01139991611ca115b34691884075154ffca182b7356d7e7975d121a92b003b +size 108268 diff --git a/parse/train/RLRXCV6DbEJ/images/978d91e9b0b2d07410b3d5f4bded50810f4b93ca26757aed16b0b6bc538deed2.jpg b/parse/train/RLRXCV6DbEJ/images/978d91e9b0b2d07410b3d5f4bded50810f4b93ca26757aed16b0b6bc538deed2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3008d1185ee9822b199d1d2d7b5cbdaac302d39a --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/978d91e9b0b2d07410b3d5f4bded50810f4b93ca26757aed16b0b6bc538deed2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd5f78451b2f52bbdf8b31f547198f30491d4f4e30d40b8e405fb126109a45f7 +size 10956 diff --git a/parse/train/RLRXCV6DbEJ/images/98a1135903882b416ac8440d76e9de0b3b328254391d31ddb1318e801ba80ed9.jpg b/parse/train/RLRXCV6DbEJ/images/98a1135903882b416ac8440d76e9de0b3b328254391d31ddb1318e801ba80ed9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc3ea81401b6d76e2042524b2bf95c3810fb994d --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/98a1135903882b416ac8440d76e9de0b3b328254391d31ddb1318e801ba80ed9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84723858c2b2d0937fde61176a3760233abcf3982059e35f1a3b48f450190794 +size 83745 diff --git a/parse/train/RLRXCV6DbEJ/images/9a2cf2514fc5f4994244e694282330e4fe87e41db4dfd76ac18c2226c431f90c.jpg b/parse/train/RLRXCV6DbEJ/images/9a2cf2514fc5f4994244e694282330e4fe87e41db4dfd76ac18c2226c431f90c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54c41d52873b916d56f15ce7568d70aa440b0814 --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/9a2cf2514fc5f4994244e694282330e4fe87e41db4dfd76ac18c2226c431f90c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5cc70245bc5c164b261bd19167e50a2e67436c3d81afa6c978edf11a8c0fb79 +size 114415 diff --git a/parse/train/RLRXCV6DbEJ/images/9bafeb21f3d1caf08b8236dd3e4bff05f41587b63c3862486162cb94cc0390cf.jpg b/parse/train/RLRXCV6DbEJ/images/9bafeb21f3d1caf08b8236dd3e4bff05f41587b63c3862486162cb94cc0390cf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d570b69f5365d20a2f14164354e76b7cf5048bd --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/9bafeb21f3d1caf08b8236dd3e4bff05f41587b63c3862486162cb94cc0390cf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1a7b82201b0cad3cef665928ca676580dc815194176064e3c7aad3d5ab2e6fa +size 67439 diff --git a/parse/train/RLRXCV6DbEJ/images/9eb4b982051136045c3af64822d2096c2a1af01024e354f3f45176ef7fc9d793.jpg b/parse/train/RLRXCV6DbEJ/images/9eb4b982051136045c3af64822d2096c2a1af01024e354f3f45176ef7fc9d793.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ac81c90df5d598033a00b8835c95939bb950c7c --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/9eb4b982051136045c3af64822d2096c2a1af01024e354f3f45176ef7fc9d793.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:332d71ddd5b9d5c050c8f38af480174161555ea1021347d9c0741a9b31abaf5a +size 91404 diff --git a/parse/train/RLRXCV6DbEJ/images/a3a24d8f559f8087b24fe077bd8dd960946838ecfca4bb27ea1288d46def7c6f.jpg b/parse/train/RLRXCV6DbEJ/images/a3a24d8f559f8087b24fe077bd8dd960946838ecfca4bb27ea1288d46def7c6f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad05caa38589a134dd35b070e6fcf2f69242a420 --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/a3a24d8f559f8087b24fe077bd8dd960946838ecfca4bb27ea1288d46def7c6f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4f5dc0bb81c83ef1a406abab56fa49eab62de231ada3887763355dd2a649e0c +size 29522 diff --git a/parse/train/RLRXCV6DbEJ/images/ab424ead9485c63b4e2df355415d15d4f27effcf34f691ff8f7155a58b5aeaee.jpg b/parse/train/RLRXCV6DbEJ/images/ab424ead9485c63b4e2df355415d15d4f27effcf34f691ff8f7155a58b5aeaee.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2e6d70dddb30e197d80bf4de53880acdf5bfbd8 --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/ab424ead9485c63b4e2df355415d15d4f27effcf34f691ff8f7155a58b5aeaee.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2b40370c6c42b621a0c0d0fa944ee4b4d8f64d3f0cb704050119ef3210df35e +size 61184 diff --git a/parse/train/RLRXCV6DbEJ/images/d50c425394d1fd52f47d6b7d2fb0e652a2a89da8480b4c0d5442cec3aafb4b87.jpg b/parse/train/RLRXCV6DbEJ/images/d50c425394d1fd52f47d6b7d2fb0e652a2a89da8480b4c0d5442cec3aafb4b87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc08b638fed45b65c0c917ad3d1c67922e4e8fab --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/d50c425394d1fd52f47d6b7d2fb0e652a2a89da8480b4c0d5442cec3aafb4b87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34a2ffb4148f5ffb14a8bd6c1fd0635396efb9f5a9eb629667193c28ba8dc361 +size 7728 diff --git a/parse/train/RLRXCV6DbEJ/images/dca6cb513c7699bcfea1e81769ad770540f18bec0843d20878e2d88cee72da6a.jpg b/parse/train/RLRXCV6DbEJ/images/dca6cb513c7699bcfea1e81769ad770540f18bec0843d20878e2d88cee72da6a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a92d75e63ee96d39898569838e13f5461707b3b --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/dca6cb513c7699bcfea1e81769ad770540f18bec0843d20878e2d88cee72da6a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac189625316026936617e7ab5738aeea9a41b6948cf87eaefc1bc7fa58dbee53 +size 63121 diff --git a/parse/train/RLRXCV6DbEJ/images/f4a4d7c8e2a8203753893d6d638e3c16523969ec955ce7f35f7ebdbe3a24ffc9.jpg b/parse/train/RLRXCV6DbEJ/images/f4a4d7c8e2a8203753893d6d638e3c16523969ec955ce7f35f7ebdbe3a24ffc9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c8dd5c8b62ccda48359400adae23313fd94a5ec4 --- /dev/null +++ b/parse/train/RLRXCV6DbEJ/images/f4a4d7c8e2a8203753893d6d638e3c16523969ec955ce7f35f7ebdbe3a24ffc9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95bb00f984de67440a19d0a77aa0b1855c42e9b804379c80062c9acd91baa123 +size 102066 diff --git a/parse/train/S1Euwz-Rb/images/06b7c9f2a66fd66b565bd6bf64cfa368a00407f9ea2545d0e729a32d2b2c1b1d.jpg b/parse/train/S1Euwz-Rb/images/06b7c9f2a66fd66b565bd6bf64cfa368a00407f9ea2545d0e729a32d2b2c1b1d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dff98bb92ceadc724af47b15d31ab88a4e784cc2 --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/06b7c9f2a66fd66b565bd6bf64cfa368a00407f9ea2545d0e729a32d2b2c1b1d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf568a26dc2e508952fa324c494324118bceb082e440dab00fa04a847a89e173 +size 8298 diff --git a/parse/train/S1Euwz-Rb/images/1af356ca707634550da691f9e1c5befb2540a27633c9abfa602dcd4cdf1d0ea5.jpg b/parse/train/S1Euwz-Rb/images/1af356ca707634550da691f9e1c5befb2540a27633c9abfa602dcd4cdf1d0ea5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d9c15808fecf74410c8247dafc6ecfdbe90521d --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/1af356ca707634550da691f9e1c5befb2540a27633c9abfa602dcd4cdf1d0ea5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0043e511a9efdf05c7c9068ce3e34a32f1bcffa19eb27c091ed9cbfdef598ac6 +size 9388 diff --git a/parse/train/S1Euwz-Rb/images/20d0a9d88276e853b2d4290d832c31f6ed7a6d4ae845cb8a1f4754688e965048.jpg b/parse/train/S1Euwz-Rb/images/20d0a9d88276e853b2d4290d832c31f6ed7a6d4ae845cb8a1f4754688e965048.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a434e734e2af3d45a564f06dbc3ab3a179a2b020 --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/20d0a9d88276e853b2d4290d832c31f6ed7a6d4ae845cb8a1f4754688e965048.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca7858d4e7e63fab829d8b609e1711b098d48599c1be63f4c3be72a8a5557b01 +size 29607 diff --git a/parse/train/S1Euwz-Rb/images/21ef6959e8f5c66e79f26b2aa043aef1bf62c1ad19d7a86079e5194974b914be.jpg b/parse/train/S1Euwz-Rb/images/21ef6959e8f5c66e79f26b2aa043aef1bf62c1ad19d7a86079e5194974b914be.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e0de55a0de9c4e713985fef2fd6a344b554d9fa --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/21ef6959e8f5c66e79f26b2aa043aef1bf62c1ad19d7a86079e5194974b914be.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d028322870bb48288a80e00a7c4b3839c4fde15e1a36d36608aa089b6ab1a227 +size 15294 diff --git a/parse/train/S1Euwz-Rb/images/23f67e68bd8fe769889cb65ef6b26ad32ea8c028817ac3af21e7f4e098381e73.jpg b/parse/train/S1Euwz-Rb/images/23f67e68bd8fe769889cb65ef6b26ad32ea8c028817ac3af21e7f4e098381e73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e74799b3356cf967e1895df3b736ea66b3302299 --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/23f67e68bd8fe769889cb65ef6b26ad32ea8c028817ac3af21e7f4e098381e73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fd04ef4a58c9e7c33d210c9a26fb284f79d99bd4ad04c9ddca4b69ab45a0887 +size 8061 diff --git a/parse/train/S1Euwz-Rb/images/432535676eeb69a82d7848d82a8a327d906d019f07db47ee24440c80b3beab34.jpg b/parse/train/S1Euwz-Rb/images/432535676eeb69a82d7848d82a8a327d906d019f07db47ee24440c80b3beab34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d0d7bfb309aae633c7e6fa550eee27d7a3676d5 --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/432535676eeb69a82d7848d82a8a327d906d019f07db47ee24440c80b3beab34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e53c6fc32e53921b53d76dfb10343a599b34b56d6c007347e697c9cfc161e4c +size 16777 diff --git a/parse/train/S1Euwz-Rb/images/5e36c1389b375bd38c94672bc787841067c61a64ebb4c06b118a35c4f749cf9f.jpg b/parse/train/S1Euwz-Rb/images/5e36c1389b375bd38c94672bc787841067c61a64ebb4c06b118a35c4f749cf9f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..93a43a0353fb25a267e99aa9f0a6060a80583a3e --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/5e36c1389b375bd38c94672bc787841067c61a64ebb4c06b118a35c4f749cf9f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91ce5d2274bfe775ae03fe1434bf4170d4a21023548d077b00cf7de9d18f29b6 +size 3634 diff --git a/parse/train/S1Euwz-Rb/images/629b6ac32640eb52fb3021fd3b45ba817455f27666f7d51a163756755ee964e5.jpg b/parse/train/S1Euwz-Rb/images/629b6ac32640eb52fb3021fd3b45ba817455f27666f7d51a163756755ee964e5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8bf73619a0dea04808671313930c7a54b1ab70e2 --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/629b6ac32640eb52fb3021fd3b45ba817455f27666f7d51a163756755ee964e5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a93caa2e39f7c81c2d28ebb59d4611972045fc6d6087b7797838f3e28a39ca11 +size 5220 diff --git a/parse/train/S1Euwz-Rb/images/674dcd95919d901cb7279f9b0552761c7620c6d163165031e5b1cd19087e50a7.jpg b/parse/train/S1Euwz-Rb/images/674dcd95919d901cb7279f9b0552761c7620c6d163165031e5b1cd19087e50a7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c53e005e2251c0a08886f96950fd572c27e4111b --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/674dcd95919d901cb7279f9b0552761c7620c6d163165031e5b1cd19087e50a7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b0a2db3851b090df03597bb2124c2fc2da16e9b5affe82071a663af07f83311 +size 5637 diff --git a/parse/train/S1Euwz-Rb/images/92d034ab00623a6201883d47cd297723d599fe90d135f474e1198ca4a4622a1a.jpg b/parse/train/S1Euwz-Rb/images/92d034ab00623a6201883d47cd297723d599fe90d135f474e1198ca4a4622a1a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee94cfdd7d8d4dbd76d83115f7ed9310cb2bbff5 --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/92d034ab00623a6201883d47cd297723d599fe90d135f474e1198ca4a4622a1a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3e68a2f326ab19afca6b19d480b3bb77e5ca145a9b78326dad330853125013f +size 2926 diff --git a/parse/train/S1Euwz-Rb/images/a538d781a85f8151d41cc83e31d872618ae93e0b206ef08dd299f4020e8135bf.jpg b/parse/train/S1Euwz-Rb/images/a538d781a85f8151d41cc83e31d872618ae93e0b206ef08dd299f4020e8135bf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa0914625c98838d7c73ae8105ec21446fee2b11 --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/a538d781a85f8151d41cc83e31d872618ae93e0b206ef08dd299f4020e8135bf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:552f42d6dc5bc6de388bf601ea737c0007cd7ca5c778ed70329fab1a3b0fde10 +size 16078 diff --git a/parse/train/S1Euwz-Rb/images/a8f3f0904dbfbf06b3ae89f9cd0dcd15557eabccb6cf593d1481a4565628f79b.jpg b/parse/train/S1Euwz-Rb/images/a8f3f0904dbfbf06b3ae89f9cd0dcd15557eabccb6cf593d1481a4565628f79b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cac9014df3b5b7121237cdbc1bd4f73e4b38337f --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/a8f3f0904dbfbf06b3ae89f9cd0dcd15557eabccb6cf593d1481a4565628f79b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23902645ce23324821c563a08772d374524aee0260642290c6bb3cb0bd5dd16f +size 77442 diff --git a/parse/train/S1Euwz-Rb/images/ada1fba84ad0bac03e8e9a8f8cc72cbc8bba767e7414ee8b9b65dab9dee93066.jpg b/parse/train/S1Euwz-Rb/images/ada1fba84ad0bac03e8e9a8f8cc72cbc8bba767e7414ee8b9b65dab9dee93066.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de17567b143d135915d646695e36df43138831fa --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/ada1fba84ad0bac03e8e9a8f8cc72cbc8bba767e7414ee8b9b65dab9dee93066.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d927b4908490227bbd6d632c49fa3c66b84f2addfa085ef895488736a5c0325 +size 7434 diff --git a/parse/train/S1Euwz-Rb/images/b2917add3d0ec9deb18d84cf0919d7c999da2714964aba59d6c8b9129667c984.jpg b/parse/train/S1Euwz-Rb/images/b2917add3d0ec9deb18d84cf0919d7c999da2714964aba59d6c8b9129667c984.jpg new file mode 100644 index 0000000000000000000000000000000000000000..263c4b5480dec8071ca5e9790fcb5facd2538bbf --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/b2917add3d0ec9deb18d84cf0919d7c999da2714964aba59d6c8b9129667c984.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc1edbf4eeb8512edd48f4b282312329bbc8ea67947afc45b2496f17429dfc02 +size 8264 diff --git a/parse/train/S1Euwz-Rb/images/ba795ad9270013570f22ffe5663537aa1ee717d610072223ec7afd2128e47f00.jpg b/parse/train/S1Euwz-Rb/images/ba795ad9270013570f22ffe5663537aa1ee717d610072223ec7afd2128e47f00.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23f3e0f2e544e33cfae9c37894e3f3be161c2018 --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/ba795ad9270013570f22ffe5663537aa1ee717d610072223ec7afd2128e47f00.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f97f9f80adf547129cddb2f3ae22c690059f6377b01eed2e360edf7ea185ec99 +size 7060 diff --git a/parse/train/S1Euwz-Rb/images/c74201d70aae1d3587e14044064872d252c0e00ec6d3c4fd6b70377bb7088c75.jpg b/parse/train/S1Euwz-Rb/images/c74201d70aae1d3587e14044064872d252c0e00ec6d3c4fd6b70377bb7088c75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b9c4a0642d20f42a2f7142d984c852d63f812e1 --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/c74201d70aae1d3587e14044064872d252c0e00ec6d3c4fd6b70377bb7088c75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69017d9554780430fd3295703d0c32c78b34ddf6b7399275ecbe92f4192b2aaa +size 32238 diff --git a/parse/train/S1Euwz-Rb/images/cbfa912b869921d24b8997ef84de01c88a55b56dcf5407ed4090070e65e15576.jpg b/parse/train/S1Euwz-Rb/images/cbfa912b869921d24b8997ef84de01c88a55b56dcf5407ed4090070e65e15576.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4696a908d8e94a095a9c9636231ebbbba12d923 --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/cbfa912b869921d24b8997ef84de01c88a55b56dcf5407ed4090070e65e15576.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc4ba7023f734a95b4ba2d23082f2c5e92e99e61fa1c546b29d145c091c9845 +size 45356 diff --git a/parse/train/S1Euwz-Rb/images/d43f433dbdaf70d728243b740937cc4b7c74be9d6cda3d636612e146da07d190.jpg b/parse/train/S1Euwz-Rb/images/d43f433dbdaf70d728243b740937cc4b7c74be9d6cda3d636612e146da07d190.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e75300401a4806597f1335e8ae96b201daef4c09 --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/d43f433dbdaf70d728243b740937cc4b7c74be9d6cda3d636612e146da07d190.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f94879a136fb8a05a3e3af5ba6ea235e7258056389d327c49480cc9fa883859 +size 7584 diff --git a/parse/train/S1Euwz-Rb/images/d542dee22ea6b6971ea171ea3647286d90bc0976dc1e0a42885a1582ff9227cc.jpg b/parse/train/S1Euwz-Rb/images/d542dee22ea6b6971ea171ea3647286d90bc0976dc1e0a42885a1582ff9227cc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a0ee35f2c689aa9119c9239f53acbfae82dbb0a --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/d542dee22ea6b6971ea171ea3647286d90bc0976dc1e0a42885a1582ff9227cc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13c57a764208078693a8d73d177f14fbccd376f455767dca887883d79b035196 +size 96479 diff --git a/parse/train/S1Euwz-Rb/images/da3df6ec5443731e5ef4aaf8424acd7af4458f638b9bc19f84b7d1ed88b9267e.jpg b/parse/train/S1Euwz-Rb/images/da3df6ec5443731e5ef4aaf8424acd7af4458f638b9bc19f84b7d1ed88b9267e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c6e57d50b86a995ae345806260decc4d3236887 --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/da3df6ec5443731e5ef4aaf8424acd7af4458f638b9bc19f84b7d1ed88b9267e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:233bdcfa553d330da95095a1464d61967ef6361c5c920c298ce871a748b638b0 +size 12590 diff --git a/parse/train/S1Euwz-Rb/images/e280158a489b95ddeabb4461dda86460910408860df91a493fe23a53648a08b4.jpg b/parse/train/S1Euwz-Rb/images/e280158a489b95ddeabb4461dda86460910408860df91a493fe23a53648a08b4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d9b46f81544edc8a4f8c64c3a1f6ea350ab98814 --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/e280158a489b95ddeabb4461dda86460910408860df91a493fe23a53648a08b4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25b522ef69e965b6a96af21e298598bae3483531449b45b4e725011bbdc44dcd +size 59052 diff --git a/parse/train/S1Euwz-Rb/images/fae487b9caae60fb93edbf054820528c6b18061cf0a3ab7e592c6d4fbd281b4a.jpg b/parse/train/S1Euwz-Rb/images/fae487b9caae60fb93edbf054820528c6b18061cf0a3ab7e592c6d4fbd281b4a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..431b5eb659b36f7b785a0dc9a983f18040a80c6e --- /dev/null +++ b/parse/train/S1Euwz-Rb/images/fae487b9caae60fb93edbf054820528c6b18061cf0a3ab7e592c6d4fbd281b4a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bb5ef29981e6d5fe0a3e2482f5c93d6a3b586183a23f0924ce361fe89ba3940 +size 3836 diff --git a/parse/train/S1GDXzb0b/images/26aec1afda4a6b239c9d3fcd5278e9ef74ce42db2ff2b79c7506c87dbad0de5f.jpg b/parse/train/S1GDXzb0b/images/26aec1afda4a6b239c9d3fcd5278e9ef74ce42db2ff2b79c7506c87dbad0de5f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d9e9df651b1addd6a03ea1b21a05be56c2aca26a --- /dev/null +++ b/parse/train/S1GDXzb0b/images/26aec1afda4a6b239c9d3fcd5278e9ef74ce42db2ff2b79c7506c87dbad0de5f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5692712f117f2d25f24252f4de305169d74b012ff2c330856561a59552a0effd +size 7423 diff --git a/parse/train/S1GDXzb0b/images/4078835edd341a91eb8e48312a191fce84edd50ff8cf61b3c9475ea080d5e23c.jpg b/parse/train/S1GDXzb0b/images/4078835edd341a91eb8e48312a191fce84edd50ff8cf61b3c9475ea080d5e23c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72295e6a428cabfcca8cd395a1814eacec6fb6cb --- /dev/null +++ b/parse/train/S1GDXzb0b/images/4078835edd341a91eb8e48312a191fce84edd50ff8cf61b3c9475ea080d5e23c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b02ecb171a2a0692b4c1b720dff2bc6e666d3ece15de66f0855dca5aafe4cd4d +size 7893 diff --git a/parse/train/S1GDXzb0b/images/5265e0b95b7073225e1b28273e9696ab286415ba646030a9f986cf5a7d232253.jpg b/parse/train/S1GDXzb0b/images/5265e0b95b7073225e1b28273e9696ab286415ba646030a9f986cf5a7d232253.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a413a04daae3f1a17aada2cc8f74ef16fa8856e4 --- /dev/null +++ b/parse/train/S1GDXzb0b/images/5265e0b95b7073225e1b28273e9696ab286415ba646030a9f986cf5a7d232253.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b2fb493381ce8e641d94840b4dc4a3a0ff171c2ebdfe2364a5deae9c43e660c +size 9477 diff --git a/parse/train/S1GDXzb0b/images/6379de053f41f22153fb46930d318a0004dd4610fb254fceff4719bb5936a40d.jpg b/parse/train/S1GDXzb0b/images/6379de053f41f22153fb46930d318a0004dd4610fb254fceff4719bb5936a40d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc7f8018214d84f4965c1e42d4473997ac82172a --- /dev/null +++ b/parse/train/S1GDXzb0b/images/6379de053f41f22153fb46930d318a0004dd4610fb254fceff4719bb5936a40d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b70bde36c7b62522feed205a39c9664ea4bc1f162a39a8bbcb523c3667adda +size 42135 diff --git a/parse/train/S1GDXzb0b/images/859c6fba08d381e3d073a3bd38dd56546c330436d9e23acdb9bc662dec498af9.jpg b/parse/train/S1GDXzb0b/images/859c6fba08d381e3d073a3bd38dd56546c330436d9e23acdb9bc662dec498af9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57e33db3db9cefecef277357e9cbae54ecfdb8a5 --- /dev/null +++ b/parse/train/S1GDXzb0b/images/859c6fba08d381e3d073a3bd38dd56546c330436d9e23acdb9bc662dec498af9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e91a494da845736ab7a7e115defc9d36343659791308c14772a18435ca4fbe44 +size 8372 diff --git a/parse/train/S1GDXzb0b/images/a7ab005a861fb80546c60fe40dfda21edd68746a9c51640b92400c9b7e917e99.jpg b/parse/train/S1GDXzb0b/images/a7ab005a861fb80546c60fe40dfda21edd68746a9c51640b92400c9b7e917e99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7462c809afb95a4a12213e93dd65e493a549991 --- /dev/null +++ b/parse/train/S1GDXzb0b/images/a7ab005a861fb80546c60fe40dfda21edd68746a9c51640b92400c9b7e917e99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21a9caac246fd542988ad5d6c65a40e7c947624cda038830c7f74de0b9dce29a +size 71707 diff --git a/parse/train/S1GDXzb0b/images/b6642e4229d2bdef2a67b53d537a63d59ceac65222d13b65ef19731fc8326cc8.jpg b/parse/train/S1GDXzb0b/images/b6642e4229d2bdef2a67b53d537a63d59ceac65222d13b65ef19731fc8326cc8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..482f82eb4e7775343e20edabef7539f7cb847d5e --- /dev/null +++ b/parse/train/S1GDXzb0b/images/b6642e4229d2bdef2a67b53d537a63d59ceac65222d13b65ef19731fc8326cc8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:340fbc698017970fef0e8a846848f6d00fc14d1a8c34434c775ab8ee8e3d2ce8 +size 6543 diff --git a/parse/train/S1GDXzb0b/images/c6ee91bac80d20a058bd4bfb9ddd467318d6d28a33f4d71a7e52b2ec3a96e89b.jpg b/parse/train/S1GDXzb0b/images/c6ee91bac80d20a058bd4bfb9ddd467318d6d28a33f4d71a7e52b2ec3a96e89b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e266159ac0534d9d509c199366eb6a09aae5a03 --- /dev/null +++ b/parse/train/S1GDXzb0b/images/c6ee91bac80d20a058bd4bfb9ddd467318d6d28a33f4d71a7e52b2ec3a96e89b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab3994c78bb74e6f802eb77d1b10cd87e9cfb987fe4772c2e8455fe2c509e850 +size 8721 diff --git a/parse/train/S1GDXzb0b/images/e1c098e6cc132b880454f71b1918a3be9cf3f32e2e9f9448bb44edec1215b820.jpg b/parse/train/S1GDXzb0b/images/e1c098e6cc132b880454f71b1918a3be9cf3f32e2e9f9448bb44edec1215b820.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce67c8c35bf407d30394eadcca068410ffafb929 --- /dev/null +++ b/parse/train/S1GDXzb0b/images/e1c098e6cc132b880454f71b1918a3be9cf3f32e2e9f9448bb44edec1215b820.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6055c04d50ef42415a643586e7c41a88e8d9b182569ce7ee126744f42bb0efd +size 14797 diff --git a/parse/train/S1GDXzb0b/images/f19202b5e0f6b95409afa642ff6ed7a7cac2cdb021baada62523aa71680e90be.jpg b/parse/train/S1GDXzb0b/images/f19202b5e0f6b95409afa642ff6ed7a7cac2cdb021baada62523aa71680e90be.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e78249c87cd14c9f4aca286ade6329afa12fc34 --- /dev/null +++ b/parse/train/S1GDXzb0b/images/f19202b5e0f6b95409afa642ff6ed7a7cac2cdb021baada62523aa71680e90be.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4430fa6f8ae002deb6c91ce72ee0c18ca6fd39bddd261ca7a8895399116db6 +size 68401 diff --git a/parse/train/S1GDXzb0b/images/f346217d24e2028acc8e955336a06f494bf296f009f8aa9b545469157fcaa82f.jpg b/parse/train/S1GDXzb0b/images/f346217d24e2028acc8e955336a06f494bf296f009f8aa9b545469157fcaa82f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ced89816830524b7d340f2c5f7d91bc27bf591b --- /dev/null +++ b/parse/train/S1GDXzb0b/images/f346217d24e2028acc8e955336a06f494bf296f009f8aa9b545469157fcaa82f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e696699a1b8bf5dc0254ce4f773d48106a06697bc288896678513b4d8931e244 +size 11549 diff --git a/parse/train/S1MB-3RcF7/images/00b5d5e838c799f702256dd0ef899f5601285757081b5ddb7de120ff4a3aa4b3.jpg b/parse/train/S1MB-3RcF7/images/00b5d5e838c799f702256dd0ef899f5601285757081b5ddb7de120ff4a3aa4b3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0325492390ba0e4bb6a5f15853cb7375e8407668 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/00b5d5e838c799f702256dd0ef899f5601285757081b5ddb7de120ff4a3aa4b3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58f232bf8d4546529a9e5fad7a9d8c5aa684fb14be2886cbc69b7ef0985196bc +size 6057 diff --git a/parse/train/S1MB-3RcF7/images/101d78dc77ea694a1ddfb6ed6af4102d10994c7edf3ac2f09f1acdc7fbf5b37b.jpg b/parse/train/S1MB-3RcF7/images/101d78dc77ea694a1ddfb6ed6af4102d10994c7edf3ac2f09f1acdc7fbf5b37b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2031a1061d03adafb83ba414b98fe659bce4ca41 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/101d78dc77ea694a1ddfb6ed6af4102d10994c7edf3ac2f09f1acdc7fbf5b37b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:119245d79b88c8c52e86dfe4c8a14801743876dd6e1e3043ccd00d77ded95c10 +size 26676 diff --git a/parse/train/S1MB-3RcF7/images/1382d8e893a5b0ef51b4818ea97eb480b8ff6ebc34a9cd18dd5ce10b825bddcb.jpg b/parse/train/S1MB-3RcF7/images/1382d8e893a5b0ef51b4818ea97eb480b8ff6ebc34a9cd18dd5ce10b825bddcb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1e7ca25668f4cbe4a76be5f8266f7414492a0fd --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/1382d8e893a5b0ef51b4818ea97eb480b8ff6ebc34a9cd18dd5ce10b825bddcb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d6fe3d4235736d20cc8f7af8b494e90861a5a2637e3cef0f37d9fcacce2b47 +size 5361 diff --git a/parse/train/S1MB-3RcF7/images/1ddf844fe96b1e8916bc473ae392590fd308243e55ba6abc1dd7442a51a25b43.jpg b/parse/train/S1MB-3RcF7/images/1ddf844fe96b1e8916bc473ae392590fd308243e55ba6abc1dd7442a51a25b43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d0da7f5736bd3d5ad6c37720c27e306c821cabf --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/1ddf844fe96b1e8916bc473ae392590fd308243e55ba6abc1dd7442a51a25b43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:227e282cecb61a10535db68c96f4b491b40081f2fde4751325f368014450e679 +size 5727 diff --git a/parse/train/S1MB-3RcF7/images/24c4fa1f8a995e54f2b7f012c314441702c1819998b56ebf9c1ba9046bd3e89d.jpg b/parse/train/S1MB-3RcF7/images/24c4fa1f8a995e54f2b7f012c314441702c1819998b56ebf9c1ba9046bd3e89d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..304345172fa4f6953098f5a7f06af4abaa57893d --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/24c4fa1f8a995e54f2b7f012c314441702c1819998b56ebf9c1ba9046bd3e89d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64cc3d98951c08b0d68bef91807d1a5d632443200f6e25f50ad0f76db34f9972 +size 5304 diff --git a/parse/train/S1MB-3RcF7/images/2ebc5cf25bf32b7f721e80ca8a05555d996481992e5a28fb397b695c923a3d23.jpg b/parse/train/S1MB-3RcF7/images/2ebc5cf25bf32b7f721e80ca8a05555d996481992e5a28fb397b695c923a3d23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4001cf95d3b4cd1fca18bee55bf3b4b888cbfd4 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/2ebc5cf25bf32b7f721e80ca8a05555d996481992e5a28fb397b695c923a3d23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a0405e019effacb4624f215e54a0115b400a6c3897cee8e5ea6626b972344e +size 9572 diff --git a/parse/train/S1MB-3RcF7/images/301bfb521f36f11b23715bfd1af7df6decd71c59cec4f42cdb6f8a930e9896cd.jpg b/parse/train/S1MB-3RcF7/images/301bfb521f36f11b23715bfd1af7df6decd71c59cec4f42cdb6f8a930e9896cd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54fcaf7736be8d483e5413a2016d6143c380ced7 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/301bfb521f36f11b23715bfd1af7df6decd71c59cec4f42cdb6f8a930e9896cd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b2cebe8eaa08cf4e8a60efa7ed82d3d0d5042030879be3495480dcc6541af0d +size 27520 diff --git a/parse/train/S1MB-3RcF7/images/40180395ead77517c512f3350f5aeebfb3e94aef7d6ca2b0d9508b79a2a80200.jpg b/parse/train/S1MB-3RcF7/images/40180395ead77517c512f3350f5aeebfb3e94aef7d6ca2b0d9508b79a2a80200.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4eeebbd16a4c94c6dba660a5c55ff6258aa569cb --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/40180395ead77517c512f3350f5aeebfb3e94aef7d6ca2b0d9508b79a2a80200.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7a49e934e04a18280a4bc184f78a0389d23f3d6a59fdda8c802522ccb28840e +size 16032 diff --git a/parse/train/S1MB-3RcF7/images/44a9491fb6d2e830af9362fc3cfb513f34b5499f9866cb4fdba231d14306a068.jpg b/parse/train/S1MB-3RcF7/images/44a9491fb6d2e830af9362fc3cfb513f34b5499f9866cb4fdba231d14306a068.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e95f78640d9750d81c73666c7787644120d2a1a1 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/44a9491fb6d2e830af9362fc3cfb513f34b5499f9866cb4fdba231d14306a068.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa9b16b760fec65ba7848814a19aaa04e9c359876319c4669ea8c362d4ee725 +size 32668 diff --git a/parse/train/S1MB-3RcF7/images/44c285f9959ece1ca6354c2e221b93ff0f12fb3c777e98e2cc04a27c326df146.jpg b/parse/train/S1MB-3RcF7/images/44c285f9959ece1ca6354c2e221b93ff0f12fb3c777e98e2cc04a27c326df146.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71092ed5c4e9908c697ec00da92e4d5c13b7aa2e --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/44c285f9959ece1ca6354c2e221b93ff0f12fb3c777e98e2cc04a27c326df146.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce6b40a231c292def7509ccdcdcdcaa611f31519829bc35308cc9c013ab7c329 +size 86035 diff --git a/parse/train/S1MB-3RcF7/images/478da9c76d71f1bdf14c85c5369a5d452d156f4b6be30609998f1813e8cf18b3.jpg b/parse/train/S1MB-3RcF7/images/478da9c76d71f1bdf14c85c5369a5d452d156f4b6be30609998f1813e8cf18b3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b53a9a643477094e4a6e144e82b5064c754fe6d4 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/478da9c76d71f1bdf14c85c5369a5d452d156f4b6be30609998f1813e8cf18b3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c3f421091d7cd936ff135d8c72bb61bdcd04c4a910d4b3e78618eef4e994788 +size 6456 diff --git a/parse/train/S1MB-3RcF7/images/481640c8fe2e5164297573678c2a8abf1e9259ff825790a049f74bc295132419.jpg b/parse/train/S1MB-3RcF7/images/481640c8fe2e5164297573678c2a8abf1e9259ff825790a049f74bc295132419.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c87b1bef86c4323be1facee2e6d2636d2968d171 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/481640c8fe2e5164297573678c2a8abf1e9259ff825790a049f74bc295132419.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1db37f78881a4a658bf5a4470d272958089ba4cd621270a66bc6f2cc47910b98 +size 71068 diff --git a/parse/train/S1MB-3RcF7/images/48fee7c9197ef60469d5a7efbe94e83a087c5fc35ae1bdc5b37f89c738188e67.jpg b/parse/train/S1MB-3RcF7/images/48fee7c9197ef60469d5a7efbe94e83a087c5fc35ae1bdc5b37f89c738188e67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ace5fe3ddfa9cf27419c5f10fb966b114276250 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/48fee7c9197ef60469d5a7efbe94e83a087c5fc35ae1bdc5b37f89c738188e67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4f5e1ab26be0374f5029e19c06bd9428a49f5bad313ac9dbfb6c8dc6087787d +size 4275 diff --git a/parse/train/S1MB-3RcF7/images/4f6cd9aa1191d74bb1e3643d7c57f98a2c445ecba39f5cd7da73cdcd79df8e85.jpg b/parse/train/S1MB-3RcF7/images/4f6cd9aa1191d74bb1e3643d7c57f98a2c445ecba39f5cd7da73cdcd79df8e85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e73ed3f354f5863b2c8ed9cd1fd74978e8ea1fc --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/4f6cd9aa1191d74bb1e3643d7c57f98a2c445ecba39f5cd7da73cdcd79df8e85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd02847be381cb7e9c0df150c231c243c17e6dce7a876a003ab1aebee9375498 +size 84730 diff --git a/parse/train/S1MB-3RcF7/images/59472b02e0b91f44394376f94dbfa92a5391f0569bc3e9d8d89e4c665f46c83e.jpg b/parse/train/S1MB-3RcF7/images/59472b02e0b91f44394376f94dbfa92a5391f0569bc3e9d8d89e4c665f46c83e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..394584c87b13d2e67c09c4d6b830570575743f7b --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/59472b02e0b91f44394376f94dbfa92a5391f0569bc3e9d8d89e4c665f46c83e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5a46b813d0131413922d77a181d6e2be009103e0ba47ffd5d92b8dfbe9f5a2f +size 15002 diff --git a/parse/train/S1MB-3RcF7/images/5a7b649caf777c4a9ba5334434f3b4c2a18eb458dc2887ec713ef29ee352b7cc.jpg b/parse/train/S1MB-3RcF7/images/5a7b649caf777c4a9ba5334434f3b4c2a18eb458dc2887ec713ef29ee352b7cc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e560eae70bc203d2279f2e7ea62b5a43fd06c8e --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/5a7b649caf777c4a9ba5334434f3b4c2a18eb458dc2887ec713ef29ee352b7cc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1752be68c0fbf21770584bdf8be660557b9652a4fca2d27a94cdf2c3cfc2195 +size 48121 diff --git a/parse/train/S1MB-3RcF7/images/5b8e84076c970a1a21cf255988d1753fc8e0f1c6ad1c536e534fc0b35348b8d0.jpg b/parse/train/S1MB-3RcF7/images/5b8e84076c970a1a21cf255988d1753fc8e0f1c6ad1c536e534fc0b35348b8d0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c1c3fb97fbc990f3af9af901e545dbb7f62edba --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/5b8e84076c970a1a21cf255988d1753fc8e0f1c6ad1c536e534fc0b35348b8d0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75bd0901d591f17c0b0e3b123502fd32ce2c82bd8c444360d5dcab372a815095 +size 13162 diff --git a/parse/train/S1MB-3RcF7/images/6592cefbded2c49448c73251014cf03a9de472d01ca20beda901bfcfcd4a9384.jpg b/parse/train/S1MB-3RcF7/images/6592cefbded2c49448c73251014cf03a9de472d01ca20beda901bfcfcd4a9384.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e71c38d7587cd01275d565dae74bbc3ec94c2db4 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/6592cefbded2c49448c73251014cf03a9de472d01ca20beda901bfcfcd4a9384.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d268ab800fe7d7343102ad49f36c4681cebdd18477f0df70a10efef635e9b39a +size 43768 diff --git a/parse/train/S1MB-3RcF7/images/67e095e7fb0bea938c5477da9b101f059f028b4917ddbe9492fc49bf7fb11fe7.jpg b/parse/train/S1MB-3RcF7/images/67e095e7fb0bea938c5477da9b101f059f028b4917ddbe9492fc49bf7fb11fe7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..15aa8499e012f3dfbe20aa2c7d434651dfc5ec35 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/67e095e7fb0bea938c5477da9b101f059f028b4917ddbe9492fc49bf7fb11fe7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efbba4f8bdbed379788a63bff098c476b3e56d88277c15d30ee2038aae19532a +size 5015 diff --git a/parse/train/S1MB-3RcF7/images/6b589d37c928da22dfbae82afe91e2a109db7829633513ec8897d7b3e5d2ec4b.jpg b/parse/train/S1MB-3RcF7/images/6b589d37c928da22dfbae82afe91e2a109db7829633513ec8897d7b3e5d2ec4b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9331ab2d7d57d7d0e3fe2f1b0c577e61e8def1fc --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/6b589d37c928da22dfbae82afe91e2a109db7829633513ec8897d7b3e5d2ec4b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e7609874bbf3408d02b8db7ee88730be7ce1a4aa368a46423acf34d17831824 +size 190003 diff --git a/parse/train/S1MB-3RcF7/images/733d26391c3ddb3857dee445d2ca098b8cc829c46fd477ef6731d12cdd9bee85.jpg b/parse/train/S1MB-3RcF7/images/733d26391c3ddb3857dee445d2ca098b8cc829c46fd477ef6731d12cdd9bee85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..829d0ac4e82ef18e57ca1a38ce5d4e14fed200fb --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/733d26391c3ddb3857dee445d2ca098b8cc829c46fd477ef6731d12cdd9bee85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:864077aadafa906b5e08500fe3d0518d3c043f8a067bfb91bbf61c987ad19213 +size 73943 diff --git a/parse/train/S1MB-3RcF7/images/797f94207ccc708f5493203d5bc232eff9f50fa48c703d08f23c626f788e75dc.jpg b/parse/train/S1MB-3RcF7/images/797f94207ccc708f5493203d5bc232eff9f50fa48c703d08f23c626f788e75dc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59a44a6bdf257972f4346278714a58250979b9c8 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/797f94207ccc708f5493203d5bc232eff9f50fa48c703d08f23c626f788e75dc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:094a6184c23d87bb4b337fb0a97d9b2b60295028e0bebb794235dc78b8f9f0d7 +size 39945 diff --git a/parse/train/S1MB-3RcF7/images/7ea792a59ab6686cb0ca729991fbf4a0c965f5f36cc504ae38c2d2e4138c2537.jpg b/parse/train/S1MB-3RcF7/images/7ea792a59ab6686cb0ca729991fbf4a0c965f5f36cc504ae38c2d2e4138c2537.jpg new file mode 100644 index 0000000000000000000000000000000000000000..faa7cda541b9a1e83a3cbe8508f07d58f2f39ab3 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/7ea792a59ab6686cb0ca729991fbf4a0c965f5f36cc504ae38c2d2e4138c2537.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd6ba61e356902d5db05d0a60ff52ca1f2e1648bf7de6466f326112276e24954 +size 29031 diff --git a/parse/train/S1MB-3RcF7/images/7ed0f3099d5b24e4a00fc6545c2afe9479c5b53c1ab0763602e656a844361f8e.jpg b/parse/train/S1MB-3RcF7/images/7ed0f3099d5b24e4a00fc6545c2afe9479c5b53c1ab0763602e656a844361f8e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7dc844c6cc99705a81cc6c1324b26dc5607ff1e --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/7ed0f3099d5b24e4a00fc6545c2afe9479c5b53c1ab0763602e656a844361f8e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf6fc3abce0dfd1741abc7fc3a6022bffe10bf29d8498d61ac565ee8e3bf1fa5 +size 42787 diff --git a/parse/train/S1MB-3RcF7/images/805c9d68728ee19b1eac47e5d4ed22825d4927a4045497fcf76de0a89503d251.jpg b/parse/train/S1MB-3RcF7/images/805c9d68728ee19b1eac47e5d4ed22825d4927a4045497fcf76de0a89503d251.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5050a0c26c4404abcc8e6d2547e1f7085a15c5b --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/805c9d68728ee19b1eac47e5d4ed22825d4927a4045497fcf76de0a89503d251.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bbe085474db06210ae6d8ae89fef43acd5edab643b4101584c3554a89a0b +size 90687 diff --git a/parse/train/S1MB-3RcF7/images/82fb640b5c6182a009077f5af984690630fc57bc9f96b40a856f4539e8f82083.jpg b/parse/train/S1MB-3RcF7/images/82fb640b5c6182a009077f5af984690630fc57bc9f96b40a856f4539e8f82083.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbfbb8bc0d071681649202196eb1502cf90b1d43 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/82fb640b5c6182a009077f5af984690630fc57bc9f96b40a856f4539e8f82083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef441082f631dc35de538205f9df5e5b259b44ce01842300239a121b0c5720d1 +size 3352 diff --git a/parse/train/S1MB-3RcF7/images/88eb180271cc6c81af41d05933f331327667091f9b43dab3e2235153c7172b67.jpg b/parse/train/S1MB-3RcF7/images/88eb180271cc6c81af41d05933f331327667091f9b43dab3e2235153c7172b67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aefb6ed93a623694f6b2be38fa660892c61b381a --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/88eb180271cc6c81af41d05933f331327667091f9b43dab3e2235153c7172b67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f3da90a161aa94a4956e528a332e25b7842315bb339f45af0f4e45c4d34e76f +size 17478 diff --git a/parse/train/S1MB-3RcF7/images/91f8bfb4e8adb871263d6e323025a4c783dad769d20010cd15b7d628218b7d5b.jpg b/parse/train/S1MB-3RcF7/images/91f8bfb4e8adb871263d6e323025a4c783dad769d20010cd15b7d628218b7d5b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92f21163c8ea890ca62f4a32b7f631f0ad858451 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/91f8bfb4e8adb871263d6e323025a4c783dad769d20010cd15b7d628218b7d5b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6d5c88d34f5fa8afcc974ad22c0fa02b35c9aabe1a87ae4194df7f50fce4ced +size 16774 diff --git a/parse/train/S1MB-3RcF7/images/93c61eae5d4d802beed7ba939646bd91d6bac3de759db70c12ab7536fd441eff.jpg b/parse/train/S1MB-3RcF7/images/93c61eae5d4d802beed7ba939646bd91d6bac3de759db70c12ab7536fd441eff.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50c7b2c73f35cbd58bfbe4bd2a8d5838f3773951 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/93c61eae5d4d802beed7ba939646bd91d6bac3de759db70c12ab7536fd441eff.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8bbb9278c0d1f158a56d133d88c3846287cbc4868d4e846d264914e4799d11b +size 7182 diff --git a/parse/train/S1MB-3RcF7/images/95f1dd8ca8486910360668686567d62067d1f6a651d9c4442f0ce918d393a58e.jpg b/parse/train/S1MB-3RcF7/images/95f1dd8ca8486910360668686567d62067d1f6a651d9c4442f0ce918d393a58e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce674ff56a694fcb78a38cc49c0c53271507a13c --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/95f1dd8ca8486910360668686567d62067d1f6a651d9c4442f0ce918d393a58e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4619e379055589e417cced6967e3f5eb98520a0182a619dc44aad4872cc478 +size 32212 diff --git a/parse/train/S1MB-3RcF7/images/a96174141a86e0eaadf85353beb5db24aaf25afe0c3f891f527278df36f89827.jpg b/parse/train/S1MB-3RcF7/images/a96174141a86e0eaadf85353beb5db24aaf25afe0c3f891f527278df36f89827.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c70a55f7134003205c78ec5d1db32088a78032d --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/a96174141a86e0eaadf85353beb5db24aaf25afe0c3f891f527278df36f89827.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a86f3e146b420fdded777e01a7f2aee0f04593f574cf95f1d56604977c120ae +size 92932 diff --git a/parse/train/S1MB-3RcF7/images/aacb77deaee8d22bc2023f6efdea942a44d009defa81535cced83fdc8b765d4b.jpg b/parse/train/S1MB-3RcF7/images/aacb77deaee8d22bc2023f6efdea942a44d009defa81535cced83fdc8b765d4b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79ad587b50fd528fd5039be99690e79894fa22b9 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/aacb77deaee8d22bc2023f6efdea942a44d009defa81535cced83fdc8b765d4b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:746386afb64e2519600f829950cbf1d1e766ce2764ac2ca45dfd192bbe84c6ef +size 7816 diff --git a/parse/train/S1MB-3RcF7/images/bc1687a8d347e1d86ba1a9d01fe075c637ab59bf599f2cdce395325aa738102d.jpg b/parse/train/S1MB-3RcF7/images/bc1687a8d347e1d86ba1a9d01fe075c637ab59bf599f2cdce395325aa738102d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..130935e9b0ed5376eb0c526b94a46b274c5784f9 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/bc1687a8d347e1d86ba1a9d01fe075c637ab59bf599f2cdce395325aa738102d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:252c24a0fc0f0766adb7ed2fd5a91b3c855590e234c5d14af28552a5fdebda1e +size 6438 diff --git a/parse/train/S1MB-3RcF7/images/c3e312a8b196aadce61e0a136ff84397e9a2647d22d888dbe6bd557b4735c5f9.jpg b/parse/train/S1MB-3RcF7/images/c3e312a8b196aadce61e0a136ff84397e9a2647d22d888dbe6bd557b4735c5f9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f28ee64063d7e73f0a8ddb8e88482e0bc769ed7e --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/c3e312a8b196aadce61e0a136ff84397e9a2647d22d888dbe6bd557b4735c5f9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd5723e8620132766868c2ce7a96c4c023a52cb88cd0488641ef7e944126852f +size 155347 diff --git a/parse/train/S1MB-3RcF7/images/c7b70be0f9e460f745e9f9c8ca54464bb53510f76261cb014b44bdbbc8c4bf6a.jpg b/parse/train/S1MB-3RcF7/images/c7b70be0f9e460f745e9f9c8ca54464bb53510f76261cb014b44bdbbc8c4bf6a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..761898c252682eec5f57e27e8c25c57aa94e2ec6 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/c7b70be0f9e460f745e9f9c8ca54464bb53510f76261cb014b44bdbbc8c4bf6a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06f38354478f06d2cc843099786d9b88657b868722f877bc4a08c29ee75f6c7a +size 39130 diff --git a/parse/train/S1MB-3RcF7/images/ca108c2ceb1f8e89e8591e129d2689b99c0d6e3245069c86c43ab157a79e879e.jpg b/parse/train/S1MB-3RcF7/images/ca108c2ceb1f8e89e8591e129d2689b99c0d6e3245069c86c43ab157a79e879e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60233da535002d96dd16e2986f37e0c85a02541e --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/ca108c2ceb1f8e89e8591e129d2689b99c0d6e3245069c86c43ab157a79e879e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c0f6e8a723cf07f235d530de64c729bf9f5784b8a694b5f6c9870e455deef0e +size 91578 diff --git a/parse/train/S1MB-3RcF7/images/d17f7aaac2f8eedc9706144a3800e581c85826f1e890b645b9b3784df18f0138.jpg b/parse/train/S1MB-3RcF7/images/d17f7aaac2f8eedc9706144a3800e581c85826f1e890b645b9b3784df18f0138.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92a3ee4558af9be7d383d946e5f69b5ad4a2c80f --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/d17f7aaac2f8eedc9706144a3800e581c85826f1e890b645b9b3784df18f0138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6939323d34d7eb695bb25828124b141e6c7ad45369c382abd1003f867e63dfd +size 87085 diff --git a/parse/train/S1MB-3RcF7/images/d25d4ebcbca111ad25b1ef3e8bb085f9c9c4b01d3c7901bd34bca3b4a4e60bb9.jpg b/parse/train/S1MB-3RcF7/images/d25d4ebcbca111ad25b1ef3e8bb085f9c9c4b01d3c7901bd34bca3b4a4e60bb9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9448cf6a6725efb385a59ef49b6c9c20ecab1da6 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/d25d4ebcbca111ad25b1ef3e8bb085f9c9c4b01d3c7901bd34bca3b4a4e60bb9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeedf545797a886f2a3a1dc42a9fb5eba1b68133b4795a7f5cf52defa7deec43 +size 34094 diff --git a/parse/train/S1MB-3RcF7/images/d5427bf30474177574950cec528e2b26ea690bcdeecc69f90e8b088ac3bc03f1.jpg b/parse/train/S1MB-3RcF7/images/d5427bf30474177574950cec528e2b26ea690bcdeecc69f90e8b088ac3bc03f1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06fd3b157b97e9e8146a976bdeec0b0e72ffb774 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/d5427bf30474177574950cec528e2b26ea690bcdeecc69f90e8b088ac3bc03f1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dbada844d3c4634d507f80dea6d480ec3caf22b64b4c2539530b2b69ddf2123 +size 164799 diff --git a/parse/train/S1MB-3RcF7/images/e0c6d80da858ff24f23c895432520bf99bff9eeb30c9aba7448159ec06eafe5a.jpg b/parse/train/S1MB-3RcF7/images/e0c6d80da858ff24f23c895432520bf99bff9eeb30c9aba7448159ec06eafe5a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3fadb73028598ac1cba5477396979d44d026f8f2 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/e0c6d80da858ff24f23c895432520bf99bff9eeb30c9aba7448159ec06eafe5a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d1237748392efb9753d14e35392c77aa3c0f11df0b9e6ca26e345167866c05 +size 33708 diff --git a/parse/train/S1MB-3RcF7/images/e976f9e6327545017aefbea78d5a2ac2705b64f7e354b05c12a2e90406346b51.jpg b/parse/train/S1MB-3RcF7/images/e976f9e6327545017aefbea78d5a2ac2705b64f7e354b05c12a2e90406346b51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f79348d516bbcda03f6d23765814e4e5b8b6b5ae --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/e976f9e6327545017aefbea78d5a2ac2705b64f7e354b05c12a2e90406346b51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:052f8651e2f2fa870023fce920939db6d98853d8473cdeceb6df252f7dfd8d4e +size 73121 diff --git a/parse/train/S1MB-3RcF7/images/f8543d63bd2e5b7eea705799930fda13a6599947829cd03e0997c810580b1ace.jpg b/parse/train/S1MB-3RcF7/images/f8543d63bd2e5b7eea705799930fda13a6599947829cd03e0997c810580b1ace.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9b59f282f1df051c241862d93a154005ffca8e8 --- /dev/null +++ b/parse/train/S1MB-3RcF7/images/f8543d63bd2e5b7eea705799930fda13a6599947829cd03e0997c810580b1ace.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f8920144254c4b66bed86f85942654214b91bd05fb62c2026efabbcaa162f8d +size 77423 diff --git a/parse/train/S1fHmlbCW/images/01b3a6d27d0e2e133a48ba06f5945ef14c22d25ba149b20bdbff7f5f69e773c5.jpg b/parse/train/S1fHmlbCW/images/01b3a6d27d0e2e133a48ba06f5945ef14c22d25ba149b20bdbff7f5f69e773c5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c9fd978357d9feb9f159ccb199aca51b862902f4 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/01b3a6d27d0e2e133a48ba06f5945ef14c22d25ba149b20bdbff7f5f69e773c5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ec7ad089d4b760f94773b16c94fea771eafd81990b4f8fb2dfd4c959983db13 +size 36425 diff --git a/parse/train/S1fHmlbCW/images/104370dfe3db195f899f62b0f4821678616f830a88147ac50021a2b51a4fae0c.jpg b/parse/train/S1fHmlbCW/images/104370dfe3db195f899f62b0f4821678616f830a88147ac50021a2b51a4fae0c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4ef102a6359f966a2f55aa1b6ac53e702f1f0bc --- /dev/null +++ b/parse/train/S1fHmlbCW/images/104370dfe3db195f899f62b0f4821678616f830a88147ac50021a2b51a4fae0c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae1e6789a3a3eb78df7ec385af3174549c23ed738f33f83885e5771aec7a5a79 +size 69343 diff --git a/parse/train/S1fHmlbCW/images/177654fdb72faaae92f396521a7568a7d6a2b16fa13df6c55f227ea4fa5eb738.jpg b/parse/train/S1fHmlbCW/images/177654fdb72faaae92f396521a7568a7d6a2b16fa13df6c55f227ea4fa5eb738.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d80d61497d06f281baf3893952679588451a558 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/177654fdb72faaae92f396521a7568a7d6a2b16fa13df6c55f227ea4fa5eb738.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008db5b5a14126e81e9ba2f1580321d44cac3db95eb6ad6e7c0024140d452667 +size 9850 diff --git a/parse/train/S1fHmlbCW/images/33766cefaabb018b0cf828031bcc8488b2a45f81996d40e707da1845b08ae96a.jpg b/parse/train/S1fHmlbCW/images/33766cefaabb018b0cf828031bcc8488b2a45f81996d40e707da1845b08ae96a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfca13323b2caf533b2780d577de49610e722197 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/33766cefaabb018b0cf828031bcc8488b2a45f81996d40e707da1845b08ae96a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6347f40c6e14ec131f46f701a6ef826d977db8e424f62ad29e0e34e49d8001b +size 18926 diff --git a/parse/train/S1fHmlbCW/images/39f07f54a7bf7cb30c3f8046b209a3f1a67ccffa67a5fb3f22a9e50fa09c3b6c.jpg b/parse/train/S1fHmlbCW/images/39f07f54a7bf7cb30c3f8046b209a3f1a67ccffa67a5fb3f22a9e50fa09c3b6c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc91f4463cc505a6e41554d0030cf9d9b83d24e7 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/39f07f54a7bf7cb30c3f8046b209a3f1a67ccffa67a5fb3f22a9e50fa09c3b6c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cc9f1be10e06ee1276978fedb6ca92a7c8c3b03c241c1c75637f9d038b53d31 +size 8626 diff --git a/parse/train/S1fHmlbCW/images/3e274c83425d304aaf9528044534478048dd048f69ef2d2ca1faccd5a9dc3ed2.jpg b/parse/train/S1fHmlbCW/images/3e274c83425d304aaf9528044534478048dd048f69ef2d2ca1faccd5a9dc3ed2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ada1d93ee6a6e1707a273f6ae2f5d4125fb5fc57 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/3e274c83425d304aaf9528044534478048dd048f69ef2d2ca1faccd5a9dc3ed2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e5f6601821755230a11c0b5c1bb3359b64084b4aca8d25f0dce4f21c8533fd2 +size 5935 diff --git a/parse/train/S1fHmlbCW/images/467b4bf46a3aaabd57da8944c81608f72f2e448191718073a45d157461b5c08b.jpg b/parse/train/S1fHmlbCW/images/467b4bf46a3aaabd57da8944c81608f72f2e448191718073a45d157461b5c08b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7a7f8dcbbe8839639b3da64cd261723d80bb719 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/467b4bf46a3aaabd57da8944c81608f72f2e448191718073a45d157461b5c08b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f026712b415367fd1b31add763bf4dab8093a74e2a9cc0221b22d40f01d317e +size 14563 diff --git a/parse/train/S1fHmlbCW/images/508f465c8176751a964c4c9bb0f08bfa4e4995e8617f4252eb9aa41051a8f5d0.jpg b/parse/train/S1fHmlbCW/images/508f465c8176751a964c4c9bb0f08bfa4e4995e8617f4252eb9aa41051a8f5d0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc2cee3611d5320cae0748add3f3cb1d96a808be --- /dev/null +++ b/parse/train/S1fHmlbCW/images/508f465c8176751a964c4c9bb0f08bfa4e4995e8617f4252eb9aa41051a8f5d0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6475d46ed748ccd2e185406934a51cf5a4760a675d2ae4d35b1b5d16bc5855f +size 7845 diff --git a/parse/train/S1fHmlbCW/images/5b548313d486a4d6dce1acddd4375fd8e4463c7eab031a79f52c8d5ba14ce940.jpg b/parse/train/S1fHmlbCW/images/5b548313d486a4d6dce1acddd4375fd8e4463c7eab031a79f52c8d5ba14ce940.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05581468d0bd55cea4ffd50ac87078198e3c8b5e --- /dev/null +++ b/parse/train/S1fHmlbCW/images/5b548313d486a4d6dce1acddd4375fd8e4463c7eab031a79f52c8d5ba14ce940.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e946aae49800ab6a63692cc47f6e180fc9a73fba91d9c09e7c2a19486a528ae3 +size 4649 diff --git a/parse/train/S1fHmlbCW/images/65cc9c626b8495b360b958acdc7c72f349ed8870a46d4077c909b1e104c25ef7.jpg b/parse/train/S1fHmlbCW/images/65cc9c626b8495b360b958acdc7c72f349ed8870a46d4077c909b1e104c25ef7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..092bdc9fb3fd60a20363e8eeb0668988c4259599 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/65cc9c626b8495b360b958acdc7c72f349ed8870a46d4077c909b1e104c25ef7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea9336805cf3581f4cc551e91d8c23a462796d6300fd98527e49c383746ed82b +size 7319 diff --git a/parse/train/S1fHmlbCW/images/6698584eddf7271e7382cc013d17c464d55b2daf116f377e6f17769868d2e864.jpg b/parse/train/S1fHmlbCW/images/6698584eddf7271e7382cc013d17c464d55b2daf116f377e6f17769868d2e864.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef5650fe4f83d8d1d1c265b9860e398a6d1f745a --- /dev/null +++ b/parse/train/S1fHmlbCW/images/6698584eddf7271e7382cc013d17c464d55b2daf116f377e6f17769868d2e864.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2220ef0a4e1289ecb3654d2e9a11c81689b426441d79afd855e0fde57ca23d3c +size 50813 diff --git a/parse/train/S1fHmlbCW/images/6a93f189180ff5ccd307db061e96804b2aff4115bda26f2ba6181c09c0365dd5.jpg b/parse/train/S1fHmlbCW/images/6a93f189180ff5ccd307db061e96804b2aff4115bda26f2ba6181c09c0365dd5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3974c71be4e2f8435db138f30c6630ba2cdc88c --- /dev/null +++ b/parse/train/S1fHmlbCW/images/6a93f189180ff5ccd307db061e96804b2aff4115bda26f2ba6181c09c0365dd5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7312d54afc47f5548f5eeb8652fca4da59ccbc6f0a80e46bae532aced1dca4bc +size 7678 diff --git a/parse/train/S1fHmlbCW/images/6e360b60e3660f27afac8c8f44e31ec6480bf1a3e45c14a6c4b9ff1b8773321c.jpg b/parse/train/S1fHmlbCW/images/6e360b60e3660f27afac8c8f44e31ec6480bf1a3e45c14a6c4b9ff1b8773321c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4b5047aac57446950c16520b9f22a00d468de61 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/6e360b60e3660f27afac8c8f44e31ec6480bf1a3e45c14a6c4b9ff1b8773321c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a02f5f0c2360c5ac754caad3c8a88ed5c0a365122ff0879ca98b29eda29f1285 +size 6097 diff --git a/parse/train/S1fHmlbCW/images/6e7945311f8426c16923d93c38473fdead4a673819981fb06cca264987991182.jpg b/parse/train/S1fHmlbCW/images/6e7945311f8426c16923d93c38473fdead4a673819981fb06cca264987991182.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f458ce536c7d85a4dcbea8b8977855b52a1c8f4a --- /dev/null +++ b/parse/train/S1fHmlbCW/images/6e7945311f8426c16923d93c38473fdead4a673819981fb06cca264987991182.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f9b6eb664ed64334689186889425e79eb60ab06c0db726dfcbe33a3f44c9619 +size 8128 diff --git a/parse/train/S1fHmlbCW/images/7b818407f68b616ccc043f4238ca47d69e430a776703009224092f289e101fbb.jpg b/parse/train/S1fHmlbCW/images/7b818407f68b616ccc043f4238ca47d69e430a776703009224092f289e101fbb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da09600d3b1b83047efe3921a6e5f4d84055b2ca --- /dev/null +++ b/parse/train/S1fHmlbCW/images/7b818407f68b616ccc043f4238ca47d69e430a776703009224092f289e101fbb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ea1fa7668eadf7180591a032502b7603f26ac84d2a97acaeeb75659c00a550 +size 10881 diff --git a/parse/train/S1fHmlbCW/images/7c7a2a3b1b7048903c04bfbbbc0b645afdaefd3487dcbb89da7b435d2166829b.jpg b/parse/train/S1fHmlbCW/images/7c7a2a3b1b7048903c04bfbbbc0b645afdaefd3487dcbb89da7b435d2166829b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c3d6721f598826e01feb2ad7f3d106b2faf4466 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/7c7a2a3b1b7048903c04bfbbbc0b645afdaefd3487dcbb89da7b435d2166829b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32334d33f36359c6f74b11b3179eac9f7483f50b06382d7faf3d29bd5b3d64c1 +size 9689 diff --git a/parse/train/S1fHmlbCW/images/8025c952f1e20c0a87e7a6dadea7c03d79f74ce7375f282b16fa761e5f53ad6b.jpg b/parse/train/S1fHmlbCW/images/8025c952f1e20c0a87e7a6dadea7c03d79f74ce7375f282b16fa761e5f53ad6b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c4754c7103e19fcfe8b6f870c914adb1a1780f9 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/8025c952f1e20c0a87e7a6dadea7c03d79f74ce7375f282b16fa761e5f53ad6b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c0ab6af736e9bae68ca40063b9951a7b2ed26b88fb28a97cb6c94663e650bb8 +size 8080 diff --git a/parse/train/S1fHmlbCW/images/85482e8e28d1bb081922feff5f98eb28343233ccb042daff9428af92fae0ae2e.jpg b/parse/train/S1fHmlbCW/images/85482e8e28d1bb081922feff5f98eb28343233ccb042daff9428af92fae0ae2e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ed2268368da3434b4a5a66d418a4b2760e63a77 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/85482e8e28d1bb081922feff5f98eb28343233ccb042daff9428af92fae0ae2e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:485be1ad9726446c3bbb663bac62715074b0ad6934b6be0351288bec60fd381f +size 7714 diff --git a/parse/train/S1fHmlbCW/images/86d99cfe2e664dcfbd6f58d204f9ea5c0265c653788dfa6d3bb30df84f825052.jpg b/parse/train/S1fHmlbCW/images/86d99cfe2e664dcfbd6f58d204f9ea5c0265c653788dfa6d3bb30df84f825052.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0dcf5e8556ce2450638a243f068ae1569e43d153 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/86d99cfe2e664dcfbd6f58d204f9ea5c0265c653788dfa6d3bb30df84f825052.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eafb6e71c2faf981d9166cab6895b59314340828834bb0409cdb063974aba80 +size 4823 diff --git a/parse/train/S1fHmlbCW/images/961414fa314b263b306a3798173536f526fdec49a1cb5faa21dcaaa689b37009.jpg b/parse/train/S1fHmlbCW/images/961414fa314b263b306a3798173536f526fdec49a1cb5faa21dcaaa689b37009.jpg new file mode 100644 index 0000000000000000000000000000000000000000..029a76bc4dadff6c7293738b7cfa368b7a891682 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/961414fa314b263b306a3798173536f526fdec49a1cb5faa21dcaaa689b37009.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa68ea70f595ee632d383ace39ca056687f0fa37c1bec8c39a6b1ac98ebbd63 +size 5972 diff --git a/parse/train/S1fHmlbCW/images/99deea8740a4cb1fb9ef4afe150866e23c6c76634a0bff9510ddd28d51443ddb.jpg b/parse/train/S1fHmlbCW/images/99deea8740a4cb1fb9ef4afe150866e23c6c76634a0bff9510ddd28d51443ddb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e79539114c845dc52ae1234a9a9c4ebb8e7d0c6b --- /dev/null +++ b/parse/train/S1fHmlbCW/images/99deea8740a4cb1fb9ef4afe150866e23c6c76634a0bff9510ddd28d51443ddb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3bac9e550441e2934c0fe59d4eaaa9cf164105a26ec27fb81c0468173de9eef +size 8658 diff --git a/parse/train/S1fHmlbCW/images/9e13659898856a507d3ae1f42028b2355b05ca32972b4020f19ff3988d20dd79.jpg b/parse/train/S1fHmlbCW/images/9e13659898856a507d3ae1f42028b2355b05ca32972b4020f19ff3988d20dd79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87b027ace618dba93ed6f0af4d12386631b643b8 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/9e13659898856a507d3ae1f42028b2355b05ca32972b4020f19ff3988d20dd79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b36fe5db2ee2c68ce98d727e5da2cd835f3316affe6c8240eb7cde3ad42d8c96 +size 14447 diff --git a/parse/train/S1fHmlbCW/images/a1e4361dbb5362477967039824d12b85948c6f9661d88b33caf40fa98bdddf86.jpg b/parse/train/S1fHmlbCW/images/a1e4361dbb5362477967039824d12b85948c6f9661d88b33caf40fa98bdddf86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba077b3833b242450bc888cc7fcccc09641d3c55 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/a1e4361dbb5362477967039824d12b85948c6f9661d88b33caf40fa98bdddf86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f8891058692c5c5e6e58b148cfbb033fdb8603f73d2f2f72857172745da96a6 +size 8808 diff --git a/parse/train/S1fHmlbCW/images/a8375e84de399fab476d6dd7183d2cb86b5a625b27a1fb4b1c8c980e1ac00ece.jpg b/parse/train/S1fHmlbCW/images/a8375e84de399fab476d6dd7183d2cb86b5a625b27a1fb4b1c8c980e1ac00ece.jpg new file mode 100644 index 0000000000000000000000000000000000000000..947878724c6c70c6f13014d4f6f838775a0ce15a --- /dev/null +++ b/parse/train/S1fHmlbCW/images/a8375e84de399fab476d6dd7183d2cb86b5a625b27a1fb4b1c8c980e1ac00ece.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2555d43de4ec83417c3ac323fcf3c901dbaf963a352cc5b908e7723eff7e0a5c +size 5173 diff --git a/parse/train/S1fHmlbCW/images/a91a0b4d5186bb16af852b57bfc0f70d92b87c345afe3e17a71f13f9c9aff59b.jpg b/parse/train/S1fHmlbCW/images/a91a0b4d5186bb16af852b57bfc0f70d92b87c345afe3e17a71f13f9c9aff59b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..429635c4b515613660e54ea775e0f6b4256ee6cb --- /dev/null +++ b/parse/train/S1fHmlbCW/images/a91a0b4d5186bb16af852b57bfc0f70d92b87c345afe3e17a71f13f9c9aff59b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5686c689d088a74a5c32ff8f248dae86bc35bcb2c8c1715429e6222f10c6dca +size 9810 diff --git a/parse/train/S1fHmlbCW/images/af74433fe41cf4e67b85b4ece26aea95d003169f2318114515f998c5dc665d1e.jpg b/parse/train/S1fHmlbCW/images/af74433fe41cf4e67b85b4ece26aea95d003169f2318114515f998c5dc665d1e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fecc5f244fc3d62eb4cfbff769eff1b554ce331 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/af74433fe41cf4e67b85b4ece26aea95d003169f2318114515f998c5dc665d1e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c807f1f5fb11aa6e60c5381dd3946e9f5651bac2284263f2773b3670061c590f +size 4621 diff --git a/parse/train/S1fHmlbCW/images/b522dc3af188946fe480c552723de8d311cb9a8294b081c2928753456b289c25.jpg b/parse/train/S1fHmlbCW/images/b522dc3af188946fe480c552723de8d311cb9a8294b081c2928753456b289c25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..239007a348e3323afa289852d5b592f1d134cd1a --- /dev/null +++ b/parse/train/S1fHmlbCW/images/b522dc3af188946fe480c552723de8d311cb9a8294b081c2928753456b289c25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6e39c930d4cff77c4796f62d474e07adf101085533a2bae96696bb7aeb90cd +size 253454 diff --git a/parse/train/S1fHmlbCW/images/b58c84f9b51053bc3bba0af122f5d9e27ba63c9ba53154a991e6312212bb6e0d.jpg b/parse/train/S1fHmlbCW/images/b58c84f9b51053bc3bba0af122f5d9e27ba63c9ba53154a991e6312212bb6e0d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2840bba8c2ffd37792d00c2650fb806dda66d6a --- /dev/null +++ b/parse/train/S1fHmlbCW/images/b58c84f9b51053bc3bba0af122f5d9e27ba63c9ba53154a991e6312212bb6e0d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3517cf526dfbc48f6a2ec91934ac0118e4a77739ac15c8206c63d552fcbfe503 +size 68363 diff --git a/parse/train/S1fHmlbCW/images/bea9956e697a5073a6cb79c048bfca931195c6aaad6c91381f56e9349f17f396.jpg b/parse/train/S1fHmlbCW/images/bea9956e697a5073a6cb79c048bfca931195c6aaad6c91381f56e9349f17f396.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e4a1d035243de32aa2910a3169b4a19e54361d2 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/bea9956e697a5073a6cb79c048bfca931195c6aaad6c91381f56e9349f17f396.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e29fa101d10ec206062ccece7041c5f55d3d7140d8a0b640ce44f54d758296e +size 12141 diff --git a/parse/train/S1fHmlbCW/images/c284019a13e7550e59b938de2229d173647743c7108aadc267f352004185176a.jpg b/parse/train/S1fHmlbCW/images/c284019a13e7550e59b938de2229d173647743c7108aadc267f352004185176a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6fc0c231301f195ebc16746dc2df27a0cc805d66 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/c284019a13e7550e59b938de2229d173647743c7108aadc267f352004185176a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54e807f87ca8b80ff07253be41b6add040fcda42a1b03661b64b384ee54dfb5f +size 7112 diff --git a/parse/train/S1fHmlbCW/images/cb3540ddec1f0d255b8e7ab89230352eab8c4f35612f5b3019c10db1acbd4b5c.jpg b/parse/train/S1fHmlbCW/images/cb3540ddec1f0d255b8e7ab89230352eab8c4f35612f5b3019c10db1acbd4b5c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aff77485ed81d49e6294dc2b33e16c0ed7f43e69 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/cb3540ddec1f0d255b8e7ab89230352eab8c4f35612f5b3019c10db1acbd4b5c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b25abb37340de4db7098c203d8d9f1f3128b974a05bf068c18f972841b60b0 +size 9264 diff --git a/parse/train/S1fHmlbCW/images/d2fb2330fc08d9a75bb84ad4c1eb0350b6779d75fb111e64d1c81120ff8d8420.jpg b/parse/train/S1fHmlbCW/images/d2fb2330fc08d9a75bb84ad4c1eb0350b6779d75fb111e64d1c81120ff8d8420.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68cf69283b1f3e767bd765de4030f9d97678c943 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/d2fb2330fc08d9a75bb84ad4c1eb0350b6779d75fb111e64d1c81120ff8d8420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:646ccfb535cfa1391ee9aebeb3ed6739f20073c926133a3fde7201ab6a091360 +size 7166 diff --git a/parse/train/S1fHmlbCW/images/e3e635b6ece37512c2fa8e6a3c82dcc377d970a33821329e23ff672ef9cbf52f.jpg b/parse/train/S1fHmlbCW/images/e3e635b6ece37512c2fa8e6a3c82dcc377d970a33821329e23ff672ef9cbf52f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20b150355b805845d44b70a7c283f0bfe4a2e27d --- /dev/null +++ b/parse/train/S1fHmlbCW/images/e3e635b6ece37512c2fa8e6a3c82dcc377d970a33821329e23ff672ef9cbf52f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5cde21db96bc9f73fb099fd15aad5e8889a0852c7d3a64fde793cafd1fd29b0 +size 5437 diff --git a/parse/train/S1fHmlbCW/images/e7c8f92edfef0984af8b5dd9264d083596211249bc79cdfb0dba690bd18ec3c6.jpg b/parse/train/S1fHmlbCW/images/e7c8f92edfef0984af8b5dd9264d083596211249bc79cdfb0dba690bd18ec3c6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee81761eac0496ab18c6c2901c4fb842133570d6 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/e7c8f92edfef0984af8b5dd9264d083596211249bc79cdfb0dba690bd18ec3c6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0750f38fd351b471d5ccf5960b3eb5633f7cff96e927b2f9d669f66673da16fd +size 2212 diff --git a/parse/train/S1fHmlbCW/images/e9d8a7dfba8724054a56bed85b0070ef19fb036a96c00ddb7a44744cc625d8f3.jpg b/parse/train/S1fHmlbCW/images/e9d8a7dfba8724054a56bed85b0070ef19fb036a96c00ddb7a44744cc625d8f3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85c0ca260b07c4e9ef27d448119901c426b58471 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/e9d8a7dfba8724054a56bed85b0070ef19fb036a96c00ddb7a44744cc625d8f3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d2419a3cec36b038daa8679c4513be42e6c122013c443f922ed61335ef38480 +size 5683 diff --git a/parse/train/S1fHmlbCW/images/eaec999d66717ce460cd8e6984f710ea8afcbe546bf099d545b0f33aafefe3ed.jpg b/parse/train/S1fHmlbCW/images/eaec999d66717ce460cd8e6984f710ea8afcbe546bf099d545b0f33aafefe3ed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5676118f120224a06484d4a7d09116b9e18d034 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/eaec999d66717ce460cd8e6984f710ea8afcbe546bf099d545b0f33aafefe3ed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3187c8e929ee8a95be842672162ac34e1fcaf31903356a28871de98ff7ce299b +size 6133 diff --git a/parse/train/S1fHmlbCW/images/f71439b021b51b3eb60a72382ca4517f6244b61c574b9c5e723652d7744befd3.jpg b/parse/train/S1fHmlbCW/images/f71439b021b51b3eb60a72382ca4517f6244b61c574b9c5e723652d7744befd3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e33693ba82414aeeb489c2158f02a8ac16b9890e --- /dev/null +++ b/parse/train/S1fHmlbCW/images/f71439b021b51b3eb60a72382ca4517f6244b61c574b9c5e723652d7744befd3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7531d76ac94fd07c2560fa3b8896bf2ad9ca103eadc013ff253b12916668bbb1 +size 139809 diff --git a/parse/train/S1fHmlbCW/images/f8496d9e2356e5b215e6c1cca79bf6e6d11c7e8d602aa975dcdcebeed2d0d6f4.jpg b/parse/train/S1fHmlbCW/images/f8496d9e2356e5b215e6c1cca79bf6e6d11c7e8d602aa975dcdcebeed2d0d6f4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ba0702702019d699f0a8f0ea4fe7688ef438b49 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/f8496d9e2356e5b215e6c1cca79bf6e6d11c7e8d602aa975dcdcebeed2d0d6f4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299df7c5e68973aaada819ec2e70acfada2b85b90645f23ec5c5573e67f02be8 +size 12074 diff --git a/parse/train/S1fHmlbCW/images/f91433abb87704655ee433ba046cb74e0bef19cc7432aa5c9711a0204c6d3f6c.jpg b/parse/train/S1fHmlbCW/images/f91433abb87704655ee433ba046cb74e0bef19cc7432aa5c9711a0204c6d3f6c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7815a98024e1dd31c0babd2fac591c916e969c5 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/f91433abb87704655ee433ba046cb74e0bef19cc7432aa5c9711a0204c6d3f6c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ea4deb8ea6ef3e94612dea783e0d4db0955d611bed89b687eb9136de6a79d27 +size 6410 diff --git a/parse/train/S1fHmlbCW/images/fbfc1313a42cb3f9c4d39d9745e9602c793e9a01a15faaa848cfd568aff22784.jpg b/parse/train/S1fHmlbCW/images/fbfc1313a42cb3f9c4d39d9745e9602c793e9a01a15faaa848cfd568aff22784.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc037f2801e13afc9415975a6d78e45a4d53c437 --- /dev/null +++ b/parse/train/S1fHmlbCW/images/fbfc1313a42cb3f9c4d39d9745e9602c793e9a01a15faaa848cfd568aff22784.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e14c6bef7e681c910c50df582bc6cc8d2444121dafda1b61c4598a40e9d962d7 +size 3990 diff --git a/parse/train/S1l2IyrYPr/images/0533e2e02c4cfedefabd6eccef6ce8e07ed0f8fdcde5bf3492704c65f3a8a3d1.jpg b/parse/train/S1l2IyrYPr/images/0533e2e02c4cfedefabd6eccef6ce8e07ed0f8fdcde5bf3492704c65f3a8a3d1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..19e85af52d9c940d22e0295b0c41f62a42d52854 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/0533e2e02c4cfedefabd6eccef6ce8e07ed0f8fdcde5bf3492704c65f3a8a3d1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0371e198fae308db1c1711a216a276c73066d255f2e6535af683f0d9319c791c +size 66465 diff --git a/parse/train/S1l2IyrYPr/images/0cb5a8e52772a90db6ce5939cf8230efd2d62414307a38d827cad227a49d26b7.jpg b/parse/train/S1l2IyrYPr/images/0cb5a8e52772a90db6ce5939cf8230efd2d62414307a38d827cad227a49d26b7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ffa7f6dff729c68c059778741c988a7999c0429 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/0cb5a8e52772a90db6ce5939cf8230efd2d62414307a38d827cad227a49d26b7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec7b12e45e8fe87d933086718090dd8c48c02892b0658cbf46480f0ba315348c +size 8634 diff --git a/parse/train/S1l2IyrYPr/images/0f13b338d1974a88444b8ac064366505346f79c2640bb31d3ab2f8791f21aea8.jpg b/parse/train/S1l2IyrYPr/images/0f13b338d1974a88444b8ac064366505346f79c2640bb31d3ab2f8791f21aea8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c59b2bdfbe6a4f18ade7b93dc587d64dc02db2a3 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/0f13b338d1974a88444b8ac064366505346f79c2640bb31d3ab2f8791f21aea8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0fda2b6c4b95afc5f20027120ec3d12604ec78af8b1f5adf84e6f02ef0c427e +size 39190 diff --git a/parse/train/S1l2IyrYPr/images/1ae313e4bd9a458f14a2c23a6926e27ab759e121e3e1ccd1b7d6fb161b02ae2e.jpg b/parse/train/S1l2IyrYPr/images/1ae313e4bd9a458f14a2c23a6926e27ab759e121e3e1ccd1b7d6fb161b02ae2e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc8a45d00a5fa16b8029a28ba3d618a8e8b6aa14 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/1ae313e4bd9a458f14a2c23a6926e27ab759e121e3e1ccd1b7d6fb161b02ae2e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:684ace28d2ff9be716038441f341a17cae26e17d4b19775f5df14019cde8dbb7 +size 40517 diff --git a/parse/train/S1l2IyrYPr/images/1e306dd3650c1a59ed2c42193691c16e3592becdf2f2663c47eb020eb5081077.jpg b/parse/train/S1l2IyrYPr/images/1e306dd3650c1a59ed2c42193691c16e3592becdf2f2663c47eb020eb5081077.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38b50bbd764b020cf70ff16a6d4a6689ee251ee5 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/1e306dd3650c1a59ed2c42193691c16e3592becdf2f2663c47eb020eb5081077.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca1d38e558cd835b479e8ddfdd38928a2de76dbf350c03208b287009da9a7387 +size 85043 diff --git a/parse/train/S1l2IyrYPr/images/250f245a6dfffadd0da6a8037fbbe0faa94539f0404e4efe444c3a4cf055ac61.jpg b/parse/train/S1l2IyrYPr/images/250f245a6dfffadd0da6a8037fbbe0faa94539f0404e4efe444c3a4cf055ac61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d0420e796a12193beb8117877a74805a8b942b6 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/250f245a6dfffadd0da6a8037fbbe0faa94539f0404e4efe444c3a4cf055ac61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:018d4e14b93a21aa3c38aa40fc01a849e70db2f0ef2cfeddcc611bc762d4c7de +size 3594 diff --git a/parse/train/S1l2IyrYPr/images/3a501964dc7f2a0b36eb3dd8867e17f1d43dd81fb77625c7c267d270ea59797f.jpg b/parse/train/S1l2IyrYPr/images/3a501964dc7f2a0b36eb3dd8867e17f1d43dd81fb77625c7c267d270ea59797f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4eb7e2806cf1f4193343c2f677344dcdf8018473 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/3a501964dc7f2a0b36eb3dd8867e17f1d43dd81fb77625c7c267d270ea59797f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72771562eb32a749c8eacfcf12b6a0144cabbc04f57e4696521407d7558f6b09 +size 59111 diff --git a/parse/train/S1l2IyrYPr/images/45485ba3e51586475d8777aeb6375bb455c27b51ba9110b1dccc40cc490c7448.jpg b/parse/train/S1l2IyrYPr/images/45485ba3e51586475d8777aeb6375bb455c27b51ba9110b1dccc40cc490c7448.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6cbcca3a074bc671bfca5325f962c59109e51889 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/45485ba3e51586475d8777aeb6375bb455c27b51ba9110b1dccc40cc490c7448.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:168bdac0bca2e264cd3712ee29e674acaabbf66bf6765c0288d29780156f677f +size 38879 diff --git a/parse/train/S1l2IyrYPr/images/58a733ea4b74d8b0e887c441817b82b92c4df9fa0170fd0e090bf85d29bec840.jpg b/parse/train/S1l2IyrYPr/images/58a733ea4b74d8b0e887c441817b82b92c4df9fa0170fd0e090bf85d29bec840.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2e6cb859978e44a0ff2e85eccc4002582fa668a --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/58a733ea4b74d8b0e887c441817b82b92c4df9fa0170fd0e090bf85d29bec840.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33966ebe0f8d19d0f7d3bfee2ce0b6b69f49fe24c7baefec39210cffd88aaaeb +size 45866 diff --git a/parse/train/S1l2IyrYPr/images/6415713ad21e791b2f2a0df7874ca029d55280d1e451a981033e4ce4e1fdb361.jpg b/parse/train/S1l2IyrYPr/images/6415713ad21e791b2f2a0df7874ca029d55280d1e451a981033e4ce4e1fdb361.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df0e3269c499b3dc69bf7a3932a78682824fb8e8 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/6415713ad21e791b2f2a0df7874ca029d55280d1e451a981033e4ce4e1fdb361.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae91169fcfa15ed34d80d1ce4341d3047bfabfce9186f896c1ab161f305e66b +size 35145 diff --git a/parse/train/S1l2IyrYPr/images/6c170159e215c1e72d1eeba920f3c61037f8581064442a7d7fd22741333ba1c6.jpg b/parse/train/S1l2IyrYPr/images/6c170159e215c1e72d1eeba920f3c61037f8581064442a7d7fd22741333ba1c6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..502472963bc8d25aa923679763731c71b4b659a9 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/6c170159e215c1e72d1eeba920f3c61037f8581064442a7d7fd22741333ba1c6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c6351683073b0809619a8b3fa0b622d065fb09cc7a66f10367396ddf427fca6 +size 35394 diff --git a/parse/train/S1l2IyrYPr/images/727559866d47e6e2cb7653646324b245a7b85bcc5d522aaf73fb78be55fd82bc.jpg b/parse/train/S1l2IyrYPr/images/727559866d47e6e2cb7653646324b245a7b85bcc5d522aaf73fb78be55fd82bc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ef6cd3543359ee078ee34e384a79091e7e9474c --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/727559866d47e6e2cb7653646324b245a7b85bcc5d522aaf73fb78be55fd82bc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23cb8eba45934aafcc945443865e4ce33caab0359f6cb028d6d6262ded3ea35e +size 40360 diff --git a/parse/train/S1l2IyrYPr/images/7a0bed406dc9494a927e8a8a4e83e08d0d264847627d119e7f39126557d2f228.jpg b/parse/train/S1l2IyrYPr/images/7a0bed406dc9494a927e8a8a4e83e08d0d264847627d119e7f39126557d2f228.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80914abf53cfcab5e561ec07d22b88e779ccb21e --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/7a0bed406dc9494a927e8a8a4e83e08d0d264847627d119e7f39126557d2f228.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50a34a2cb91d36c20d94b7822d965b8b93838225894c5a8b86e881018f7d2412 +size 16949 diff --git a/parse/train/S1l2IyrYPr/images/80cb806753fba38c8ec7c190dc9a098a268f30344caac56b477ecb0f9581fa61.jpg b/parse/train/S1l2IyrYPr/images/80cb806753fba38c8ec7c190dc9a098a268f30344caac56b477ecb0f9581fa61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c0605a109d3073fafe13411c0de89b455a3da7e --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/80cb806753fba38c8ec7c190dc9a098a268f30344caac56b477ecb0f9581fa61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:212da34693f5986e8bc77883d70ec29f0d9f39a3a7a5d1216d2a6a41e5c7d8af +size 38709 diff --git a/parse/train/S1l2IyrYPr/images/88a255f7529659044f62a7528d38976f89e41b5675903fa8ad5625b54c9361b4.jpg b/parse/train/S1l2IyrYPr/images/88a255f7529659044f62a7528d38976f89e41b5675903fa8ad5625b54c9361b4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45b32e6924336f85acee4999d05f4cce39bf4304 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/88a255f7529659044f62a7528d38976f89e41b5675903fa8ad5625b54c9361b4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4bec51e619fae81eb310c8480b74e66bdd2da7764bffd3788e11e34efd8d8c +size 3450 diff --git a/parse/train/S1l2IyrYPr/images/a16fc4d85f32c1d1369ffacc6b9303aa3212df431422bee94f1c873007d9bca1.jpg b/parse/train/S1l2IyrYPr/images/a16fc4d85f32c1d1369ffacc6b9303aa3212df431422bee94f1c873007d9bca1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c36d19f977b6a64b4dde82c3947b6c7e385ff26 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/a16fc4d85f32c1d1369ffacc6b9303aa3212df431422bee94f1c873007d9bca1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec1751db2300f4e7eea122d37a18aa93b249b8711e8cb88b6a7bceb8d732abfa +size 66239 diff --git a/parse/train/S1l2IyrYPr/images/a40f82abeb31cd7a0448883e339f48b401e7c36b303ab9d81ee8c385e4be532d.jpg b/parse/train/S1l2IyrYPr/images/a40f82abeb31cd7a0448883e339f48b401e7c36b303ab9d81ee8c385e4be532d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8555ec57d5b919f162465a5a35159b26c8be133f --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/a40f82abeb31cd7a0448883e339f48b401e7c36b303ab9d81ee8c385e4be532d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48fbf0cfc38cc2ea518df335dbf2bb1281df4135f5c86d9f4b106da2d4cd7ddb +size 38756 diff --git a/parse/train/S1l2IyrYPr/images/a91519f5c203062afd71c2bf0085c411cb97dd25d17b31553e78b84a4b00a076.jpg b/parse/train/S1l2IyrYPr/images/a91519f5c203062afd71c2bf0085c411cb97dd25d17b31553e78b84a4b00a076.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cdb5f51c923c0b49d5cdb1f16859c07a90149f09 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/a91519f5c203062afd71c2bf0085c411cb97dd25d17b31553e78b84a4b00a076.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ee78bfd886621cb6e1684b5d5ffb865a7db067aefded5088cc720e02558877 +size 7733 diff --git a/parse/train/S1l2IyrYPr/images/d62897551bcf1199d432fbe3a6b91f8b1da7bce2f1c8d21da043d078d128aacd.jpg b/parse/train/S1l2IyrYPr/images/d62897551bcf1199d432fbe3a6b91f8b1da7bce2f1c8d21da043d078d128aacd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f0415c630606aecd76d04f2d669c59fae722536 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/d62897551bcf1199d432fbe3a6b91f8b1da7bce2f1c8d21da043d078d128aacd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4b71612df4ac506026471b9cd98cc3532cfbd1f9d6a15e44919d81806326caf +size 17250 diff --git a/parse/train/S1l2IyrYPr/images/d89a5f5269a8fac7c36169a453dd5c6d1cf299525db531fcf24080a3ec705928.jpg b/parse/train/S1l2IyrYPr/images/d89a5f5269a8fac7c36169a453dd5c6d1cf299525db531fcf24080a3ec705928.jpg new file mode 100644 index 0000000000000000000000000000000000000000..903e8026b824c59223a852bf038d4d04d4e6cf68 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/d89a5f5269a8fac7c36169a453dd5c6d1cf299525db531fcf24080a3ec705928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abcb84b188c0acd7f0fc2cd87cb60e292b9e9d82f32fac9be6beca2a0f4748c9 +size 39104 diff --git a/parse/train/S1l2IyrYPr/images/ebc7c3380117073e1416188d2db42cf0b20c294c1d172e17c860e342e714255f.jpg b/parse/train/S1l2IyrYPr/images/ebc7c3380117073e1416188d2db42cf0b20c294c1d172e17c860e342e714255f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80590b201f4143b5f621c1774a118dab61e36d59 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/ebc7c3380117073e1416188d2db42cf0b20c294c1d172e17c860e342e714255f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edd456f68b20b567ef7f581a3e34f76ea43320535e7c080de1c21bc3770f1c75 +size 109585 diff --git a/parse/train/S1l2IyrYPr/images/ef58e4208135e50e2529da7361dab1c148705076f15754226703da1648b4931f.jpg b/parse/train/S1l2IyrYPr/images/ef58e4208135e50e2529da7361dab1c148705076f15754226703da1648b4931f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aae2de5676d7e65fc89fd18ef4ca0ca7af2b96a7 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/ef58e4208135e50e2529da7361dab1c148705076f15754226703da1648b4931f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ce1ad8fef798b9c512afbacf887ae3d15fec896e48e4d90602b22cc89d8e9f +size 63932 diff --git a/parse/train/S1l2IyrYPr/images/f58fe1bdaec0fb890afdee78558a6599853f7a4a1e4f8940c07d631f6712a869.jpg b/parse/train/S1l2IyrYPr/images/f58fe1bdaec0fb890afdee78558a6599853f7a4a1e4f8940c07d631f6712a869.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6be4edacaae8bce066f478ff430bbb0fd66dc31 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/f58fe1bdaec0fb890afdee78558a6599853f7a4a1e4f8940c07d631f6712a869.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37f02ec879f20cbd18aeb10510df3deea18eab21c9ff66d3ed57e67f9ae24bab +size 8638 diff --git a/parse/train/S1l2IyrYPr/images/f811089da424945054b4af1a613f282af7893a491cb3f83bedc49ca8a9bbffe1.jpg b/parse/train/S1l2IyrYPr/images/f811089da424945054b4af1a613f282af7893a491cb3f83bedc49ca8a9bbffe1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27ade518a21db1be685bf2006434125b6eda61e2 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/f811089da424945054b4af1a613f282af7893a491cb3f83bedc49ca8a9bbffe1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ac85a093fb9295d9ef8b21c74b0ff088e218b151eb853218c57f32e17938a23 +size 5731 diff --git a/parse/train/S1l2IyrYPr/images/ff0bfff915fc213be6e9c3667a28316b210f31a09bbd45a03b9659a8dc8c458f.jpg b/parse/train/S1l2IyrYPr/images/ff0bfff915fc213be6e9c3667a28316b210f31a09bbd45a03b9659a8dc8c458f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4b4ca3fb27597a643ac1a9a479b327b2c676744 --- /dev/null +++ b/parse/train/S1l2IyrYPr/images/ff0bfff915fc213be6e9c3667a28316b210f31a09bbd45a03b9659a8dc8c458f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f67bd52a698b56e7b4a9cd774a7a646931ba5961711cd1d7cae111cf0b88ce23 +size 6786 diff --git a/parse/train/S1sqHMZCb/images/3709a850e281bcae1eeed9ee523b904fff989358725e2076c690a230315f97b0.jpg b/parse/train/S1sqHMZCb/images/3709a850e281bcae1eeed9ee523b904fff989358725e2076c690a230315f97b0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a13b591bda41c3edbbe2b69a338d3ebc5ccab485 --- /dev/null +++ b/parse/train/S1sqHMZCb/images/3709a850e281bcae1eeed9ee523b904fff989358725e2076c690a230315f97b0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5098e2dbd7b44df1907b390fd97db299aae76d04512d90cd1b954689442e303c +size 56099 diff --git a/parse/train/S1sqHMZCb/images/652d63005f4eea342561cb0a44ebd4dd31b388fd4be3b385a751118a06287c04.jpg b/parse/train/S1sqHMZCb/images/652d63005f4eea342561cb0a44ebd4dd31b388fd4be3b385a751118a06287c04.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef308a5bb3d07c39cf97b3aa65cce8f595a1a60d --- /dev/null +++ b/parse/train/S1sqHMZCb/images/652d63005f4eea342561cb0a44ebd4dd31b388fd4be3b385a751118a06287c04.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e1e911453564adf77a92bf8c53d833fd6b4712362f4b4d7c7697c2025066d3c +size 73746 diff --git a/parse/train/S1sqHMZCb/images/670ab56a6ac4211ba1a235ac8454c4b3f3398ff13994de22b67b272be84cc5d7.jpg b/parse/train/S1sqHMZCb/images/670ab56a6ac4211ba1a235ac8454c4b3f3398ff13994de22b67b272be84cc5d7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3f342e5fe7188717f307147c721898a560f80e5 --- /dev/null +++ b/parse/train/S1sqHMZCb/images/670ab56a6ac4211ba1a235ac8454c4b3f3398ff13994de22b67b272be84cc5d7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85debdb85fa8ccdc3934314ac594ca5f46241962449cd42f53bb4e23b1450c97 +size 36708 diff --git a/parse/train/S1sqHMZCb/images/75955e4c44eb72c36a84acb11321fa2796dcfc7110c692596195fe9c0701f3c7.jpg b/parse/train/S1sqHMZCb/images/75955e4c44eb72c36a84acb11321fa2796dcfc7110c692596195fe9c0701f3c7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c45a2558e0fc98919ab4eab602529978286dcf5 --- /dev/null +++ b/parse/train/S1sqHMZCb/images/75955e4c44eb72c36a84acb11321fa2796dcfc7110c692596195fe9c0701f3c7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39bb21ee5229ed2454bb2db7183190bd5903ec134fbffb41246960a93b3bded8 +size 94766 diff --git a/parse/train/S1sqHMZCb/images/84ea5296a5d035d9829cab325bf3532db657dcf4811e266ee0b813b65808af7f.jpg b/parse/train/S1sqHMZCb/images/84ea5296a5d035d9829cab325bf3532db657dcf4811e266ee0b813b65808af7f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f0b15574c6df1a9f4fde6fbfbe68bcf5d091003 --- /dev/null +++ b/parse/train/S1sqHMZCb/images/84ea5296a5d035d9829cab325bf3532db657dcf4811e266ee0b813b65808af7f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5045e2ef14064d50efbba3f83dd1718db7b963226001a26164f31966d2a30d +size 32895 diff --git a/parse/train/S1sqHMZCb/images/c1ca0583550ae71a4838cf1240500c3fb1ccac16546004d7251de3096fd83fd4.jpg b/parse/train/S1sqHMZCb/images/c1ca0583550ae71a4838cf1240500c3fb1ccac16546004d7251de3096fd83fd4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e7afffa7b478706cd4a225edb3ce2ffb36b365c --- /dev/null +++ b/parse/train/S1sqHMZCb/images/c1ca0583550ae71a4838cf1240500c3fb1ccac16546004d7251de3096fd83fd4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f14b631cd068318500dca7283b99035c0f5f821e61c41cd5732eefe09b5f32a +size 2672 diff --git a/parse/train/S1sqHMZCb/images/d8dcb57eac4cd1d7463487642c75c2932c5bdd93450154d9ad19f794116027ac.jpg b/parse/train/S1sqHMZCb/images/d8dcb57eac4cd1d7463487642c75c2932c5bdd93450154d9ad19f794116027ac.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd24d0a37547ac0c129faad2be037dda2177ebca --- /dev/null +++ b/parse/train/S1sqHMZCb/images/d8dcb57eac4cd1d7463487642c75c2932c5bdd93450154d9ad19f794116027ac.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9063d5271c85cbf4a45561beb6370e4f29d5eaed24c79feb51284942b0a8f1ac +size 8821 diff --git a/parse/train/S1sqHMZCb/images/dd9260e1ab2daad1bfcea3b6f8621cfccf78d2760864779b625029b35c1995e4.jpg b/parse/train/S1sqHMZCb/images/dd9260e1ab2daad1bfcea3b6f8621cfccf78d2760864779b625029b35c1995e4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a81379708258887ffbf47d5fdb7e5de562814a6 --- /dev/null +++ b/parse/train/S1sqHMZCb/images/dd9260e1ab2daad1bfcea3b6f8621cfccf78d2760864779b625029b35c1995e4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f615be981f462813c060607e8063c0822b62995fa0fd5047ea9149718c03e7f +size 11449 diff --git a/parse/train/SJA7xfb0b/SJA7xfb0b.md b/parse/train/SJA7xfb0b/SJA7xfb0b.md new file mode 100644 index 0000000000000000000000000000000000000000..474f788df6fc857766da92d4ce880c0acf5e85ca --- /dev/null +++ b/parse/train/SJA7xfb0b/SJA7xfb0b.md @@ -0,0 +1,884 @@ +# SOBOLEV GAN + +Youssef Mroueh†, Chun-Liang $\mathbf { L i } ^ { \circ , \star }$ , Tom Sercu†,?, Anant Raj♦,? & Yu Cheng† + +$\dagger$ IBM Research AI +$\circ$ Carnegie Mellon University +$\diamondsuit$ Max Planck Institute for Intelligent Systems +$\star$ denotes Equal Contribution +mroueh,chengyu @us.ibm.com, chunlial@cs.cmu.edu, +tom.sercu1@ibm.com,anant.raj@tuebingen.mpg.de + +# ABSTRACT + +We propose a new Integral Probability Metric (IPM) between distributions: the Sobolev IPM. The Sobolev IPM compares the mean discrepancy of two distributions for functions (critic) restricted to a Sobolev ball defined with respect to a dominant measure $\mu$ . We show that the Sobolev IPM compares two distributions in high dimensions based on weighted conditional Cumulative Distribution Functions (CDF) of each coordinate on a leave one out basis. The Dominant measure $\mu$ plays a crucial role as it defines the support on which conditional CDFs are compared. Sobolev IPM can be seen as an extension of the one dimensional VonMises Cramer statistics to high dimensional distributions. We show how Sobolev ´ IPM can be used to train Generative Adversarial Networks (GANs). We then exploit the intrinsic conditioning implied by Sobolev IPM in text generation. Finally we show that a variant of Sobolev GAN achieves competitive results in semisupervised learning on CIFAR-10, thanks to the smoothness enforced on the critic by Sobolev GAN which relates to Laplacian regularization. + +# 1 INTRODUCTION + +In order to learn Generative Adversarial Networks (Goodfellow et al., 2014), it is now well established that the generator should mimic the distribution of real data, in the sense of a certain discrepancy measure. Discrepancies between distributions that measure the goodness of the fit of the neural generator to the real data distribution has been the subject of many recent studies (Arjovsky & Bottou, 2017; Nowozin et al., 2016; Kaae Sønderby et al., 2017; Mao et al., 2017; Arjovsky et al., 2017; Gulrajani et al., 2017; Mroueh et al., 2017; Mroueh & Sercu, 2017; Li et al., 2017), most of which focus on training stability. + +In terms of data modalities, most success was booked in plausible natural image generation after the introduction of Deep Convolutional Generative Adversarial Networks (DCGAN) (Radford et al., 2015). This success is not only due to advances in training generative adversarial networks in terms of loss functions (Arjovsky et al., 2017) and stable algorithms, but also to the representation power of convolutional neural networks in modeling images and in finding sufficient statistics that capture the continuous density function of natural images. When moving to neural generators of discrete sequences generative adversarial networks theory and practice are still not very well understood. Maximum likelihood pre-training or augmentation, in conjunction with the use of reinforcement learning techniques were proposed in many recent works for training GAN for discrete sequences generation (Yu et al., 2016; Che et al., 2017; Hjelm et al., 2017; Rajeswar et al., 2017). Other methods included using the Gumbel Softmax trick (Kusner & Hernandez-Lobato ´ , 2016) and the use of auto-encoders to generate adversarially discrete sequences from a continuous space (Zhao et al., 2017). End to end training of GANs for discrete sequence generation is still an open problem (Press et al., 2017). Empirical successes of end to end training have been reported within the framework of WGAN-GP (Gulrajani et al., 2017), using a proxy for the Wasserstein distance via a pointwise gradient penalty on the critic. Inspired by this success, we propose in this paper a new Integral Probability Metric (IPM) between distributions that we coin Sobolev IPM. Intuitively an IPM (Muller ¨ , 1997) between two probability distributions looks for a witness function $f$ , called critic, that maximally discriminates between samples coming from the two distributions: + +$$ +\operatorname* { s u p } _ { f \in \mathcal { F } } \mathbb { E } _ { x \sim \mathbb { P } } f ( x ) - \mathbb { E } _ { x \sim \mathbb { Q } } f ( x ) . +$$ + +Traditionally, the function $f$ is defined over a function class $\mathcal { F }$ that is independent to the distributions at hand (Sriperumbudur et al., 2012). The Wasserstein-1 distance corresponds for instance to an IPM where the witness functions are defined over the space of Lipschitz functions; The MMD distance (Gretton et al., 2012) corresponds to witness functions defined over a ball in a Reproducing Kernel Hilbert Space (RKHS). + +We will revisit in this paper Fisher IPM defined in (Mroueh & Sercu, 2017), which extends the IPM definition to function classes defined with norms that depend on the distributions. Fisher IPM can be seen as restricting the critic to a Lebsegue ball defined with respect to a dominant measure $\mu$ . The Lebsegue norm is defined as follows: + +$$ +\int _ { \mathcal { X } } f ^ { 2 } ( x ) \mu ( x ) d x . +$$ + +where $\mu$ is a dominant measure of $\mathbb { P }$ and $\mathbb { Q }$ + +In this paper we extend the IPM framework to critics bounded in the Sobolev norm: + +$$ +\int _ { \mathcal { X } } \| \nabla _ { \boldsymbol { x } } f ( \boldsymbol { x } ) \| _ { 2 } ^ { 2 } \mu ( \boldsymbol { x } ) d x , +$$ + +In contrast to Fisher IPM, which compares joint probability density functions of all coordinates between two distributions, we will show that Sobolev IPM compares weighted (coordinate-wise) conditional Cumulative Distribution Functions for all coordinates on a leave on out basis. Matching conditional dependencies between coordinates is crucial for sequence modeling. + +Our analysis and empirical verification show that the modeling of the conditional dependencies can be built in to the metric used to learn GANs as in Sobolev IPM. For instance, this gives an advantage to Sobolev IPM in comparing sequences over Fisher IPM. Nevertheless, in sequence modeling when we parametrize the critic and the generator with a neural network, we find an interesting tradeoff between the metric used and the architectures used to parametrize the critic and the generator as well as the conditioning used in the generator. The burden of modeling the conditional long term dependencies can be handled by the IPM loss function as in Sobolev IPM (more accurately the choice of the data dependent function class of the critic) or by a simpler metric such as Fisher IPM together with a powerful architecture for the critic that models conditional long term dependencies such as LSTM or GRUs in conjunction with a curriculum conditioning of the generator as done in (Press et al., 2017). Highlighting those interesting tradeoffs between metrics, data dependent functions classes for the critic (Fisher or Sobolev) and architectures is crucial to advance sequence modeling and more broadly structured data generation using GANs. + +On the other hand, Sobolev norms have been widely used in manifold regularization in the so called Laplacian framework for semi-supervised learning (SSL) (Belkin et al., 2006). GANs have shown success in semi-supervised learning (Salimans et al., 2016; Dumoulin et al., 2017; Dai et al., 2017; Kumar et al., 2017). Nevertheless, many normalizations and additional tricks were needed. We show in this paper that a variant of Sobolev GAN achieves strong results in semi-supervised learning on CIFAR-10, without the need of any activation normalization in the critic. + +The main contributions of this paper can be summarized as follows: + +1. We overview in Section 2 different metrics between distribution used in the GAN literature. We then generalize Fisher IPM in Section 3 with a general dominant measure $\mu$ and show how it compares distributions based on their PDFs. 2. We introduce Sobolev IPM in Section 4 by restricting the critic of an IPM to a Sobolev ball defined with respect to a dominant measure $\mu$ . We then show that Sobolev IPM defines a discrepancy between weighted (coordinate-wise) conditional CDFs of distributions. + +3. The intrinsic conditioning and the CDF matching make Sobolev IPM suitable for discrete sequence matching and explain the success of the gradient pernalty in WGAN-GP and Sobolev GAN in discrete sequence generation. +4. We give in Section 5 an ALM (Augmented Lagrangian Multiplier) algorithm for training Sobolev GAN. Similar to Fisher GAN, this algorithm is stable and does not compromise the capacity of the critic. +5. We show in Appendix A that the critic of Sobolev IPM satisfies an elliptic Partial Differential Equation (PDE). We relate this diffusion to the Fokker-Planck equation and show the behavior of the gradient of the optimal Sobolev critic as a transportation plan between distributions. +6. We empirically study Sobolev GAN in character level text generation (Section 6.1). We validate that the conditioning implied by Sobolev GAN is crucial for the success and stability of GAN in text generation. As a take home message from this study, we see that text generation succeeds either by implicit conditioning i.e using Sobolev GAN (or WGANGP) together with convolutional critics and generators, or by explicit conditioning i.e using Fisher IPM together with recurrent critic and generator and curriculum learning. +7. We finally show in Section 6.2 that a variant of Sobolev GAN achieves competitive semisupervised learning results on CIFAR-10, thanks to the smoothness implied by the Sobolev regularizer. + +# 2 OVERVIEW OF METRICS BETWEEN DISTRIBUTIONS + +In this Section, we review different representations of probability distributions and metrics for comparing distributions that use those representations. Those metrics are at the core of training GAN. In what follows, we consider probability measures with a positive weakly differentiable probability density functions (PDF). Let $P$ and $Q$ be two probability measures with PDFs $\mathbb { P } ( x )$ and $\mathbb { Q } ( x )$ defined on $\mathcal { X } \subset \mathbb { R } ^ { d }$ . Let $F _ { \mathbb { P } }$ and $F _ { \mathbb { Q } }$ be the Cumulative Distribution Functions (CDF) of $\mathbb { P }$ and $\mathbb { Q }$ respectively. For $\boldsymbol { x } = ( x _ { 1 } , \dots , x _ { d } )$ , we have: + +$$ +F _ { \mathbb { P } } ( x ) = \int _ { - \infty } ^ { x _ { 1 } } \ldots \cdot \cdot \int _ { - \infty } ^ { x _ { d } } \mathbb { P } ( u _ { 1 } , \ldots \cdot u _ { d } ) d u _ { 1 } \ldots \cdot \cdot d u _ { d } . +$$ + +The score function of a density function is defined as: $s _ { \mathbb { P } } ( x ) = \nabla _ { x } \log ( \mathbb { P } ( x ) ) \in \mathbb { R } ^ { d }$ . + +In this work, we are interested in metrics between distributions that have a variational form and can be written as a suprema of mean discrepancies of functions defined on a specific function class. This type of metrics include $\varphi$ -divergences as well as Integral Probability Metrics (Sriperumbudur et al., 2009) and have the following form: + +$$ +d _ { \mathcal { F } } ( \mathbb { P } , \mathbb { Q } ) = \operatorname* { s u p } _ { f \in \mathcal { F } } \left| \Delta ( f ; \mathbb { P } , \mathbb { Q } ) \right| , +$$ + +where $\mathcal { F }$ is a function class defined on $\mathcal { X }$ and $\Delta$ is a mean discrepancy, $\Delta : \mathcal { F } \mathbb { R }$ . The variational form given above leads in certain cases to closed form expressions in terms of the PDFs $\mathbb { P } , \mathbb { Q }$ or in terms of the CDFs $F _ { \mathbb { P } } , F _ { \mathbb { Q } }$ or the score functions $s _ { \mathbb { P } } , s _ { \mathbb { Q } }$ . + +In Table 1, we give a comparison of different discrepancies $\Delta$ and function spaces $\mathcal { F }$ used in the literature for GAN training together with our proposed Sobolev IPM. We see from Table 1 that Sobolev IPM, compared to Wasserstein Distance, imposes a tractable smoothness constraint on the critic on points sampled from a distribution $\mu$ , rather then imposing a Lipschitz constraint on all points in the space $\mathcal { X }$ . We also see that Sobolev IPM is the natural generalization of the Cramer´ Von-Mises Distance from one dimension to high dimensions. We note that the Energy Distance, a form of Maximum Mean Discrepancy for a special kernel, was used in (Bellemare et al., 2017b) as a generalization of the Cramer distance in GAN training but still needed a gradient penalty in ´ its algorithmic counterpart leading to a mis-specified distance between distributions. Finally it is worth noting that when comparing Fisher IPM and Sobolev IPM we see that while Fisher IPM compares joint PDF of the distributions, Sobolev IPM compares weighted (coordinate-wise) conditional CDFs. As we will see later, this conditioning nature of the metric makes Sobolev IPM suitable for comparing sequences. Note that the Stein metric (Liu et al., 2016; Liu, 2017) uses the score function to match distributions. We will show later how Sobolev IPM relates to the Stein discrepancy (Appendix A). + +Table 1: Comparison of different metrics between distributions used for GAN training. References are for papers using those metrics for GAN training. + +
△(f;P,Q)FFunction classdg(P,Q)Closed Form
-Divergence(Goodfellow et al., 2014)(Nowozin et al., 2016)Ex~Pf(x)-Ex~Q*(f(x))*Fenchel Conjugate{f:x→R,f∈domp*}E~[(]
Wasserstein -1(Arjovsky et al., 2017)(Gulrajani et al., 2017)Ex~Pf(x)-Ex~qf(x){f : x→R,fli ≤1}infπ∈(P,Q) Sx |lx-ylli dπ(x,y)Sinkhorn Divergence(Genevay et al., 2017)
MMD(Li et al., 2017)(Li et al., 2015)(Dziugaite et al., 2015)Ex~Pf(x)-Ex~qf(x){f:x→R,/fl/x ≤1}Ex~Pkx -Ex~Qr llyex
SteinDiscrepancy(Wang & Liu, 2016)Ex~Q[T(P)f(x)]T(P)=(Vxlog(P(x))T+Vx.{f:x→Rdf smooth with zeroboundary conditionNA in generalhas a closed formin RKHS
Cramerfor d =1(Bellemare et al., 2017a)Ex~Pf(x)-Ex~Qf(x){f:x→R,Ea~P()²≤1,f smooth with zeroboundary conditionEx~P(Fp(2)-F0())²P(x)xER
μ-FisherIPM(Mroueh & Sercu,2017)Ex~Pf(x)-Ex~Qf(x){f:X→R,f∈L(x,μ),Ex~μf²(x)≤1}Ex~u(P()-Q(x))²2μ(x)
μ-SobolevIPM(This work)Ex~Pf(x)-Ex~qf(x){f:X→R,f eW²(x,μ),Ex~μ|/Vxf(x)²≤1,with zero boundary condition }1VE~u∑i-((中i(P)-Φi(Q)μ(x)where 𝜙(P) =Px-i(x-i)FP[xx-i-ij(mi)x−=(x1,..xi-1,Ti+1,..d)
+ +# 3 GENERALIZING FISHER IPM: PDF COMPARISON + +Imposing data-independent constraints on the function class in the IPM framework, such as the Lipschitz constraint in the Wasserstein distance is computationally challenging and intractable for the general case. In this Section, we generalize the Fisher IPM introduced in (Mroueh & Sercu, 2017), where the function class is relaxed to a tractable data dependent constraint on the second order moment of the critic, in other words the critic is constrained to be in a Lebsegue ball. + +Fisher IPM. Let $\mathcal { X } \subset \mathbb { R } ^ { d }$ and $\mathcal { P } ( \mathcal { X } )$ be the space of distributions defined on $\mathcal { X }$ . Let $\mathbb { P } , \mathbb { Q } \in$ $\mathcal { P } ( \mathcal { X } )$ , and $\mu$ be a dominant measure of $\mathbb { P }$ and $\mathbb { Q }$ , in the sense that + +$$ +\mu ( x ) = 0 \implies \mathbb { P } ( x ) = 0 { \mathrm { ~ a n d } } \mathbb { Q } ( x ) = 0 . +$$ + +We assume $\mu$ to be also a distribution in $\mathcal { P } ( \mathcal { X } )$ , and assume $\pmb { \mu } ( \pmb { x } ) > \mathbf { 0 } , \forall \pmb { x } \in \mathcal { X }$ . Let $\mathcal { L } _ { 2 } ( \mathcal { X } , \mu )$ be the space of $\mu$ -measurable functions. For $f , g \in \mathcal { L } _ { 2 } ( \mathcal { X } , \mu )$ , we define the following dot product and its corresponding norm: + +$$ +\langle f , g \rangle _ { \mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) } = \int _ { \mathcal { X } } f ( x ) g ( x ) \mu ( x ) d x , \| f \| _ { \mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) } = \sqrt { \int _ { \mathcal { X } } f ^ { 2 } ( x ) \mu ( x ) d x } . +$$ + +Note that $\mathcal { L } _ { 2 } ( \mathcal { X } , \mu )$ , can be formally defined as follows: + +$$ +\mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) = \{ f : \mathcal { X } \to \mathbb { R } \mathrm { s . t } \ \| f \| _ { \mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) } < \infty \} . +$$ + +We define the unit Lebesgue ball as follows: + +$$ +\begin{array} { r } { \mathbb { B } _ { 2 } ( \mathcal { X } , \mu ) = \{ f \in \mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) , \| f \| _ { \mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) } \leq 1 \} . } \end{array} +$$ + +Fisher IPM defined in (Mroueh & Sercu, 2017), searches for the critic function in the Lebesgue Ball $\mathbb { B } _ { 2 } ( \mathcal { X } , \mu )$ that maximizes the mean discrepancy between $\mathbb { P }$ and $\mathbb { Q }$ . Fisher GAN (Mroueh & Sercu, 2017) was originally formulated specifically for $\begin{array} { r } { \mu = \frac 1 2 ( { \mathbb P } + { \mathbb Q } ) } \end{array}$ . We consider here a general $\mu$ as long as it dominates $\mathbb { P }$ and $\mathbb { Q }$ . We define Generalized Fisher IPM as follows: + +$$ +\mathcal { F } _ { \mu } ( \mathbb { P } , \mathbb { Q } ) = \operatorname* { s u p } _ { f \in \mathbb { B } _ { 2 } ( \mathcal { X } , \mu ) } \mathbb { E } _ { x \sim \mathbb { P } } f ( x ) - \mathbb { E } _ { x \sim \mathbb { Q } } f ( x ) +$$ + +Note that: + +$$ +\mathbb { E } _ { x \sim \mathbb { P } } f ( x ) - \mathbb { E } _ { x \sim \mathbb { Q } } f ( x ) = \left. f , { \frac { \mathbb { P } - \mathbb { Q } } { \mu } } \right. _ { { \mathcal { L } } _ { 2 } ( \mathcal { X } , \mu ) } . +$$ + +Hence Fisher IPM can be written as follows: + +$$ +\mathcal { F } _ { \mu } ( \mathbb { P } , \mathbb { Q } ) = \operatorname* { s u p } _ { f \in \mathbb { B } _ { 2 } ( \mathcal { X } , \mu ) } \left. f , \frac { \mathbb { P } - \mathbb { Q } } { \mu } \right. _ { \mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) } +$$ + +We have the following result: + +Theorem 1 (Generalized Fisher IPM). The Fisher distance and the optimal critic are as follows: + +1. The Fisher distance is given by: + +$$ +\mathcal { F } _ { \mu } ( \mathbb { P } , \mathbb { Q } ) = \left\| \frac { \mathbb { P } - \mathbb { Q } } { \mu } \right\| _ { \mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) } = \sqrt { \mathbb { E } _ { \boldsymbol { x } \sim \mu } \left( \frac { \mathbb { P } ( \boldsymbol { x } ) - \mathbb { Q } ( \boldsymbol { x } ) } { \mu ( \boldsymbol { x } ) } \right) ^ { 2 } } . +$$ + +2. The optimal $f _ { \chi }$ achieving the Fisher distance $\mathcal { F } _ { \mu } ( \mathbb { P } , \mathbb { Q } )$ is: + +Proof of Theorem 1. From Equation (2), the optimal $f _ { \chi }$ belong to the intersection of the hyperplane that has normal $n ~ = ~ \textstyle \frac { \mathbb { P } - \mathbb { Q } } { \mu }$ and the ball B2(X , µ), hence fχ = $\begin{array} { r } { f _ { \chi } = \frac { n ^ { \cdot } } { \| n \| _ { \mathcal { L } _ { 2 } ( \chi , \mu ) } } } \end{array}$ Hence $\mathcal { F } ( \mathbb { P } , \mathbb { Q } ) = \| n \| _ { \mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) } .$ □ + +![](images/39105c967ba0488a4607950203039a45c6b2ef8745052cceb191e400af567c21.jpg) + +We see from Theorem 1 the role of the dominant measure $\mu$ : the optimal critic is defined with respect to this measure and the overall Fisher distance can be seen as an average weighted distance between probability density functions, where the average is taken on points sampled from $\mu$ . We give here some choices of $\mu$ : + +1. For $\begin{array} { r } { \mu = \frac 1 2 ( { \mathbb P } + { \mathbb Q } ) } \end{array}$ , we obtain the symmetric chi-squared distance as defined in (Mroueh & Sercu, 2017). +2. $\mu _ { G P }$ , the implicit distribution defined by the interpolation lines between $\mathbb { P } _ { r }$ and $\mathbb { Q } _ { \theta }$ as in (Gulrajani et al., 2017). +3. When $\mu$ does not dominate $\mathbb { P }$ , and $\mathbb { Q }$ , we obtain a non symmetric divergence. For example for $\mu = \mathbb { P }$ , $\begin{array} { r } { \mathcal { F } _ { \mathbb { P } } ^ { 2 } ( \mathbb { P } , \mathbb { Q } ) = \int _ { \mathcal { X } } \frac { ( \mathbb { P } ( x ) - \mathbb { Q } ( x ) ) ^ { 2 } } { \mathbb { P } ( x ) } d x } \end{array}$ (P(x)−Q(x))2P(x) dx. We see here that for this particular choice we obtain the Pearson divergence. + +# 4 SOBOLEV IPM + +In this Section, we introduce the Sobolev IPM. In a nutshell, the Sobolev IPM constrains the critic function to belong to a ball in the restricted Sobolev Space. In other words we constrain the norm of the gradient of the critic $\nabla _ { x } f ( x )$ . We will show that by moving from a Lebesgue constraint as in Fisher IPM to a Sobolev constraint as in Sobolev IPM, the metric changes from a joint PDF matching to weighted (ccordinate-wise) conditional CDFs matching. The intrinsic conditioning built in to the Sobolev IPM and the comparison of cumulative distributions makes Sobolev IPM suitable for comparing discrete sequences. + +# 4.1 DEFINITION AND EXPRESSION OF SOBOLEV IPM IN TERMS OF COORDINATE CONDITIONAL CDFS + +We will start by recalling some definitions on Sobolev Spaces. We assume in the following that $\mathcal { X }$ is compact and consider functions in the Sobolev space $\mathring { W } ^ { 1 , 2 } ( \mathcal { X } , \mu )$ : + +$$ +W ^ { 1 , 2 } ( \mathcal { X } , \mu ) = \left\{ f : \mathcal { X } \to \mathbb { R } , \int _ { \mathcal { X } } \left. \nabla _ { x } f ( x ) \right. ^ { 2 } \mu ( x ) d x < \infty \right\} , +$$ + +We restrict ourselves to functions in $W ^ { 1 , 2 } ( \mathcal { X } , \mu )$ vanishing at the boundary, and note this space $W _ { 0 } ^ { 1 , 2 } ( \mathcal { X } , \mu )$ . Note that in this case: + +$$ +\| f \| _ { W _ { 0 } ^ { 1 , 2 } ( \mathcal { X } , \mu ) } = \sqrt { \int _ { \mathcal { X } } \| \nabla _ { x } f ( x ) \| ^ { 2 } \mu ( x ) d x } +$$ + +defines a semi-norm. We can similarly define a dot product in $W _ { 0 } ^ { 1 , 2 } ( \mathcal { X } , \mu )$ , for $f , g \in W _ { 0 } ^ { 1 , 2 } ( \mathcal { X } , \mu )$ : + +$$ +\langle f , g \rangle _ { W _ { 0 } ^ { 1 , 2 } ( \mathcal { X } , \mu ) } = \int _ { \mathcal { X } } \langle \nabla _ { x } f ( x ) , \nabla _ { x } g ( x ) \rangle _ { \mathbb { R } ^ { d } } \mu ( x ) d x . +$$ + +Hence we define the following Sobolev IPM, by restricting the critic of the mean discrepancy to the Sobolev unit ball : + +$$ +\mathcal { S } _ { \boldsymbol { \mu } } ( \mathbb { P } , \mathbb { Q } ) = \operatorname* { s u p } _ { \substack { f \in W _ { 0 } ^ { 1 , 2 } , \| f \| _ { W _ { 0 } ^ { 1 , 2 } ( \mathcal { X } , \boldsymbol { \mu } ) } \leq 1 } } \bigg \{ \mathbb { E } _ { \boldsymbol { x } \sim \mathbb { P } } f ( \boldsymbol { x } ) - \mathbb { E } _ { \boldsymbol { x } \sim \mathbb { Q } } f ( \boldsymbol { x } ) \bigg \} . +$$ + +When compared to the Wasserstein distance, the Sobolev IPM given in Equation (3) uses a data dependent gradient constraint (depends on $\mu$ ) rather than a data independent Lipchitz constraint. Let $F _ { \mathbb { P } }$ and $F _ { \mathbb { Q } }$ be the cumulative distribution functions of $\mathbb { P }$ and $\mathbb { Q }$ respectively. We have: + +$$ +\mathbb { P } ( x ) = \frac { \partial ^ { d } } { \partial x _ { 1 } \hdots \partial x _ { d } } F _ { \mathbb { P } } ( x ) , +$$ + +and we define + +$$ +D ^ { - i } = \frac { \partial ^ { d - 1 } } { \partial x _ { 1 } \dots \partial x _ { i - 1 } \partial x _ { i + 1 } \dots \partial x _ { d } } , \mathrm { f o r } i = 1 \dots d . +$$ + +$D ^ { - i }$ computes the $( d - 1 )$ high-order partial derivative excluding the variable $i$ + +Our main result is presented in Theorem 2. Additional theoretical results are given in Appendix A. +All proofs are given in Appendix B. + +Theorem 2 (Sobolev IPM). Assume that $F _ { \mathbb { P } }$ , and $F _ { \mathbb { Q } }$ and its d derivatives exist and are continuous: $F _ { \mathbb { P } }$ and $F _ { \mathbb { Q } } \in C ^ { d } ( \mathcal { X } )$ . Define the differential operator $D ^ { - }$ : + +$$ +D ^ { - } = ( D ^ { - 1 } , \ldots D ^ { - d } ) . +$$ + +$$ +x = ( x _ { 1 } , \ldots x _ { i - 1 } , x _ { i } , x _ { i + 1 } , \ldots x _ { d } ) , l e t x ^ { - i } = ( x _ { 1 } , \ldots x _ { i - 1 } , x _ { i + 1 } , \ldots x _ { d } ) . +$$ + +The Sobolev IPM given in Equation (3) has the following equivalent forms: + +1. Sobolev IPM as comparison of high order partial derivatives of CDFs. The Sobolev IPM has the following form: + +$$ +S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) = \frac { 1 } { d } \sqrt { \int _ { \mathcal { X } } \frac { \sum _ { i = 1 } ^ { d } ( D ^ { - i } F _ { \mathbb { P } } ( x ) - D ^ { - i } F _ { \mathbb { Q } } ( x ) ) ^ { 2 } } { \mu ( x ) } d x } . +$$ + +2. Sobolev IPM as comparison of weighted (coordinate-wise) conditional CDFs. The Sobolev IPM can be written in the following equivalent form: + +$$ +S _ { \mu } ^ { 2 } ( { \mathbb { P } } , { \mathbb { Q } } ) = \frac { 1 } { d ^ { 2 } } { \mathbb { E } } _ { x \sim \mu } \sum _ { i = 1 } ^ { d } \left( \frac { { \mathbb { P } } _ { X ^ { - i } } ( x ^ { - i } ) F _ { { \mathbb { P } } _ { [ X _ { i } ] X ^ { - i } = x ^ { - i } ] } } ( x _ { i } ) - { \mathbb { Q } } _ { X ^ { - i } } ( x ^ { - i } ) F _ { { \mathbb { Q } } _ { [ X _ { i } ] X ^ { - i } = x ^ { - i } ] } } ( x _ { i } ) } { \mu ( x ) } \right) ^ { 2 } . +$$ + +3. The optimal critic $f ^ { * }$ satisfies the following identity: + +$$ +\nabla _ { x } f ^ { * } ( x ) = \frac { 1 } { d S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) } \frac { D ^ { - } F _ { \mathbb { Q } } ( x ) - D ^ { - } F _ { \mathbb { P } } ( x ) } { \mu ( x ) } , \mu - a l m o s t s u r e l y . +$$ + +Sobolev IPM Approximation. Learning in the whole Sobolev space $W _ { 0 } ^ { 1 , 2 }$ is challenging hence we need to restrict our function class to a hypothesis class , such as neural networks. We assume in the following that functions in $\mathcal { H }$ vanish on the boundary of $\mathcal { X }$ , and restrict the optimization to the function space $\mathcal { H }$ . $\mathcal { H }$ can be a Reproducing Kernel Hilbert Space as in the MMD case or parametrized by a neural network. Define the Sobolev IPM approximation in $\mathcal { H }$ : + +$$ +\mathcal { S } _ { \mathcal { H } , \mu } ( \mathbb { P } , \mathbb { Q } ) = \operatorname* { s u p } _ { \substack { f \in \mathcal { H } , \| f \| _ { W _ { 0 } ^ { 1 , 2 } } \leq 1 } } \left\{ \mathbb { E } _ { x \sim \mathbb { P } } f ( x ) - \mathbb { E } _ { x \sim \mathbb { Q } } f ( x ) \right\} +$$ + +The following Lemma shows that the Sobolev IPM approximation in $\mathcal { H }$ is proportional to Sobolev IPM. The tightness of the approximation of the Sobolev IPM is governed by the tightness of the approximation of the optimal Sobolev Critic $f ^ { * }$ in $\mathcal { H }$ . This approximation is measured in the Sobolev sense, using the Sobolev dot product. + +Lemma 1 (Sobolev IPM Approximation in a Hypothesis Class). Let $\mathcal { H }$ be a function space with functions vanishing at the boundary. For any f ∈ H and for f ∗ the optimal critic in W 1,20 , we have: + +$$ +\mathcal { S } _ { \mathcal { H } , \mu } ( \mathbb { P } , \mathbb { Q } ) = \mathcal { S } _ { \mu } ( \mathbb { P } , \mathbb { Q } ) \operatorname* { s u p } _ { \substack { f \in \mathcal { H } , \| f \| _ { W _ { 0 } ^ { 1 , 2 } ( \chi , \mu ) } \leq 1 } } \int _ { \mathcal { X } } \left. \nabla _ { x } f ( x ) , \nabla _ { x } f ^ { * } ( x ) \right. _ { \mathbb { R } ^ { d } } \mu ( x ) d x . +$$ + +Note that this Lemma means that the Sobolev IPM is well approximated if the space $\mathcal { H }$ has an enough representation power to express $\nabla _ { x } f ^ { * } ( x )$ . This is parallel to the Fisher IPM approximation (Mroueh & Sercu, 2017) where it is shown that the Fisher IPM approximation error is proportional to the critic approximation in the Lebesgue sense. Having in mind that the gradient of the critic is the information that is passed on to the generator, we see that this convergence in the Sobolev sense to the optimal critic is an important property for GAN training. + +Relation to Fokker-Planck Diffusion. We show in Appendix A that the optimal Sobolev critic is the solution of the following elliptic PDE (with zero boundary conditions): + +$$ +\frac { \mathbb { P } - \mathbb { Q } } { S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) } = - \mathrm { d i v } ( \mu ( x ) \nabla _ { x } f ( x ) ) . +$$ + +We further link the elliptic PDE given in Equation (8) and the Fokker-Planck diffusion. As we illustrate in Figure 2(b) the gradient of the critic defines a transportation plan for moving the distribution mass from $\mathbb { Q }$ to $\mathbb { P }$ . + +Discussion of Theorem 2. We make the following remarks on Theorem 2: + +1. From Theorem 2, we see that the Sobolev IPM compares $d$ higher order partial derivatives of the cumulative distributions $F _ { \mathbb { P } }$ and $F _ { \mathbb { Q } }$ , while Fisher IPM compares the probability density functions. + +2. The dominant measure $\mu$ plays a similar role to Fisher: + +$$ +S _ { \mu } ^ { 2 } ( { \mathbb { P } } , \mathbb { Q } ) = \frac 1 { d ^ { 2 } } \sum _ { i = 1 } ^ { d } { \mathbb { E } } _ { x \sim \mu } \left( \frac { D ^ { - i } F _ { \mathbb { P } } ( x ) - D ^ { - i } F _ { \mathbb { Q } } ( x ) } { \mu ( x ) } \right) ^ { 2 } , +$$ + +the average distance is defined with respect to points sampled from $\mu$ . + +3. Comparison of coordinate-wise Conditional CDFs. We note in the following $\begin{array} { r l } { x ^ { - i } } & { { } = } \end{array}$ $( x _ { 1 } , \ldots x _ { i - 1 } , x _ { i + 1 } , \ldots x _ { d } )$ . Note that we have: + +$$ +\begin{array} { r l } & { \mathsf { P } ^ { - i } F _ { \mathbb { P } } ( x ) = \frac { \partial ^ { d - 1 } } { \partial x _ { 1 } \hdots \partial x _ { i - 1 } \partial x _ { i + 1 } \hdots \partial x _ { d } } \displaystyle \int _ { - \infty } ^ { x _ { 1 } } \hdots \int _ { - \infty } ^ { x _ { d } } \mathbb { P } ( u _ { 1 } \hdots u _ { d } ) d u _ { 1 } \hdots d u _ { d } } \\ & { \hphantom { \mathsf { P } ^ { - i } F _ { \mathbb { P } } ( x ) = } = \displaystyle \int _ { - \infty } ^ { x _ { i } } \mathbb { P } ( x _ { 1 } , \hdots , x _ { i - 1 } , u , x _ { i + 1 } , \hdots , x _ { d } ) d u } \\ & { \hphantom { \mathsf { P } ^ { - i } F _ { \mathbb { P } } ( x ) = } = \mathbb { P } _ { X ^ { - i } } ( x _ { 1 } , \hdots , x _ { i - 1 } , x _ { i + 1 } , \hdots x _ { d } ) \displaystyle \int _ { - \infty } ^ { x _ { i } } \mathbb { P } _ { [ X _ { i } | X ^ { - i } = x ^ { - i } ] } ( u | x _ { 1 } , \hdots , x _ { i - 1 } , x _ { i + 1 } , \hdots x _ { d } ) d u } \\ & { \displaystyle ( \mathrm { U s i n g ~ B a y e s ~ r u l e } ) } \\ & { \hphantom { \mathsf { P } ^ { - i } F _ { \mathbb { P } } ( x ) = } = \mathbb { P } _ { X ^ { - i } } ( x ^ { - i } ) F _ { \mathbb { P } _ { [ X _ { i } | X ^ { - i } = x ^ { - i } ] } } ( x _ { i } ) , } \end{array} +$$ + +Note that for each $i$ , $D ^ { - i } F _ { \mathbb { P } } ( x )$ is the cumulative distribution of the variable $X _ { i }$ given the other variables $X ^ { - i } = x ^ { - i }$ , weighted by the density function of $X ^ { - i }$ at $x ^ { - i }$ . This leads us to the form given in Equation 5. + +We see that the Sobolev IPM compares for each dimension $i$ the conditional cumulative distribution of each variable given the other variables, weighted by their density function. We refer to this as comparison of coordinate-wise CDFs on a leave one out basis. From this we see that we are comparing CDFs, which are better behaved on discrete distributions. Moreover, the conditioning built in to this metric will play a crucial role in comparing sequences as the conditioning is important in this context (See section 6.1). + +# 4.2 ILLUSTRATIVE EXAMPLES + +Sobolev IPM / Cramer Distance and Wasserstein-1 in one Dimension. ´ In one dimension, Sobolev IPM is the Cramer Distance (for ´ $\mu$ uniform on $\mathcal { X }$ , we note this $\mu : = 1$ ). While Sobolev IPM in one dimension measures the discrepancy between CDFs, the one dimensional Wasserstein- $p$ distance measures the discrepancy between inverse CDFs: + +$$ +S _ { \mu : = 1 } ^ { 2 } ( { \mathbb { P } } , \mathbb { Q } ) = \int _ { \chi } ( F _ { \mathbb { P } } ( x ) - F _ { \mathbb { Q } } ( x ) ) ^ { 2 } d x { \mathrm { ~ v e r s u s ~ } } W _ { p } ^ { p } ( { \mathbb { P } } , \mathbb { Q } ) = \int _ { 0 } ^ { 1 } | F _ { \mathbb { P } } ^ { - 1 } ( u ) - F _ { \mathbb { Q } } ^ { - 1 } ( u ) | ^ { p } d u , +$$ + +Recall also that the Fisher IPM for uniform $\mu$ is given by : + +$$ +\mathcal { F } _ { \mu : = 1 } ^ { 2 } ( \mathbb { P } , \mathbb { Q } ) = \int _ { \mathcal { X } } ( \mathbb { P } ( x ) - \mathbb { Q } ( x ) ) ^ { 2 } d x . +$$ + +Consider for instance two point masses $\mathbb { P } = \delta _ { a _ { 1 } }$ and $\mathbb { Q } = \delta _ { a _ { 2 } }$ with $a _ { 1 } , a _ { 2 } \in \mathbb { R }$ . The rationale behind using Wasserstein distance for GAN training is that since it is a weak metric, for far distributions $W _ { 1 } ^ { 1 } ( \mathbb { P } , \mathbb { Q } ) = S _ { \mu : = 1 } ^ { 2 } \stackrel { - } { = } | a _ { 1 } - a _ { 2 } |$ me sign, while e than $\mathcal { F } _ { \mu : = 1 } ^ { 2 } ( \mathbb { P } , \mathbb { Q } ) = 2$ 2017). In this case, it is easy to see that. As we see from this simple example,g distributions on discrete spaces. See $C D F$ +Figure 1, for a further discussion of this effect in the GAN context. + +Sobolev IPM between two 2D Gaussians. We consider $\mathbb { P }$ and $\mathbb { Q }$ to be two dimensional Gaussians with means $\mu _ { 1 }$ and $\mu _ { 2 }$ and covariances $\Sigma _ { 1 }$ and $\Sigma _ { 2 }$ . Let $( x , y )$ be the coordinates in 2D. We note $F _ { \mathbb { P } }$ and $F _ { \mathbb { Q } }$ the CDFs of $\mathbb { P }$ and $\mathbb { Q }$ respectively. We consider in this example $\textstyle \mu = { \frac { \mathbb { P } + \mathbb { Q } } { 2 } }$ . We know from Theorem 2 that the gradient of the Sobolev optimal critic is proportional to the following vector field: + +$$ +\begin{array} { l } { \displaystyle \nabla f ^ { * } ( x , y ) \alpha \frac { 1 } { \mu ( x , y ) } \left[ \frac { \partial } { \partial x } ( F _ { \mathbb { Q } } ( x , y ) - F _ { \mathbb { P } } ( x , y ) ) \right] } \\ { \displaystyle \mu _ { 1 } = [ 1 , 0 ] , \Sigma _ { 1 } = \left[ \frac { 1 . 9 } { 0 . 8 } \quad 0 . 8 \right] \mu _ { 2 } = [ 1 , - 2 ] , \Sigma _ { 2 } = \left[ \frac { 1 . 9 } { - 0 . 8 } \quad - 0 . 8 \right] . } \end{array} +$$ + +In Figure 2 we consider + +In Figure 2(a) we plot the numerical solution of the PDE satisfied by the optimal Sobolev critic given in Equation (8), using MATLAB solver for elliptic PDEs (more accurately we solve $- d i v ( \bar { \mu } ( x ) \nabla _ { x } f ( \bar { x } ) ) = \mathbb { P } ( x ) - \bar { \mathbb { Q } } ( x )$ , hence we obtain the solution of Equation (8) up to a normalization constant $( \frac { 1 } { S _ { \mu } ( { \mathbb P } , { \mathbb Q } ) } ) )$ . We numerically solve the PDE on a rectangle with zero boundary conditions. We see that the optimal Sobolev critic separates the two distributions well. In Figure 2(b) we then numerically compute the gradient of the optimal Sobolev critic on a 2D grid as given in Equation 9 (using numerical evaluation of the CDF and finite difference for the evaluation of the partial derivatives). We plot in Figure 2(b) the density functions of $\mathbb { P }$ and $\mathbb { Q }$ as well as the vector field of the gradient of the optimal Sobolev critic. As discussed in Section A.1, we see that the gradient of the critic (wrt to the input), defines on the support of $\textstyle \mu = { \frac { \mathbb { P } + \mathbb { Q } } { 2 } }$ a transportation plan for moving the distribution mass from $\mathbb { Q }$ to $\mathbb { P }$ . + +![](images/bf79812d77b73653170a552e274a8e31c047709d105768f320b54b41bce68e2a.jpg) +(a) Smoothed discrete densities: PDF versus CDF of smoothed discrete densities with non overlapping supports. + +![](images/aebf2bc5c2f3315395bc93792e96d731c49ae95608257b3482f05c10e62e4c99.jpg) +(b) Smoothed Discrete and Continuous densities: PDF versus CDF of a smoothed discrete density and a continuous density with non overlapping supports. +Figure 1: In the GAN context for example in text generation, we have to match a (smoothed) discrete real distribution and a continuous generator. In this case, the CDF matching enabled by Sobolev IPM gives non zero discrepancy between a (smoothed) discrete and a continuous density even if the densities have disjoint supports. This ensures non vanishing gradients of the critic. + +# 5 SOBOLEV GAN + +Now we turn to the problem of learning GANs with Sobolev IPM. Given the “real distribution” $\mathbb { P } _ { r } \in \mathcal { P } ( \mathcal { X } )$ , our goal is to learn a generator $g _ { \boldsymbol { \theta } } : \mathcal { Z } \subset \mathbb { R } ^ { n _ { z } } \mathcal { X }$ , such that for $z \sim p _ { z }$ , the distribution of $g _ { \boldsymbol { \theta } } ( z )$ is close to the real data distribution $\mathbb { P } _ { r }$ , where $p _ { z }$ is a fixed distribution on $\mathcal { Z }$ (for instance $z \sim \mathcal { N } ( 0 , I _ { n _ { z } } ) )$ . We note $\mathbb { Q } _ { \theta }$ for the “fake distribution” of $g _ { \theta } ( z ) , z \sim p _ { z }$ . Consider $\{ x _ { i } , i = 1 \ldots N \} \sim \bar { \mathbb { P } } _ { r }$ , $\{ z _ { i } , i = 1 \ldots N \} \sim { \mathcal { N } } ( 0 , I _ { n _ { z } } )$ , and $\{ \tilde { x } _ { i } , i = 1 \ldots N \} \sim \mu$ . We consider these choices for $\mu$ : + +1. $\begin{array} { r } { \mu = \frac { \mathbb { P } _ { r } + \mathbb { Q } _ { \theta } } { 2 } } \end{array}$ i.e $\tilde { x } \sim \mathbb { P } _ { r }$ or $\tilde { x } = g _ { \theta } ( z ) , z \sim p _ { z }$ with equal probability $\textstyle { \frac { 1 } { 2 } }$ . 2. $\mu _ { G P }$ is the implicit distribution defined by the interpolation lines between $\mathbb { P } _ { r }$ and $\mathbb { Q } _ { \theta }$ as in (Gulrajani et al., 2017) i.e : $\tilde { x } = u x + ( 1 - u ) y , x \sim \mathbb { P } _ { r } , y = g _ { \theta } ( z ) , z \sim p _ { z }$ and $u \sim \mathrm { U n i f } [ 0 , 1 ]$ . + +Sobolev GAN can be written as follows: + +$$ +\begin{array}{c} \begin{array} { l } { \displaystyle \mathrm { A N ~ c a n ~ p e ~ w r i t t e n ~ a s ~ r o l l o w s } \colon } \\ { \displaystyle \operatorname* { m i n } _ { g _ { \theta } } } \\ { \displaystyle \quad { f _ { p } , \frac { 1 } { N } \sum _ { i = 1 } ^ { N } \| \nabla _ { x } f _ { p } ( \tilde { x } _ { i } ) \| ^ { 2 } = 1 } } \end{array} \hat { \hat { \mathcal E } } ( f _ { p } , g _ { \theta } ) = \frac { 1 } { N } \sum _ { i = 1 } ^ { N } f _ { p } ( x _ { i } ) - \frac { 1 } { N } \sum _ { i = 1 } ^ { N } f _ { p } ( g _ { \theta } ( z _ { i } ) ) \end{array} +$$ + +For any choice of the parametric function class $\mathcal { H } _ { p }$ , note the constraint by $\hat { \Omega } _ { S } ( f _ { p } , g _ { \theta } ) \ =$ $\begin{array} { r l } & { { \frac { 1 } { N } } \sum _ { i = 1 } ^ { N } \left\| \nabla _ { x } f _ { p } ( \tilde { x } _ { i } ) \right\| ^ { 2 } } \end{array}$ . For example if $\begin{array} { r } { \mu \ = \ \frac { \mathbb { P } _ { r } + \mathbb { Q } _ { \theta } } { 2 } } \end{array}$ , $\begin{array} { r c l } { \hat { \Omega } _ { S } ( f _ { p } , g _ { \theta } ) } & { = } & { \frac { 1 } { 2 N } \sum _ { i = 1 } ^ { N } \| \nabla _ { x } \boldsymbol { f } _ { p } ( x _ { i } ) \| ^ { 2 } + } \end{array}$ + +![](images/7e31e2430319983c215121a0e70ffc66b6fbcb2eef7bf131143c1e35323dcb1d.jpg) +(b) Optimal Sobolev Transport Vector Field $\nabla _ { x } f ^ { * } { \bar { ( x ) } }$ (arrows are the vector field $\nabla _ { x } f ^ { * } ( x )$ evaluated on the 2D grid. Magnitude of arrows was rescaled for visualization.) + +![](images/c2e0765d22d99d612ec7689965f0fb6fce3a5271eaa33de3baadab7bc9b8eda2.jpg) + +(a) Numerical solution of the PDE satisfied by the optimal Sobolev critic. + +Figure 2: Numerical solution of the PDE satisfied by the optimal Sobolev critic and the transportation Plan induced by the gradient of Sobolev critic. The gradient of the critic (wrt to the input), defines on the support of $\begin{array} { r } { \bar { \boldsymbol { \mu } } = \frac { \mathbb { P } + \mathbb { Q } } { 2 } , } \end{array}$ a transportation plan for moving the distribution mass from $\mathbb { Q }$ to $\mathbb { P }$ . For a theoretical analysis of this transportation plan and its relation to Fokker-Planck diffusion the reader is invited to check Appendix A. + +$\begin{array} { r l } { } & { { } \frac { 1 } { 2 N } \sum _ { i = 1 } ^ { N } \left\| \nabla _ { x } f _ { p } ( g _ { \theta } ( z _ { i } ) ) \right\| ^ { 2 } } \end{array}$ . Note that, since the optimal theoretical critic is achieved on the sphere, we impose a sphere constraint rather than a ball constraint. Similar to (Mroueh & Sercu, 2017) we define the Augmented Lagrangian corresponding to Sobolev GAN objective and constraint + +$$ +\mathcal { L } _ { S } ( p , \theta , \lambda ) = \hat { \mathcal { E } } ( f _ { p } , g _ { \theta } ) + \lambda ( 1 - \hat { \Omega } _ { S } ( f _ { p } , g _ { \theta } ) ) - \frac { \rho } { 2 } ( \hat { \Omega } _ { S } ( f _ { p } , g _ { \theta } ) - 1 ) ^ { 2 } +$$ + +where $\lambda$ is the Lagrange multiplier and $\rho > 0$ is the quadratic penalty weight. We alternate between optimizing the critic and the generator. We impose the constraint when training the critic only. Given $\theta$ , we solve $\begin{array} { r } { \operatorname* { m a x } _ { p } \operatorname* { m i n } _ { \lambda } \mathcal { L } _ { S } ( p , \theta , \lambda ) } \end{array}$ , for training the critic. Then given the critic parameters $p$ we optimize the generator weights $\theta$ to minimize the objective minθ $\hat { \mathcal { E } } ( f _ { p } , g _ { \theta } )$ . See Algorithm 1. + +# Algorithm 1 Sobolev GAN + +
Input: ρ penalty weight, n Learning rate, nc number of iterations for training the critic, N batch size
Initialize p, 0,λ=0
repeat
for j = 1 to nc do
Samplea minibatch xi,i=1...N,xi~ Pr
Sample a minibatch zi,i = 1...N,zi ~ Pz
(gp,gx)←(VpLs,VxLs)(p,0,λ)
p ←p+η ADAM(p,9p)
λ ← λ- pgx {SGD rule on 入with learning rate ρ} end for
Sample zi,i= 1...N, zi ~ Pz
d←Vθ8(fp,g0)=-VθN∑=1fp(g0(zi)) N
0←0-nADAM(0,dθ)
until θ converges
+ +Remark 1. Note that in Algorithm $\cdot$ , we obtain a biased estimate since we are using same samples for the cost function and the constraint, but the incurred bias can be shown to be small and vanishing as the number of samples increases as shown and justified in (Shivaswamy & Jebara, 2010). + +Relation to WGAN-GP. WGAN-GP can be written as follows: + +$$ +\operatorname* { m i n } _ { \substack { g _ { \theta } } } \operatorname* { s u p } _ { f , \| \nabla _ { x } f _ { p } ( \bar { x } _ { i } ) \| = 1 , \bar { x } _ { i } \sim \mu _ { G P } } \hat { \bar { \mathcal { E } } } ( f _ { p } , g _ { \theta } ) = \frac { 1 } { N } \sum _ { i = 1 } ^ { N } f _ { p } ( x _ { i } ) - \frac { 1 } { N } \sum _ { i = 1 } ^ { N } f _ { p } ( g _ { \theta } ( z _ { i } ) ) +$$ + +The main difference between WGAN-GP and our setting, is that WGAN-GP enforces pointwise constraints on points drawn from $\mu = \mu _ { G P }$ via a point-wise quadratic penalty $\begin{array} { r l } { { \big ( \hat { \mathcal { E } } ( f _ { p } , g _ { \theta } ) - \lambda \sum _ { i = 1 } ^ { N } \bigl ( 1 - \bigl ) } \quad } & { { } } \end{array}$ $\| \nabla _ { x } f ( \widetilde { x } _ { i } ) \| ) ^ { 2 } )$ while we enforce that constraint on average as a Sobolev norm, allowing us the coordinate weighted conditional CDF interpretation of the IPM. + +# 6 APPLICATIONS OF SOBOLEV GAN + +Sobolev IPM has two important properties; The first stems from the conditioning built in to the metric through the weighted conditional CDF interpretation. The second stems from the diffusion properties that the critic of Sobolev IPM satisfies (Appendix A) that has theoretical and practical ties to the Laplacian regularizer and diffusion on manifolds used in semi-supervised learning (Belkin et al., 2006). + +In this Section, we exploit those two important properties in two applications of Sobolev GAN: Text generation and semi-supervised learning. First in text generation, which can be seen as a discrete sequence generation, Sobolev GAN (and WGAN-GP) enable training GANs without need to do explicit brute-force conditioning. We attribute this to the built-in conditioning in Sobolev IPM (for the sequence aspect) and to the CDF matching (for the discrete aspect). Secondly using GANs in semi-supervised learning is a promising avenue for learning using unlabeled data. We show that a variant of Sobolev GAN can achieve strong SSL results on the CIFAR-10 dataset, without the need of any form of activation normalization in the networks or any extra ad hoc tricks. + +# 6.1 TEXT GENERATION WITH SOBOLEV GAN + +In this Section, we present an empirical study of Sobolev GAN in character level text generation. Our empirical study on end to end training of character-level GAN for text generation is articulated on four dimensions (loss, critic, generator, $\pmb { \mu }$ ). (1) the loss used (GP: WGAN-GP (Gulrajani et al., 2017), S: Sobolev or F: Fisher) (2) the architecture of the critic (Resnets or RNN) (3) the architecture of the generator (Resnets or RNN or RNN with curriculum learning) (4) the sampling distribution $\pmb { \mu }$ in the constraint. + +Text Generation Experiments. We train a character-level GAN on Google Billion Word dataset and follow the same experimental setup used in (Gulrajani et al., 2017). The generated sequence length is 32 and the evaluation is based on Jensen-Shannon divergence on empirical 4-gram probabilities (JS-4) of validation data and generated data. JS-4 may not be an ideal evaluation criteria, but it is a reasonable metric for current character-level GAN results, which is still far from generating meaningful sentences. + +Annealed Smoothing of discrete $\mathbb { P } _ { r }$ in the constraint $\pmb { \mu }$ . Since the generator distribution will always be defined on a continuous space, we can replace the discrete “real” distribution $\mathbb { P } _ { r }$ with a smoothed version (Gaussian kernel smoothing) $\mathbb { P } _ { r } \star \mathcal { N } ( 0 , \sigma ^ { 2 } I _ { d } )$ . This corresponds to doing the following sampling for $\mathbb { P } _ { r } : x + \xi , x \sim \mathbb { P } _ { r }$ , and $\xi \sim \mathcal { N } ( 0 , \sigma ^ { 2 } I _ { d } )$ . Note that we only inject noise to the “real” distribution with the goal of smoothing the support of the discrete distribution, as opposed to instance noise on both “real” and “fake” to stabilize the training, as introduced in (Kaae Sønderby et al., 2017; Arjovsky & Bottou, 2017). As it is common in optimization by continuation (Mobahi & III, 2015), we also anneal the noise level $\sigma$ as the training progresses on a linear schedule. + +Sobolev GAN versus WGAN-GP with Resnets. In this setting, we compare (WGANGP,G $=$ Resnet,D $^ { 1 \textless }$ Resnet, $\mu = \mu _ { G P } ) $ to (Sobolev,G $=$ Resnet,D $=$ Resnet, $\mu$ ) where $\mu$ is one of: (1) $\mu _ { G P }$ , (2) the noise smoothed $\begin{array} { r } { \mu _ { s } ( \sigma ) \ = \ \frac { \mathbb { P } _ { r } \star \mathcal { N } ( 0 , \sigma ^ { 2 } I _ { d } ) + \mathbb { Q } _ { \theta } } { 2 } } \end{array}$ or (3) noise smoothed with annealing $\mu _ { s } ^ { a } ( \sigma _ { 0 } )$ with $\sigma _ { 0 }$ the initial noise level. We use the same architectures of Resnet with 1D convolution for the critic and the generator as in (Gulrajani et al., 2017) (4 resnet blocks with hidden layer size of 512). In order to implement the noise smoothing we transform the data into one-hot vectors. Each one hot vector $x$ is transformed to a probability vector $p$ with 0.9 replacing the one and $0 . 1 / ( d i c t _ { s i z e } - 1 )$ replacing the zero. We then sample $\epsilon$ from a Gaussian distribution ${ \bar { \mathcal { N } } } ( 0 , \sigma ^ { 2 } )$ , and + +![](images/95d02c80f9b5a08286ec9176c050401e5ad02420894a30a90fcc19711b6eed94.jpg) + +(a) Comparing Sobolev with $\mu _ { G P }$ and WGAN-GP. The JS-4 are 0.3363 and 0.3302 respectively. + +![](images/6e2575ca9e9bb232ea44064ff715cb92a3beab4fce8471509ac419d7b8ec9342.jpg) +(b) Comparing Sobolev with different $\mu$ dominant measures and WGAN-GP. The JS4 of $\mu _ { s } ^ { a } ( \sigma _ { 0 } = 1 . 5 )$ is 0.3268. +Figure 3: Result of Sobolev GAN for various dominating measure $\mu$ , for resnets as architectures of the critic and the generator. + +use softmax to normalize $\log p + \epsilon$ . We use algorithm 1 for Sobolev GAN and fix the learning rate to $1 0 ^ { - 4 }$ and $\rho$ to $1 0 ^ { - 5 }$ . The noise level $\sigma$ was annealed following a linear schedule starting from an initial noise level $\sigma _ { 0 }$ (at iteration $i$ , $\begin{array} { r } { \sigma _ { i } = \sigma _ { 0 } ( 1 - \frac { i } { M a x i t e r } ) } \end{array}$ , Maxite ${ \displaystyle = 3 0 \mathsf K }$ ). For WGAN-GP we used the open source implementation with the penalty $\lambda = 1 0$ as in (Gulrajani et al., 2017). Results are given in Figure 3(a) for the JS-4 evaluation of both WGAN-GP and Sobolev GAN for $\mu = \mu _ { G P }$ . In Figure 3(b) we show the JS-4 evaluation of Sobolev GAN with the annealed noise smoothing $\mu _ { s } ^ { a } ( \bar { \sigma _ { 0 } } )$ , for various values of the initial noise level $\sigma _ { 0 }$ . We see that the training succeeds in both cases. Sobolev GAN achieves slightly better results than WGAN-GP for the annealing that starts with high noise level $\sigma _ { 0 } = 1 . 5$ . We note that without smoothing and annealing i.e using $\begin{array} { r } { \bar { \boldsymbol { \mu } } = \frac { \mathbb { P } _ { r } + \mathbb { Q } _ { \theta } } { 2 } } \end{array}$ , Sobolev GAN is behind. Annealed smoothing of $\mathbb { P } _ { r }$ , helps the training as the real distribution is slowly going from a continuous distribution to a discrete distribution. See Appendix C (Figure 6) for a comparison between annealed and non annealed smoothing. + +We give in Appendix C a comparison of WGAN-GP and Sobolev GAN for a Resnet generator architecture and an RNN critic. The RNN has degraded performance due to optimization difficulties. + +Fisher GAN Curriculum Conditioning versus Sobolev GAN: Explicit versus Implicit conditioning. We analyze how Fisher GAN behaves under different architectures of generators and critics. We first fix the generator to be ResNet. We study 3 different architectures of critics: ResNet, GRU (we follow the experimental setup from (Press et al., 2017)), and hybrid $\mathrm { R e s N e t + G R U }$ (Reed et al., 2016). We notice that RNN is unstable, we need to clip the gradient values of critics in $[ - 0 . 5 , 0 . 5 ]$ , and the gradient of the Lagrange multiplier $\lambda _ { F }$ to $[ - 1 0 ^ { 4 } , \bar { 1 } 0 ^ { 4 } ]$ . We fix $\rho _ { F } = 1 0 ^ { - 7 }$ and we use $\mu = \mu _ { G P }$ . We search the value for the learning rate in $[ 1 0 ^ { - 5 } , 1 \dot { 0 } ^ { - 4 } ]$ . We see that for $\mu = \mu _ { G P }$ and $G = \mathbb { F }$ Resnet for various critic architectures, Fisher GAN fails at the task of text generation (Figure ${ \mathfrak { 4 } } \ { \mathfrak { a - c } } { \mathrm { , } }$ ). Nevertheless, when using RNN critics $( \mathrm { F i g } \quad \mathsf { b } , \mathsf { c } )$ a marginal improvement happens over the fully collapsed state when using a resnet critic (Fig 4 a). We hypothesize that RNN critics enable some conditioning and factoring of the distribution, which is lacking in Fisher IPM. + +Finally Figure 4 (d) shows the result of training with recurrent generator and critic. We follow (Press et al., 2017) in terms of GRU architecture, but differ by using Fisher GAN rather than WGAN-GP. We use $\begin{array} { r } { \mu = { \frac { \mathbb { P } _ { r } + \mathbb { Q } _ { \theta } } { 2 } } } \end{array}$ i.e. without annealed noise smoothing. We train (F, D=RNN,G=RNN, ${ \frac { \mathbb { P } _ { r } + \mathbb { Q } _ { \theta } } { 2 } } .$ ) using curriculum conditioning of the generator for all lengths $\ell$ as done in (Press et al., 2017): the generator is conditioned on $3 2 - \ell$ characters and predicts the $\ell$ remaining characters. We increment $\ell = 1$ to 32 on a regular schedule (every $1 5 \mathrm { k }$ updates). JS-4 is only computed when $\ell > 4$ . We see in Figure 4 that under curriculum conditioning with recurrent critics and generators, the training of Fisher GAN succeeds and reaches similar levels of Sobolev GAN (and WGAN-GP). Note that the need of this explicit brute force conditioning for Fisher GAN, highlights the implicit conditioning induced by Sobolev GAN via the gradient regularizer, without the need for curriculum conditioning. + +![](images/2cad69ff4d412b18994156d6951f045e5d5629da2e40f46cfb2e8bb9373125ba.jpg) +Figure 4: Fisher GAN with different architectures for critics: (a-c) We see that for $\mu = \mu _ { G P }$ and $G =$ Resnet for various critic architectures, Fisher GAN fails at the task of text generation. We notice small improvements for RNN critics (b-c) due to the conditioning and factoring of the distribution. (d) Fisher GAN with recurrent generator and critic, trained on a curriculum conditioning for increasing lengths $\ell$ , increments indicated by gridlines. In this curriculum conditioning setup, with recurrent critics and generators, the training of Fisher GAN succeeds and reaches similar levels of Sobolev GAN (and WGAN-GP). It is important to note that by doing this explicit curriculum conditioning for Fisher GAN, we highlight the implicit conditioning induced by Sobolev GAN, via the gradient regularizer. + +# 6.2 SEMI-SUPERVISED LEARNING WITH SOBOLEV GAN + +A proper and promising framework for evaluating GANs consists in using it as a regularizer in the semi-supervised learning setting (Salimans et al., 2016; Dumoulin et al., 2017; Kumar et al., 2017). As mentioned before, the Sobolev norm as a regularizer for the Sobolev IPM draws connections with the Laplacian regularization in manifold learning (Belkin et al., 2006). In the Laplacian framework of semi-supervised learning, the classifier satisfies a smoothness constraint imposed by controlling its Sobolev norm: $\begin{array} { r } { \int _ { \mathcal { X } } \left\| \nabla _ { x } \bar { f } ( x ) \right\| ^ { 2 } \mu ^ { 2 } ( x ) d x } \end{array}$ (Alaoui et al., 2016). In this Section, we present a variant Xof Sobolev GAN that achieves competitive performance in semi-supervised learning on the CIFAR10 dataset Krizhevsky & Hinton (2009) without using any internal activation normalization in the critic, such as batch normalization (BN) (Ioffe & Szegedy, 2015), layer normalization (LN) (Ba et al., 2016), or weight normalization (Salimans & Kingma, 2016). + +In this setting, a convolutional neural network $\Phi _ { \omega } : \mathcal { X } \mathbb { R } ^ { m }$ is shared between the cross entropy (CE) training of a $K$ -class classifier $( S \in \mathbb { R } ^ { K \times m } )$ ) and the critic of GAN (See Figure 5). We have the following training equations for the (critic $^ +$ classifer) and the generator: + +$$ +{ \mathrm { C r i t i c } } + { \mathrm { C l a s s i f i e r } } ; \quad \operatorname* { m a x } _ { S , \Phi _ { \omega } , f } \mathcal { L } _ { D } = \mathcal { L } _ { \mathrm { a l m } } ^ { \mathrm { G A N } } ( f , g _ { \theta } ) - \lambda _ { C E } \sum _ { ( x , y ) \in \mathrm { l a b } } C E ( p ( y | x ) , y ) +$$ + +$$ +\mathrm { G e n e r a t o r : \ m a x } { \mathcal { L } } _ { G } = { \hat { \mathcal { E } } } ( f , g _ { \theta } ) +$$ + +where the main IPM objective with $N$ samples: $\begin{array} { r } { \hat { \mathcal { E } } ( f , g _ { \theta } ) = \frac { 1 } { N } \left( \sum _ { x \in \mathrm { u n l } } f ( x ) - \sum _ { z \sim p _ { z } } f ( g _ { \theta } ( z ) ) \right) . } \end{array}$ + +Following (Mroueh & Sercu, 2017) we use the following “ $K + 1$ parametrization” for the critic (See Figure 5) : + +$$ +f ( x ) = \underbrace { \sum _ { y = 1 } ^ { K } p ( y | x ) \left. S _ { y } , \Phi _ { \omega } ( x ) \right. } _ { f _ { + } : \mathrm { \normalfont ~ { \mathrm { \fontfamily { ~ \ddots ~ } \selectfont ~ { \ c r i t i c } } } } } - \underbrace { \left. v , \Phi _ { \omega } ( x ) \right. } _ { f _ { - } : \mathrm { \normalfont ~ { \cdot \mathrm { \sc ~ { \ c r i t i c } } } } } +$$ + +Note that $p ( y | x ) = \mathrm { S o f t m a x } ( \langle \mathrm { S } , \Phi _ { \omega } ( \mathrm { x } ) \rangle ) _ { \mathrm { y } }$ appears both in the critic formulation and in the CrossEntropy term in Equation (11). Intuitively this critic uses the $K$ class directions of the classifier $S _ { y }$ to define the “real” direction, which competes with another $\mathrm { K } { + } 1 ^ { \mathrm { t h } }$ direction $v$ that indicates fake samples. This parametrization adapts the idea of (Salimans et al., 2016), which was formulated specifically for the classic KL / JSD based GANs, to IPM-based GANs. We saw consistently better results with the $K + 1$ formulation over the regular formulation where the classification layer $S$ doesn’t interact with the critic direction $v$ . We also note that when applying a gradient penalty based constraint (either WGAN-GP or Sobolev) on the full critic $f = f _ { + } - f _ { - }$ , it is impossible for the network to fit even the small labeled training set (underfitting), causing bad SSL performance. This leads us to the formulation below, where we apply the Sobolev constraint only on $f _ { - }$ . Throughout this Section we fix $\begin{array} { r } { \mu = { \frac { \mathbb { P } _ { r } + \mathbb { Q } _ { \theta } } { 2 } } } \end{array}$ . + +We propose the following two schemes for constraining the $\mathrm { K } { + } 1$ critic $f ( x ) = f _ { + } ( x ) - f _ { - } ( x )$ : + +1) Fisher constraint on the critic: We restrict the critic to the following set: + +$$ +f \in \left\{ f = f _ { + } - f _ { - } , \hat { \Omega } _ { F } ( f , g _ { \theta } ) = \frac { 1 } { 2 N } \left( \sum _ { x \in \mathrm { u n l } } f ^ { 2 } ( x ) + \sum _ { z \sim p _ { z } } f ^ { 2 } ( g _ { \theta } ( z ) ) \right) = 1 \right\} . +$$ + +This constraint translates to the following ALM objective in Equation (11): + +$$ +\mathcal { L } _ { \mathrm { a l m } } ^ { \mathrm { G A N } } ( f , g _ { \theta } ) = \hat { \mathcal { E } } ( f , g _ { \theta } ) + \lambda _ { F } ( 1 - \hat { \Omega } _ { F } ( f , g _ { \theta } ) ) - \frac { \rho _ { F } } { 2 } ( \hat { \Omega } _ { F } ( f , g _ { \theta } ) - 1 ) ^ { 2 } , +$$ + +where the Fisher constraint ensures the stability of the training through an implicit whitened mean matching (Mroueh & Sercu, 2017). + +2) Fisher $^ +$ Sobolev constraint: We impose 2 constraints on the critic: Fisher on $f$ & Sobolev on $f _ { - }$ + +$$ +\begin{array} { r } { f \in \left\{ f = f _ { + } - f _ { - } , \hat { \Omega } _ { F } ( \pmb { f } , g _ { \theta } ) = 1 \mathrm { a n d } \hat { \Omega } _ { S } ( \pmb { f } _ { - } , g _ { \theta } ) = 1 \right\} , } \\ { \mathrm { } _ { \mathrm { } s } ( \pmb { f } _ { - } , g _ { \theta } ) = \frac { 1 } { 2 N } \left( \sum _ { x \in \mathrm { u n l } } \left. \nabla _ { x } \pmb { f } _ { - } ( x ) \right. ^ { 2 } + \sum _ { z \sim p _ { z } } \left. \nabla _ { x } \pmb { f } _ { - } ( g _ { \theta } ( z ) ) \right. ^ { 2 } \right) . } \end{array} +$$ + +This constraint translates to the following ALM in Equation (11): + +$$ +\begin{array} { r l } & { \mathcal { L } _ { \mathrm { a l m } } ^ { \mathrm { G A N } } ( f , g _ { \theta } ) = \hat { \mathcal { E } } ( f , g _ { \theta } ) + \lambda _ { F } ( 1 - \hat { \Omega } _ { F } ( \pmb { f } , g _ { \theta } ) ) + \lambda _ { S } ( 1 - \hat { \Omega } _ { S } ( f _ { - } , g _ { \theta } ) ) } \\ & { \quad \quad \quad \quad - \frac { \rho _ { F } } { 2 } ( \hat { \Omega } _ { F } ( \pmb { f } , g _ { \theta } ) - 1 ) ^ { 2 } - \frac { \rho _ { S } } { 2 } ( \hat { \Omega } _ { S } ( f _ { - } , g _ { \theta } ) - 1 ) ^ { 2 } . } \end{array} +$$ + +Note that the fisher constraint on $f$ ensures the stability of the training, and the Sobolev constraints on the “fake” critic $f _ { - }$ enforces smoothness of the “fake” critic and thus the shared CNN $\Phi _ { \omega } ( x )$ . This is related to the classic Laplacian regularization in semi-supervised learning (Belkin et al., 2006). + +Table 2 shows results of SSL on CIFAR-10 comparing the two proposed formulations. Similar to the standard procedure in other GAN papers, we do hyperparameter and model selection on the validation set. We present baselines with a similar model architecture and leave out results with significantly larger convnets. G and D architectures and hyperparameters are in Appendix D. $\Phi _ { \omega }$ is similar to (Salimans et al., 2016; Dumoulin et al., 2017; Mroueh & Sercu, 2017) in architecture, but note that we do not use any batch, layer, or weight normalization yet obtain strong competitive accuracies. We hypothesize that we don’t need any normalization in the critic, because of the implicit whitening of the feature maps introduced by the Fisher and Sobolev constraints as explained in (Mroueh & Sercu, 2017). + +![](images/ea25635919fa3c5b32ae620a1e74c601b9df2ff8ade1012e0ef7eddf0195cd9e.jpg) +Figure 5: $\mathrm { \ddot { \Delta K } } + 1 \mathrm { \ ' }$ ” parametrization of the critic for semi-supervised learning. + +Table 2: CIFAR-10 error rates for varying number of labeled samples in the training set. Mean and standard deviation computed over 5 runs. We only use the $K + 1$ formulation of the critic. Note that we achieve strong SSL performance without any additional tricks, and even though the critic does not have any batch, layer or weight normalization. Baselines with \* use either additional models like PixelCNN, or do data augmentation (translations and flips), or use a much larger model, either of which gives an advantage over our plain simple training method. $\dagger$ is the result we achieved in our experimental setup under the same conditions but without $\mathrm { \ddot { \Delta K } } + 1 \mathrm { \ ' }$ critic (see Appendix D), since (Gulrajani et al., 2017) does not have SSL results. + +
Number of labeled examples Model100020004000 Misclassification rate8000
CatGAN (Springenberg, 2015) FM (Salimans et al., 2016) ALI (Dumoulin et al., 2017)21.83 ± 2.0119.61 ± 2.0919.58 18.63 ± 2.3217.72 ± 1.82
Tangents Reg (Kumar et al., 2017)19.98 ± 0.3 20.06 ± 0.519.09 ± 0.1517.99 ± 0.54 16.78 ± 0.617.05 ± 0.50
II-model (Laine & Aila, 2016) *16.55 ± 0.29
VAT (Miyato et al., 2017)14.87
Bad Gan (Dai et al., 2017) *14.41 ± 0.30
VAT+EntMin+Large (Miyato et al., 2017) *13.15
Sajadi (Sajjadi et al., 2016) *11.29
WGAN-GP (Gulrajani et al., 2017) t44.85 ± 0.2837.62 ± 0.5632.66 ± 0.4830.38± 0.22
Fisher,layer norm (Mroueh & Sercu,2017)19.74± 0.2117.87 ± 0.3816.13 ± 0.5314.81 ± 0.16
Fisher, no norm (Mroueh & Sercu, 2017)21.49 ± 0.1819.20 ± 0.4617.30 ± 0.3015.57 ± 0.33
Sobolev + Fisher, no norm (This Work)20.14 ± 0.2117.38 ± 0.1015.77 ± 0.1914.20± 0.08
+ +# 7 CONCLUSION + +We introduced the Sobolev IPM and showed that it amounts to a comparison between weighted (coordinate-wise) CDFs. We presented an ALM algorithm for training Sobolev GAN. The intrinsic conditioning implied by the Sobolev IPM explains the success of gradient regularization in Sobolev GAN and WGAN-GP on discrete sequence data, and particularly in text generation. We highlighted the important tradeoffs between the implicit conditioning introduced by the gradient regularizer in Sobolev IPM, and the explicit conditioning of Fisher IPM via recurrent critics and generators in conjunction with the curriculum conditioning. Both approaches succeed in text generation. We showed that Sobolev GAN achieves competitive semi-supervised learning results without the need of any normalization, thanks to the smoothness induced by the gradient regularizer. We think the Sobolev IPM point of view will open the door for designing new regularizers that induce different types of conditioning for general structured/discrete/graph data beyond sequences. + +# REFERENCES + +Ahmed El Alaoui, Xiang Cheng, Aaditya Ramdas, Martin J. Wainwright, and Michael I. Jordan. Asymptotic behavior of p-based laplacian regularization in semi-supervised learning. CoRR, abs/1603.00564, 2016. +Martin Arjovsky and Leon Bottou. Towards principled methods for training generative adversarial ´ networks. In ICLR, 2017. +Martin Arjovsky, Soumith Chintala, and Leon Bottou. Wasserstein gan. ´ ICML, 2017. +Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv:1607.06450, 2016. +Mikhail Belkin, Partha Niyogi, and Vikas Sindhwani. Manifold regularization: A geometric framework for learning from labeled and unlabeled examples. JMLR, 2006. +Marc G. Bellemare, Ivo Danihelka, Will Dabney, Shakir Mohamed, Balaji Lakshminarayanan, Stephan Hoyer, and Remi Munos. The cramer distance as a solution to biased wasserstein gradi- ´ ents. CoRR, abs/1705.10743, 2017a. +Marc G Bellemare, Ivo Danihelka, Will Dabney, Shakir Mohamed, Balaji Lakshminarayanan, Stephan Hoyer, and Remi Munos. The cramer distance as a solution to biased wasserstein gradi- ´ ents. arXiv:1705.10743, 2017b. +Tong Che, Yanran Li, Ruixiang Zhang, Devon R Hjelm, Wenjie Li, Yangqiu Song, and Yoshua Bengio. Maximum-likelihood augmented discrete generative adversarial networks. arXiv:1702.07983, 2017. +Kacper Chwialkowski, Heiko Strathmann, and Arthur Gretton. A kernel test of goodness of fit. In ICML 2016, 2016. +Zihang Dai, Zhilin Yang, Fan Yang, William W Cohen, and Ruslan Salakhutdinov. Good semisupervised learning that requires a bad gan. arXiv:1705.09783, 2017. +Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Alex Lamb, Martin Arjovsky, Olivier Mastropietro, and Aaron Courville. Adversarially learned inference. ICLR, 2017. +Gintare Karolina Dziugaite, Daniel M. Roy, and Zoubin Ghahramani. Training generative neural networks via maximum mean discrepancy optimization. In UAI, 2015. +I. Ekeland and T. Turnbull. Infinite-dimensional Optimization and Convexity. The University of Chicago Press, 1983. +A. Genevay, G. Peyre, and M. Cuturi. Learning generative models with sinkhorn divergences. ´ Preprint 1706.00292, Arxiv, 2017. URL https://arxiv.org/abs/1706.00292. +Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In NIPS, 2014. +Jackson Gorham and Lester W. Mackey. Measuring sample quality with stein’s method. In NIPS, pp. 226–234, 2015. +Arthur Gretton, Karsten M Borgwardt, Malte J Rasch, Bernhard Scholkopf, and Alexander Smola. ¨ A kernel two-sample test. JMLR, 2012. +Ishaan Gulrajani, Faruk Ahmed, Martin Arjovsky, Vincent Dumoulin, and Aaron Courville. Improved training of wasserstein gans. arXiv:1704.00028, 2017. +R. Devon Hjelm, Athul Paul Jacob, Tong Che, Kyunghyun Cho, and Yoshua Bengio. Boundaryseeking generative adversarial networks. arXiv:1702.08431, 2017. +Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. Proc. ICML, 2015. +Casper Kaae Sønderby, Jose Caballero, Lucas Theis, Wenzhe Shi, and Ferenc Huszar. Amortised ´ map inference for image super-resolution. ICLR, 2017. +A. Krizhevsky and G. Hinton. Learning multiple layers of features from tiny images. Master’s thesis, 2009. +Abhishek Kumar, Prasanna Sattigeri, and P Thomas Fletcher. Improved semi-supervised learning with gans using manifold invariances. NIPS, 2017. +Matt J. Kusner and Jose Miguel Hern ´ andez-Lobato. Gans for sequences of discrete elements with ´ the gumbel-softmax distribution. arXiv:1611.04051, 2016. +Samuli Laine and Timo Aila. Temporal ensembling for semi-supervised learning. arXiv:1610.02242, 2016. +Chun-Liang Li, Wei-Cheng Chang, Yu Cheng, Yiming Yang, and Barnabas P ´ oczos. MMD GAN: ´ towards deeper understanding of moment matching network. NIPS, abs/1705.08584, 2017. +Yujia Li, Kevin Swersky, and Richard Zemel. Generative moment matching networks. In ICML, 2015. + +Qiang Liu. Stein variational descent as a gradient flow. NIPS, 2017. + +Qiang Liu and Dilin Wang. Stein variational gradient descent: A general purpose bayesian inference algorithm. In Advances in Neural Information Processing Systems 29. 2016. + +Qiang Liu, Jason D. Lee, and Michael I. Jordan. A kernelized stein discrepancy for goodness-of-fit tests. In Proceedings of the 33nd International Conference on Machine Learning, ICML 2016, New York City, NY, USA, June 19-24, 2016, 2016. + +Xudong Mao, Qing Li, Haoran Xie, Raymond YK Lau, and Zhen Wang. Least squares generative adversarial networks. arXiv:1611.04076 ICCV, 2017. + +Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial training: a regularization method for supervised and semi-supervised learning. arXiv:1704.03976, 2017. + +Hossein Mobahi and John W. Fisher III. A Theoretical Analysis of Optimization by Gaussian Continuation. In Proc. of 29th Conf. Artificial Intelligence (AAAI’15), 2015. + +Youssef Mroueh and Tom Sercu. Fisher gan. arXiv:1705.09675 NIPS, 2017. + +Youssef Mroueh, Tom Sercu, and Vaibhava Goel. Mcgan: Mean and covariance feature matching gan. arXiv:1702.08398 ICML, 2017. + +Alfred Muller. Integral probability metrics and their generating classes of functions. ¨ Advances in Applied Probability, 1997. + +Sebastian Nowozin, Botond Cseke, and Ryota Tomioka. f-gan: Training generative neural samplers using variational divergence minimization. In NIPS, 2016. + +Chris J. Oates, Mark Girolami, and Nicolas Chopin. Control functionals for monte carlo integration. Journal of the Royal Statistical Society: Series B (Statistical Methodology), 2017. + +Ofir Press, Amir Bar, Ben Bogin, Jonathan Berant, and Lior Wolf. Language generation with recurrent generative adversarial networks without pre-training. arXiv:1706.01399, 2017. + +Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep convolutional generative adversarial networks. arXiv:1511.06434, 2015. + +Sai Rajeswar, Sandeep Subramanian, Francis Dutil, Christopher Pal, and Aaron Courville. Adversarial generation of natural language. arXiv:1705.10929, 2017. + +Scott E Reed, Zeynep Akata, Santosh Mohan, Samuel Tenka, Bernt Schiele, and Honglak Lee. Learning what and where to draw. In Advances In Neural Information Processing Systems, pp. 217–225, 2016. + +Mehdi Sajjadi, Mehran Javanmardi, and Tolga Tasdizen. Regularization with stochastic transformations and perturbations for deep semi-supervised learning. In Advances in Neural Information Processing Systems, pp. 1163–1171, 2016. + +Tim Salimans and Diederik P Kingma. Weight normalization: A simple reparameterization to accelerate training of deep neural networks. In Advances in Neural Information Processing Systems, pp. 901–901, 2016. + +Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved techniques for training gans. NIPS, 2016. + +Pannagadatta K. Shivaswamy and Tony Jebara. Maximum relative margin and data-dependent regularization. Journal of Machine Learning Research, 11:747–788, 2010. doi: 10.1145/1756006. 1756031. URL http://doi.acm.org/10.1145/1756006.1756031. + +Jost Tobias Springenberg. Unsupervised and semi-supervised learning with categorical generative adversarial networks. arXiv:1511.06390, 2015. + +Bharath K. Sriperumbudur, Kenji Fukumizu, Arthur Gretton, Bernhard Scholkopf, and Gert R. G. Lanckriet. On integral probability metrics, $\phi$ -divergences and binary classification. 2009. + +Bharath K. Sriperumbudur, Kenji Fukumizu, Arthur Gretton, Bernhard Scholkopf, and Gert R. G. ¨ Lanckriet. On the empirical estimation of integral probability metrics. Electronic Journal of Statistics, 2012. +Dilin Wang and Qiang Liu. Learning to draw samples: With application to amortized MLE for generative adversarial learning. CoRR, abs/1611.01722, 2016. +Lantao Yu, Weinan Zhang, Jun Wang, and Yong Yu. Seqgan: Sequence generative adversarial nets with policy gradient. CoRR, abs/1609.05473, 2016. +Junbo Jake Zhao, Yoon Kim, Kelly Zhang, Alexander M. Rush, and Yann LeCun. Adversarially regularized autoencoders for generating discrete structures. CoRR, 2017. + +# A THEORY: APPROXIMATION AND TRANSPORT INTERPRETATION + +In this Section we present the theoretical properties of Sobolev IPM and how it relates to distributions transport theory and other known metrics between distributions, notably the Stein distance. + +# A.1 DISTRIBUTION TRANSPORT PERSPECTIVE ON SOBOLEV IPM + +In this Section, we characterize the optimal critic of the Sobolev IPM as a solution of a non linear PDE. The solution of the variational problem of the Sobolev IPM satisfies a non linear PDE that can be derived using standard tools from calculus of variations (Ekeland & Turnbull, 1983; Alaoui et al., 2016). + +Theorem 3 (PDE satisfied by the Sobolev Critic). The optimal critic of Sobolev IPM $f ^ { * }$ satisfies the following $P D E$ : + +$$ +\Delta f ^ { * } ( x ) + \left. \nabla _ { x } \log \mu ( x ) , \nabla _ { x } f ^ { * } ( x ) \right. + \frac { \mathbb { P } ( x ) - \mathbb { Q } ( x ) } { S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) \mu ( x ) } = 0 . +$$ + +Define the Stein Operator: $\begin{array} { r } { T ( \mu ) \vec { g } ( x ) = \frac { 1 } { 2 } \Big ( \langle \nabla _ { x } \log ( \mu ( x ) ) , \vec { g } ( x ) \rangle + d i v ( \vec { g } ( x ) ) \Big ) } \end{array}$ . Hence we have the following Transport Equation of $\mathbb { P }$ to $\mathbb { Q }$ : + +$$ +\mathbb { Q } ( x ) = \mathbb { P } ( x ) + 2 S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) \mu ( x ) T ( \mu ) \nabla _ { x } f ^ { * } ( x ) . +$$ + +Recall the definition of Stein Discrepancy : + +$$ +\mathbb { S } ( \mathbb { Q } , \mu ) = \operatorname* { s u p } _ { \vec { g } } | \mathbb { E } _ { x \sim \mathbb { Q } } [ T ( \mu ) \vec { g } ( x ) ] | , \vec { g } : \mathcal { X } \mathbb { R } ^ { d } . +$$ + +Theorem 4 (Sobolev and Stein Discrepanices). The following inequality holds true: + +$$ +\bigg | \mathbb { E } _ { \boldsymbol { x } \sim \mathbb { Q } } \left[ \frac { \mathbb { Q } ( \boldsymbol { x } ) - \mathbb { P } ( \boldsymbol { x } ) } { \mu ( \boldsymbol { x } ) } \right] \bigg | \leq 2 \qquad \underbrace { \mathbb { S } ( \mathbb { Q } , \mu ) } _ { \mathrm { S } ( \mathbb { Q } , \mu ) } \qquad \underbrace { S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) } _ { \mathrm { S } _ { \boldsymbol { \mu } } ( \mathbb { Q } ) } +$$ + +Consider for example $\mu = \mathbb { P }$ , and sequence $\mathbb { Q } _ { n }$ . If the Sobolev distance goes $S _ { \mathbb { P } } ( \mathbb { P } , \mathbb { Q } _ { n } ) 0$ , the ratio $\begin{array} { r } { r _ { n } ( x ) = \frac { \mathbb { Q } _ { n } ( x ) } { \mathbb { P } ( x ) } } \end{array}$ Qn(x)P(x) converges in expectation (w.r.t to Q) to 1. The speed of the convergence is given by the Stein Discrepancy $\mathbb { S } ( \mathbb { Q } _ { n } , \mathbb { P } )$ . + +Relation to Fokker-Planck Diffusion Equation and Particles dynamics. Note that PDE satisifed by the Sobolev critic given in Equation (13) can be equivalently written: + +$$ +\frac { \mathbb { P } - \mathbb { Q } } { S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) } = - \mathrm { d i v } ( \mu ( x ) \nabla _ { x } f ^ { * } ( x ) ) , +$$ + +written in this form, we draw a connection with the Fokker-Planck Equation for the evolution of a density function $q _ { t }$ that is the density of particles $X _ { t } \in \mathbb { R } ^ { d }$ evolving with a drift (a velocity field) $V ( x , i ) : \mathcal { X } \times [ 0 , \infty [ \mathbb { R } ^ { d }$ : + +$d X _ { t } = V ( X _ { t } , t ) d t$ , where the density of $X _ { 0 }$ is given by $q _ { 0 } ( x ) = \mathbb { Q } ( x )$ , + +Fokker-Planck Equation states that the evolution of the particles density $q _ { t }$ satisfies: + +$$ +\frac { d \boldsymbol { q } _ { t } } { d t } ( \boldsymbol { x } ) = - \mathrm { d i v } ( \boldsymbol { q } _ { t } ( \boldsymbol { x } ) V ( \boldsymbol { x } , t ) ) +$$ + +Comparing Equation (15) and Equation (16), we identify then the gradient of Sobolev critic as a drift. This suggests that one can define “Sobolev descent” as the evolution of particles along the gradient flow: + +$d X _ { t } = \nabla _ { x } f _ { t } ^ { * } ( X _ { t } ) d t$ , where the density of $X _ { 0 }$ is given by $q _ { 0 } ( x ) = \mathbb { Q } ( x )$ , where $f _ { t } ^ { * }$ is the Sobolev critic between $q _ { t }$ and $\mathbb { P }$ . One can show that the limit distribution of the particles is $\mathbb { P }$ . The analysis of “Sobolev descent” and its relation to Stein Descent (Liu & Wang, 2016; Liu, 2017) is beyond the scope of this paper and will be studied in a separate work. Hence we see that the gradient of the Sobolev critic defines a transportation plan to move particles whose distribution is $\mathbb { Q }$ to particles whose distribution is $\mathbb { P }$ (See Figure 2). This highlights the role of the gradient of the critic in the context of GAN training in term of transporting the distribution of the generator to the real distribution. + +# B PROOFS + +Proof of Theorem 2. Let $F _ { \mathbb { P } }$ and $F _ { \mathbb { Q } }$ , be the cumulative distribution functions of $\mathbb { P }$ and $\mathbb { Q }$ respectively. We have: + +$$ +\mathbb { P } ( x ) = \frac { \partial ^ { d } } { \partial x _ { 1 } \hdots \partial x _ { d } } F _ { \mathbb { P } } ( x ) , +$$ + +We note $\begin{array} { r } { D = \frac { \partial ^ { d } } { \partial x _ { 1 } \ldots \partial x _ { d } } } \end{array}$ and D−i , $\begin{array} { r } { D ^ { - i } = \frac { \partial ^ { d - 1 } } { \partial x _ { 1 } \dots \partial x _ { i - 1 } \partial x _ { i + 1 } \dots \partial x _ { d } } } \end{array}$ , for $i = 1 \ldots d$ . + +$D ^ { - i }$ computes the $d - 1$ partial derivative excluding the variable $i$ . + +In the following we assume that $F _ { \mathbb { P } }$ , and $F _ { \mathbb { Q } }$ and its $d$ derivatives exist and are continuous meaning that $F _ { \mathbb { P } }$ and $F _ { \mathbb { Q } } \in C ^ { d } ( \mathcal { X } )$ . The objective function in Equation (3) can be written as follows: + +$$ +\begin{array} { r l } & { \mathbb { E } _ { x \sim \mathbb { P } } f ( x ) - \mathbb { E } _ { x \sim \mathbb { Q } } f ( x ) = \displaystyle \int _ { \mathcal { X } } f ( x ) D \Big ( F _ { \mathbb { P } } ( x ) - F _ { \mathbb { Q } } ( x ) \Big ) d x } \\ & { \quad \quad \quad \quad \quad = \displaystyle \int _ { \mathcal { X } } f ( x ) \frac { \partial } { \partial x _ { i } } D ^ { - i } ( F _ { \mathbb { P } } ( x ) - F _ { \mathbb { Q } } ( x ) ) d x } \\ & { \quad \quad \quad \quad \quad \mathrm { ( f o r ~ a n y ~ } i , \mathrm { s i n c e ~ } F _ { \mathbb { P } } \mathrm { ~ a n d ~ } F _ { \mathbb { Q } } \in C ^ { d } ( \mathcal { X } ) ) } \\ & { \quad \quad \quad \quad = - \displaystyle \int _ { \mathcal { X } } \frac { \partial f } { \partial x _ { i } } D ^ { - i } ( F _ { \mathbb { P } } ( x ) - F _ { \mathbb { Q } } ( x ) ) d x } \end{array} +$$ + +Let $D ^ { - } = ( D ^ { - 1 } , \ldots , D ^ { - d } )$ it follows that: + +$$ +\begin{array} { r c l } { \mathbb { E } _ { x \sim \mathbb { P } } f ( x ) - \mathbb { E } _ { x \sim \mathbb { Q } } f ( x ) } & { = } & { \displaystyle \frac { 1 } { d } \sum _ { i = 1 } ^ { d } \int _ { \chi } \frac { \partial f } { \partial x _ { i } } D ^ { - i } ( F _ { \mathbb { Q } } ( x ) - F _ { \mathbb { P } } ( x ) ) d x } \\ & { = } & { \displaystyle \frac { 1 } { d } \int _ { \chi } \left. \nabla _ { x } f ( x ) , D ^ { - } ( F _ { \mathbb { Q } } ( x ) - F _ { \mathbb { P } } ( x ) ) \right. _ { \mathbb { R } ^ { d } } d x } \end{array} +$$ + +Let us define $\mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) ^ { \otimes d }$ the space of measurable functions from $\mathcal X ~ ~ \mathbb R ^ { d }$ . For $g , h \in$ $\mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) ^ { \otimes d }$ the dot product is defined as follows: + +$$ +\langle g , h \rangle _ { \mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) ^ { \otimes d } } = \int _ { \mathcal { X } } \langle g ( x ) , h ( x ) \rangle _ { \mathbb { R } ^ { d } } \mu ( x ) d x +$$ + +and the norm is given : + +$$ +\| g \| _ { \mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) ^ { \otimes d } } = \int _ { X } \| g \| _ { \mathbb { R } ^ { d } } ^ { 2 } \mu ( x ) d x . +$$ + +We can write the objective in Equation (18) in term of the dot product in $\mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) ^ { \otimes d }$ : + +$$ +\mathbb { E } _ { x \sim \mathbb { P } } f ( x ) - \mathbb { E } _ { x \sim \mathbb { Q } } f ( x ) = \frac { 1 } { d } \left. \nabla _ { x } f , \frac { D ^ { - } ( F _ { \mathbb { Q } } - F _ { \mathbb { P } } ) } { \mu } \right. _ { \mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) ^ { \otimes d } } . +$$ + +On the other hand the constraint in Equation (3) can be written in terms of the norm in $\mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) ^ { \otimes d }$ : + +$$ +\| f \| _ { W _ { 0 } ^ { 1 , 2 } ( \mathcal { X } , \mu ) } = \| \nabla _ { x } f \| _ { \mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) ^ { \otimes d } } +$$ + +Replacing the objective and constraint given in Equations (19) and (20) in Equation (3), we obtain: + +$$ +\begin{array} { r l } & { \mathfrak { H } ( \mathbb { P } , \mathfrak { G } ) = \frac { 1 } { d } _ { f , \vert \mathcal { C } _ { 2 } , \vert \mathcal { C } _ { 2 } , \alpha , \beta , 0 ; 0 } \le \mathfrak { C } _ { \ge } f , \frac { D ^ { - } ( F _ { \mathfrak { g } } - F _ { \mathfrak { g } } \vert \mathfrak { F } ) } { \mu } \Bigr \rangle _ { \mathcal { B } ( \mathfrak { x } , \mu ) \le \mathfrak { c } } } \\ & { \ = \frac { 1 } { d } _ { g \le \mathcal { G } _ { 2 } ( x , \beta ) \le \mathfrak { c } , \vert \mathfrak { H } \vert _ { \mathfrak { g } } \vert _ { \mathfrak { g } } \vert _ { \mathfrak { g } } \vert _ { \mathfrak { g } } \vert _ { \mathfrak { g } } \vert _ { \mathfrak { x } , \mu } ) \le \mathfrak { c } } \Big \langle g , \frac { D ^ { - } ( F _ { \mathfrak { g } } - F _ { \mathfrak { g } } ) } { \mu } \Big \rangle _ { \mathcal { B } _ { \ge } ( x , \mu ) \ge \mathfrak { c } } } \\ & { \ = \frac { 1 } { d } \bigg \Vert \frac { D ^ { - } ( F _ { \mathfrak { g } } - F _ { \mathfrak { g } } ) } { \mu } \bigg \Vert _ { \mathcal { B } _ { \ge } ( x , \mu ) \le \mathfrak { c } } } \\ & { \ \left( \mathtt { B y ~ d e n i n i o n ~ o f ~ } \Vert \cdot \Vert _ { \mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) \le \mathfrak { c } } , g ^ { - } = \frac { D ^ { - } F _ { \mathfrak { g } } ( \mathfrak { x } ) - D ^ { - } F _ { \mathfrak { g } } ( \mathfrak { x } ) } { \mu ( \mathfrak { x } ) } \frac { 1 } { \left. \frac { D ^ { - } ( F _ { \mathfrak { g } } - F _ { \mathfrak { g } } ) } { \mu } \right. _ { \mathcal { B } _ { \ge } ( \mathcal { X } , \mu ) \le \mathfrak { c } } } \right) } \\ & \ = \frac { 1 } { d } \sqrt { \int _ { x } \frac { \Vert D ^ { - } F _ { \mathfrak { g } } ( \mathfrak { x } ) - D ^ { - } F _ { \mathfrak { g } } ( \mathfrak { x } ) \Vert _ { \mathcal { A } ( \mathcal { X } , \mu ) } ^ { 2 } } { \mu ( \mathfrak { x } ) } d \mathfrak { x } . } \end{array} +$$ + +Hence we find also that the optimal critic $f ^ { * }$ satisfies: + +$$ +\nabla _ { x } f ^ { * } ( x ) = \frac { D ^ { - } F _ { \mathbb { Q } } ( x ) - D ^ { - } F _ { \mathbb { P } } ( x ) } { \mu ( x ) } \frac { 1 } { \Big \| \frac { D ^ { - } ( F _ { \mathbb { Q } } - F _ { \mathbb { P } } ) } { \mu } \Big \| _ { \mathcal { L } _ { 2 } ( \mathcal { X } , \mu ) ^ { \otimes d } } } . +$$ + +Proof of Lemma $\cdot$ . + +$$ +\begin{array} { r c l } { \mathbb { E } _ { x \sim \mathbb { P } } f ( x ) - \mathbb { E } _ { x \sim \mathbb { Q } } f ( x ) } & { = } & { \displaystyle \frac { 1 } { d } \int _ { \mathcal { X } } \left. \nabla _ { x } f ( x ) , D ^ { - } ( F _ { \mathbb { Q } } ( x ) - F _ { \mathbb { P } } ( x ) ) \right. _ { \mathbb { R } ^ { d } } d x } \\ & { = } & { \displaystyle S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) \int _ { \mathcal { X } } \left. \nabla _ { x } f ( x ) , \frac { D ^ { - } ( F _ { \mathbb { Q } } ( x ) - F _ { \mathbb { P } } ( x ) ) } { \mu ( x ) d S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) } \right. _ { \mathbb { R } ^ { d } } \mu ( x ) d x } \\ & { = } & { \displaystyle S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) \int _ { \mathcal { X } } \left. \nabla _ { x } f ( x ) , \nabla _ { x } f ^ { * } ( x ) \right. \mu ( x ) d x } \\ & { = } & { \displaystyle S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) \left. f , f ^ { * } \right. _ { W _ { 0 } ^ { 1 , 2 } } } \end{array} +$$ + +Hence we have: + +$$ +\operatorname* { s u p } _ { f \in \mathcal { M } , \| f \| _ { W _ { 0 } ^ { 1 , 2 } } \leq 1 } \mathbb { E } _ { x \sim \mathbb { P } } f ( x ) - \mathbb { E } _ { x \sim \mathbb { Q } } f ( x ) = S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) \operatorname* { s u p } _ { f \in \mathcal { M } , \| f \| _ { W _ { 0 } ^ { 1 , 2 } } \leq 1 } \langle f , f ^ { * } \rangle _ { W _ { 0 } ^ { 1 , 2 } } , +$$ + +It follows therefore that: + +$$ +\mathcal { S } _ { \mathcal { H } } ( \mathbb { P } , \mathbb { Q } ) = S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) \operatorname* { s u p } _ { f \in \mathcal { H } , \| f \| _ { W _ { 0 } ^ { 1 , 2 } } \leq 1 } \langle f , f ^ { * } \rangle _ { W _ { 0 } ^ { 1 , 2 } } +$$ + +We conclude that the Sobolev IPM can be approximated in arbitrary space as long as it has enough capacity to approximate the optimal critic. Interestingly the approximation error is measured now with the Sobolev semi-norm, while in Fisher it was measured with the Lebesgue norm. Approximations with Sobolev Semi-norms are stronger then Lebesgue norms as given by the Poincare inequality $( \vert \vert f \vert \vert _ { \mathcal { L } _ { 2 } } \le C \left. f \right. _ { W _ { 0 } ^ { 1 , 2 } } )$ , meaning if the error goes to zero in Sobolev sense it also goes to zero in the Lebesgue sense , but the converse is not true. + +Proof of Theorem 3. The proof follows similar arguments in the proofs of the analysis of Laplacian regularization in semi-supervised learning studied by (Alaoui et al., 2016). + +$$ +\begin{array} { r l } { S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) } & { { } = \operatorname* { s u p } _ { f \in W _ { 0 } ^ { 1 , 2 } } \Big \{ \mathbb { E } _ { x \sim \mathbb { P } } \left[ f ( x ) \right] - \mathbb { E } _ { x \sim \mathbb { Q } } \left[ f ( x ) \right] \Big \} } \\ { s . t . } & { { } \quad \mathbb { E } _ { x \sim \mu } \| \nabla f ( x ) \| _ { 2 } ^ { 2 } \leq 1 , } \end{array} +$$ + +Note that this problem is convex in $f$ (Ekeland & Turnbull, 1983). Writing the lagrangian for equation (21) we get : + +$$ +\begin{array} { l } { \displaystyle { L ( f , \lambda ) = \mathbb { E } _ { x \sim \mathbb { P } } \left[ f ( x ) \right] - \mathbb { E } _ { x \sim \mathbb { Q } } \left[ f ( x ) \right] + \frac { \lambda } { 2 } \Big ( 1 - \mathbb { E } _ { x \sim \mu } \| \nabla _ { x } f ( x ) \| _ { 2 } ^ { 2 } \Big ) } } \\ { \displaystyle { \quad = \int _ { \mathcal { X } } f ( x ) \left( \mathbb { P } ( x ) - \mathbb { Q } ( x ) \right) d x + \frac { \lambda } { 2 } \Big ( 1 - \int _ { \mathcal { X } } \| \nabla _ { x } f ( x ) \| _ { 2 } ^ { 2 } \mu ( x ) d x \Big ) } } \\ { \displaystyle { \quad = \int _ { \mathcal { X } } f ( x ) \mu _ { 1 } ( x ) d x + \frac { \lambda } { 2 } \Big ( 1 - \int _ { \mathcal { X } } \| \nabla _ { x } f ( x ) \| _ { 2 } ^ { 2 } \mu ( x ) d x \Big ) } } \end{array} +$$ + +We denote $\left( \mathbb { P } ( x ) - \mathbb { Q } ( x ) \right)$ as $\mu _ { 1 } ( x )$ .To get the optimal $f$ , we need to apply KKT conditions on the above equation. + +$$ +L ( f , \lambda ) = \int _ { \mathcal { X } } f ( x ) \mu _ { 1 } ( x ) d x + { \frac { \lambda } { 2 } } { \Big ( } 1 - \int _ { \mathcal { X } } \| \nabla _ { x } f ( x ) \| _ { 2 } ^ { 2 } \ \mu ( x ) d x { \Big ) } +$$ + +From the calculus of variations: + +$$ +\begin{array} { l } { \displaystyle \sum _ { k = 1 } ^ { \infty } ( f + \epsilon h , \lambda ) = \int _ { x } ( f + \epsilon h ) ( x ) \mu _ { 1 } ( x ) d x + \frac { \lambda } { 2 } \Bigl ( 1 - \int _ { x } \| \nabla _ { x } ( f + \epsilon h ) ( x ) \| _ { 2 } ^ { 2 } \mu ( x ) d x \Bigr ) } \\ { \displaystyle = \int _ { x } ( f ( x ) + \epsilon h ( x ) ) \mu _ { 1 } ( x ) d x + \frac { \lambda } { 2 } \Bigl ( 1 - \int _ { x } \left. \nabla _ { z } \left( f + \epsilon h \right) ( x ) , \nabla _ { z } \left( f + \epsilon h \right) ( x ) \right. \mu ( x ) } \\ { \displaystyle = \int _ { x } ( f ( x ) + \epsilon h ( x ) ) \mu _ { 1 } ( x ) d x } \\ { \displaystyle + \frac { \lambda } { 2 } \Bigl ( 1 - \int _ { x } \left. \| \nabla _ { z } f ( x ) \| _ { 2 } ^ { 2 } + 2 \epsilon \langle \nabla _ { x } f ( x ) , \nabla _ { x } h ( x ) \rangle + \mathcal { O } ( \epsilon ^ { 2 } ) \right. \mu ( x ) d x \Bigr ) } \\ { \displaystyle = L ( f , \lambda ) + \epsilon \int _ { x } h ( x ) \mu _ { 1 } ( x ) d x - \lambda \epsilon \int _ { x } \left. \nabla _ { x } f ( x ) , \nabla _ { x } h ( x ) \right. \mu ( x ) d x + \mathcal { O } ( \epsilon ^ { 2 } ) } \\ { \displaystyle = L ( f , \lambda ) + \epsilon \Bigl [ \int _ { x } h ( x ) \mu _ { 1 } ( x ) d x - \lambda \int _ { x } \left. \nabla _ { x } f ( x ) , \nabla _ { x } h ( x ) \right. \mu ( x ) d x \Bigr ] + \mathcal { O } ( \epsilon ^ { 2 } ) } \end{array} +$$ + +Now we apply integration by part and set $h$ to be zero at boundary as in (Alaoui et al., 2016). We get : + +$$ +\begin{array} { l } { \displaystyle \int _ { \mathcal X } \langle \nabla _ { x } f ( x ) , \nabla _ { x } h ( x ) \rangle \mu ( x ) d x = \int _ { \mathcal X } \langle \nabla _ { x } f ( x ) \mu ( x ) , \nabla _ { x } h ( x ) \rangle d x } \\ { = \displaystyle \oint h ( x ) \mu ( x ) \nabla _ { x } f ( x ) . n ( x ) d S ( x ) - \int _ { \mathcal X } d i v \big ( \mu ( x ) \nabla _ { x } f ( x ) \big ) h ( x ) d x } \\ { = - \displaystyle \int _ { \mathcal X } d i v \big ( \mu ( x ) \nabla _ { x } f ( x ) \big ) h ( x ) d x } \end{array} +$$ + +Hence, + +$$ +\begin{array} { l } { { \displaystyle { \cal L } \big ( f + \epsilon h , \lambda \big ) = { \cal L } \big ( f , \lambda \big ) + \epsilon \bigg [ \int _ { \mathcal { X } } \mu _ { 1 } ( x ) h ( x ) d x + \lambda \int _ { \mathcal { X } } d i v \big ( \mu ( x ) \nabla _ { x } f ( x ) \big ) h ( x ) d x \bigg ] + { \mathcal O } ( \epsilon ^ { 2 } ) } } \\ { { \displaystyle ~ = { \cal L } \big ( f , \lambda \big ) + \epsilon \int _ { \mathcal { X } } \bigg ( \mu _ { 1 } ( x ) + \lambda ~ d i v \big ( \mu ( x ) \nabla _ { x } f ( x ) \big ) \bigg ) h ( x ) d x + { \mathcal O } ( \epsilon ^ { 2 } ) } } \end{array} +$$ + +The functional derivative of $L ( f , \lambda )$ , at any test function $h$ vanishing on the boundary: + +$$ +\begin{array} { r c l } { \displaystyle \int _ { \mathcal { X } } \frac { \partial L ( f , \lambda ) } { \partial f } ( x ) h ( x ) d x } & { = } & { \displaystyle \operatorname* { l i m } _ { \epsilon \to 0 } \frac { L ( f + \epsilon h , \lambda ) - L ( f , \lambda ) } { \epsilon } } \\ & { = } & { \displaystyle \int _ { \mathcal { X } } \left( \mu _ { 1 } ( x ) + \lambda \ d i v \big ( \mu ( x ) \nabla _ { x } f ( x ) \big ) \right) h ( x ) d x } \end{array} +$$ + +Hence we have: + +$$ +\frac { \partial L ( f , \lambda ) } { \partial f } ( x ) = \mu _ { 1 } ( x ) + \lambda ~ d i v \big ( \mu ( x ) \nabla _ { x } f ( x ) \big ) +$$ + +For the optimal $f ^ { * } , \lambda ^ { * }$ first order optimality condition gives us: + +$$ +\mu _ { 1 } ( x ) + \lambda ^ { * } \ d i v \big ( \mu ( x ) \nabla _ { x } f ^ { * } ( x ) \big ) = 0 +$$ + +and + +$$ +\int _ { \chi } \left\| \nabla _ { x } f ^ { * } ( x ) \right\| ^ { 2 } \mu ( x ) d x = 1 +$$ + +Note that (See for example (Alaoui et al., 2016)) : + +$$ +\begin{array} { r } { d i v \big ( \mu ( x ) \nabla _ { x } f ^ { * } ( x ) \big ) = \mu ( x ) \Delta _ { 2 } f ^ { * } ( x ) + \langle \nabla _ { x } \mu ( x ) , \nabla _ { x } f ^ { * } ( x ) \rangle , } \end{array} +$$ + +since $d i v ( \nabla _ { x } f ^ { * } ( x ) ) = \Delta _ { 2 } f ^ { * } ( x )$ . Hence from equation (22) + +$$ +\begin{array} { r l } & { \quad \mu _ { 1 } ( x ) + \lambda ^ { * } \ : d i v \ : \left( \mu ( x ) \nabla _ { x } f ^ { * } ( x ) \right) = 0 } \\ & { \Rightarrow \mu _ { 1 } ( x ) + \lambda ^ { * } \ : \left( \mu ( x ) \Delta _ { 2 } f ^ { * } ( x ) + \left. \nabla _ { x } \mu ( x ) , \nabla _ { x } f ^ { * } ( x ) \right. \right) = 0 } \\ & { \Rightarrow \mu _ { 1 } ( x ) + \lambda ^ { * } \ : \mu ( x ) \Delta _ { 2 } f ^ { * } ( x ) + \lambda ^ { * } \langle \nabla _ { x } \mu ( x ) , \nabla _ { x } f ^ { * } ( x ) \rangle = 0 } \\ & { \Rightarrow \Delta _ { 2 } f ^ { * } ( x ) + \left. \frac { \nabla _ { x } \mu ( x ) } { \mu ( x ) } , \nabla _ { x } f ^ { * } ( x ) \right. + \frac { \mu _ { 1 } ( x ) } { \lambda ^ { * } \mu ( x ) } = 0 } \\ & { \Rightarrow \Delta _ { 2 } f ^ { * } ( x ) + \left. \nabla _ { x } \log \mu ( x ) , \nabla _ { x } f ^ { * } ( x ) \right. + \frac { \mathbb { P } ( x ) - \mathbb { Q } ( x ) } { \lambda ^ { * } \mu ( x ) } = 0 } \end{array} +$$ + +Hence $f ^ { * } , \lambda ^ { * }$ satisfies : + +$$ +\Delta _ { 2 } f ^ { * } ( x ) + \langle \nabla _ { x } \log \mu ( x ) , \nabla _ { x } f ^ { * } ( x ) \rangle + \frac { \mathbb { P } ( x ) - \mathbb { Q } ( x ) } { \lambda ^ { * } \mu ( x ) } = 0 +$$ + +and + +$$ +\int _ { \mathcal { X } } \left\| \nabla _ { x } f ^ { * } ( x ) \right\| ^ { 2 } \mu ( x ) d x = 1 . +$$ + +Let us verify that the optimal critic as found in the geometric definition (Theorem 2) of Sobolev IPM that satisfies: + +$$ +\nabla _ { i } f ^ { * } ( x ) = \frac { \partial f ^ { * } ( X ) } { \partial x _ { i } } = \frac { D ^ { - i } F _ { \mathbb { Q } } ( x ) - D ^ { - i } F _ { \mathbb { P } } ( x ) } { \lambda ^ { * } d ~ \mu ( x ) } ~ \forall ~ i \in [ d ] , +$$ + +satisfies indeed the PDE. + +From equation (27), we want to compute $\frac { \partial ^ { 2 } f ( \boldsymbol { x } ) } { \partial \boldsymbol { x } _ { i } ^ { 2 } }$ for all $i$ + +$$ +\begin{array} { r l } & { \frac { \partial ^ { 2 } f ( x ) } { \partial x _ { i } ^ { 2 } } = \frac { 1 } { \lambda ^ { * } d } \Bigg [ \frac { \mu ( x ) \left[ \frac { \partial } { \partial x _ { i } } ( D ^ { - i } F _ { \mathbb { Q } } ( x ) - D ^ { - i } F _ { \mathbb { P } } ( x ) ) \right] - \left[ D ^ { - i } F _ { \mathbb { Q } } ( x ) - D ^ { - i } F _ { \mathbb { P } } ( x ) \right] \nabla _ { i } \mu ( X ) } { \mu ^ { 2 } ( x ) } \Bigg ] } \\ & { \quad \quad \quad = \frac { 1 } { \lambda ^ { * } d } \Bigg [ \frac { \mu ( x ) \left[ \mathbb { Q } ( x ) - \mathbb { P } ( x ) \right] - \left[ D ^ { - i } F _ { \mathbb { Q } } ( x ) - D ^ { - i } F _ { \mathbb { P } } ( x ) \right] \nabla _ { i } \mu ( X ) } { \mu ^ { 2 } ( x ) } \Bigg ] } \\ & { \quad \quad \quad = \frac { \mathbb { Q } ( x ) - \mathbb { P } ( x ) } { \lambda ^ { * } d \mu ( x ) } - \frac { \nabla _ { i } \mu ( x ) } { \mu ( x ) } \nabla _ { i } f ^ { * } ( x ) } \end{array} +$$ + +Hence, + +$$ +{ \frac { \partial ^ { 2 } f ( x ) } { \partial x _ { i } ^ { 2 } } } + { \frac { \nabla _ { i } \mu ( x ) } { \mu ( x ) } } \nabla _ { i } f ( x ) + { \frac { \left( \mathbb { P } ( x ) - \mathbb { Q } ( x ) \right) } { \lambda ^ { * } d \ \mu ( x ) } } = 0 +$$ + +Adding equation (28) for all $i \in [ d ]$ , we get : + +$$ +\sum _ { i = 1 } ^ { d } \left( \frac { \partial ^ { 2 } f ( x ) } { \partial x _ { i } ^ { 2 } } + \frac { \nabla _ { i } \mu ( x ) } { \mu ( x ) } \nabla _ { i } f ( x ) + \frac { \left( \mathbb { P } ( x ) - \mathbb { Q } ( x ) \right) } { \lambda ^ { * } d ~ \mu ( x ) } \right) = 0 +$$ + +As a result, the solution $f ^ { * }$ of the partial differential equation given in equation (25) satisfies the following : + +$$ +\frac { \partial f ^ { * } ( x ) } { \partial x _ { i } } = \frac { D ^ { - i } F _ { \mathbb { Q } } ( x ) - D ^ { - i } F _ { \mathbb { P } } ( x ) } { \lambda ^ { * } d ~ \mu ( x ) } ~ \forall i \in [ d ] +$$ + +Using the constraint in (26) we can get the value of $\lambda ^ { * }$ : + +$$ +\begin{array} { r l } & { \quad \displaystyle \int \| \nabla f ^ { * } ( \boldsymbol { x } ) \| ^ { 2 } \mu ( \boldsymbol { x } ) d \boldsymbol { x } = 1 } \\ & { \Rightarrow \displaystyle \int \sum _ { i = 1 } ^ { d } \left( \frac { \partial f ^ { * } ( \boldsymbol { x } ) } { \partial x _ { i } } \right) ^ { 2 } \mu ( \boldsymbol { x } ) d \boldsymbol { x } = 1 } \\ & { \Rightarrow \lambda ^ { * } = \displaystyle \frac { 1 } { d } \sqrt { \displaystyle \sum _ { i = 1 } ^ { d } \int \frac { \left( D ^ { - i } F _ { \mathbb { Q } } ( \boldsymbol { x } ) - D ^ { - i } F _ { \mathbb { P } } ( \boldsymbol { x } ) \right) ^ { 2 } } { \mu ( \boldsymbol { x } ) } d \boldsymbol { x } } = S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) . } \end{array} +$$ + +Proof of Theorem 4. Define the Stein operator (Oates et al., 2017): + +$$ +\begin{array} { l l l } { { T ( \mu ) [ \nabla _ { x } f ( x ) ] } } & { { = } } & { { \displaystyle \frac { 1 } { 2 } \left. \nabla _ { x } f ( x ) , \nabla _ { x } \log \mu ( x ) \right. + \displaystyle \frac { 1 } { 2 } \left. \nabla _ { x } , \nabla _ { x } f ( x ) \right. } } \\ { { } } & { { = } } & { { \displaystyle \frac { 1 } { 2 } \left. \nabla _ { x } f ( x ) , \nabla _ { x } \log \mu ( x ) \right. + \displaystyle \frac { 1 } { 2 } \Delta _ { 2 } f ( x ) . } } \end{array} +$$ + +This operator was later used in defining the Stein discrepancy (Gorham & Mackey, 2015; Liu et al., 2016; Chwialkowski et al., 2016; Liu, 2017). + +Recall that Barbour generator theory provides us a way of constructing such operators that produce mean zero function under $\mu$ . It is easy to verify that: + +$$ +\mathbb { E } _ { x \sim \mu } T ( \mu ) \nabla _ { x } f ( x ) = 0 . +$$ + +Recall that this operator arises from the overdamped Langevin diffusion, defined by the stochastic differential equation: + +$$ +d x _ { t } = \frac { 1 } { 2 } \nabla _ { x } \log \mu ( x _ { t } ) + d W _ { t } +$$ + +where $( W _ { t } ) _ { t \geq 0 }$ is a Wiener process. This is related to plug and play networks for generating samples if the distribution is known, using the stochastic differential equation. + +From Theorem 3, it is easy to see that the PDE the Sobolev Critic $( f ^ { * } , \lambda ^ { * } = { \cal S } _ { \mu } ( \mathbb { P } , \mathbb { Q } ) )$ can be written in term of Stein Operator as follows: + +$$ +T ( \mu ) [ \nabla _ { x } f ^ { * } ] ( x ) = \frac { 1 } { 2 \lambda ^ { * } } \frac { \mathbb { Q } ( x ) - \mathbb { P } ( x ) } { \mu ( x ) } +$$ + +Taking absolute values and the expectation with respect to $\mathbb { Q }$ : + +$$ +\left| \mathbb { E } _ { x \sim \mathbb { Q } } \left[ T ( \mu ) \nabla _ { x } f ^ { * } ( x ) \right] \right| = { \frac { 1 } { 2 S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) } } \left| \mathbb { E } _ { x \sim \mathbb { Q } } \left[ { \frac { \mathbb { Q } ( x ) - \mathbb { P } ( x ) } { \mu ( x ) } } \right] \right| +$$ + +Recall that the definition of Stein Discrepancy : + +$$ +{ \mathbb S } ( \mathbb Q , \mu ) = \operatorname* { s u p } _ { \vec { g } \in \mathcal L _ { 2 } ( \mathcal X , \mu ) ^ { \otimes d } } \left| \mathbb E _ { \boldsymbol { x } \sim \mathbb Q } \left[ T ( \mu ) \vec { g } ( \boldsymbol { x } ) \right] \right| +$$ + +It follows that Sobolev IPM critic satisfies: + +$$ +| \mathbb { E } _ { x \sim \mathbb { Q } } \left[ T ( \mu ) \nabla _ { x } f ^ { * } ( x ) \right] | \leq \mathbb { S } ( \mathbb { Q } , \mu ) , +$$ + +Hence we have the following inequality: + +$$ +\frac { 1 } { 2 S _ { \mu } ( \mathbb { P } , \mathbb { Q } ) } \left| \mathbb { E } _ { \boldsymbol { x } \sim \mathbb { Q } } \left[ \frac { \mathbb { Q } ( \boldsymbol { x } ) - \mathbb { P } ( \boldsymbol { x } ) } { \mu ( \boldsymbol { x } ) } \right] \right| \leq \mathbb { S } ( \mathbb { Q } , \mu ) +$$ + +This is equivalent to: + +$$ +\left| \mathbb { E } _ { x \sim \mathbb { Q } } \left[ { \frac { \mathbb { Q } ( x ) - \mathbb { P } ( x ) } { \mu ( x ) } } \right] \right| \leq 2 \qquad { \underset { \Delta \in { \mathbb { Q } } , \mu } { \underbrace { \mathbb { S } ( \mathbb { Q } , \mu ) } } } \qquad { \underset { \Delta \in { \mathbb { P } } } { \underbrace { { \mathcal { S } } _ { \mu } ( \mathbb { P } , \mathbb { Q } ) } } } +$$ + +Similarly we obtain: + +$$ +\left| \mathbb { E } _ { x \sim \mathbb { P } } \left[ { \frac { \mathbb { Q } ( x ) - \mathbb { P } ( x ) } { \mu ( x ) } } \right] \right| \leq 2 \qquad \underbrace { { \mathbb { S } } ( \mathbb { P } , \mu ) } _ { \in { \mathcal { S } } } \qquad \underbrace { { \mathcal { S } } _ { \mu } ( \mathbb { P } , \mathbb { Q } ) } _ { \in { \mathcal { S } } } +$$ + +For instance consider $\mu = \mathbb { P }$ , we have therefore: + +$$ +{ \frac { 1 } { 2 } } \left| \mathbb { E } _ { x \sim \mathbb { Q } } \left[ { \frac { \mathbb { Q } ( x ) } { \mathbb { P } ( x ) } } \right] - 1 \right| \leq \mathbb { S } ( \mathbb { Q } , \mathbb { P } ) S _ { \mathbb { P } } ( \mathbb { P } , \mathbb { Q } ) . +$$ + +Note that the left hand side of the inequality is not the total variation distance. + +Hence for a sequence $\mathbb { Q } _ { n }$ if the Sobolev distance goes $S _ { \mathbb { P } } ( \mathbb { P } , \mathbb { Q } _ { n } ) 0$ , the ratio $\begin{array} { r } { r _ { n } ( x ) = \frac { \mathbb Q _ { n } ( x ) } { \mathbb P ( x ) } } \end{array}$ converges in expectation (w.r.t to $\mathbb { Q }$ ) to 1. The speed of the convergence is given by the Stein Discrepancy $\mathbb { S } ( \mathbb { Q } _ { n } , \mathbb { P } )$ . + +One important observation here is that convergence of PDF ratio is weaker than the conditional CDF as given by the Sobolev distance and of the good fitness of score function as given by Stein discrepancy. + +# C TEXT EXPERIMENTS: ADDITIONAL PLOTS + +# Comparison of annealed versus non annealed smoothing of $\mathbb { P } _ { r }$ in Sobolev GAN. + +![](images/9bc07e8ad8977d3d3e0990973f1d012506b6beae1acd22e818815329398759c9.jpg) +Figure 6: Comparison of annealed versus non annealed smoothing of $\mathbb { P } _ { r }$ in Sobolev GAN. We see that annealed smoothing outperforms the non annealed smoothing experiments. + +Sobolev GAN versus WGAN-GP with RNN. We fix the generator architecture to Resnets. The experiments of using RNN (GRU) as the critic architecture for WGAN-GP and Sobolev is shown in Figure 7 where we used $\mu = \mu _ { G P }$ for both cases. We only apply gradient clipping to stabilize the performance without other tricks. We can observe that using RNN degrades the performance. We think that this is due to an optimization issue and a difficulty in training RNN under the GAN objective without any pre-training or conditioning. + +![](images/b33296dfeec538aff71afa249d3c78cee91fb6d6002cb89df8dd5f0cad50bf6f.jpg) +Figure 7: Result of WGAN-GP and Sobolev with RNNs. + +![](images/22b283fdcd36a259ef1de1da1ae8a6d80587aa0ad141b9ca955c8082e7f17492.jpg) +Figure 8: Text samples from various GANs considered in this paper. + +# D SSL: HYPERPARAMETERS AND ARCHITECTURE + +For our SSL experiments on CIFAR-10, we use Adam with learning rate $\eta = 2 \mathrm { { e } - 4 }$ , $\beta _ { 1 } ~ = ~ 0 . 5$ and $\beta _ { 2 } = 0 . 9 9 9$ , both for critic $f$ (without BN) and Generator (with BN). We selected $\lambda _ { C E } = 1 . 5$ from [0.8, 1.5, 3.0, 5.0]. We train all models for 350 epochs. We used some L2 weight decay: 1e−6 on $\omega , S$ (i.e. all layers except last) and 1e 3 weight decay on the last layer $v$ . For formulation 1 (Fisher only) we have $\rho _ { F } = 1 \mathrm { e } { - 7 }$ , modified critic learning rate $\eta _ { D } = 1 \mathrm { e } { - 4 }$ , critic iters $n _ { c } = 2$ . For formulation 2 (Sobolev $^ +$ Fisher) we have $\rho _ { F } = 5 \mathrm { e } - 8$ , $\rho _ { S } = 2 \mathrm { e } - 8$ , critic iters $n _ { c } = 1$ . For the WGAN-GP (Gulrajani et al., 2017) baseline SSL experiment we followed the original paper with critic iters $n _ { c } = 5$ , $\eta _ { G } = \eta _ { D } = 1 \mathrm { e } { - 4 }$ , Adam $\beta _ { 2 } { = } 0 . 9$ and GP weight $\lambda _ { G P } = 1 0 . 0$ . Architectures are as below. We determined $\lambda _ { C E } = 0 . 3$ to be optimal from $[ 0 . 0 3 , 0 . 1 , 0 . 3 , 1 . 0 , 3 . 0 ]$ . As mentioned in Section 6.2, the $\mathrm { K } { + } 1$ critic formulation is not able to fit the training set with the GP constraint, so we fall back to the plain critic formulation where the critic $\langle v , \Phi _ { \omega } ( \bar { x } ) \rangle$ does not interact with the classifier $\langle S , \Phi _ { \omega } ( x ) \rangle$ . + +# Architecture: + +(6): ConvTranspose2d(128, 64, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False) (7): BatchNorm2d(64, eps=1e-05, momentum=0.1, affine=True) (8): ReLU (inplace) (9): Conv2d(64, 64, kernel_siz $\div =$ (3, 3), stride=(1, 1), padding=(1, 1), bias=False) (10): BatchNorm2d(64, eps=1e-05, momentum=0.1, affine=True) (11): ReLU (inplace) (12): Conv2d(64, 64, kernel_size $: =$ (3, 3), strid $\div =$ (1, 1), padding $=$ (1, 1), bias=False) (13): BatchNorm2d(64, eps=1e-05, momentum=0.1, affine=True) (14): ReLU (inplace) (15): ConvTranspose2d(64, 3, kernel_size $: =$ (4, 4), strid $: =$ (2, 2), padding $^ { \ast = }$ (1, 1), bias=False) (16): Tanh () ) ) D ( (main): Sequential ( (0): Dropout $\mathrm { ~ \bf ~ p ~ } = \mathrm { ~ \bf ~ 0 ~ } . 2 \mathrm { ~ \bf ~ }$ ) (1): Conv2d(3, 96, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1)) (2): LeakyReLU (0.2, inplace) (3): Conv2d(96, 96, kernel_siz $\div =$ (3, 3), stride $\div =$ (1, 1), padding=(1, 1), bias=False) (5): LeakyReLU (0.2, inplace) (6): Conv2d(96, 96, kernel_size=(3, 3), stride=(2, 2), padding=(1, 1), bias=False) (8): LeakyReLU (0.2, inplace) (9): Dropout $( \mathrm { p } ~ = ~ 0 . 5 )$ (10): Conv2d(96, 192, kernel_size $=$ (3, 3), stride $=$ (1, 1), padding $=$ (1, 1), bias=False) (12): LeakyReLU (0.2, inplace) (13): Conv2d(192, 192, kernel_size $=$ (3, 3), stride $: =$ (1, 1), padding $=$ (1, 1), bias $\scriptstyle = \mathbf { E }$ alse) (15): LeakyReLU (0.2, inplace) (16): Conv2d(192, 192, kernel_size $: =$ (3, 3), stride $: =$ (2, 2), padding $=$ (1, 1), bias=False) (18): LeakyReLU (0.2, inplace) (19): Dropout ( $\mathrm { ~ \cdot ~ p ~ } = \mathrm { ~ 0 ~ . ~ 5 ~ }$ (20): Conv2d(192, 384, kernel_size $: =$ (3, 3), stride $=$ (1, 1), bias=False) (22): LeakyReLU (0.2, inplace) (23): Dropout (p = 0.5) (24): Conv2d(384, 384, kernel_size $=$ (3, 3), stride $=$ (1, 1), bias=False) (26): LeakyReLU (0.2, inplace) (27): Dropout $( \mathrm { p } ~ = ~ 0 . 5 )$ (28): Conv2d(384, 384, kernel_size=(1, 1), stride=(1, 1), bias=False) (30): LeakyReLU (0.2, inplace) (31): Dropout $( \mathrm { p } ~ = ~ 0 . 5 )$ ) ) (V): Linear (6144 -> 1) (S): Linear (6144 -> 10) ) \ No newline at end of file diff --git a/parse/train/SJA7xfb0b/SJA7xfb0b_content_list.json b/parse/train/SJA7xfb0b/SJA7xfb0b_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..3baebf0183bfd616ebbb0c86c74d551c8b2f7cb9 --- /dev/null +++ b/parse/train/SJA7xfb0b/SJA7xfb0b_content_list.json @@ -0,0 +1,3871 @@ +[ + { + "type": "text", + "text": "SOBOLEV GAN ", + "text_level": 1, + "bbox": [ + 176, + 98, + 362, + 121 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Youssef Mroueh†, Chun-Liang $\\mathbf { L i } ^ { \\circ , \\star }$ , Tom Sercu†,?, Anant Raj♦,? & Yu Cheng† ", + "bbox": [ + 184, + 143, + 732, + 160 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "$\\dagger$ IBM Research AI \n$\\circ$ Carnegie Mellon University \n$\\diamondsuit$ Max Planck Institute for Intelligent Systems \n$\\star$ denotes Equal Contribution \nmroueh,chengyu @us.ibm.com, chunlial@cs.cmu.edu, \ntom.sercu1@ibm.com,anant.raj@tuebingen.mpg.de ", + "bbox": [ + 184, + 160, + 658, + 242 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 279, + 544, + 294 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We propose a new Integral Probability Metric (IPM) between distributions: the Sobolev IPM. The Sobolev IPM compares the mean discrepancy of two distributions for functions (critic) restricted to a Sobolev ball defined with respect to a dominant measure $\\mu$ . We show that the Sobolev IPM compares two distributions in high dimensions based on weighted conditional Cumulative Distribution Functions (CDF) of each coordinate on a leave one out basis. The Dominant measure $\\mu$ plays a crucial role as it defines the support on which conditional CDFs are compared. Sobolev IPM can be seen as an extension of the one dimensional VonMises Cramer statistics to high dimensional distributions. We show how Sobolev ´ IPM can be used to train Generative Adversarial Networks (GANs). We then exploit the intrinsic conditioning implied by Sobolev IPM in text generation. Finally we show that a variant of Sobolev GAN achieves competitive results in semisupervised learning on CIFAR-10, thanks to the smoothness enforced on the critic by Sobolev GAN which relates to Laplacian regularization. ", + "bbox": [ + 233, + 313, + 764, + 506 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 537, + 336, + 553 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In order to learn Generative Adversarial Networks (Goodfellow et al., 2014), it is now well established that the generator should mimic the distribution of real data, in the sense of a certain discrepancy measure. Discrepancies between distributions that measure the goodness of the fit of the neural generator to the real data distribution has been the subject of many recent studies (Arjovsky & Bottou, 2017; Nowozin et al., 2016; Kaae Sønderby et al., 2017; Mao et al., 2017; Arjovsky et al., 2017; Gulrajani et al., 2017; Mroueh et al., 2017; Mroueh & Sercu, 2017; Li et al., 2017), most of which focus on training stability. ", + "bbox": [ + 174, + 570, + 825, + 667 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In terms of data modalities, most success was booked in plausible natural image generation after the introduction of Deep Convolutional Generative Adversarial Networks (DCGAN) (Radford et al., 2015). This success is not only due to advances in training generative adversarial networks in terms of loss functions (Arjovsky et al., 2017) and stable algorithms, but also to the representation power of convolutional neural networks in modeling images and in finding sufficient statistics that capture the continuous density function of natural images. When moving to neural generators of discrete sequences generative adversarial networks theory and practice are still not very well understood. Maximum likelihood pre-training or augmentation, in conjunction with the use of reinforcement learning techniques were proposed in many recent works for training GAN for discrete sequences generation (Yu et al., 2016; Che et al., 2017; Hjelm et al., 2017; Rajeswar et al., 2017). Other methods included using the Gumbel Softmax trick (Kusner & Hernandez-Lobato ´ , 2016) and the use of auto-encoders to generate adversarially discrete sequences from a continuous space (Zhao et al., 2017). End to end training of GANs for discrete sequence generation is still an open problem (Press et al., 2017). Empirical successes of end to end training have been reported within the framework of WGAN-GP (Gulrajani et al., 2017), using a proxy for the Wasserstein distance via a pointwise gradient penalty on the critic. Inspired by this success, we propose in this paper a new Integral Probability Metric (IPM) between distributions that we coin Sobolev IPM. Intuitively an IPM (Muller ¨ , 1997) between two probability distributions looks for a witness function $f$ , called critic, that maximally discriminates between samples coming from the two distributions: ", + "bbox": [ + 174, + 674, + 825, + 882 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 825, + 160 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/a98ebe639cd3d8ea740d650c0644ca19dff3a339cd72867878bbf88dd81cb39e.jpg", + "text": "$$\n\\operatorname* { s u p } _ { f \\in \\mathcal { F } } \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) .\n$$", + "text_format": "latex", + "bbox": [ + 397, + 166, + 598, + 194 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Traditionally, the function $f$ is defined over a function class $\\mathcal { F }$ that is independent to the distributions at hand (Sriperumbudur et al., 2012). The Wasserstein-1 distance corresponds for instance to an IPM where the witness functions are defined over the space of Lipschitz functions; The MMD distance (Gretton et al., 2012) corresponds to witness functions defined over a ball in a Reproducing Kernel Hilbert Space (RKHS). ", + "bbox": [ + 173, + 202, + 825, + 272 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We will revisit in this paper Fisher IPM defined in (Mroueh & Sercu, 2017), which extends the IPM definition to function classes defined with norms that depend on the distributions. Fisher IPM can be seen as restricting the critic to a Lebsegue ball defined with respect to a dominant measure $\\mu$ . The Lebsegue norm is defined as follows: ", + "bbox": [ + 174, + 279, + 825, + 335 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/966178bc96ad159d2cef7de229090b6fdbbd04e35a7b168d54122f65f3b2fe91.jpg", + "text": "$$\n\\int _ { \\mathcal { X } } f ^ { 2 } ( x ) \\mu ( x ) d x .\n$$", + "text_format": "latex", + "bbox": [ + 437, + 343, + 558, + 376 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $\\mu$ is a dominant measure of $\\mathbb { P }$ and $\\mathbb { Q }$ ", + "bbox": [ + 176, + 382, + 459, + 397 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this paper we extend the IPM framework to critics bounded in the Sobolev norm: ", + "bbox": [ + 173, + 404, + 722, + 419 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/9acae480abe15bd92f2858f3db977054cb0898e2e6eca672ab7245aeab1e28a2.jpg", + "text": "$$\n\\int _ { \\mathcal { X } } \\| \\nabla _ { \\boldsymbol { x } } f ( \\boldsymbol { x } ) \\| _ { 2 } ^ { 2 } \\mu ( \\boldsymbol { x } ) d x ,\n$$", + "text_format": "latex", + "bbox": [ + 416, + 425, + 578, + 459 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In contrast to Fisher IPM, which compares joint probability density functions of all coordinates between two distributions, we will show that Sobolev IPM compares weighted (coordinate-wise) conditional Cumulative Distribution Functions for all coordinates on a leave on out basis. Matching conditional dependencies between coordinates is crucial for sequence modeling. ", + "bbox": [ + 173, + 465, + 825, + 522 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our analysis and empirical verification show that the modeling of the conditional dependencies can be built in to the metric used to learn GANs as in Sobolev IPM. For instance, this gives an advantage to Sobolev IPM in comparing sequences over Fisher IPM. Nevertheless, in sequence modeling when we parametrize the critic and the generator with a neural network, we find an interesting tradeoff between the metric used and the architectures used to parametrize the critic and the generator as well as the conditioning used in the generator. The burden of modeling the conditional long term dependencies can be handled by the IPM loss function as in Sobolev IPM (more accurately the choice of the data dependent function class of the critic) or by a simpler metric such as Fisher IPM together with a powerful architecture for the critic that models conditional long term dependencies such as LSTM or GRUs in conjunction with a curriculum conditioning of the generator as done in (Press et al., 2017). Highlighting those interesting tradeoffs between metrics, data dependent functions classes for the critic (Fisher or Sobolev) and architectures is crucial to advance sequence modeling and more broadly structured data generation using GANs. ", + "bbox": [ + 173, + 529, + 825, + 709 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "On the other hand, Sobolev norms have been widely used in manifold regularization in the so called Laplacian framework for semi-supervised learning (SSL) (Belkin et al., 2006). GANs have shown success in semi-supervised learning (Salimans et al., 2016; Dumoulin et al., 2017; Dai et al., 2017; Kumar et al., 2017). Nevertheless, many normalizations and additional tricks were needed. We show in this paper that a variant of Sobolev GAN achieves strong results in semi-supervised learning on CIFAR-10, without the need of any activation normalization in the critic. ", + "bbox": [ + 174, + 717, + 825, + 800 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The main contributions of this paper can be summarized as follows: ", + "bbox": [ + 174, + 808, + 617, + 821 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1. We overview in Section 2 different metrics between distribution used in the GAN literature. We then generalize Fisher IPM in Section 3 with a general dominant measure $\\mu$ and show how it compares distributions based on their PDFs. 2. We introduce Sobolev IPM in Section 4 by restricting the critic of an IPM to a Sobolev ball defined with respect to a dominant measure $\\mu$ . We then show that Sobolev IPM defines a discrepancy between weighted (coordinate-wise) conditional CDFs of distributions. ", + "bbox": [ + 212, + 833, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "3. The intrinsic conditioning and the CDF matching make Sobolev IPM suitable for discrete sequence matching and explain the success of the gradient pernalty in WGAN-GP and Sobolev GAN in discrete sequence generation. \n4. We give in Section 5 an ALM (Augmented Lagrangian Multiplier) algorithm for training Sobolev GAN. Similar to Fisher GAN, this algorithm is stable and does not compromise the capacity of the critic. \n5. We show in Appendix A that the critic of Sobolev IPM satisfies an elliptic Partial Differential Equation (PDE). We relate this diffusion to the Fokker-Planck equation and show the behavior of the gradient of the optimal Sobolev critic as a transportation plan between distributions. \n6. We empirically study Sobolev GAN in character level text generation (Section 6.1). We validate that the conditioning implied by Sobolev GAN is crucial for the success and stability of GAN in text generation. As a take home message from this study, we see that text generation succeeds either by implicit conditioning i.e using Sobolev GAN (or WGANGP) together with convolutional critics and generators, or by explicit conditioning i.e using Fisher IPM together with recurrent critic and generator and curriculum learning. \n7. We finally show in Section 6.2 that a variant of Sobolev GAN achieves competitive semisupervised learning results on CIFAR-10, thanks to the smoothness implied by the Sobolev regularizer. ", + "bbox": [ + 210, + 103, + 825, + 383 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2 OVERVIEW OF METRICS BETWEEN DISTRIBUTIONS ", + "text_level": 1, + "bbox": [ + 173, + 401, + 632, + 417 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this Section, we review different representations of probability distributions and metrics for comparing distributions that use those representations. Those metrics are at the core of training GAN. In what follows, we consider probability measures with a positive weakly differentiable probability density functions (PDF). Let $P$ and $Q$ be two probability measures with PDFs $\\mathbb { P } ( x )$ and $\\mathbb { Q } ( x )$ defined on $\\mathcal { X } \\subset \\mathbb { R } ^ { d }$ . Let $F _ { \\mathbb { P } }$ and $F _ { \\mathbb { Q } }$ be the Cumulative Distribution Functions (CDF) of $\\mathbb { P }$ and $\\mathbb { Q }$ respectively. For $\\boldsymbol { x } = ( x _ { 1 } , \\dots , x _ { d } )$ , we have: ", + "bbox": [ + 173, + 431, + 825, + 516 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/dfc3710e8726c51e7ac97beed732772f72c0624bdfa5f7064d766a87677813a4.jpg", + "text": "$$\nF _ { \\mathbb { P } } ( x ) = \\int _ { - \\infty } ^ { x _ { 1 } } \\ldots \\cdot \\cdot \\int _ { - \\infty } ^ { x _ { d } } \\mathbb { P } ( u _ { 1 } , \\ldots \\cdot u _ { d } ) d u _ { 1 } \\ldots \\cdot \\cdot d u _ { d } .\n$$", + "text_format": "latex", + "bbox": [ + 338, + 516, + 660, + 551 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The score function of a density function is defined as: $s _ { \\mathbb { P } } ( x ) = \\nabla _ { x } \\log ( \\mathbb { P } ( x ) ) \\in \\mathbb { R } ^ { d }$ . ", + "bbox": [ + 174, + 559, + 723, + 575 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this work, we are interested in metrics between distributions that have a variational form and can be written as a suprema of mean discrepancies of functions defined on a specific function class. This type of metrics include $\\varphi$ -divergences as well as Integral Probability Metrics (Sriperumbudur et al., 2009) and have the following form: ", + "bbox": [ + 174, + 582, + 825, + 637 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/90c861d763dff1c6c7b258b248ec40ee16517370ae2a39a533de96170653062c.jpg", + "text": "$$\nd _ { \\mathcal { F } } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { f \\in \\mathcal { F } } \\left| \\Delta ( f ; \\mathbb { P } , \\mathbb { Q } ) \\right| ,\n$$", + "text_format": "latex", + "bbox": [ + 392, + 638, + 602, + 665 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\mathcal { F }$ is a function class defined on $\\mathcal { X }$ and $\\Delta$ is a mean discrepancy, $\\Delta : \\mathcal { F } \\mathbb { R }$ . The variational form given above leads in certain cases to closed form expressions in terms of the PDFs $\\mathbb { P } , \\mathbb { Q }$ or in terms of the CDFs $F _ { \\mathbb { P } } , F _ { \\mathbb { Q } }$ or the score functions $s _ { \\mathbb { P } } , s _ { \\mathbb { Q } }$ . ", + "bbox": [ + 176, + 666, + 825, + 709 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In Table 1, we give a comparison of different discrepancies $\\Delta$ and function spaces $\\mathcal { F }$ used in the literature for GAN training together with our proposed Sobolev IPM. We see from Table 1 that Sobolev IPM, compared to Wasserstein Distance, imposes a tractable smoothness constraint on the critic on points sampled from a distribution $\\mu$ , rather then imposing a Lipschitz constraint on all points in the space $\\mathcal { X }$ . We also see that Sobolev IPM is the natural generalization of the Cramer´ Von-Mises Distance from one dimension to high dimensions. We note that the Energy Distance, a form of Maximum Mean Discrepancy for a special kernel, was used in (Bellemare et al., 2017b) as a generalization of the Cramer distance in GAN training but still needed a gradient penalty in ´ its algorithmic counterpart leading to a mis-specified distance between distributions. Finally it is worth noting that when comparing Fisher IPM and Sobolev IPM we see that while Fisher IPM compares joint PDF of the distributions, Sobolev IPM compares weighted (coordinate-wise) conditional CDFs. As we will see later, this conditioning nature of the metric makes Sobolev IPM suitable for comparing sequences. Note that the Stein metric (Liu et al., 2016; Liu, 2017) uses the score function to match distributions. We will show later how Sobolev IPM relates to the Stein discrepancy (Appendix A). ", + "bbox": [ + 173, + 715, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "table", + "img_path": "images/a902eb13ef0e600d618ef6520feed6e52f0d53869e489d1691bf1605a481948a.jpg", + "table_caption": [ + "Table 1: Comparison of different metrics between distributions used for GAN training. References are for papers using those metrics for GAN training. " + ], + "table_footnote": [], + "table_body": "
△(f;P,Q)FFunction classdg(P,Q)Closed Form
-Divergence(Goodfellow et al., 2014)(Nowozin et al., 2016)Ex~Pf(x)-Ex~Q*(f(x))*Fenchel Conjugate{f:x→R,f∈domp*}E~[(]
Wasserstein -1(Arjovsky et al., 2017)(Gulrajani et al., 2017)Ex~Pf(x)-Ex~qf(x){f : x→R,fli ≤1}infπ∈(P,Q) Sx |lx-ylli dπ(x,y)Sinkhorn Divergence(Genevay et al., 2017)
MMD(Li et al., 2017)(Li et al., 2015)(Dziugaite et al., 2015)Ex~Pf(x)-Ex~qf(x){f:x→R,/fl/x ≤1}Ex~Pkx -Ex~Qr llyex
SteinDiscrepancy(Wang & Liu, 2016)Ex~Q[T(P)f(x)]T(P)=(Vxlog(P(x))T+Vx.{f:x→Rdf smooth with zeroboundary conditionNA in generalhas a closed formin RKHS
Cramerfor d =1(Bellemare et al., 2017a)Ex~Pf(x)-Ex~Qf(x){f:x→R,Ea~P()²≤1,f smooth with zeroboundary conditionEx~P(Fp(2)-F0())²P(x)xER
μ-FisherIPM(Mroueh & Sercu,2017)Ex~Pf(x)-Ex~Qf(x){f:X→R,f∈L(x,μ),Ex~μf²(x)≤1}Ex~u(P()-Q(x))²2μ(x)
μ-SobolevIPM(This work)Ex~Pf(x)-Ex~qf(x){f:X→R,f eW²(x,μ),Ex~μ|/Vxf(x)²≤1,with zero boundary condition }1VE~u∑i-((中i(P)-Φi(Q)μ(x)where 𝜙(P) =Px-i(x-i)FP[xx-i-ij(mi)x−=(x1,..xi-1,Ti+1,..d)
", + "bbox": [ + 173, + 101, + 825, + 554 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3 GENERALIZING FISHER IPM: PDF COMPARISON ", + "text_level": 1, + "bbox": [ + 173, + 621, + 614, + 640 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Imposing data-independent constraints on the function class in the IPM framework, such as the Lipschitz constraint in the Wasserstein distance is computationally challenging and intractable for the general case. In this Section, we generalize the Fisher IPM introduced in (Mroueh & Sercu, 2017), where the function class is relaxed to a tractable data dependent constraint on the second order moment of the critic, in other words the critic is constrained to be in a Lebsegue ball. ", + "bbox": [ + 173, + 654, + 825, + 724 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Fisher IPM. Let $\\mathcal { X } \\subset \\mathbb { R } ^ { d }$ and $\\mathcal { P } ( \\mathcal { X } )$ be the space of distributions defined on $\\mathcal { X }$ . Let $\\mathbb { P } , \\mathbb { Q } \\in$ $\\mathcal { P } ( \\mathcal { X } )$ , and $\\mu$ be a dominant measure of $\\mathbb { P }$ and $\\mathbb { Q }$ , in the sense that ", + "bbox": [ + 169, + 729, + 821, + 760 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/c0f789d8ffd1b190245ac2d5c2109164edc26b49965fa31000e8c43bc0ca1bce.jpg", + "text": "$$\n\\mu ( x ) = 0 \\implies \\mathbb { P } ( x ) = 0 { \\mathrm { ~ a n d } } \\mathbb { Q } ( x ) = 0 .\n$$", + "text_format": "latex", + "bbox": [ + 362, + 765, + 633, + 782 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We assume $\\mu$ to be also a distribution in $\\mathcal { P } ( \\mathcal { X } )$ , and assume $\\pmb { \\mu } ( \\pmb { x } ) > \\mathbf { 0 } , \\forall \\pmb { x } \\in \\mathcal { X }$ . Let $\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu )$ be the space of $\\mu$ -measurable functions. For $f , g \\in \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu )$ , we define the following dot product and its corresponding norm: ", + "bbox": [ + 174, + 787, + 825, + 832 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/88f56b94989940a85facb05c3b4699c2785ac41c8649ec20ce8494b9a619d6be.jpg", + "text": "$$\n\\langle f , g \\rangle _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } = \\int _ { \\mathcal { X } } f ( x ) g ( x ) \\mu ( x ) d x , \\| f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } = \\sqrt { \\int _ { \\mathcal { X } } f ^ { 2 } ( x ) \\mu ( x ) d x } .\n$$", + "text_format": "latex", + "bbox": [ + 251, + 838, + 746, + 881 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Note that $\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu )$ , can be formally defined as follows: ", + "bbox": [ + 173, + 886, + 544, + 902 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/57c9c82b706a6af55890433de3272cf1166b92ac86003a5135e9b3124436ccfa.jpg", + "text": "$$\n\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) = \\{ f : \\mathcal { X } \\to \\mathbb { R } \\mathrm { s . t } \\ \\| f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } < \\infty \\} .\n$$", + "text_format": "latex", + "bbox": [ + 333, + 907, + 660, + 928 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We define the unit Lebesgue ball as follows: ", + "bbox": [ + 176, + 103, + 465, + 117 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/ed5b076ecf167418ab81fd98dc01d6d5f7e66b35768fe8f111ec1304aecbf9ce.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu ) = \\{ f \\in \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) , \\| f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } \\leq 1 \\} . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 338, + 119, + 656, + 140 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Fisher IPM defined in (Mroueh & Sercu, 2017), searches for the critic function in the Lebesgue Ball $\\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu )$ that maximizes the mean discrepancy between $\\mathbb { P }$ and $\\mathbb { Q }$ . Fisher GAN (Mroueh & Sercu, 2017) was originally formulated specifically for $\\begin{array} { r } { \\mu = \\frac 1 2 ( { \\mathbb P } + { \\mathbb Q } ) } \\end{array}$ . We consider here a general $\\mu$ as long as it dominates $\\mathbb { P }$ and $\\mathbb { Q }$ . We define Generalized Fisher IPM as follows: ", + "bbox": [ + 173, + 141, + 825, + 196 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/0459b6283064953f4a579db933a7da8d2f8da64146d6cb7f61d718f7edc339ed.jpg", + "text": "$$\n\\mathcal { F } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { f \\in \\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu ) } \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x )\n$$", + "text_format": "latex", + "bbox": [ + 341, + 199, + 656, + 227 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Note that: ", + "bbox": [ + 173, + 229, + 240, + 243 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/7adc5ae6d5564e7bdcb40573887203e12aae54584adacb2f75345dce0941e0c9.jpg", + "text": "$$\n\\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) = \\left. f , { \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu } } \\right. _ { { \\mathcal { L } } _ { 2 } ( \\mathcal { X } , \\mu ) } .\n$$", + "text_format": "latex", + "bbox": [ + 333, + 238, + 663, + 276 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Hence Fisher IPM can be written as follows: ", + "bbox": [ + 174, + 275, + 465, + 290 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/cf2ca2c1ee9e66d8cc139d9ab4818c3ad24e905d70ad8d497fd2b16dffeacf48.jpg", + "text": "$$\n\\mathcal { F } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { f \\in \\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu ) } \\left. f , \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu } \\right. _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) }\n$$", + "text_format": "latex", + "bbox": [ + 351, + 289, + 647, + 327 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We have the following result: ", + "bbox": [ + 174, + 328, + 367, + 342 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Theorem 1 (Generalized Fisher IPM). The Fisher distance and the optimal critic are as follows: ", + "bbox": [ + 168, + 344, + 805, + 359 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "1. The Fisher distance is given by: ", + "bbox": [ + 214, + 368, + 442, + 383 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/3db2e30f980cd8a9477d69935b4e5387d1876b47cb6bc9a7613e57d66273b858.jpg", + "text": "$$\n\\mathcal { F } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\left\\| \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu } \\right\\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } = \\sqrt { \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mu } \\left( \\frac { \\mathbb { P } ( \\boldsymbol { x } ) - \\mathbb { Q } ( \\boldsymbol { x } ) } { \\mu ( \\boldsymbol { x } ) } \\right) ^ { 2 } } .\n$$", + "text_format": "latex", + "bbox": [ + 323, + 386, + 735, + 430 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "2. The optimal $f _ { \\chi }$ achieving the Fisher distance $\\mathcal { F } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } )$ is: ", + "bbox": [ + 210, + 439, + 620, + 454 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Proof of Theorem 1. From Equation (2), the optimal $f _ { \\chi }$ belong to the intersection of the hyperplane that has normal $n ~ = ~ \\textstyle \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu }$ and the ball B2(X , µ), hence fχ = $\\begin{array} { r } { f _ { \\chi } = \\frac { n ^ { \\cdot } } { \\| n \\| _ { \\mathcal { L } _ { 2 } ( \\chi , \\mu ) } } } \\end{array}$ Hence $\\mathcal { F } ( \\mathbb { P } , \\mathbb { Q } ) = \\| n \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } .$ □ ", + "bbox": [ + 173, + 494, + 493, + 580 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/39105c967ba0488a4607950203039a45c6b2ef8745052cceb191e400af567c21.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 584, + 491, + 740, + 574 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We see from Theorem 1 the role of the dominant measure $\\mu$ : the optimal critic is defined with respect to this measure and the overall Fisher distance can be seen as an average weighted distance between probability density functions, where the average is taken on points sampled from $\\mu$ . We give here some choices of $\\mu$ : ", + "bbox": [ + 174, + 597, + 825, + 655 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "1. For $\\begin{array} { r } { \\mu = \\frac 1 2 ( { \\mathbb P } + { \\mathbb Q } ) } \\end{array}$ , we obtain the symmetric chi-squared distance as defined in (Mroueh & Sercu, 2017). \n2. $\\mu _ { G P }$ , the implicit distribution defined by the interpolation lines between $\\mathbb { P } _ { r }$ and $\\mathbb { Q } _ { \\theta }$ as in (Gulrajani et al., 2017). \n3. When $\\mu$ does not dominate $\\mathbb { P }$ , and $\\mathbb { Q }$ , we obtain a non symmetric divergence. For example for $\\mu = \\mathbb { P }$ , $\\begin{array} { r } { \\mathcal { F } _ { \\mathbb { P } } ^ { 2 } ( \\mathbb { P } , \\mathbb { Q } ) = \\int _ { \\mathcal { X } } \\frac { ( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) ) ^ { 2 } } { \\mathbb { P } ( x ) } d x } \\end{array}$ (P(x)−Q(x))2P(x) dx. We see here that for this particular choice we obtain the Pearson divergence. ", + "bbox": [ + 210, + 662, + 825, + 777 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 SOBOLEV IPM ", + "text_level": 1, + "bbox": [ + 174, + 795, + 331, + 811 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In this Section, we introduce the Sobolev IPM. In a nutshell, the Sobolev IPM constrains the critic function to belong to a ball in the restricted Sobolev Space. In other words we constrain the norm of the gradient of the critic $\\nabla _ { x } f ( x )$ . We will show that by moving from a Lebesgue constraint as in Fisher IPM to a Sobolev constraint as in Sobolev IPM, the metric changes from a joint PDF matching to weighted (ccordinate-wise) conditional CDFs matching. The intrinsic conditioning built in to the Sobolev IPM and the comparison of cumulative distributions makes Sobolev IPM suitable for comparing discrete sequences. ", + "bbox": [ + 173, + 825, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.1 DEFINITION AND EXPRESSION OF SOBOLEV IPM IN TERMS OF COORDINATE CONDITIONAL CDFS ", + "text_level": 1, + "bbox": [ + 174, + 102, + 746, + 132 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We will start by recalling some definitions on Sobolev Spaces. We assume in the following that $\\mathcal { X }$ is compact and consider functions in the Sobolev space $\\mathring { W } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )$ : ", + "bbox": [ + 169, + 142, + 823, + 172 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/4dd3c4c9510738e81204ba0d088fe7d352e34da54909b8462ff90e72252d37bb.jpg", + "text": "$$\nW ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) = \\left\\{ f : \\mathcal { X } \\to \\mathbb { R } , \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) \\right. ^ { 2 } \\mu ( x ) d x < \\infty \\right\\} ,\n$$", + "text_format": "latex", + "bbox": [ + 294, + 176, + 702, + 212 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We restrict ourselves to functions in $W ^ { 1 , 2 } ( \\mathcal { X } , \\mu )$ vanishing at the boundary, and note this space $W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )$ . Note that in this case: ", + "bbox": [ + 173, + 215, + 823, + 247 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/2214e21f4eadc9152ee5680c70949b5c27ead062efe29705cb6cd7ad541fef3b.jpg", + "text": "$$\n\\| f \\| _ { W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) } = \\sqrt { \\int _ { \\mathcal { X } } \\| \\nabla _ { x } f ( x ) \\| ^ { 2 } \\mu ( x ) d x }\n$$", + "text_format": "latex", + "bbox": [ + 357, + 251, + 642, + 295 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "defines a semi-norm. We can similarly define a dot product in $W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )$ , for $f , g \\in W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )$ : ", + "bbox": [ + 173, + 297, + 821, + 316 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/519d221b59a2972c2c722e9abe4f0070a191217e27f4769d20b3d3ecb4b62046.jpg", + "text": "$$\n\\langle f , g \\rangle _ { W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) } = \\int _ { \\mathcal { X } } \\langle \\nabla _ { x } f ( x ) , \\nabla _ { x } g ( x ) \\rangle _ { \\mathbb { R } ^ { d } } \\mu ( x ) d x .\n$$", + "text_format": "latex", + "bbox": [ + 325, + 319, + 673, + 353 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Hence we define the following Sobolev IPM, by restricting the critic of the mean discrepancy to the Sobolev unit ball : ", + "bbox": [ + 173, + 363, + 823, + 391 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/2164ff51845e7b061208c655341d466218cfe9d7307e1638f2149974e75927b1.jpg", + "text": "$$\n\\mathcal { S } _ { \\boldsymbol { \\mu } } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { \\substack { f \\in W _ { 0 } ^ { 1 , 2 } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\boldsymbol { \\mu } ) } \\leq 1 } } \\bigg \\{ \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mathbb { P } } f ( \\boldsymbol { x } ) - \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mathbb { Q } } f ( \\boldsymbol { x } ) \\bigg \\} .\n$$", + "text_format": "latex", + "bbox": [ + 289, + 393, + 709, + 434 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "When compared to the Wasserstein distance, the Sobolev IPM given in Equation (3) uses a data dependent gradient constraint (depends on $\\mu$ ) rather than a data independent Lipchitz constraint. Let $F _ { \\mathbb { P } }$ and $F _ { \\mathbb { Q } }$ be the cumulative distribution functions of $\\mathbb { P }$ and $\\mathbb { Q }$ respectively. We have: ", + "bbox": [ + 173, + 438, + 826, + 481 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/12e013d292fb43ace5cb893d767b9deaa3a5d0371cc443ca3e7ec2fd7bab3c03.jpg", + "text": "$$\n\\mathbb { P } ( x ) = \\frac { \\partial ^ { d } } { \\partial x _ { 1 } \\hdots \\partial x _ { d } } F _ { \\mathbb { P } } ( x ) ,\n$$", + "text_format": "latex", + "bbox": [ + 406, + 484, + 589, + 518 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "and we define ", + "bbox": [ + 173, + 522, + 267, + 536 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/743b961821257fa0fa92772b952b707d1896db052f5fae4f4bb446ccb49fcefd.jpg", + "text": "$$\nD ^ { - i } = \\frac { \\partial ^ { d - 1 } } { \\partial x _ { 1 } \\dots \\partial x _ { i - 1 } \\partial x _ { i + 1 } \\dots \\partial x _ { d } } , \\mathrm { f o r } i = 1 \\dots d .\n$$", + "text_format": "latex", + "bbox": [ + 323, + 531, + 673, + 568 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "$D ^ { - i }$ computes the $( d - 1 )$ high-order partial derivative excluding the variable $i$ ", + "bbox": [ + 173, + 577, + 697, + 593 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Our main result is presented in Theorem 2. Additional theoretical results are given in Appendix A. \nAll proofs are given in Appendix B. ", + "bbox": [ + 176, + 611, + 823, + 641 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 2 (Sobolev IPM). Assume that $F _ { \\mathbb { P } }$ , and $F _ { \\mathbb { Q } }$ and its d derivatives exist and are continuous: $F _ { \\mathbb { P } }$ and $F _ { \\mathbb { Q } } \\in C ^ { d } ( \\mathcal { X } )$ . Define the differential operator $D ^ { - }$ : ", + "bbox": [ + 174, + 643, + 821, + 674 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/3c7fdaadd09bf295ec830d3bc5cb7007418d6ca293309fe91d976278733e575d.jpg", + "text": "$$\nD ^ { - } = ( D ^ { - 1 } , \\ldots D ^ { - d } ) .\n$$", + "text_format": "latex", + "bbox": [ + 418, + 679, + 576, + 696 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/63d9ab9f3fb9fe1c2a6a7b82d836d425d046d82439e3a55bea0eb26f1ab45225.jpg", + "text": "$$\nx = ( x _ { 1 } , \\ldots x _ { i - 1 } , x _ { i } , x _ { i + 1 } , \\ldots x _ { d } ) , l e t x ^ { - i } = ( x _ { 1 } , \\ldots x _ { i - 1 } , x _ { i + 1 } , \\ldots x _ { d } ) .\n$$", + "text_format": "latex", + "bbox": [ + 200, + 700, + 683, + 717 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The Sobolev IPM given in Equation (3) has the following equivalent forms: ", + "bbox": [ + 176, + 722, + 668, + 738 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "1. Sobolev IPM as comparison of high order partial derivatives of CDFs. The Sobolev IPM has the following form: ", + "bbox": [ + 212, + 747, + 825, + 777 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/1b1c47f69d225b36578c4457fe34066d17c0087bbe99bfe90899a175ce3b816c.jpg", + "text": "$$\nS _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\frac { 1 } { d } \\sqrt { \\int _ { \\mathcal { X } } \\frac { \\sum _ { i = 1 } ^ { d } ( D ^ { - i } F _ { \\mathbb { P } } ( x ) - D ^ { - i } F _ { \\mathbb { Q } } ( x ) ) ^ { 2 } } { \\mu ( x ) } d x } .\n$$", + "text_format": "latex", + "bbox": [ + 318, + 781, + 705, + 824 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "2. Sobolev IPM as comparison of weighted (coordinate-wise) conditional CDFs. The Sobolev IPM can be written in the following equivalent form: ", + "bbox": [ + 210, + 834, + 825, + 863 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/2a5b2bc7e573d2b9c2a0fd824ac10bb207b79aeeac1c362884b6ce9aaa3aa8a2.jpg", + "text": "$$\nS _ { \\mu } ^ { 2 } ( { \\mathbb { P } } , { \\mathbb { Q } } ) = \\frac { 1 } { d ^ { 2 } } { \\mathbb { E } } _ { x \\sim \\mu } \\sum _ { i = 1 } ^ { d } \\left( \\frac { { \\mathbb { P } } _ { X ^ { - i } } ( x ^ { - i } ) F _ { { \\mathbb { P } } _ { [ X _ { i } ] X ^ { - i } = x ^ { - i } ] } } ( x _ { i } ) - { \\mathbb { Q } } _ { X ^ { - i } } ( x ^ { - i } ) F _ { { \\mathbb { Q } } _ { [ X _ { i } ] X ^ { - i } = x ^ { - i } ] } } ( x _ { i } ) } { \\mu ( x ) } \\right) ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 232, + 869, + 870, + 912 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3. The optimal critic $f ^ { * }$ satisfies the following identity: ", + "bbox": [ + 210, + 103, + 576, + 119 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/297f36e6e4f5011107b075eb04b65fc03f0bdbf7bb22ec038cd57b8be573697b.jpg", + "text": "$$\n\\nabla _ { x } f ^ { * } ( x ) = \\frac { 1 } { d S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } \\frac { D ^ { - } F _ { \\mathbb { Q } } ( x ) - D ^ { - } F _ { \\mathbb { P } } ( x ) } { \\mu ( x ) } , \\mu - a l m o s t s u r e l y .\n$$", + "text_format": "latex", + "bbox": [ + 303, + 130, + 751, + 165 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Sobolev IPM Approximation. Learning in the whole Sobolev space $W _ { 0 } ^ { 1 , 2 }$ is challenging hence we need to restrict our function class to a hypothesis class , such as neural networks. We assume in the following that functions in $\\mathcal { H }$ vanish on the boundary of $\\mathcal { X }$ , and restrict the optimization to the function space $\\mathcal { H }$ . $\\mathcal { H }$ can be a Reproducing Kernel Hilbert Space as in the MMD case or parametrized by a neural network. Define the Sobolev IPM approximation in $\\mathcal { H }$ : ", + "bbox": [ + 173, + 191, + 825, + 263 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/971ea3456676bcb111ab4fbee39726afebd8782ade48f246922be856df9f0f05.jpg", + "text": "$$\n\\mathcal { S } _ { \\mathcal { H } , \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { \\substack { f \\in \\mathcal { H } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } } \\leq 1 } } \\left\\{ \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) \\right\\}\n$$", + "text_format": "latex", + "bbox": [ + 302, + 275, + 694, + 313 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The following Lemma shows that the Sobolev IPM approximation in $\\mathcal { H }$ is proportional to Sobolev IPM. The tightness of the approximation of the Sobolev IPM is governed by the tightness of the approximation of the optimal Sobolev Critic $f ^ { * }$ in $\\mathcal { H }$ . This approximation is measured in the Sobolev sense, using the Sobolev dot product. ", + "bbox": [ + 173, + 324, + 825, + 382 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Lemma 1 (Sobolev IPM Approximation in a Hypothesis Class). Let $\\mathcal { H }$ be a function space with functions vanishing at the boundary. For any f ∈ H and for f ∗ the optimal critic in W 1,20 , we have: ", + "bbox": [ + 171, + 401, + 825, + 446 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/854756f3154ceda8fb70a3a4edd5a69c5e21b3651ce7d7acdb0f36d3e2488644.jpg", + "text": "$$\n\\mathcal { S } _ { \\mathcal { H } , \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\mathcal { S } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\operatorname* { s u p } _ { \\substack { f \\in \\mathcal { H } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } ( \\chi , \\mu ) } \\leq 1 } } \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. _ { \\mathbb { R } ^ { d } } \\mu ( x ) d x .\n$$", + "text_format": "latex", + "bbox": [ + 232, + 454, + 766, + 496 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Note that this Lemma means that the Sobolev IPM is well approximated if the space $\\mathcal { H }$ has an enough representation power to express $\\nabla _ { x } f ^ { * } ( x )$ . This is parallel to the Fisher IPM approximation (Mroueh & Sercu, 2017) where it is shown that the Fisher IPM approximation error is proportional to the critic approximation in the Lebesgue sense. Having in mind that the gradient of the critic is the information that is passed on to the generator, we see that this convergence in the Sobolev sense to the optimal critic is an important property for GAN training. ", + "bbox": [ + 173, + 508, + 825, + 594 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Relation to Fokker-Planck Diffusion. We show in Appendix A that the optimal Sobolev critic is the solution of the following elliptic PDE (with zero boundary conditions): ", + "bbox": [ + 171, + 599, + 823, + 628 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/130523609727ae305fca8ff6534076a07e4f5637a5d4dc5e460b99ebf3723f21.jpg", + "text": "$$\n\\frac { \\mathbb { P } - \\mathbb { Q } } { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } = - \\mathrm { d i v } ( \\mu ( x ) \\nabla _ { x } f ( x ) ) .\n$$", + "text_format": "latex", + "bbox": [ + 385, + 638, + 612, + 674 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We further link the elliptic PDE given in Equation (8) and the Fokker-Planck diffusion. As we illustrate in Figure 2(b) the gradient of the critic defines a transportation plan for moving the distribution mass from $\\mathbb { Q }$ to $\\mathbb { P }$ . ", + "bbox": [ + 173, + 684, + 825, + 728 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Discussion of Theorem 2. We make the following remarks on Theorem 2: ", + "bbox": [ + 173, + 747, + 674, + 763 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "1. From Theorem 2, we see that the Sobolev IPM compares $d$ higher order partial derivatives of the cumulative distributions $F _ { \\mathbb { P } }$ and $F _ { \\mathbb { Q } }$ , while Fisher IPM compares the probability density functions. ", + "bbox": [ + 176, + 776, + 825, + 819 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "2. The dominant measure $\\mu$ plays a similar role to Fisher: ", + "bbox": [ + 176, + 828, + 558, + 844 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/74e0ea07b0892100bb72453fb981347f5d3b84bb4cb932af144d8ebd56ed9107.jpg", + "text": "$$\nS _ { \\mu } ^ { 2 } ( { \\mathbb { P } } , \\mathbb { Q } ) = \\frac 1 { d ^ { 2 } } \\sum _ { i = 1 } ^ { d } { \\mathbb { E } } _ { x \\sim \\mu } \\left( \\frac { D ^ { - i } F _ { \\mathbb { P } } ( x ) - D ^ { - i } F _ { \\mathbb { Q } } ( x ) } { \\mu ( x ) } \\right) ^ { 2 } ,\n$$", + "text_format": "latex", + "bbox": [ + 320, + 854, + 699, + 898 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "the average distance is defined with respect to points sampled from $\\mu$ . ", + "bbox": [ + 196, + 909, + 655, + 924 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "3. Comparison of coordinate-wise Conditional CDFs. We note in the following $\\begin{array} { r l } { x ^ { - i } } & { { } = } \\end{array}$ $( x _ { 1 } , \\ldots x _ { i - 1 } , x _ { i + 1 } , \\ldots x _ { d } )$ . Note that we have: ", + "bbox": [ + 173, + 102, + 823, + 132 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/18bd3f92f5c34e7173ad84a6c2be2d7bf1c6ec7e29506402937c180d48994612.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathsf { P } ^ { - i } F _ { \\mathbb { P } } ( x ) = \\frac { \\partial ^ { d - 1 } } { \\partial x _ { 1 } \\hdots \\partial x _ { i - 1 } \\partial x _ { i + 1 } \\hdots \\partial x _ { d } } \\displaystyle \\int _ { - \\infty } ^ { x _ { 1 } } \\hdots \\int _ { - \\infty } ^ { x _ { d } } \\mathbb { P } ( u _ { 1 } \\hdots u _ { d } ) d u _ { 1 } \\hdots d u _ { d } } \\\\ & { \\hphantom { \\mathsf { P } ^ { - i } F _ { \\mathbb { P } } ( x ) = } = \\displaystyle \\int _ { - \\infty } ^ { x _ { i } } \\mathbb { P } ( x _ { 1 } , \\hdots , x _ { i - 1 } , u , x _ { i + 1 } , \\hdots , x _ { d } ) d u } \\\\ & { \\hphantom { \\mathsf { P } ^ { - i } F _ { \\mathbb { P } } ( x ) = } = \\mathbb { P } _ { X ^ { - i } } ( x _ { 1 } , \\hdots , x _ { i - 1 } , x _ { i + 1 } , \\hdots x _ { d } ) \\displaystyle \\int _ { - \\infty } ^ { x _ { i } } \\mathbb { P } _ { [ X _ { i } | X ^ { - i } = x ^ { - i } ] } ( u | x _ { 1 } , \\hdots , x _ { i - 1 } , x _ { i + 1 } , \\hdots x _ { d } ) d u } \\\\ & { \\displaystyle ( \\mathrm { U s i n g ~ B a y e s ~ r u l e } ) } \\\\ & { \\hphantom { \\mathsf { P } ^ { - i } F _ { \\mathbb { P } } ( x ) = } = \\mathbb { P } _ { X ^ { - i } } ( x ^ { - i } ) F _ { \\mathbb { P } _ { [ X _ { i } | X ^ { - i } = x ^ { - i } ] } } ( x _ { i } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 202, + 137, + 856, + 290 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Note that for each $i$ , $D ^ { - i } F _ { \\mathbb { P } } ( x )$ is the cumulative distribution of the variable $X _ { i }$ given the other variables $X ^ { - i } = x ^ { - i }$ , weighted by the density function of $X ^ { - i }$ at $x ^ { - i }$ . This leads us to the form given in Equation 5. ", + "bbox": [ + 196, + 292, + 826, + 335 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We see that the Sobolev IPM compares for each dimension $i$ the conditional cumulative distribution of each variable given the other variables, weighted by their density function. We refer to this as comparison of coordinate-wise CDFs on a leave one out basis. From this we see that we are comparing CDFs, which are better behaved on discrete distributions. Moreover, the conditioning built in to this metric will play a crucial role in comparing sequences as the conditioning is important in this context (See section 6.1). ", + "bbox": [ + 196, + 338, + 825, + 421 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.2 ILLUSTRATIVE EXAMPLES ", + "text_level": 1, + "bbox": [ + 174, + 438, + 398, + 452 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Sobolev IPM / Cramer Distance and Wasserstein-1 in one Dimension. ´ In one dimension, Sobolev IPM is the Cramer Distance (for ´ $\\mu$ uniform on $\\mathcal { X }$ , we note this $\\mu : = 1$ ). While Sobolev IPM in one dimension measures the discrepancy between CDFs, the one dimensional Wasserstein- $p$ distance measures the discrepancy between inverse CDFs: ", + "bbox": [ + 174, + 463, + 825, + 520 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/183d4cd42789e60279bafd5256498ce1453a649fdcef170b5027e44a88bb104d.jpg", + "text": "$$\nS _ { \\mu : = 1 } ^ { 2 } ( { \\mathbb { P } } , \\mathbb { Q } ) = \\int _ { \\chi } ( F _ { \\mathbb { P } } ( x ) - F _ { \\mathbb { Q } } ( x ) ) ^ { 2 } d x { \\mathrm { ~ v e r s u s ~ } } W _ { p } ^ { p } ( { \\mathbb { P } } , \\mathbb { Q } ) = \\int _ { 0 } ^ { 1 } | F _ { \\mathbb { P } } ^ { - 1 } ( u ) - F _ { \\mathbb { Q } } ^ { - 1 } ( u ) | ^ { p } d u ,\n$$", + "text_format": "latex", + "bbox": [ + 199, + 526, + 795, + 561 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Recall also that the Fisher IPM for uniform $\\mu$ is given by : ", + "bbox": [ + 173, + 566, + 557, + 582 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/bc4a4fd656eb1ed525ce0227233b10fb01960a523616219858e1b67184ca0376.jpg", + "text": "$$\n\\mathcal { F } _ { \\mu : = 1 } ^ { 2 } ( \\mathbb { P } , \\mathbb { Q } ) = \\int _ { \\mathcal { X } } ( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) ) ^ { 2 } d x .\n$$", + "text_format": "latex", + "bbox": [ + 367, + 587, + 629, + 619 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Consider for instance two point masses $\\mathbb { P } = \\delta _ { a _ { 1 } }$ and $\\mathbb { Q } = \\delta _ { a _ { 2 } }$ with $a _ { 1 } , a _ { 2 } \\in \\mathbb { R }$ . The rationale behind using Wasserstein distance for GAN training is that since it is a weak metric, for far distributions $W _ { 1 } ^ { 1 } ( \\mathbb { P } , \\mathbb { Q } ) = S _ { \\mu : = 1 } ^ { 2 } \\stackrel { - } { = } | a _ { 1 } - a _ { 2 } |$ me sign, while e than $\\mathcal { F } _ { \\mu : = 1 } ^ { 2 } ( \\mathbb { P } , \\mathbb { Q } ) = 2$ 2017). In this case, it is easy to see that. As we see from this simple example,g distributions on discrete spaces. See $C D F$ \nFigure 1, for a further discussion of this effect in the GAN context. ", + "bbox": [ + 173, + 625, + 825, + 710 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Sobolev IPM between two 2D Gaussians. We consider $\\mathbb { P }$ and $\\mathbb { Q }$ to be two dimensional Gaussians with means $\\mu _ { 1 }$ and $\\mu _ { 2 }$ and covariances $\\Sigma _ { 1 }$ and $\\Sigma _ { 2 }$ . Let $( x , y )$ be the coordinates in 2D. We note $F _ { \\mathbb { P } }$ and $F _ { \\mathbb { Q } }$ the CDFs of $\\mathbb { P }$ and $\\mathbb { Q }$ respectively. We consider in this example $\\textstyle \\mu = { \\frac { \\mathbb { P } + \\mathbb { Q } } { 2 } }$ . We know from Theorem 2 that the gradient of the Sobolev optimal critic is proportional to the following vector field: ", + "bbox": [ + 173, + 723, + 825, + 794 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/e50ee0347c9ba8d47bdefce58ca0db56fec3e968585997acd5e08b9f5538b96a.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle \\nabla f ^ { * } ( x , y ) \\alpha \\frac { 1 } { \\mu ( x , y ) } \\left[ \\frac { \\partial } { \\partial x } ( F _ { \\mathbb { Q } } ( x , y ) - F _ { \\mathbb { P } } ( x , y ) ) \\right] } \\\\ { \\displaystyle \\mu _ { 1 } = [ 1 , 0 ] , \\Sigma _ { 1 } = \\left[ \\frac { 1 . 9 } { 0 . 8 } \\quad 0 . 8 \\right] \\mu _ { 2 } = [ 1 , - 2 ] , \\Sigma _ { 2 } = \\left[ \\frac { 1 . 9 } { - 0 . 8 } \\quad - 0 . 8 \\right] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 331, + 790, + 774, + 864 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In Figure 2 we consider ", + "bbox": [ + 173, + 829, + 769, + 862 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In Figure 2(a) we plot the numerical solution of the PDE satisfied by the optimal Sobolev critic given in Equation (8), using MATLAB solver for elliptic PDEs (more accurately we solve $- d i v ( \\bar { \\mu } ( x ) \\nabla _ { x } f ( \\bar { x } ) ) = \\mathbb { P } ( x ) - \\bar { \\mathbb { Q } } ( x )$ , hence we obtain the solution of Equation (8) up to a normalization constant $( \\frac { 1 } { S _ { \\mu } ( { \\mathbb P } , { \\mathbb Q } ) } ) )$ . We numerically solve the PDE on a rectangle with zero boundary conditions. We see that the optimal Sobolev critic separates the two distributions well. In Figure 2(b) we then numerically compute the gradient of the optimal Sobolev critic on a 2D grid as given in Equation 9 (using numerical evaluation of the CDF and finite difference for the evaluation of the partial derivatives). We plot in Figure 2(b) the density functions of $\\mathbb { P }$ and $\\mathbb { Q }$ as well as the vector field of the gradient of the optimal Sobolev critic. As discussed in Section A.1, we see that the gradient of the critic (wrt to the input), defines on the support of $\\textstyle \\mu = { \\frac { \\mathbb { P } + \\mathbb { Q } } { 2 } }$ a transportation plan for moving the distribution mass from $\\mathbb { Q }$ to $\\mathbb { P }$ . ", + "bbox": [ + 173, + 867, + 825, + 928 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/bf79812d77b73653170a552e274a8e31c047709d105768f320b54b41bce68e2a.jpg", + "image_caption": [ + "(a) Smoothed discrete densities: PDF versus CDF of smoothed discrete densities with non overlapping supports. " + ], + "image_footnote": [], + "bbox": [ + 272, + 104, + 705, + 204 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/aebf2bc5c2f3315395bc93792e96d731c49ae95608257b3482f05c10e62e4c99.jpg", + "image_caption": [ + "(b) Smoothed Discrete and Continuous densities: PDF versus CDF of a smoothed discrete density and a continuous density with non overlapping supports. ", + "Figure 1: In the GAN context for example in text generation, we have to match a (smoothed) discrete real distribution and a continuous generator. In this case, the CDF matching enabled by Sobolev IPM gives non zero discrepancy between a (smoothed) discrete and a continuous density even if the densities have disjoint supports. This ensures non vanishing gradients of the critic. " + ], + "image_footnote": [], + "bbox": [ + 271, + 262, + 702, + 363 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 511, + 825, + 611 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 SOBOLEV GAN ", + "text_level": 1, + "bbox": [ + 176, + 631, + 338, + 647 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Now we turn to the problem of learning GANs with Sobolev IPM. Given the “real distribution” $\\mathbb { P } _ { r } \\in \\mathcal { P } ( \\mathcal { X } )$ , our goal is to learn a generator $g _ { \\boldsymbol { \\theta } } : \\mathcal { Z } \\subset \\mathbb { R } ^ { n _ { z } } \\mathcal { X }$ , such that for $z \\sim p _ { z }$ , the distribution of $g _ { \\boldsymbol { \\theta } } ( z )$ is close to the real data distribution $\\mathbb { P } _ { r }$ , where $p _ { z }$ is a fixed distribution on $\\mathcal { Z }$ (for instance $z \\sim \\mathcal { N } ( 0 , I _ { n _ { z } } ) )$ . We note $\\mathbb { Q } _ { \\theta }$ for the “fake distribution” of $g _ { \\theta } ( z ) , z \\sim p _ { z }$ . Consider $\\{ x _ { i } , i = 1 \\ldots N \\} \\sim \\bar { \\mathbb { P } } _ { r }$ , $\\{ z _ { i } , i = 1 \\ldots N \\} \\sim { \\mathcal { N } } ( 0 , I _ { n _ { z } } )$ , and $\\{ \\tilde { x } _ { i } , i = 1 \\ldots N \\} \\sim \\mu$ . We consider these choices for $\\mu$ : ", + "bbox": [ + 173, + 662, + 826, + 748 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "1. $\\begin{array} { r } { \\mu = \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } \\end{array}$ i.e $\\tilde { x } \\sim \\mathbb { P } _ { r }$ or $\\tilde { x } = g _ { \\theta } ( z ) , z \\sim p _ { z }$ with equal probability $\\textstyle { \\frac { 1 } { 2 } }$ . 2. $\\mu _ { G P }$ is the implicit distribution defined by the interpolation lines between $\\mathbb { P } _ { r }$ and $\\mathbb { Q } _ { \\theta }$ as in (Gulrajani et al., 2017) i.e : $\\tilde { x } = u x + ( 1 - u ) y , x \\sim \\mathbb { P } _ { r } , y = g _ { \\theta } ( z ) , z \\sim p _ { z }$ and $u \\sim \\mathrm { U n i f } [ 0 , 1 ]$ . ", + "bbox": [ + 210, + 758, + 826, + 825 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Sobolev GAN can be written as follows: ", + "bbox": [ + 173, + 835, + 441, + 851 + ], + "page_idx": 8 + }, + { + "type": "equation", + "img_path": "images/84c761688237f258341cc60927fb4938acb57a1bf7b4967a36aba82aa1f7d826.jpg", + "text": "$$\n\\begin{array}{c} \\begin{array} { l } { \\displaystyle \\mathrm { A N ~ c a n ~ p e ~ w r i t t e n ~ a s ~ r o l l o w s } \\colon } \\\\ { \\displaystyle \\operatorname* { m i n } _ { g _ { \\theta } } } \\\\ { \\displaystyle \\quad { f _ { p } , \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } \\| \\nabla _ { x } f _ { p } ( \\tilde { x } _ { i } ) \\| ^ { 2 } = 1 } } \\end{array} \\hat { \\hat { \\mathcal E } } ( f _ { p } , g _ { \\theta } ) = \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( x _ { i } ) - \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( g _ { \\theta } ( z _ { i } ) ) \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 245, + 842, + 751, + 885 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "For any choice of the parametric function class $\\mathcal { H } _ { p }$ , note the constraint by $\\hat { \\Omega } _ { S } ( f _ { p } , g _ { \\theta } ) \\ =$ $\\begin{array} { r l } & { { \\frac { 1 } { N } } \\sum _ { i = 1 } ^ { N } \\left\\| \\nabla _ { x } f _ { p } ( \\tilde { x } _ { i } ) \\right\\| ^ { 2 } } \\end{array}$ . For example if $\\begin{array} { r } { \\mu \\ = \\ \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } \\end{array}$ , $\\begin{array} { r c l } { \\hat { \\Omega } _ { S } ( f _ { p } , g _ { \\theta } ) } & { = } & { \\frac { 1 } { 2 N } \\sum _ { i = 1 } ^ { N } \\| \\nabla _ { x } \\boldsymbol { f } _ { p } ( x _ { i } ) \\| ^ { 2 } + } \\end{array}$ ", + "bbox": [ + 174, + 892, + 825, + 926 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/7e31e2430319983c215121a0e70ffc66b6fbcb2eef7bf131143c1e35323dcb1d.jpg", + "image_caption": [ + "(b) Optimal Sobolev Transport Vector Field $\\nabla _ { x } f ^ { * } { \\bar { ( x ) } }$ (arrows are the vector field $\\nabla _ { x } f ^ { * } ( x )$ evaluated on the 2D grid. Magnitude of arrows was rescaled for visualization.) " + ], + "image_footnote": [], + "bbox": [ + 199, + 123, + 467, + 273 + ], + "page_idx": 9 + }, + { + "type": "image", + "img_path": "images/c2e0765d22d99d612ec7689965f0fb6fce3a5271eaa33de3baadab7bc9b8eda2.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 534, + 112, + 771, + 271 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "(a) Numerical solution of the PDE satisfied by the optimal Sobolev critic. ", + "bbox": [ + 191, + 287, + 490, + 314 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Figure 2: Numerical solution of the PDE satisfied by the optimal Sobolev critic and the transportation Plan induced by the gradient of Sobolev critic. The gradient of the critic (wrt to the input), defines on the support of $\\begin{array} { r } { \\bar { \\boldsymbol { \\mu } } = \\frac { \\mathbb { P } + \\mathbb { Q } } { 2 } , } \\end{array}$ a transportation plan for moving the distribution mass from $\\mathbb { Q }$ to $\\mathbb { P }$ . For a theoretical analysis of this transportation plan and its relation to Fokker-Planck diffusion the reader is invited to check Appendix A. ", + "bbox": [ + 173, + 354, + 825, + 426 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "$\\begin{array} { r l } { } & { { } \\frac { 1 } { 2 N } \\sum _ { i = 1 } ^ { N } \\left\\| \\nabla _ { x } f _ { p } ( g _ { \\theta } ( z _ { i } ) ) \\right\\| ^ { 2 } } \\end{array}$ . Note that, since the optimal theoretical critic is achieved on the sphere, we impose a sphere constraint rather than a ball constraint. Similar to (Mroueh & Sercu, 2017) we define the Augmented Lagrangian corresponding to Sobolev GAN objective and constraint ", + "bbox": [ + 174, + 454, + 825, + 501 + ], + "page_idx": 9 + }, + { + "type": "equation", + "img_path": "images/875dea4cf700e6a0eaa1835a680f4276eca8648f8b599108f6c3a1ed53f1fb1f.jpg", + "text": "$$\n\\mathcal { L } _ { S } ( p , \\theta , \\lambda ) = \\hat { \\mathcal { E } } ( f _ { p } , g _ { \\theta } ) + \\lambda ( 1 - \\hat { \\Omega } _ { S } ( f _ { p } , g _ { \\theta } ) ) - \\frac { \\rho } { 2 } ( \\hat { \\Omega } _ { S } ( f _ { p } , g _ { \\theta } ) - 1 ) ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 269, + 511, + 727, + 539 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "where $\\lambda$ is the Lagrange multiplier and $\\rho > 0$ is the quadratic penalty weight. We alternate between optimizing the critic and the generator. We impose the constraint when training the critic only. Given $\\theta$ , we solve $\\begin{array} { r } { \\operatorname* { m a x } _ { p } \\operatorname* { m i n } _ { \\lambda } \\mathcal { L } _ { S } ( p , \\theta , \\lambda ) } \\end{array}$ , for training the critic. Then given the critic parameters $p$ we optimize the generator weights $\\theta$ to minimize the objective minθ $\\hat { \\mathcal { E } } ( f _ { p } , g _ { \\theta } )$ . See Algorithm 1. ", + "bbox": [ + 173, + 549, + 825, + 609 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Algorithm 1 Sobolev GAN ", + "text_level": 1, + "bbox": [ + 174, + 630, + 357, + 645 + ], + "page_idx": 9 + }, + { + "type": "table", + "img_path": "images/b7766853bc2e593a135cf95879ea92915912856229217e062dbd9939f34d0ad6.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Input: ρ penalty weight, n Learning rate, nc number of iterations for training the critic, N batch size
Initialize p, 0,λ=0
repeat
for j = 1 to nc do
Samplea minibatch xi,i=1...N,xi~ Pr
Sample a minibatch zi,i = 1...N,zi ~ Pz
(gp,gx)←(VpLs,VxLs)(p,0,λ)
p ←p+η ADAM(p,9p)
λ ← λ- pgx {SGD rule on 入with learning rate ρ} end for
Sample zi,i= 1...N, zi ~ Pz
d←Vθ8(fp,g0)=-VθN∑=1fp(g0(zi)) N
0←0-nADAM(0,dθ)
until θ converges
", + "bbox": [ + 178, + 647, + 825, + 862 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Remark 1. Note that in Algorithm $\\cdot$ , we obtain a biased estimate since we are using same samples for the cost function and the constraint, but the incurred bias can be shown to be small and vanishing as the number of samples increases as shown and justified in (Shivaswamy & Jebara, 2010). ", + "bbox": [ + 173, + 882, + 825, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Relation to WGAN-GP. WGAN-GP can be written as follows: ", + "bbox": [ + 173, + 103, + 604, + 118 + ], + "page_idx": 10 + }, + { + "type": "equation", + "img_path": "images/791192fb27625a05cd429c211071280256274c29486f742719fb77e1e0b8c129.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\substack { g _ { \\theta } } } \\operatorname* { s u p } _ { f , \\| \\nabla _ { x } f _ { p } ( \\bar { x } _ { i } ) \\| = 1 , \\bar { x } _ { i } \\sim \\mu _ { G P } } \\hat { \\bar { \\mathcal { E } } } ( f _ { p } , g _ { \\theta } ) = \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( x _ { i } ) - \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( g _ { \\theta } ( z _ { i } ) )\n$$", + "text_format": "latex", + "bbox": [ + 250, + 121, + 746, + 164 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "The main difference between WGAN-GP and our setting, is that WGAN-GP enforces pointwise constraints on points drawn from $\\mu = \\mu _ { G P }$ via a point-wise quadratic penalty $\\begin{array} { r l } { { \\big ( \\hat { \\mathcal { E } } ( f _ { p } , g _ { \\theta } ) - \\lambda \\sum _ { i = 1 } ^ { N } \\bigl ( 1 - \\bigl ) } \\quad } & { { } } \\end{array}$ $\\| \\nabla _ { x } f ( \\widetilde { x } _ { i } ) \\| ) ^ { 2 } )$ while we enforce that constraint on average as a Sobolev norm, allowing us the coordinate weighted conditional CDF interpretation of the IPM. ", + "bbox": [ + 173, + 166, + 825, + 227 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "6 APPLICATIONS OF SOBOLEV GAN ", + "text_level": 1, + "bbox": [ + 176, + 247, + 491, + 263 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sobolev IPM has two important properties; The first stems from the conditioning built in to the metric through the weighted conditional CDF interpretation. The second stems from the diffusion properties that the critic of Sobolev IPM satisfies (Appendix A) that has theoretical and practical ties to the Laplacian regularizer and diffusion on manifolds used in semi-supervised learning (Belkin et al., 2006). ", + "bbox": [ + 173, + 277, + 825, + 348 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "In this Section, we exploit those two important properties in two applications of Sobolev GAN: Text generation and semi-supervised learning. First in text generation, which can be seen as a discrete sequence generation, Sobolev GAN (and WGAN-GP) enable training GANs without need to do explicit brute-force conditioning. We attribute this to the built-in conditioning in Sobolev IPM (for the sequence aspect) and to the CDF matching (for the discrete aspect). Secondly using GANs in semi-supervised learning is a promising avenue for learning using unlabeled data. We show that a variant of Sobolev GAN can achieve strong SSL results on the CIFAR-10 dataset, without the need of any form of activation normalization in the networks or any extra ad hoc tricks. ", + "bbox": [ + 173, + 354, + 825, + 467 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "6.1 TEXT GENERATION WITH SOBOLEV GAN ", + "text_level": 1, + "bbox": [ + 173, + 483, + 504, + 497 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "In this Section, we present an empirical study of Sobolev GAN in character level text generation. Our empirical study on end to end training of character-level GAN for text generation is articulated on four dimensions (loss, critic, generator, $\\pmb { \\mu }$ ). (1) the loss used (GP: WGAN-GP (Gulrajani et al., 2017), S: Sobolev or F: Fisher) (2) the architecture of the critic (Resnets or RNN) (3) the architecture of the generator (Resnets or RNN or RNN with curriculum learning) (4) the sampling distribution $\\pmb { \\mu }$ in the constraint. ", + "bbox": [ + 173, + 508, + 825, + 592 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Text Generation Experiments. We train a character-level GAN on Google Billion Word dataset and follow the same experimental setup used in (Gulrajani et al., 2017). The generated sequence length is 32 and the evaluation is based on Jensen-Shannon divergence on empirical 4-gram probabilities (JS-4) of validation data and generated data. JS-4 may not be an ideal evaluation criteria, but it is a reasonable metric for current character-level GAN results, which is still far from generating meaningful sentences. ", + "bbox": [ + 173, + 599, + 825, + 683 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Annealed Smoothing of discrete $\\mathbb { P } _ { r }$ in the constraint $\\pmb { \\mu }$ . Since the generator distribution will always be defined on a continuous space, we can replace the discrete “real” distribution $\\mathbb { P } _ { r }$ with a smoothed version (Gaussian kernel smoothing) $\\mathbb { P } _ { r } \\star \\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { d } )$ . This corresponds to doing the following sampling for $\\mathbb { P } _ { r } : x + \\xi , x \\sim \\mathbb { P } _ { r }$ , and $\\xi \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { d } )$ . Note that we only inject noise to the “real” distribution with the goal of smoothing the support of the discrete distribution, as opposed to instance noise on both “real” and “fake” to stabilize the training, as introduced in (Kaae Sønderby et al., 2017; Arjovsky & Bottou, 2017). As it is common in optimization by continuation (Mobahi & III, 2015), we also anneal the noise level $\\sigma$ as the training progresses on a linear schedule. ", + "bbox": [ + 173, + 690, + 825, + 803 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sobolev GAN versus WGAN-GP with Resnets. In this setting, we compare (WGANGP,G $=$ Resnet,D $^ { 1 \\textless }$ Resnet, $\\mu = \\mu _ { G P } ) $ to (Sobolev,G $=$ Resnet,D $=$ Resnet, $\\mu$ ) where $\\mu$ is one of: (1) $\\mu _ { G P }$ , (2) the noise smoothed $\\begin{array} { r } { \\mu _ { s } ( \\sigma ) \\ = \\ \\frac { \\mathbb { P } _ { r } \\star \\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { d } ) + \\mathbb { Q } _ { \\theta } } { 2 } } \\end{array}$ or (3) noise smoothed with annealing $\\mu _ { s } ^ { a } ( \\sigma _ { 0 } )$ with $\\sigma _ { 0 }$ the initial noise level. We use the same architectures of Resnet with 1D convolution for the critic and the generator as in (Gulrajani et al., 2017) (4 resnet blocks with hidden layer size of 512). In order to implement the noise smoothing we transform the data into one-hot vectors. Each one hot vector $x$ is transformed to a probability vector $p$ with 0.9 replacing the one and $0 . 1 / ( d i c t _ { s i z e } - 1 )$ replacing the zero. We then sample $\\epsilon$ from a Gaussian distribution ${ \\bar { \\mathcal { N } } } ( 0 , \\sigma ^ { 2 } )$ , and ", + "bbox": [ + 173, + 808, + 825, + 924 + ], + "page_idx": 10 + }, + { + "type": "image", + "img_path": "images/95d02c80f9b5a08286ec9176c050401e5ad02420894a30a90fcc19711b6eed94.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 225, + 117, + 470, + 242 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "(a) Comparing Sobolev with $\\mu _ { G P }$ and WGAN-GP. The JS-4 are 0.3363 and 0.3302 respectively. ", + "bbox": [ + 223, + 246, + 486, + 284 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/6e2575ca9e9bb232ea44064ff715cb92a3beab4fce8471509ac419d7b8ec9342.jpg", + "image_caption": [ + "(b) Comparing Sobolev with different $\\mu$ dominant measures and WGAN-GP. The JS4 of $\\mu _ { s } ^ { a } ( \\sigma _ { 0 } = 1 . 5 )$ is 0.3268. ", + "Figure 3: Result of Sobolev GAN for various dominating measure $\\mu$ , for resnets as architectures of the critic and the generator. " + ], + "image_footnote": [], + "bbox": [ + 509, + 117, + 753, + 241 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "use softmax to normalize $\\log p + \\epsilon$ . We use algorithm 1 for Sobolev GAN and fix the learning rate to $1 0 ^ { - 4 }$ and $\\rho$ to $1 0 ^ { - 5 }$ . The noise level $\\sigma$ was annealed following a linear schedule starting from an initial noise level $\\sigma _ { 0 }$ (at iteration $i$ , $\\begin{array} { r } { \\sigma _ { i } = \\sigma _ { 0 } ( 1 - \\frac { i } { M a x i t e r } ) } \\end{array}$ , Maxite ${ \\displaystyle = 3 0 \\mathsf K }$ ). For WGAN-GP we used the open source implementation with the penalty $\\lambda = 1 0$ as in (Gulrajani et al., 2017). Results are given in Figure 3(a) for the JS-4 evaluation of both WGAN-GP and Sobolev GAN for $\\mu = \\mu _ { G P }$ . In Figure 3(b) we show the JS-4 evaluation of Sobolev GAN with the annealed noise smoothing $\\mu _ { s } ^ { a } ( \\bar { \\sigma _ { 0 } } )$ , for various values of the initial noise level $\\sigma _ { 0 }$ . We see that the training succeeds in both cases. Sobolev GAN achieves slightly better results than WGAN-GP for the annealing that starts with high noise level $\\sigma _ { 0 } = 1 . 5$ . We note that without smoothing and annealing i.e using $\\begin{array} { r } { \\bar { \\boldsymbol { \\mu } } = \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } \\end{array}$ , Sobolev GAN is behind. Annealed smoothing of $\\mathbb { P } _ { r }$ , helps the training as the real distribution is slowly going from a continuous distribution to a discrete distribution. See Appendix C (Figure 6) for a comparison between annealed and non annealed smoothing. ", + "bbox": [ + 174, + 412, + 825, + 580 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "We give in Appendix C a comparison of WGAN-GP and Sobolev GAN for a Resnet generator architecture and an RNN critic. The RNN has degraded performance due to optimization difficulties. ", + "bbox": [ + 176, + 588, + 823, + 616 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Fisher GAN Curriculum Conditioning versus Sobolev GAN: Explicit versus Implicit conditioning. We analyze how Fisher GAN behaves under different architectures of generators and critics. We first fix the generator to be ResNet. We study 3 different architectures of critics: ResNet, GRU (we follow the experimental setup from (Press et al., 2017)), and hybrid $\\mathrm { R e s N e t + G R U }$ (Reed et al., 2016). We notice that RNN is unstable, we need to clip the gradient values of critics in $[ - 0 . 5 , 0 . 5 ]$ , and the gradient of the Lagrange multiplier $\\lambda _ { F }$ to $[ - 1 0 ^ { 4 } , \\bar { 1 } 0 ^ { 4 } ]$ . We fix $\\rho _ { F } = 1 0 ^ { - 7 }$ and we use $\\mu = \\mu _ { G P }$ . We search the value for the learning rate in $[ 1 0 ^ { - 5 } , 1 \\dot { 0 } ^ { - 4 } ]$ . We see that for $\\mu = \\mu _ { G P }$ and $G = \\mathbb { F }$ Resnet for various critic architectures, Fisher GAN fails at the task of text generation (Figure ${ \\mathfrak { 4 } } \\ { \\mathfrak { a - c } } { \\mathrm { , } }$ ). Nevertheless, when using RNN critics $( \\mathrm { F i g } \\quad \\mathsf { b } , \\mathsf { c } )$ a marginal improvement happens over the fully collapsed state when using a resnet critic (Fig 4 a). We hypothesize that RNN critics enable some conditioning and factoring of the distribution, which is lacking in Fisher IPM. ", + "bbox": [ + 173, + 622, + 825, + 776 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Finally Figure 4 (d) shows the result of training with recurrent generator and critic. We follow (Press et al., 2017) in terms of GRU architecture, but differ by using Fisher GAN rather than WGAN-GP. We use $\\begin{array} { r } { \\mu = { \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } } \\end{array}$ i.e. without annealed noise smoothing. We train (F, D=RNN,G=RNN, ${ \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } .$ ) using curriculum conditioning of the generator for all lengths $\\ell$ as done in (Press et al., 2017): the generator is conditioned on $3 2 - \\ell$ characters and predicts the $\\ell$ remaining characters. We increment $\\ell = 1$ to 32 on a regular schedule (every $1 5 \\mathrm { k }$ updates). JS-4 is only computed when $\\ell > 4$ . We see in Figure 4 that under curriculum conditioning with recurrent critics and generators, the training of Fisher GAN succeeds and reaches similar levels of Sobolev GAN (and WGAN-GP). Note that the need of this explicit brute force conditioning for Fisher GAN, highlights the implicit conditioning induced by Sobolev GAN via the gradient regularizer, without the need for curriculum conditioning. ", + "bbox": [ + 173, + 782, + 825, + 924 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/2cad69ff4d412b18994156d6951f045e5d5629da2e40f46cfb2e8bb9373125ba.jpg", + "image_caption": [ + "Figure 4: Fisher GAN with different architectures for critics: (a-c) We see that for $\\mu = \\mu _ { G P }$ and $G =$ Resnet for various critic architectures, Fisher GAN fails at the task of text generation. We notice small improvements for RNN critics (b-c) due to the conditioning and factoring of the distribution. (d) Fisher GAN with recurrent generator and critic, trained on a curriculum conditioning for increasing lengths $\\ell$ , increments indicated by gridlines. In this curriculum conditioning setup, with recurrent critics and generators, the training of Fisher GAN succeeds and reaches similar levels of Sobolev GAN (and WGAN-GP). It is important to note that by doing this explicit curriculum conditioning for Fisher GAN, we highlight the implicit conditioning induced by Sobolev GAN, via the gradient regularizer. " + ], + "image_footnote": [], + "bbox": [ + 341, + 101, + 642, + 256 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "6.2 SEMI-SUPERVISED LEARNING WITH SOBOLEV GAN", + "text_level": 1, + "bbox": [ + 174, + 421, + 578, + 435 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A proper and promising framework for evaluating GANs consists in using it as a regularizer in the semi-supervised learning setting (Salimans et al., 2016; Dumoulin et al., 2017; Kumar et al., 2017). As mentioned before, the Sobolev norm as a regularizer for the Sobolev IPM draws connections with the Laplacian regularization in manifold learning (Belkin et al., 2006). In the Laplacian framework of semi-supervised learning, the classifier satisfies a smoothness constraint imposed by controlling its Sobolev norm: $\\begin{array} { r } { \\int _ { \\mathcal { X } } \\left\\| \\nabla _ { x } \\bar { f } ( x ) \\right\\| ^ { 2 } \\mu ^ { 2 } ( x ) d x } \\end{array}$ (Alaoui et al., 2016). In this Section, we present a variant Xof Sobolev GAN that achieves competitive performance in semi-supervised learning on the CIFAR10 dataset Krizhevsky & Hinton (2009) without using any internal activation normalization in the critic, such as batch normalization (BN) (Ioffe & Szegedy, 2015), layer normalization (LN) (Ba et al., 2016), or weight normalization (Salimans & Kingma, 2016). ", + "bbox": [ + 173, + 446, + 825, + 588 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In this setting, a convolutional neural network $\\Phi _ { \\omega } : \\mathcal { X } \\mathbb { R } ^ { m }$ is shared between the cross entropy (CE) training of a $K$ -class classifier $( S \\in \\mathbb { R } ^ { K \\times m } )$ ) and the critic of GAN (See Figure 5). We have the following training equations for the (critic $^ +$ classifer) and the generator: ", + "bbox": [ + 174, + 594, + 825, + 637 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/73a48d9b2d0b771c267d552ceb29b802d35dabab0224cb66b7f31be6684d17f0.jpg", + "text": "$$\n{ \\mathrm { C r i t i c } } + { \\mathrm { C l a s s i f i e r } } ; \\quad \\operatorname* { m a x } _ { S , \\Phi _ { \\omega } , f } \\mathcal { L } _ { D } = \\mathcal { L } _ { \\mathrm { a l m } } ^ { \\mathrm { G A N } } ( f , g _ { \\theta } ) - \\lambda _ { C E } \\sum _ { ( x , y ) \\in \\mathrm { l a b } } C E ( p ( y | x ) , y )\n$$", + "text_format": "latex", + "bbox": [ + 240, + 643, + 758, + 680 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/ded3d8d7b9bfb1e91382d83e938938173d7ca784cd5c705701bdfb7b402c6e8f.jpg", + "text": "$$\n\\mathrm { G e n e r a t o r : \\ m a x } { \\mathcal { L } } _ { G } = { \\hat { \\mathcal { E } } } ( f , g _ { \\theta } )\n$$", + "text_format": "latex", + "bbox": [ + 390, + 685, + 607, + 710 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "where the main IPM objective with $N$ samples: $\\begin{array} { r } { \\hat { \\mathcal { E } } ( f , g _ { \\theta } ) = \\frac { 1 } { N } \\left( \\sum _ { x \\in \\mathrm { u n l } } f ( x ) - \\sum _ { z \\sim p _ { z } } f ( g _ { \\theta } ( z ) ) \\right) . } \\end{array}$ ", + "bbox": [ + 173, + 714, + 821, + 738 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Following (Mroueh & Sercu, 2017) we use the following “ $K + 1$ parametrization” for the critic (See Figure 5) : ", + "bbox": [ + 174, + 743, + 823, + 772 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/d42fbe727de6f14478c28b1bd7f1f5b76b3d1f0e3ed080794746d2e0b574d849.jpg", + "text": "$$\nf ( x ) = \\underbrace { \\sum _ { y = 1 } ^ { K } p ( y | x ) \\left. S _ { y } , \\Phi _ { \\omega } ( x ) \\right. } _ { f _ { + } : \\mathrm { \\normalfont ~ { \\mathrm { \\fontfamily { ~ \\ddots ~ } \\selectfont ~ { \\ c r i t i c } } } } } - \\underbrace { \\left. v , \\Phi _ { \\omega } ( x ) \\right. } _ { f _ { - } : \\mathrm { \\normalfont ~ { \\cdot \\mathrm { \\sc ~ { \\ c r i t i c } } } } }\n$$", + "text_format": "latex", + "bbox": [ + 346, + 770, + 651, + 837 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Note that $p ( y | x ) = \\mathrm { S o f t m a x } ( \\langle \\mathrm { S } , \\Phi _ { \\omega } ( \\mathrm { x } ) \\rangle ) _ { \\mathrm { y } }$ appears both in the critic formulation and in the CrossEntropy term in Equation (11). Intuitively this critic uses the $K$ class directions of the classifier $S _ { y }$ to define the “real” direction, which competes with another $\\mathrm { K } { + } 1 ^ { \\mathrm { t h } }$ direction $v$ that indicates fake samples. This parametrization adapts the idea of (Salimans et al., 2016), which was formulated specifically for the classic KL / JSD based GANs, to IPM-based GANs. We saw consistently better results with the $K + 1$ formulation over the regular formulation where the classification layer $S$ doesn’t interact with the critic direction $v$ . We also note that when applying a gradient penalty based constraint (either WGAN-GP or Sobolev) on the full critic $f = f _ { + } - f _ { - }$ , it is impossible for the network to fit even the small labeled training set (underfitting), causing bad SSL performance. This leads us to the formulation below, where we apply the Sobolev constraint only on $f _ { - }$ . Throughout this Section we fix $\\begin{array} { r } { \\mu = { \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } } \\end{array}$ . ", + "bbox": [ + 173, + 839, + 825, + 924 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 825, + 178 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We propose the following two schemes for constraining the $\\mathrm { K } { + } 1$ critic $f ( x ) = f _ { + } ( x ) - f _ { - } ( x )$ : ", + "bbox": [ + 169, + 181, + 797, + 199 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "1) Fisher constraint on the critic: We restrict the critic to the following set: ", + "bbox": [ + 176, + 204, + 678, + 219 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/ba655097f9eca7cf00e54d65d928b1ad1bc7942b96ee356e74325e253b584a03.jpg", + "text": "$$\nf \\in \\left\\{ f = f _ { + } - f _ { - } , \\hat { \\Omega } _ { F } ( f , g _ { \\theta } ) = \\frac { 1 } { 2 N } \\left( \\sum _ { x \\in \\mathrm { u n l } } f ^ { 2 } ( x ) + \\sum _ { z \\sim p _ { z } } f ^ { 2 } ( g _ { \\theta } ( z ) ) \\right) = 1 \\right\\} .\n$$", + "text_format": "latex", + "bbox": [ + 230, + 224, + 766, + 268 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "This constraint translates to the following ALM objective in Equation (11): ", + "bbox": [ + 176, + 275, + 666, + 290 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/c640866f97c81f3857c0afefb94f83c0bd3ab85c11ca2aa12f63240707343398.jpg", + "text": "$$\n\\mathcal { L } _ { \\mathrm { a l m } } ^ { \\mathrm { G A N } } ( f , g _ { \\theta } ) = \\hat { \\mathcal { E } } ( f , g _ { \\theta } ) + \\lambda _ { F } ( 1 - \\hat { \\Omega } _ { F } ( f , g _ { \\theta } ) ) - \\frac { \\rho _ { F } } { 2 } ( \\hat { \\Omega } _ { F } ( f , g _ { \\theta } ) - 1 ) ^ { 2 } ,\n$$", + "text_format": "latex", + "bbox": [ + 261, + 296, + 733, + 324 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where the Fisher constraint ensures the stability of the training through an implicit whitened mean matching (Mroueh & Sercu, 2017). ", + "bbox": [ + 173, + 330, + 823, + 358 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "2) Fisher $^ +$ Sobolev constraint: We impose 2 constraints on the critic: Fisher on $f$ & Sobolev on $f _ { - }$ ", + "bbox": [ + 173, + 364, + 821, + 381 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/518d285100f9352d64f4d9dfeac82967c4a18bfbdb61cc20687f425469c45f86.jpg", + "text": "$$\n\\begin{array} { r } { f \\in \\left\\{ f = f _ { + } - f _ { - } , \\hat { \\Omega } _ { F } ( \\pmb { f } , g _ { \\theta } ) = 1 \\mathrm { a n d } \\hat { \\Omega } _ { S } ( \\pmb { f } _ { - } , g _ { \\theta } ) = 1 \\right\\} , } \\\\ { \\mathrm { } _ { \\mathrm { } s } ( \\pmb { f } _ { - } , g _ { \\theta } ) = \\frac { 1 } { 2 N } \\left( \\sum _ { x \\in \\mathrm { u n l } } \\left. \\nabla _ { x } \\pmb { f } _ { - } ( x ) \\right. ^ { 2 } + \\sum _ { z \\sim p _ { z } } \\left. \\nabla _ { x } \\pmb { f } _ { - } ( g _ { \\theta } ( z ) ) \\right. ^ { 2 } \\right) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 218, + 388, + 699, + 446 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "This constraint translates to the following ALM in Equation (11): ", + "bbox": [ + 174, + 449, + 602, + 465 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/6b013d885a1d46e57f85b45777e15fe96d4358fccc7b6980bdd8253a82bf5f2f.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathcal { L } _ { \\mathrm { a l m } } ^ { \\mathrm { G A N } } ( f , g _ { \\theta } ) = \\hat { \\mathcal { E } } ( f , g _ { \\theta } ) + \\lambda _ { F } ( 1 - \\hat { \\Omega } _ { F } ( \\pmb { f } , g _ { \\theta } ) ) + \\lambda _ { S } ( 1 - \\hat { \\Omega } _ { S } ( f _ { - } , g _ { \\theta } ) ) } \\\\ & { \\quad \\quad \\quad \\quad - \\frac { \\rho _ { F } } { 2 } ( \\hat { \\Omega } _ { F } ( \\pmb { f } , g _ { \\theta } ) - 1 ) ^ { 2 } - \\frac { \\rho _ { S } } { 2 } ( \\hat { \\Omega } _ { S } ( f _ { - } , g _ { \\theta } ) - 1 ) ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 263, + 470, + 735, + 523 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Note that the fisher constraint on $f$ ensures the stability of the training, and the Sobolev constraints on the “fake” critic $f _ { - }$ enforces smoothness of the “fake” critic and thus the shared CNN $\\Phi _ { \\omega } ( x )$ . This is related to the classic Laplacian regularization in semi-supervised learning (Belkin et al., 2006). ", + "bbox": [ + 173, + 526, + 826, + 583 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Table 2 shows results of SSL on CIFAR-10 comparing the two proposed formulations. Similar to the standard procedure in other GAN papers, we do hyperparameter and model selection on the validation set. We present baselines with a similar model architecture and leave out results with significantly larger convnets. G and D architectures and hyperparameters are in Appendix D. $\\Phi _ { \\omega }$ is similar to (Salimans et al., 2016; Dumoulin et al., 2017; Mroueh & Sercu, 2017) in architecture, but note that we do not use any batch, layer, or weight normalization yet obtain strong competitive accuracies. We hypothesize that we don’t need any normalization in the critic, because of the implicit whitening of the feature maps introduced by the Fisher and Sobolev constraints as explained in (Mroueh & Sercu, 2017). ", + "bbox": [ + 173, + 588, + 826, + 715 + ], + "page_idx": 13 + }, + { + "type": "image", + "img_path": "images/ea25635919fa3c5b32ae620a1e74c601b9df2ff8ade1012e0ef7eddf0195cd9e.jpg", + "image_caption": [ + "Figure 5: $\\mathrm { \\ddot { \\Delta K } } + 1 \\mathrm { \\ ' }$ ” parametrization of the critic for semi-supervised learning. " + ], + "image_footnote": [], + "bbox": [ + 253, + 739, + 741, + 892 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/030d4a44b15f080cce2bc3e0e6994331ffe397d02b0b7427f447afbeb200ae37.jpg", + "table_caption": [ + "Table 2: CIFAR-10 error rates for varying number of labeled samples in the training set. Mean and standard deviation computed over 5 runs. We only use the $K + 1$ formulation of the critic. Note that we achieve strong SSL performance without any additional tricks, and even though the critic does not have any batch, layer or weight normalization. Baselines with \\* use either additional models like PixelCNN, or do data augmentation (translations and flips), or use a much larger model, either of which gives an advantage over our plain simple training method. $\\dagger$ is the result we achieved in our experimental setup under the same conditions but without $\\mathrm { \\ddot { \\Delta K } } + 1 \\mathrm { \\ ' }$ critic (see Appendix D), since (Gulrajani et al., 2017) does not have SSL results. " + ], + "table_footnote": [], + "table_body": "
Number of labeled examples Model100020004000 Misclassification rate8000
CatGAN (Springenberg, 2015) FM (Salimans et al., 2016) ALI (Dumoulin et al., 2017)21.83 ± 2.0119.61 ± 2.0919.58 18.63 ± 2.3217.72 ± 1.82
Tangents Reg (Kumar et al., 2017)19.98 ± 0.3 20.06 ± 0.519.09 ± 0.1517.99 ± 0.54 16.78 ± 0.617.05 ± 0.50
II-model (Laine & Aila, 2016) *16.55 ± 0.29
VAT (Miyato et al., 2017)14.87
Bad Gan (Dai et al., 2017) *14.41 ± 0.30
VAT+EntMin+Large (Miyato et al., 2017) *13.15
Sajadi (Sajjadi et al., 2016) *11.29
WGAN-GP (Gulrajani et al., 2017) t44.85 ± 0.2837.62 ± 0.5632.66 ± 0.4830.38± 0.22
Fisher,layer norm (Mroueh & Sercu,2017)19.74± 0.2117.87 ± 0.3816.13 ± 0.5314.81 ± 0.16
Fisher, no norm (Mroueh & Sercu, 2017)21.49 ± 0.1819.20 ± 0.4617.30 ± 0.3015.57 ± 0.33
Sobolev + Fisher, no norm (This Work)20.14 ± 0.2117.38 ± 0.1015.77 ± 0.1914.20± 0.08
", + "bbox": [ + 174, + 212, + 823, + 434 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "7 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 458, + 318, + 474 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We introduced the Sobolev IPM and showed that it amounts to a comparison between weighted (coordinate-wise) CDFs. We presented an ALM algorithm for training Sobolev GAN. The intrinsic conditioning implied by the Sobolev IPM explains the success of gradient regularization in Sobolev GAN and WGAN-GP on discrete sequence data, and particularly in text generation. We highlighted the important tradeoffs between the implicit conditioning introduced by the gradient regularizer in Sobolev IPM, and the explicit conditioning of Fisher IPM via recurrent critics and generators in conjunction with the curriculum conditioning. Both approaches succeed in text generation. We showed that Sobolev GAN achieves competitive semi-supervised learning results without the need of any normalization, thanks to the smoothness induced by the gradient regularizer. We think the Sobolev IPM point of view will open the door for designing new regularizers that induce different types of conditioning for general structured/discrete/graph data beyond sequences. ", + "bbox": [ + 174, + 489, + 825, + 642 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 665, + 285, + 679 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Ahmed El Alaoui, Xiang Cheng, Aaditya Ramdas, Martin J. Wainwright, and Michael I. Jordan. Asymptotic behavior of p-based laplacian regularization in semi-supervised learning. CoRR, abs/1603.00564, 2016. \nMartin Arjovsky and Leon Bottou. Towards principled methods for training generative adversarial ´ networks. In ICLR, 2017. \nMartin Arjovsky, Soumith Chintala, and Leon Bottou. Wasserstein gan. ´ ICML, 2017. \nJimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv:1607.06450, 2016. \nMikhail Belkin, Partha Niyogi, and Vikas Sindhwani. Manifold regularization: A geometric framework for learning from labeled and unlabeled examples. JMLR, 2006. \nMarc G. Bellemare, Ivo Danihelka, Will Dabney, Shakir Mohamed, Balaji Lakshminarayanan, Stephan Hoyer, and Remi Munos. The cramer distance as a solution to biased wasserstein gradi- ´ ents. CoRR, abs/1705.10743, 2017a. \nMarc G Bellemare, Ivo Danihelka, Will Dabney, Shakir Mohamed, Balaji Lakshminarayanan, Stephan Hoyer, and Remi Munos. The cramer distance as a solution to biased wasserstein gradi- ´ ents. arXiv:1705.10743, 2017b. \nTong Che, Yanran Li, Ruixiang Zhang, Devon R Hjelm, Wenjie Li, Yangqiu Song, and Yoshua Bengio. Maximum-likelihood augmented discrete generative adversarial networks. arXiv:1702.07983, 2017. \nKacper Chwialkowski, Heiko Strathmann, and Arthur Gretton. A kernel test of goodness of fit. In ICML 2016, 2016. \nZihang Dai, Zhilin Yang, Fan Yang, William W Cohen, and Ruslan Salakhutdinov. Good semisupervised learning that requires a bad gan. arXiv:1705.09783, 2017. \nVincent Dumoulin, Ishmael Belghazi, Ben Poole, Alex Lamb, Martin Arjovsky, Olivier Mastropietro, and Aaron Courville. Adversarially learned inference. ICLR, 2017. \nGintare Karolina Dziugaite, Daniel M. Roy, and Zoubin Ghahramani. Training generative neural networks via maximum mean discrepancy optimization. In UAI, 2015. \nI. Ekeland and T. Turnbull. Infinite-dimensional Optimization and Convexity. The University of Chicago Press, 1983. \nA. Genevay, G. Peyre, and M. Cuturi. Learning generative models with sinkhorn divergences. ´ Preprint 1706.00292, Arxiv, 2017. URL https://arxiv.org/abs/1706.00292. \nIan Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In NIPS, 2014. \nJackson Gorham and Lester W. Mackey. Measuring sample quality with stein’s method. In NIPS, pp. 226–234, 2015. \nArthur Gretton, Karsten M Borgwardt, Malte J Rasch, Bernhard Scholkopf, and Alexander Smola. ¨ A kernel two-sample test. JMLR, 2012. \nIshaan Gulrajani, Faruk Ahmed, Martin Arjovsky, Vincent Dumoulin, and Aaron Courville. Improved training of wasserstein gans. arXiv:1704.00028, 2017. \nR. Devon Hjelm, Athul Paul Jacob, Tong Che, Kyunghyun Cho, and Yoshua Bengio. Boundaryseeking generative adversarial networks. arXiv:1702.08431, 2017. \nSergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. Proc. ICML, 2015. \nCasper Kaae Sønderby, Jose Caballero, Lucas Theis, Wenzhe Shi, and Ferenc Huszar. Amortised ´ map inference for image super-resolution. ICLR, 2017. \nA. Krizhevsky and G. Hinton. Learning multiple layers of features from tiny images. Master’s thesis, 2009. \nAbhishek Kumar, Prasanna Sattigeri, and P Thomas Fletcher. Improved semi-supervised learning with gans using manifold invariances. NIPS, 2017. \nMatt J. Kusner and Jose Miguel Hern ´ andez-Lobato. Gans for sequences of discrete elements with ´ the gumbel-softmax distribution. arXiv:1611.04051, 2016. \nSamuli Laine and Timo Aila. Temporal ensembling for semi-supervised learning. arXiv:1610.02242, 2016. \nChun-Liang Li, Wei-Cheng Chang, Yu Cheng, Yiming Yang, and Barnabas P ´ oczos. MMD GAN: ´ towards deeper understanding of moment matching network. NIPS, abs/1705.08584, 2017. \nYujia Li, Kevin Swersky, and Richard Zemel. Generative moment matching networks. In ICML, 2015. ", + "bbox": [ + 171, + 688, + 826, + 924 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 69, + 826, + 925 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Qiang Liu. Stein variational descent as a gradient flow. NIPS, 2017. ", + "bbox": [ + 173, + 103, + 619, + 119 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Qiang Liu and Dilin Wang. Stein variational gradient descent: A general purpose bayesian inference algorithm. In Advances in Neural Information Processing Systems 29. 2016. ", + "bbox": [ + 173, + 127, + 823, + 156 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Qiang Liu, Jason D. Lee, and Michael I. Jordan. A kernelized stein discrepancy for goodness-of-fit tests. In Proceedings of the 33nd International Conference on Machine Learning, ICML 2016, New York City, NY, USA, June 19-24, 2016, 2016. ", + "bbox": [ + 178, + 164, + 821, + 208 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Xudong Mao, Qing Li, Haoran Xie, Raymond YK Lau, and Zhen Wang. Least squares generative adversarial networks. arXiv:1611.04076 ICCV, 2017. ", + "bbox": [ + 174, + 215, + 823, + 246 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial training: a regularization method for supervised and semi-supervised learning. arXiv:1704.03976, 2017. ", + "bbox": [ + 174, + 252, + 823, + 284 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Hossein Mobahi and John W. Fisher III. A Theoretical Analysis of Optimization by Gaussian Continuation. In Proc. of 29th Conf. Artificial Intelligence (AAAI’15), 2015. ", + "bbox": [ + 176, + 290, + 823, + 320 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Youssef Mroueh and Tom Sercu. Fisher gan. arXiv:1705.09675 NIPS, 2017. ", + "bbox": [ + 174, + 327, + 681, + 344 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Youssef Mroueh, Tom Sercu, and Vaibhava Goel. Mcgan: Mean and covariance feature matching gan. arXiv:1702.08398 ICML, 2017. ", + "bbox": [ + 176, + 352, + 823, + 381 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Alfred Muller. Integral probability metrics and their generating classes of functions. ¨ Advances in Applied Probability, 1997. ", + "bbox": [ + 173, + 388, + 823, + 419 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Sebastian Nowozin, Botond Cseke, and Ryota Tomioka. f-gan: Training generative neural samplers using variational divergence minimization. In NIPS, 2016. ", + "bbox": [ + 173, + 426, + 823, + 457 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Chris J. Oates, Mark Girolami, and Nicolas Chopin. Control functionals for monte carlo integration. Journal of the Royal Statistical Society: Series B (Statistical Methodology), 2017. ", + "bbox": [ + 173, + 464, + 821, + 494 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Ofir Press, Amir Bar, Ben Bogin, Jonathan Berant, and Lior Wolf. Language generation with recurrent generative adversarial networks without pre-training. arXiv:1706.01399, 2017. ", + "bbox": [ + 173, + 501, + 821, + 531 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep convolutional generative adversarial networks. arXiv:1511.06434, 2015. ", + "bbox": [ + 171, + 540, + 821, + 569 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Sai Rajeswar, Sandeep Subramanian, Francis Dutil, Christopher Pal, and Aaron Courville. Adversarial generation of natural language. arXiv:1705.10929, 2017. ", + "bbox": [ + 171, + 577, + 820, + 607 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Scott E Reed, Zeynep Akata, Santosh Mohan, Samuel Tenka, Bernt Schiele, and Honglak Lee. Learning what and where to draw. In Advances In Neural Information Processing Systems, pp. 217–225, 2016. ", + "bbox": [ + 176, + 614, + 823, + 657 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Mehdi Sajjadi, Mehran Javanmardi, and Tolga Tasdizen. Regularization with stochastic transformations and perturbations for deep semi-supervised learning. In Advances in Neural Information Processing Systems, pp. 1163–1171, 2016. ", + "bbox": [ + 173, + 665, + 823, + 709 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Tim Salimans and Diederik P Kingma. Weight normalization: A simple reparameterization to accelerate training of deep neural networks. In Advances in Neural Information Processing Systems, pp. 901–901, 2016. ", + "bbox": [ + 173, + 717, + 823, + 761 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved techniques for training gans. NIPS, 2016. ", + "bbox": [ + 174, + 768, + 821, + 797 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Pannagadatta K. Shivaswamy and Tony Jebara. Maximum relative margin and data-dependent regularization. Journal of Machine Learning Research, 11:747–788, 2010. doi: 10.1145/1756006. 1756031. URL http://doi.acm.org/10.1145/1756006.1756031. ", + "bbox": [ + 176, + 806, + 820, + 849 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Jost Tobias Springenberg. Unsupervised and semi-supervised learning with categorical generative adversarial networks. arXiv:1511.06390, 2015. ", + "bbox": [ + 174, + 857, + 820, + 887 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Bharath K. Sriperumbudur, Kenji Fukumizu, Arthur Gretton, Bernhard Scholkopf, and Gert R. G. Lanckriet. On integral probability metrics, $\\phi$ -divergences and binary classification. 2009. ", + "bbox": [ + 176, + 895, + 820, + 924 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Bharath K. Sriperumbudur, Kenji Fukumizu, Arthur Gretton, Bernhard Scholkopf, and Gert R. G. ¨ Lanckriet. On the empirical estimation of integral probability metrics. Electronic Journal of Statistics, 2012. \nDilin Wang and Qiang Liu. Learning to draw samples: With application to amortized MLE for generative adversarial learning. CoRR, abs/1611.01722, 2016. \nLantao Yu, Weinan Zhang, Jun Wang, and Yong Yu. Seqgan: Sequence generative adversarial nets with policy gradient. CoRR, abs/1609.05473, 2016. \nJunbo Jake Zhao, Yoon Kim, Kelly Zhang, Alexander M. Rush, and Yann LeCun. Adversarially regularized autoencoders for generating discrete structures. CoRR, 2017. ", + "bbox": [ + 173, + 103, + 826, + 260 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "A THEORY: APPROXIMATION AND TRANSPORT INTERPRETATION ", + "text_level": 1, + "bbox": [ + 173, + 102, + 730, + 118 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "In this Section we present the theoretical properties of Sobolev IPM and how it relates to distributions transport theory and other known metrics between distributions, notably the Stein distance. ", + "bbox": [ + 174, + 132, + 823, + 161 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "A.1 DISTRIBUTION TRANSPORT PERSPECTIVE ON SOBOLEV IPM ", + "text_level": 1, + "bbox": [ + 174, + 176, + 642, + 193 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "In this Section, we characterize the optimal critic of the Sobolev IPM as a solution of a non linear PDE. The solution of the variational problem of the Sobolev IPM satisfies a non linear PDE that can be derived using standard tools from calculus of variations (Ekeland & Turnbull, 1983; Alaoui et al., 2016). ", + "bbox": [ + 173, + 202, + 825, + 258 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Theorem 3 (PDE satisfied by the Sobolev Critic). The optimal critic of Sobolev IPM $f ^ { * }$ satisfies the following $P D E$ : ", + "bbox": [ + 173, + 261, + 825, + 290 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/11a1a882d27c217eb8c6f794348747448fe25025ec5b8fdb311f21b816fa8589.jpg", + "text": "$$\n\\Delta f ^ { * } ( x ) + \\left. \\nabla _ { x } \\log \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. + \\frac { \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) } { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\mu ( x ) } = 0 .\n$$", + "text_format": "latex", + "bbox": [ + 303, + 291, + 694, + 327 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Define the Stein Operator: $\\begin{array} { r } { T ( \\mu ) \\vec { g } ( x ) = \\frac { 1 } { 2 } \\Big ( \\langle \\nabla _ { x } \\log ( \\mu ( x ) ) , \\vec { g } ( x ) \\rangle + d i v ( \\vec { g } ( x ) ) \\Big ) } \\end{array}$ . Hence we have the following Transport Equation of $\\mathbb { P }$ to $\\mathbb { Q }$ : ", + "bbox": [ + 173, + 342, + 823, + 378 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/1e8e1ddb948c1f5c091710119ff5cfe0e18fe54c83f125800249ff258b965310.jpg", + "text": "$$\n\\mathbb { Q } ( x ) = \\mathbb { P } ( x ) + 2 S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\mu ( x ) T ( \\mu ) \\nabla _ { x } f ^ { * } ( x ) .\n$$", + "text_format": "latex", + "bbox": [ + 341, + 381, + 651, + 398 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Recall the definition of Stein Discrepancy : ", + "bbox": [ + 174, + 400, + 457, + 415 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/2877884eb1971d1d3f73c91b22dfd55168fc0436ac4b2c417bab1a06eeda727c.jpg", + "text": "$$\n\\mathbb { S } ( \\mathbb { Q } , \\mu ) = \\operatorname* { s u p } _ { \\vec { g } } | \\mathbb { E } _ { x \\sim \\mathbb { Q } } [ T ( \\mu ) \\vec { g } ( x ) ] | , \\vec { g } : \\mathcal { X } \\mathbb { R } ^ { d } .\n$$", + "text_format": "latex", + "bbox": [ + 334, + 416, + 660, + 445 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Theorem 4 (Sobolev and Stein Discrepanices). The following inequality holds true: ", + "bbox": [ + 174, + 446, + 725, + 462 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/eeb5ec94fe21ee822359870e030f1434ca8ac52a226b712de209aa416c3f67fb.jpg", + "text": "$$\n\\bigg | \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mathbb { Q } } \\left[ \\frac { \\mathbb { Q } ( \\boldsymbol { x } ) - \\mathbb { P } ( \\boldsymbol { x } ) } { \\mu ( \\boldsymbol { x } ) } \\right] \\bigg | \\leq 2 \\qquad \\underbrace { \\mathbb { S } ( \\mathbb { Q } , \\mu ) } _ { \\mathrm { S } ( \\mathbb { Q } , \\mu ) } \\qquad \\underbrace { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } _ { \\mathrm { S } _ { \\boldsymbol { \\mu } } ( \\mathbb { Q } ) }\n$$", + "text_format": "latex", + "bbox": [ + 254, + 463, + 735, + 498 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Consider for example $\\mu = \\mathbb { P }$ , and sequence $\\mathbb { Q } _ { n }$ . If the Sobolev distance goes $S _ { \\mathbb { P } } ( \\mathbb { P } , \\mathbb { Q } _ { n } ) 0$ , the ratio $\\begin{array} { r } { r _ { n } ( x ) = \\frac { \\mathbb { Q } _ { n } ( x ) } { \\mathbb { P } ( x ) } } \\end{array}$ Qn(x)P(x) converges in expectation (w.r.t to Q) to 1. The speed of the convergence is given by the Stein Discrepancy $\\mathbb { S } ( \\mathbb { Q } _ { n } , \\mathbb { P } )$ . ", + "bbox": [ + 173, + 521, + 826, + 571 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Relation to Fokker-Planck Diffusion Equation and Particles dynamics. Note that PDE satisifed by the Sobolev critic given in Equation (13) can be equivalently written: ", + "bbox": [ + 174, + 585, + 820, + 614 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/6c0c12a2a6be6aa27f7a455544535d1930265afa23d226fdc15e72c20e552f62.jpg", + "text": "$$\n\\frac { \\mathbb { P } - \\mathbb { Q } } { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } = - \\mathrm { d i v } ( \\mu ( x ) \\nabla _ { x } f ^ { * } ( x ) ) ,\n$$", + "text_format": "latex", + "bbox": [ + 382, + 616, + 616, + 650 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "written in this form, we draw a connection with the Fokker-Planck Equation for the evolution of a density function $q _ { t }$ that is the density of particles $X _ { t } \\in \\mathbb { R } ^ { d }$ evolving with a drift (a velocity field) $V ( x , i ) : \\mathcal { X } \\times [ 0 , \\infty [ \\mathbb { R } ^ { d }$ : ", + "bbox": [ + 176, + 651, + 825, + 694 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "$d X _ { t } = V ( X _ { t } , t ) d t$ , where the density of $X _ { 0 }$ is given by $q _ { 0 } ( x ) = \\mathbb { Q } ( x )$ , ", + "bbox": [ + 261, + 695, + 733, + 712 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Fokker-Planck Equation states that the evolution of the particles density $q _ { t }$ satisfies: ", + "bbox": [ + 212, + 714, + 746, + 729 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/775fdf072fd235807b3bfb8f331579429df6aef60d2b70b5948031e0ed865845.jpg", + "text": "$$\n\\frac { d \\boldsymbol { q } _ { t } } { d t } ( \\boldsymbol { x } ) = - \\mathrm { d i v } ( \\boldsymbol { q } _ { t } ( \\boldsymbol { x } ) V ( \\boldsymbol { x } , t ) )\n$$", + "text_format": "latex", + "bbox": [ + 398, + 731, + 599, + 761 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Comparing Equation (15) and Equation (16), we identify then the gradient of Sobolev critic as a drift. This suggests that one can define “Sobolev descent” as the evolution of particles along the gradient flow: ", + "bbox": [ + 173, + 762, + 825, + 804 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "$d X _ { t } = \\nabla _ { x } f _ { t } ^ { * } ( X _ { t } ) d t$ , where the density of $X _ { 0 }$ is given by $q _ { 0 } ( x ) = \\mathbb { Q } ( x )$ , where $f _ { t } ^ { * }$ is the Sobolev critic between $q _ { t }$ and $\\mathbb { P }$ . One can show that the limit distribution of the particles is $\\mathbb { P }$ . The analysis of “Sobolev descent” and its relation to Stein Descent (Liu & Wang, 2016; Liu, 2017) is beyond the scope of this paper and will be studied in a separate work. Hence we see that the gradient of the Sobolev critic defines a transportation plan to move particles whose distribution is $\\mathbb { Q }$ to particles whose distribution is $\\mathbb { P }$ (See Figure 2). This highlights the role of the gradient of the critic in the context of GAN training in term of transporting the distribution of the generator to the real distribution. ", + "bbox": [ + 258, + 808, + 738, + 824 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 825, + 825, + 924 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "B PROOFS ", + "text_level": 1, + "bbox": [ + 174, + 102, + 276, + 118 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Proof of Theorem 2. Let $F _ { \\mathbb { P } }$ and $F _ { \\mathbb { Q } }$ , be the cumulative distribution functions of $\\mathbb { P }$ and $\\mathbb { Q }$ respectively. We have: ", + "bbox": [ + 173, + 138, + 823, + 169 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/f778a10ee1bb50edd324b16fe3e9d3835192f46f20e176ca6e82987269cea599.jpg", + "text": "$$\n\\mathbb { P } ( x ) = \\frac { \\partial ^ { d } } { \\partial x _ { 1 } \\hdots \\partial x _ { d } } F _ { \\mathbb { P } } ( x ) ,\n$$", + "text_format": "latex", + "bbox": [ + 405, + 179, + 589, + 214 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "We note $\\begin{array} { r } { D = \\frac { \\partial ^ { d } } { \\partial x _ { 1 } \\ldots \\partial x _ { d } } } \\end{array}$ and D−i , $\\begin{array} { r } { D ^ { - i } = \\frac { \\partial ^ { d - 1 } } { \\partial x _ { 1 } \\dots \\partial x _ { i - 1 } \\partial x _ { i + 1 } \\dots \\partial x _ { d } } } \\end{array}$ , for $i = 1 \\ldots d$ . ", + "bbox": [ + 174, + 229, + 658, + 253 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "$D ^ { - i }$ computes the $d - 1$ partial derivative excluding the variable $i$ . ", + "bbox": [ + 174, + 268, + 619, + 284 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "In the following we assume that $F _ { \\mathbb { P } }$ , and $F _ { \\mathbb { Q } }$ and its $d$ derivatives exist and are continuous meaning that $F _ { \\mathbb { P } }$ and $F _ { \\mathbb { Q } } \\in C ^ { d } ( \\mathcal { X } )$ . The objective function in Equation (3) can be written as follows: ", + "bbox": [ + 174, + 285, + 825, + 314 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/a5f3ef5002ea81558675e55bb133816c714f037eb108959ad66ab1af72273a1c.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) = \\displaystyle \\int _ { \\mathcal { X } } f ( x ) D \\Big ( F _ { \\mathbb { P } } ( x ) - F _ { \\mathbb { Q } } ( x ) \\Big ) d x } \\\\ & { \\quad \\quad \\quad \\quad \\quad = \\displaystyle \\int _ { \\mathcal { X } } f ( x ) \\frac { \\partial } { \\partial x _ { i } } D ^ { - i } ( F _ { \\mathbb { P } } ( x ) - F _ { \\mathbb { Q } } ( x ) ) d x } \\\\ & { \\quad \\quad \\quad \\quad \\quad \\mathrm { ( f o r ~ a n y ~ } i , \\mathrm { s i n c e ~ } F _ { \\mathbb { P } } \\mathrm { ~ a n d ~ } F _ { \\mathbb { Q } } \\in C ^ { d } ( \\mathcal { X } ) ) } \\\\ & { \\quad \\quad \\quad \\quad = - \\displaystyle \\int _ { \\mathcal { X } } \\frac { \\partial f } { \\partial x _ { i } } D ^ { - i } ( F _ { \\mathbb { P } } ( x ) - F _ { \\mathbb { Q } } ( x ) ) d x } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 269, + 329, + 700, + 452 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Let $D ^ { - } = ( D ^ { - 1 } , \\ldots , D ^ { - d } )$ it follows that: ", + "bbox": [ + 173, + 487, + 460, + 503 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/b5ceaa7c1995a14f8d2d1cbfd29b3a19b1b4ba405f4fda5e2cf411f381364131.jpg", + "text": "$$\n\\begin{array} { r c l } { \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) } & { = } & { \\displaystyle \\frac { 1 } { d } \\sum _ { i = 1 } ^ { d } \\int _ { \\chi } \\frac { \\partial f } { \\partial x _ { i } } D ^ { - i } ( F _ { \\mathbb { Q } } ( x ) - F _ { \\mathbb { P } } ( x ) ) d x } \\\\ & { = } & { \\displaystyle \\frac { 1 } { d } \\int _ { \\chi } \\left. \\nabla _ { x } f ( x ) , D ^ { - } ( F _ { \\mathbb { Q } } ( x ) - F _ { \\mathbb { P } } ( x ) ) \\right. _ { \\mathbb { R } ^ { d } } d x } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 248, + 520, + 746, + 599 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Let us define $\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d }$ the space of measurable functions from $\\mathcal X ~ ~ \\mathbb R ^ { d }$ . For $g , h \\in$ $\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d }$ the dot product is defined as follows: ", + "bbox": [ + 173, + 619, + 823, + 650 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/ff87f31353f9898c7f2bbf29ab57a1bb4118c4fb13ecb3191d07e8140275131d.jpg", + "text": "$$\n\\langle g , h \\rangle _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } } = \\int _ { \\mathcal { X } } \\langle g ( x ) , h ( x ) \\rangle _ { \\mathbb { R } ^ { d } } \\mu ( x ) d x\n$$", + "text_format": "latex", + "bbox": [ + 346, + 665, + 650, + 699 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "and the norm is given : ", + "bbox": [ + 173, + 714, + 325, + 729 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/5f64fccbbf2a9e795760a7de33f747b99bf60130b2d97b7d8b093dfcc1567b13.jpg", + "text": "$$\n\\| g \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } } = \\int _ { X } \\| g \\| _ { \\mathbb { R } ^ { d } } ^ { 2 } \\mu ( x ) d x .\n$$", + "text_format": "latex", + "bbox": [ + 379, + 739, + 617, + 773 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "We can write the objective in Equation (18) in term of the dot product in $\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d }$ : ", + "bbox": [ + 168, + 790, + 746, + 808 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/7719e18f2f858292d82f2903671b0aa608a4b3cd4a510f662d0d485f621360a4.jpg", + "text": "$$\n\\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) = \\frac { 1 } { d } \\left. \\nabla _ { x } f , \\frac { D ^ { - } ( F _ { \\mathbb { Q } } - F _ { \\mathbb { P } } ) } { \\mu } \\right. _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } } .\n$$", + "text_format": "latex", + "bbox": [ + 281, + 821, + 717, + 859 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "On the other hand the constraint in Equation (3) can be written in terms of the norm in $\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d }$ : ", + "bbox": [ + 171, + 876, + 825, + 892 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/a2717f1a2dd74db0025a8c09ce269305bd1bf18898a3c09957b249f7f8b5c19b.jpg", + "text": "$$\n\\| f \\| _ { W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) } = \\| \\nabla _ { x } f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } }\n$$", + "text_format": "latex", + "bbox": [ + 385, + 907, + 614, + 928 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Replacing the objective and constraint given in Equations (19) and (20) in Equation (3), we obtain: ", + "bbox": [ + 171, + 102, + 820, + 119 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/97b0a5f9eab2359015dacdd9aac8c371e326ca18071ef98d8578c2a27cdeec4e.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathfrak { H } ( \\mathbb { P } , \\mathfrak { G } ) = \\frac { 1 } { d } _ { f , \\vert \\mathcal { C } _ { 2 } , \\vert \\mathcal { C } _ { 2 } , \\alpha , \\beta , 0 ; 0 } \\le \\mathfrak { C } _ { \\ge } f , \\frac { D ^ { - } ( F _ { \\mathfrak { g } } - F _ { \\mathfrak { g } } \\vert \\mathfrak { F } ) } { \\mu } \\Bigr \\rangle _ { \\mathcal { B } ( \\mathfrak { x } , \\mu ) \\le \\mathfrak { c } } } \\\\ & { \\ = \\frac { 1 } { d } _ { g \\le \\mathcal { G } _ { 2 } ( x , \\beta ) \\le \\mathfrak { c } , \\vert \\mathfrak { H } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { x } , \\mu } ) \\le \\mathfrak { c } } \\Big \\langle g , \\frac { D ^ { - } ( F _ { \\mathfrak { g } } - F _ { \\mathfrak { g } } ) } { \\mu } \\Big \\rangle _ { \\mathcal { B } _ { \\ge } ( x , \\mu ) \\ge \\mathfrak { c } } } \\\\ & { \\ = \\frac { 1 } { d } \\bigg \\Vert \\frac { D ^ { - } ( F _ { \\mathfrak { g } } - F _ { \\mathfrak { g } } ) } { \\mu } \\bigg \\Vert _ { \\mathcal { B } _ { \\ge } ( x , \\mu ) \\le \\mathfrak { c } } } \\\\ & { \\ \\left( \\mathtt { B y ~ d e n i n i o n ~ o f ~ } \\Vert \\cdot \\Vert _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) \\le \\mathfrak { c } } , g ^ { - } = \\frac { D ^ { - } F _ { \\mathfrak { g } } ( \\mathfrak { x } ) - D ^ { - } F _ { \\mathfrak { g } } ( \\mathfrak { x } ) } { \\mu ( \\mathfrak { x } ) } \\frac { 1 } { \\left. \\frac { D ^ { - } ( F _ { \\mathfrak { g } } - F _ { \\mathfrak { g } } ) } { \\mu } \\right. _ { \\mathcal { B } _ { \\ge } ( \\mathcal { X } , \\mu ) \\le \\mathfrak { c } } } \\right) } \\\\ & \\ = \\frac { 1 } { d } \\sqrt { \\int _ { x } \\frac { \\Vert D ^ { - } F _ { \\mathfrak { g } } ( \\mathfrak { x } ) - D ^ { - } F _ { \\mathfrak { g } } ( \\mathfrak { x } ) \\Vert _ { \\mathcal { A } ( \\mathcal { X } , \\mu ) } ^ { 2 } } { \\mu ( \\mathfrak { x } ) } d \\mathfrak { x } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 121, + 828, + 345 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Hence we find also that the optimal critic $f ^ { * }$ satisfies: ", + "bbox": [ + 174, + 347, + 527, + 361 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/e2a8405da9d66cf04b46a09981465e33ed699ddef6794bf122d29007c27d98f4.jpg", + "text": "$$\n\\nabla _ { x } f ^ { * } ( x ) = \\frac { D ^ { - } F _ { \\mathbb { Q } } ( x ) - D ^ { - } F _ { \\mathbb { P } } ( x ) } { \\mu ( x ) } \\frac { 1 } { \\Big \\| \\frac { D ^ { - } ( F _ { \\mathbb { Q } } - F _ { \\mathbb { P } } ) } { \\mu } \\Big \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } } } .\n$$", + "text_format": "latex", + "bbox": [ + 277, + 363, + 687, + 411 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Proof of Lemma $\\cdot$ . ", + "bbox": [ + 173, + 444, + 297, + 458 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/0611e104c0c0ee07559606e0f2c96ba20e8c410008e3997a61e6623b0731c165.jpg", + "text": "$$\n\\begin{array} { r c l } { \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) } & { = } & { \\displaystyle \\frac { 1 } { d } \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) , D ^ { - } ( F _ { \\mathbb { Q } } ( x ) - F _ { \\mathbb { P } } ( x ) ) \\right. _ { \\mathbb { R } ^ { d } } d x } \\\\ & { = } & { \\displaystyle S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) , \\frac { D ^ { - } ( F _ { \\mathbb { Q } } ( x ) - F _ { \\mathbb { P } } ( x ) ) } { \\mu ( x ) d S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } \\right. _ { \\mathbb { R } ^ { d } } \\mu ( x ) d x } \\\\ & { = } & { \\displaystyle S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. \\mu ( x ) d x } \\\\ & { = } & { \\displaystyle S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\left. f , f ^ { * } \\right. _ { W _ { 0 } ^ { 1 , 2 } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 204, + 462, + 795, + 588 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Hence we have: ", + "bbox": [ + 173, + 588, + 279, + 603 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/22fb9c98448596c9e95e9dea3a007cdce4c4dcc55ba8d44c667739f3e4943ab5.jpg", + "text": "$$\n\\operatorname* { s u p } _ { f \\in \\mathcal { M } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } } \\leq 1 } \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) = S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\operatorname* { s u p } _ { f \\in \\mathcal { M } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } } \\leq 1 } \\langle f , f ^ { * } \\rangle _ { W _ { 0 } ^ { 1 , 2 } } ,\n$$", + "text_format": "latex", + "bbox": [ + 227, + 606, + 767, + 640 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "It follows therefore that: ", + "bbox": [ + 173, + 643, + 334, + 657 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/4a1fe5d02a45604832f0c2d765a821ad936cac8baa7aad2cafc27a21eacf0ab5.jpg", + "text": "$$\n\\mathcal { S } _ { \\mathcal { H } } ( \\mathbb { P } , \\mathbb { Q } ) = S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\operatorname* { s u p } _ { f \\in \\mathcal { H } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } } \\leq 1 } \\langle f , f ^ { * } \\rangle _ { W _ { 0 } ^ { 1 , 2 } }\n$$", + "text_format": "latex", + "bbox": [ + 326, + 660, + 668, + 694 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "We conclude that the Sobolev IPM can be approximated in arbitrary space as long as it has enough capacity to approximate the optimal critic. Interestingly the approximation error is measured now with the Sobolev semi-norm, while in Fisher it was measured with the Lebesgue norm. Approximations with Sobolev Semi-norms are stronger then Lebesgue norms as given by the Poincare inequality $( \\vert \\vert f \\vert \\vert _ { \\mathcal { L } _ { 2 } } \\le C \\left. f \\right. _ { W _ { 0 } ^ { 1 , 2 } } )$ , meaning if the error goes to zero in Sobolev sense it also goes to zero in the Lebesgue sense , but the converse is not true. ", + "bbox": [ + 173, + 727, + 825, + 815 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Proof of Theorem 3. The proof follows similar arguments in the proofs of the analysis of Laplacian regularization in semi-supervised learning studied by (Alaoui et al., 2016). ", + "bbox": [ + 171, + 828, + 823, + 858 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/16204a8fe673ff37deede84c74672bcba84a9389a4840469eb842215b7d60971.jpg", + "text": "$$\n\\begin{array} { r l } { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } & { { } = \\operatorname* { s u p } _ { f \\in W _ { 0 } ^ { 1 , 2 } } \\Big \\{ \\mathbb { E } _ { x \\sim \\mathbb { P } } \\left[ f ( x ) \\right] - \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ f ( x ) \\right] \\Big \\} } \\\\ { s . t . } & { { } \\quad \\mathbb { E } _ { x \\sim \\mu } \\| \\nabla f ( x ) \\| _ { 2 } ^ { 2 } \\leq 1 , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 299, + 880, + 681, + 928 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Note that this problem is convex in $f$ (Ekeland & Turnbull, 1983). Writing the lagrangian for equation (21) we get : ", + "bbox": [ + 171, + 102, + 825, + 133 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/7d9b8b9ea978265c7c127c64cefd89d6075ac919a190d929993f3be1900b4710.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle { L ( f , \\lambda ) = \\mathbb { E } _ { x \\sim \\mathbb { P } } \\left[ f ( x ) \\right] - \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ f ( x ) \\right] + \\frac { \\lambda } { 2 } \\Big ( 1 - \\mathbb { E } _ { x \\sim \\mu } \\| \\nabla _ { x } f ( x ) \\| _ { 2 } ^ { 2 } \\Big ) } } \\\\ { \\displaystyle { \\quad = \\int _ { \\mathcal { X } } f ( x ) \\left( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) \\right) d x + \\frac { \\lambda } { 2 } \\Big ( 1 - \\int _ { \\mathcal { X } } \\| \\nabla _ { x } f ( x ) \\| _ { 2 } ^ { 2 } \\mu ( x ) d x \\Big ) } } \\\\ { \\displaystyle { \\quad = \\int _ { \\mathcal { X } } f ( x ) \\mu _ { 1 } ( x ) d x + \\frac { \\lambda } { 2 } \\Big ( 1 - \\int _ { \\mathcal { X } } \\| \\nabla _ { x } f ( x ) \\| _ { 2 } ^ { 2 } \\mu ( x ) d x \\Big ) } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 253, + 138, + 743, + 239 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "We denote $\\left( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) \\right)$ as $\\mu _ { 1 } ( x )$ .To get the optimal $f$ , we need to apply KKT conditions on the above equation. ", + "bbox": [ + 174, + 244, + 823, + 275 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/4b3acba07029e2f916f9fafefde867c118b2f61a87a2ee021db7672ffdae327e.jpg", + "text": "$$\nL ( f , \\lambda ) = \\int _ { \\mathcal { X } } f ( x ) \\mu _ { 1 } ( x ) d x + { \\frac { \\lambda } { 2 } } { \\Big ( } 1 - \\int _ { \\mathcal { X } } \\| \\nabla _ { x } f ( x ) \\| _ { 2 } ^ { 2 } \\ \\mu ( x ) d x { \\Big ) }\n$$", + "text_format": "latex", + "bbox": [ + 279, + 281, + 717, + 315 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "From the calculus of variations: ", + "bbox": [ + 173, + 321, + 383, + 337 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/0426c250e67dbe790cf5f8af4a301ba42faf5f66c436f04cc92e35c3010ee208.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle \\sum _ { k = 1 } ^ { \\infty } ( f + \\epsilon h , \\lambda ) = \\int _ { x } ( f + \\epsilon h ) ( x ) \\mu _ { 1 } ( x ) d x + \\frac { \\lambda } { 2 } \\Bigl ( 1 - \\int _ { x } \\| \\nabla _ { x } ( f + \\epsilon h ) ( x ) \\| _ { 2 } ^ { 2 } \\mu ( x ) d x \\Bigr ) } \\\\ { \\displaystyle = \\int _ { x } ( f ( x ) + \\epsilon h ( x ) ) \\mu _ { 1 } ( x ) d x + \\frac { \\lambda } { 2 } \\Bigl ( 1 - \\int _ { x } \\left. \\nabla _ { z } \\left( f + \\epsilon h \\right) ( x ) , \\nabla _ { z } \\left( f + \\epsilon h \\right) ( x ) \\right. \\mu ( x ) } \\\\ { \\displaystyle = \\int _ { x } ( f ( x ) + \\epsilon h ( x ) ) \\mu _ { 1 } ( x ) d x } \\\\ { \\displaystyle + \\frac { \\lambda } { 2 } \\Bigl ( 1 - \\int _ { x } \\left. \\| \\nabla _ { z } f ( x ) \\| _ { 2 } ^ { 2 } + 2 \\epsilon \\langle \\nabla _ { x } f ( x ) , \\nabla _ { x } h ( x ) \\rangle + \\mathcal { O } ( \\epsilon ^ { 2 } ) \\right. \\mu ( x ) d x \\Bigr ) } \\\\ { \\displaystyle = L ( f , \\lambda ) + \\epsilon \\int _ { x } h ( x ) \\mu _ { 1 } ( x ) d x - \\lambda \\epsilon \\int _ { x } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } h ( x ) \\right. \\mu ( x ) d x + \\mathcal { O } ( \\epsilon ^ { 2 } ) } \\\\ { \\displaystyle = L ( f , \\lambda ) + \\epsilon \\Bigl [ \\int _ { x } h ( x ) \\mu _ { 1 } ( x ) d x - \\lambda \\int _ { x } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } h ( x ) \\right. \\mu ( x ) d x \\Bigr ] + \\mathcal { O } ( \\epsilon ^ { 2 } ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 342, + 839, + 546 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Now we apply integration by part and set $h$ to be zero at boundary as in (Alaoui et al., 2016). We get : ", + "bbox": [ + 173, + 556, + 826, + 587 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/7044b2b25edcff7a49e8b371559477ca589d2e81cbd9fe38756961647bc84d2d.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle \\int _ { \\mathcal X } \\langle \\nabla _ { x } f ( x ) , \\nabla _ { x } h ( x ) \\rangle \\mu ( x ) d x = \\int _ { \\mathcal X } \\langle \\nabla _ { x } f ( x ) \\mu ( x ) , \\nabla _ { x } h ( x ) \\rangle d x } \\\\ { = \\displaystyle \\oint h ( x ) \\mu ( x ) \\nabla _ { x } f ( x ) . n ( x ) d S ( x ) - \\int _ { \\mathcal X } d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) h ( x ) d x } \\\\ { = - \\displaystyle \\int _ { \\mathcal X } d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) h ( x ) d x } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 611, + 839, + 724 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Hence, ", + "bbox": [ + 173, + 736, + 222, + 750 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/a9dd9b5d58684c4191e6db47e6dbcaf76d18e8ead39b57b378423481914d9421.jpg", + "text": "$$\n\\begin{array} { l } { { \\displaystyle { \\cal L } \\big ( f + \\epsilon h , \\lambda \\big ) = { \\cal L } \\big ( f , \\lambda \\big ) + \\epsilon \\bigg [ \\int _ { \\mathcal { X } } \\mu _ { 1 } ( x ) h ( x ) d x + \\lambda \\int _ { \\mathcal { X } } d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) h ( x ) d x \\bigg ] + { \\mathcal O } ( \\epsilon ^ { 2 } ) } } \\\\ { { \\displaystyle ~ = { \\cal L } \\big ( f , \\lambda \\big ) + \\epsilon \\int _ { \\mathcal { X } } \\bigg ( \\mu _ { 1 } ( x ) + \\lambda ~ d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) \\bigg ) h ( x ) d x + { \\mathcal O } ( \\epsilon ^ { 2 } ) } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 187, + 756, + 812, + 825 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "The functional derivative of $L ( f , \\lambda )$ , at any test function $h$ vanishing on the boundary: ", + "bbox": [ + 171, + 837, + 738, + 853 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/81c93e07c6b99398e043e25687dda7c763e16ed9766d7005b83e61eb6c834a60.jpg", + "text": "$$\n\\begin{array} { r c l } { \\displaystyle \\int _ { \\mathcal { X } } \\frac { \\partial L ( f , \\lambda ) } { \\partial f } ( x ) h ( x ) d x } & { = } & { \\displaystyle \\operatorname* { l i m } _ { \\epsilon \\to 0 } \\frac { L ( f + \\epsilon h , \\lambda ) - L ( f , \\lambda ) } { \\epsilon } } \\\\ & { = } & { \\displaystyle \\int _ { \\mathcal { X } } \\left( \\mu _ { 1 } ( x ) + \\lambda \\ d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) \\right) h ( x ) d x } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 243, + 859, + 754, + 930 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Hence we have: ", + "bbox": [ + 174, + 103, + 279, + 117 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/c1523d2ee180d7ec6b5b83dfd878acebcb06f1da3767177b82e284234ce682b1.jpg", + "text": "$$\n\\frac { \\partial L ( f , \\lambda ) } { \\partial f } ( x ) = \\mu _ { 1 } ( x ) + \\lambda ~ d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big )\n$$", + "text_format": "latex", + "bbox": [ + 343, + 113, + 653, + 147 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "For the optimal $f ^ { * } , \\lambda ^ { * }$ first order optimality condition gives us: ", + "bbox": [ + 173, + 147, + 588, + 162 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/cd4ce404d32cd6a9068826b7d6cb1688987f49294c15cd76d147d0c29859e519.jpg", + "text": "$$\n\\mu _ { 1 } ( x ) + \\lambda ^ { * } \\ d i v \\big ( \\mu ( x ) \\nabla _ { x } f ^ { * } ( x ) \\big ) = 0\n$$", + "text_format": "latex", + "bbox": [ + 374, + 165, + 624, + 184 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "and ", + "bbox": [ + 173, + 188, + 202, + 202 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/2a459cb4b29ba9ae1585c3ca41574b629dfa4958eb92e5bb5b99c8003c3abd72.jpg", + "text": "$$\n\\int _ { \\chi } \\left\\| \\nabla _ { x } f ^ { * } ( x ) \\right\\| ^ { 2 } \\mu ( x ) d x = 1\n$$", + "text_format": "latex", + "bbox": [ + 383, + 203, + 580, + 237 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "Note that (See for example (Alaoui et al., 2016)) : ", + "bbox": [ + 171, + 239, + 501, + 255 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/b1bef5a7b6eed9ea60d574973bfdbcfd15bb6c6be883f59d037b727efff13616.jpg", + "text": "$$\n\\begin{array} { r } { d i v \\big ( \\mu ( x ) \\nabla _ { x } f ^ { * } ( x ) \\big ) = \\mu ( x ) \\Delta _ { 2 } f ^ { * } ( x ) + \\langle \\nabla _ { x } \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\rangle , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 295, + 257, + 700, + 276 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "since $d i v ( \\nabla _ { x } f ^ { * } ( x ) ) = \\Delta _ { 2 } f ^ { * } ( x )$ . Hence from equation (22) ", + "bbox": [ + 173, + 280, + 571, + 296 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/beeec075d5361465cef2a89020514bc6d424e95834e7833c291d2c7832b2bd2d.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad \\mu _ { 1 } ( x ) + \\lambda ^ { * } \\ : d i v \\ : \\left( \\mu ( x ) \\nabla _ { x } f ^ { * } ( x ) \\right) = 0 } \\\\ & { \\Rightarrow \\mu _ { 1 } ( x ) + \\lambda ^ { * } \\ : \\left( \\mu ( x ) \\Delta _ { 2 } f ^ { * } ( x ) + \\left. \\nabla _ { x } \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. \\right) = 0 } \\\\ & { \\Rightarrow \\mu _ { 1 } ( x ) + \\lambda ^ { * } \\ : \\mu ( x ) \\Delta _ { 2 } f ^ { * } ( x ) + \\lambda ^ { * } \\langle \\nabla _ { x } \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\rangle = 0 } \\\\ & { \\Rightarrow \\Delta _ { 2 } f ^ { * } ( x ) + \\left. \\frac { \\nabla _ { x } \\mu ( x ) } { \\mu ( x ) } , \\nabla _ { x } f ^ { * } ( x ) \\right. + \\frac { \\mu _ { 1 } ( x ) } { \\lambda ^ { * } \\mu ( x ) } = 0 } \\\\ & { \\Rightarrow \\Delta _ { 2 } f ^ { * } ( x ) + \\left. \\nabla _ { x } \\log \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. + \\frac { \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) } { \\lambda ^ { * } \\mu ( x ) } = 0 } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 292, + 300, + 697, + 430 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "Hence $f ^ { * } , \\lambda ^ { * }$ satisfies : ", + "bbox": [ + 173, + 457, + 328, + 472 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/10dd53780e566aea6ffbd65f50fa596604613800d58ad75d9aadcfe5ab19643d.jpg", + "text": "$$\n\\Delta _ { 2 } f ^ { * } ( x ) + \\langle \\nabla _ { x } \\log \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\rangle + \\frac { \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) } { \\lambda ^ { * } \\mu ( x ) } = 0\n$$", + "text_format": "latex", + "bbox": [ + 305, + 477, + 692, + 510 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "and ", + "bbox": [ + 173, + 515, + 202, + 527 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/cca5768b101dcd5a1b17d65ddab7e431bafb05a06387687c1c4c28707fdb121b.jpg", + "text": "$$\n\\int _ { \\mathcal { X } } \\left\\| \\nabla _ { x } f ^ { * } ( x ) \\right\\| ^ { 2 } \\mu ( x ) d x = 1 .\n$$", + "text_format": "latex", + "bbox": [ + 400, + 523, + 599, + 556 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "Let us verify that the optimal critic as found in the geometric definition (Theorem 2) of Sobolev IPM that satisfies: ", + "bbox": [ + 174, + 556, + 825, + 585 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/a385e01f2a089778c02d72b0eb70db6f2299d5d8798cac41695c7826794c564f.jpg", + "text": "$$\n\\nabla _ { i } f ^ { * } ( x ) = \\frac { \\partial f ^ { * } ( X ) } { \\partial x _ { i } } = \\frac { D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) } { \\lambda ^ { * } d ~ \\mu ( x ) } ~ \\forall ~ i \\in [ d ] ,\n$$", + "text_format": "latex", + "bbox": [ + 295, + 587, + 700, + 621 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "satisfies indeed the PDE. ", + "bbox": [ + 173, + 625, + 338, + 640 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "From equation (27), we want to compute $\\frac { \\partial ^ { 2 } f ( \\boldsymbol { x } ) } { \\partial \\boldsymbol { x } _ { i } ^ { 2 } }$ for all $i$ ", + "bbox": [ + 173, + 643, + 547, + 666 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/0b45fb9b896e9bd7757e9e66019989a5525ac7167f8f974dcd6b262eeadd8230.jpg", + "text": "$$\n\\begin{array} { r l } & { \\frac { \\partial ^ { 2 } f ( x ) } { \\partial x _ { i } ^ { 2 } } = \\frac { 1 } { \\lambda ^ { * } d } \\Bigg [ \\frac { \\mu ( x ) \\left[ \\frac { \\partial } { \\partial x _ { i } } ( D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) ) \\right] - \\left[ D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) \\right] \\nabla _ { i } \\mu ( X ) } { \\mu ^ { 2 } ( x ) } \\Bigg ] } \\\\ & { \\quad \\quad \\quad = \\frac { 1 } { \\lambda ^ { * } d } \\Bigg [ \\frac { \\mu ( x ) \\left[ \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) \\right] - \\left[ D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) \\right] \\nabla _ { i } \\mu ( X ) } { \\mu ^ { 2 } ( x ) } \\Bigg ] } \\\\ & { \\quad \\quad \\quad = \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\lambda ^ { * } d \\mu ( x ) } - \\frac { \\nabla _ { i } \\mu ( x ) } { \\mu ( x ) } \\nabla _ { i } f ^ { * } ( x ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 186, + 670, + 810, + 792 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "Hence, ", + "bbox": [ + 173, + 794, + 222, + 808 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/262116e0058415058c1dd78947f9663e7b7be4922baa2f2fa447f9872c3ef805.jpg", + "text": "$$\n{ \\frac { \\partial ^ { 2 } f ( x ) } { \\partial x _ { i } ^ { 2 } } } + { \\frac { \\nabla _ { i } \\mu ( x ) } { \\mu ( x ) } } \\nabla _ { i } f ( x ) + { \\frac { \\left( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) \\right) } { \\lambda ^ { * } d \\ \\mu ( x ) } } = 0\n$$", + "text_format": "latex", + "bbox": [ + 330, + 811, + 666, + 848 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "Adding equation (28) for all $i \\in [ d ]$ , we get : ", + "bbox": [ + 174, + 859, + 465, + 875 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/3d53af26ce2d5382ee8ad3292746822cbb63110945a572ecdf223f3332304700.jpg", + "text": "$$\n\\sum _ { i = 1 } ^ { d } \\left( \\frac { \\partial ^ { 2 } f ( x ) } { \\partial x _ { i } ^ { 2 } } + \\frac { \\nabla _ { i } \\mu ( x ) } { \\mu ( x ) } \\nabla _ { i } f ( x ) + \\frac { \\left( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) \\right) } { \\lambda ^ { * } d ~ \\mu ( x ) } \\right) = 0\n$$", + "text_format": "latex", + "bbox": [ + 303, + 878, + 692, + 922 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "As a result, the solution $f ^ { * }$ of the partial differential equation given in equation (25) satisfies the following : ", + "bbox": [ + 173, + 103, + 823, + 131 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/44dbea6a536cb925ecc8309bbfa451d1a5e906fefef60ca00d84d9aed3904417.jpg", + "text": "$$\n\\frac { \\partial f ^ { * } ( x ) } { \\partial x _ { i } } = \\frac { D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) } { \\lambda ^ { * } d ~ \\mu ( x ) } ~ \\forall i \\in [ d ]\n$$", + "text_format": "latex", + "bbox": [ + 341, + 128, + 656, + 165 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Using the constraint in (26) we can get the value of $\\lambda ^ { * }$ : ", + "bbox": [ + 173, + 174, + 540, + 189 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/c823ecf201c6656506826bf064a968d261c6cd69c715fcf224521bb05e3a3655.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad \\displaystyle \\int \\| \\nabla f ^ { * } ( \\boldsymbol { x } ) \\| ^ { 2 } \\mu ( \\boldsymbol { x } ) d \\boldsymbol { x } = 1 } \\\\ & { \\Rightarrow \\displaystyle \\int \\sum _ { i = 1 } ^ { d } \\left( \\frac { \\partial f ^ { * } ( \\boldsymbol { x } ) } { \\partial x _ { i } } \\right) ^ { 2 } \\mu ( \\boldsymbol { x } ) d \\boldsymbol { x } = 1 } \\\\ & { \\Rightarrow \\lambda ^ { * } = \\displaystyle \\frac { 1 } { d } \\sqrt { \\displaystyle \\sum _ { i = 1 } ^ { d } \\int \\frac { \\left( D ^ { - i } F _ { \\mathbb { Q } } ( \\boldsymbol { x } ) - D ^ { - i } F _ { \\mathbb { P } } ( \\boldsymbol { x } ) \\right) ^ { 2 } } { \\mu ( \\boldsymbol { x } ) } d \\boldsymbol { x } } = S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 279, + 195, + 714, + 324 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Proof of Theorem 4. Define the Stein operator (Oates et al., 2017): ", + "bbox": [ + 173, + 364, + 612, + 381 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/6d3416316aee793bd2d6dc18e1f1704ec9b17d4ddc80d99466a1814424dc821d.jpg", + "text": "$$\n\\begin{array} { l l l } { { T ( \\mu ) [ \\nabla _ { x } f ( x ) ] } } & { { = } } & { { \\displaystyle \\frac { 1 } { 2 } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } \\log \\mu ( x ) \\right. + \\displaystyle \\frac { 1 } { 2 } \\left. \\nabla _ { x } , \\nabla _ { x } f ( x ) \\right. } } \\\\ { { } } & { { = } } & { { \\displaystyle \\frac { 1 } { 2 } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } \\log \\mu ( x ) \\right. + \\displaystyle \\frac { 1 } { 2 } \\Delta _ { 2 } f ( x ) . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 274, + 386, + 720, + 449 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "This operator was later used in defining the Stein discrepancy (Gorham & Mackey, 2015; Liu et al., 2016; Chwialkowski et al., 2016; Liu, 2017). ", + "bbox": [ + 171, + 450, + 823, + 479 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Recall that Barbour generator theory provides us a way of constructing such operators that produce mean zero function under $\\mu$ . It is easy to verify that: ", + "bbox": [ + 174, + 487, + 823, + 515 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/f8c347b195c8c08fb3d2aa3ef252e2e9c2891841e85998a89e67c1105cece808.jpg", + "text": "$$\n\\mathbb { E } _ { x \\sim \\mu } T ( \\mu ) \\nabla _ { x } f ( x ) = 0 .\n$$", + "text_format": "latex", + "bbox": [ + 416, + 521, + 581, + 539 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Recall that this operator arises from the overdamped Langevin diffusion, defined by the stochastic differential equation: ", + "bbox": [ + 174, + 551, + 825, + 579 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/9a775c228f7a2803176a2f73ae2d6c0b7dd4ab179b80e48268df058f76dd8724.jpg", + "text": "$$\nd x _ { t } = \\frac { 1 } { 2 } \\nabla _ { x } \\log \\mu ( x _ { t } ) + d W _ { t }\n$$", + "text_format": "latex", + "bbox": [ + 400, + 578, + 596, + 608 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "where $( W _ { t } ) _ { t \\geq 0 }$ is a Wiener process. This is related to plug and play networks for generating samples if the distribution is known, using the stochastic differential equation. ", + "bbox": [ + 174, + 611, + 826, + 640 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "From Theorem 3, it is easy to see that the PDE the Sobolev Critic $( f ^ { * } , \\lambda ^ { * } = { \\cal S } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) )$ can be written in term of Stein Operator as follows: ", + "bbox": [ + 174, + 659, + 823, + 688 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/13a63ed56bfbc92d7850451825a15da185431897b980e264e1a4742e8525a7e6.jpg", + "text": "$$\nT ( \\mu ) [ \\nabla _ { x } f ^ { * } ] ( x ) = \\frac { 1 } { 2 \\lambda ^ { * } } \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\mu ( x ) }\n$$", + "text_format": "latex", + "bbox": [ + 374, + 694, + 624, + 728 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Taking absolute values and the expectation with respect to $\\mathbb { Q }$ : ", + "bbox": [ + 173, + 733, + 576, + 748 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/3fd5d739cc15b4036ab687140a42ca69ddf4b38c4231467557e8a98af40f2ed6.jpg", + "text": "$$\n\\left| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ T ( \\mu ) \\nabla _ { x } f ^ { * } ( x ) \\right] \\right| = { \\frac { 1 } { 2 S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } } \\left| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ { \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\mu ( x ) } } \\right] \\right|\n$$", + "text_format": "latex", + "bbox": [ + 290, + 753, + 709, + 790 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Recall that the definition of Stein Discrepancy : ", + "bbox": [ + 174, + 801, + 486, + 818 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/831616c30044b22fdf8bee49a8388a5f44daad6efb93275abce91af2a02ed63b.jpg", + "text": "$$\n{ \\mathbb S } ( \\mathbb Q , \\mu ) = \\operatorname* { s u p } _ { \\vec { g } \\in \\mathcal L _ { 2 } ( \\mathcal X , \\mu ) ^ { \\otimes d } } \\left| \\mathbb E _ { \\boldsymbol { x } \\sim \\mathbb Q } \\left[ T ( \\mu ) \\vec { g } ( \\boldsymbol { x } ) \\right] \\right|\n$$", + "text_format": "latex", + "bbox": [ + 356, + 823, + 642, + 852 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "It follows that Sobolev IPM critic satisfies: ", + "bbox": [ + 174, + 864, + 455, + 880 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/a190696d8767374228628efbf39585e8252f102eb0821ad165a16738f674c1e2.jpg", + "text": "$$\n| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ T ( \\mu ) \\nabla _ { x } f ^ { * } ( x ) \\right] | \\leq \\mathbb { S } ( \\mathbb { Q } , \\mu ) ,\n$$", + "text_format": "latex", + "bbox": [ + 382, + 886, + 614, + 904 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Hence we have the following inequality: ", + "bbox": [ + 174, + 909, + 441, + 924 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/9cc512735ea0762daf1b551fd65435bd573c1723f1adfe4a1105d23ea41cc7a5.jpg", + "text": "$$\n\\frac { 1 } { 2 S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } \\left| \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mathbb { Q } } \\left[ \\frac { \\mathbb { Q } ( \\boldsymbol { x } ) - \\mathbb { P } ( \\boldsymbol { x } ) } { \\mu ( \\boldsymbol { x } ) } \\right] \\right| \\leq \\mathbb { S } ( \\mathbb { Q } , \\mu )\n$$", + "text_format": "latex", + "bbox": [ + 343, + 118, + 656, + 154 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "This is equivalent to: ", + "bbox": [ + 173, + 160, + 312, + 175 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/97c900eaf9b2de3c35f5d3e37769a081bce9215000b150e7a7c095b7fbee1211.jpg", + "text": "$$\n\\left| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ { \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\mu ( x ) } } \\right] \\right| \\leq 2 \\qquad { \\underset { \\Delta \\in { \\mathbb { Q } } , \\mu } { \\underbrace { \\mathbb { S } ( \\mathbb { Q } , \\mu ) } } } \\qquad { \\underset { \\Delta \\in { \\mathbb { P } } } { \\underbrace { { \\mathcal { S } } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } } }\n$$", + "text_format": "latex", + "bbox": [ + 251, + 184, + 735, + 220 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Similarly we obtain: ", + "bbox": [ + 173, + 239, + 308, + 255 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/42bbfe8f5bb6cfe693c611d66a286804d28581cfbe8ba2c7a8ae2257f5bfe235.jpg", + "text": "$$\n\\left| \\mathbb { E } _ { x \\sim \\mathbb { P } } \\left[ { \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\mu ( x ) } } \\right] \\right| \\leq 2 \\qquad \\underbrace { { \\mathbb { S } } ( \\mathbb { P } , \\mu ) } _ { \\in { \\mathcal { S } } } \\qquad \\underbrace { { \\mathcal { S } } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } _ { \\in { \\mathcal { S } } }\n$$", + "text_format": "latex", + "bbox": [ + 277, + 265, + 714, + 300 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "For instance consider $\\mu = \\mathbb { P }$ , we have therefore: ", + "bbox": [ + 173, + 328, + 490, + 343 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/51ead85e6389951586621f04237342e0df5fc9c07e81281e20e78e0ac065053c.jpg", + "text": "$$\n{ \\frac { 1 } { 2 } } \\left| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ { \\frac { \\mathbb { Q } ( x ) } { \\mathbb { P } ( x ) } } \\right] - 1 \\right| \\leq \\mathbb { S } ( \\mathbb { Q } , \\mathbb { P } ) S _ { \\mathbb { P } } ( \\mathbb { P } , \\mathbb { Q } ) .\n$$", + "text_format": "latex", + "bbox": [ + 352, + 352, + 645, + 387 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Note that the left hand side of the inequality is not the total variation distance. ", + "bbox": [ + 173, + 404, + 687, + 419 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Hence for a sequence $\\mathbb { Q } _ { n }$ if the Sobolev distance goes $S _ { \\mathbb { P } } ( \\mathbb { P } , \\mathbb { Q } _ { n } ) 0$ , the ratio $\\begin{array} { r } { r _ { n } ( x ) = \\frac { \\mathbb Q _ { n } ( x ) } { \\mathbb P ( x ) } } \\end{array}$ converges in expectation (w.r.t to $\\mathbb { Q }$ ) to 1. The speed of the convergence is given by the Stein Discrepancy $\\mathbb { S } ( \\mathbb { Q } _ { n } , \\mathbb { P } )$ . ", + "bbox": [ + 174, + 426, + 825, + 474 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "One important observation here is that convergence of PDF ratio is weaker than the conditional CDF as given by the Sobolev distance and of the good fitness of score function as given by Stein discrepancy. ", + "bbox": [ + 174, + 479, + 825, + 522 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "C TEXT EXPERIMENTS: ADDITIONAL PLOTS ", + "text_level": 1, + "bbox": [ + 173, + 566, + 560, + 583 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Comparison of annealed versus non annealed smoothing of $\\mathbb { P } _ { r }$ in Sobolev GAN. ", + "text_level": 1, + "bbox": [ + 173, + 601, + 727, + 616 + ], + "page_idx": 24 + }, + { + "type": "image", + "img_path": "images/9bc07e8ad8977d3d3e0990973f1d012506b6beae1acd22e818815329398759c9.jpg", + "image_caption": [ + "Figure 6: Comparison of annealed versus non annealed smoothing of $\\mathbb { P } _ { r }$ in Sobolev GAN. We see that annealed smoothing outperforms the non annealed smoothing experiments. " + ], + "image_footnote": [], + "bbox": [ + 367, + 645, + 614, + 767 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Sobolev GAN versus WGAN-GP with RNN. We fix the generator architecture to Resnets. The experiments of using RNN (GRU) as the critic architecture for WGAN-GP and Sobolev is shown in Figure 7 where we used $\\mu = \\mu _ { G P }$ for both cases. We only apply gradient clipping to stabilize the performance without other tricks. We can observe that using RNN degrades the performance. We think that this is due to an optimization issue and a difficulty in training RNN under the GAN objective without any pre-training or conditioning. ", + "bbox": [ + 173, + 839, + 825, + 924 + ], + "page_idx": 24 + }, + { + "type": "image", + "img_path": "images/b33296dfeec538aff71afa249d3c78cee91fb6d6002cb89df8dd5f0cad50bf6f.jpg", + "image_caption": [ + "Figure 7: Result of WGAN-GP and Sobolev with RNNs. " + ], + "image_footnote": [], + "bbox": [ + 240, + 114, + 745, + 258 + ], + "page_idx": 25 + }, + { + "type": "image", + "img_path": "images/22b283fdcd36a259ef1de1da1ae8a6d80587aa0ad141b9ca955c8082e7f17492.jpg", + "image_caption": [ + "Figure 8: Text samples from various GANs considered in this paper. " + ], + "image_footnote": [], + "bbox": [ + 367, + 314, + 614, + 542 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "D SSL: HYPERPARAMETERS AND ARCHITECTURE ", + "text_level": 1, + "bbox": [ + 173, + 602, + 602, + 617 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "For our SSL experiments on CIFAR-10, we use Adam with learning rate $\\eta = 2 \\mathrm { { e } - 4 }$ , $\\beta _ { 1 } ~ = ~ 0 . 5$ and $\\beta _ { 2 } = 0 . 9 9 9$ , both for critic $f$ (without BN) and Generator (with BN). We selected $\\lambda _ { C E } = 1 . 5$ from [0.8, 1.5, 3.0, 5.0]. We train all models for 350 epochs. We used some L2 weight decay: 1e−6 on $\\omega , S$ (i.e. all layers except last) and 1e 3 weight decay on the last layer $v$ . For formulation 1 (Fisher only) we have $\\rho _ { F } = 1 \\mathrm { e } { - 7 }$ , modified critic learning rate $\\eta _ { D } = 1 \\mathrm { e } { - 4 }$ , critic iters $n _ { c } = 2$ . For formulation 2 (Sobolev $^ +$ Fisher) we have $\\rho _ { F } = 5 \\mathrm { e } - 8$ , $\\rho _ { S } = 2 \\mathrm { e } - 8$ , critic iters $n _ { c } = 1$ . For the WGAN-GP (Gulrajani et al., 2017) baseline SSL experiment we followed the original paper with critic iters $n _ { c } = 5$ , $\\eta _ { G } = \\eta _ { D } = 1 \\mathrm { e } { - 4 }$ , Adam $\\beta _ { 2 } { = } 0 . 9$ and GP weight $\\lambda _ { G P } = 1 0 . 0$ . Architectures are as below. We determined $\\lambda _ { C E } = 0 . 3$ to be optimal from $[ 0 . 0 3 , 0 . 1 , 0 . 3 , 1 . 0 , 3 . 0 ]$ . As mentioned in Section 6.2, the $\\mathrm { K } { + } 1$ critic formulation is not able to fit the training set with the GP constraint, so we fall back to the plain critic formulation where the critic $\\langle v , \\Phi _ { \\omega } ( \\bar { x } ) \\rangle$ does not interact with the classifier $\\langle S , \\Phi _ { \\omega } ( x ) \\rangle$ . ", + "bbox": [ + 173, + 633, + 825, + 801 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Architecture: ", + "text_level": 1, + "bbox": [ + 174, + 808, + 261, + 821 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "(6): ConvTranspose2d(128, 64, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False) (7): BatchNorm2d(64, eps=1e-05, momentum=0.1, affine=True) (8): ReLU (inplace) (9): Conv2d(64, 64, kernel_siz $\\div =$ (3, 3), stride=(1, 1), padding=(1, 1), bias=False) (10): BatchNorm2d(64, eps=1e-05, momentum=0.1, affine=True) (11): ReLU (inplace) (12): Conv2d(64, 64, kernel_size $: =$ (3, 3), strid $\\div =$ (1, 1), padding $=$ (1, 1), bias=False) (13): BatchNorm2d(64, eps=1e-05, momentum=0.1, affine=True) (14): ReLU (inplace) (15): ConvTranspose2d(64, 3, kernel_size $: =$ (4, 4), strid $: =$ (2, 2), padding $^ { \\ast = }$ (1, 1), bias=False) (16): Tanh () ) ) D ( (main): Sequential ( (0): Dropout $\\mathrm { ~ \\bf ~ p ~ } = \\mathrm { ~ \\bf ~ 0 ~ } . 2 \\mathrm { ~ \\bf ~ }$ ) (1): Conv2d(3, 96, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1)) (2): LeakyReLU (0.2, inplace) (3): Conv2d(96, 96, kernel_siz $\\div =$ (3, 3), stride $\\div =$ (1, 1), padding=(1, 1), bias=False) (5): LeakyReLU (0.2, inplace) (6): Conv2d(96, 96, kernel_size=(3, 3), stride=(2, 2), padding=(1, 1), bias=False) (8): LeakyReLU (0.2, inplace) (9): Dropout $( \\mathrm { p } ~ = ~ 0 . 5 )$ (10): Conv2d(96, 192, kernel_size $=$ (3, 3), stride $=$ (1, 1), padding $=$ (1, 1), bias=False) (12): LeakyReLU (0.2, inplace) (13): Conv2d(192, 192, kernel_size $=$ (3, 3), stride $: =$ (1, 1), padding $=$ (1, 1), bias $\\scriptstyle = \\mathbf { E }$ alse) (15): LeakyReLU (0.2, inplace) (16): Conv2d(192, 192, kernel_size $: =$ (3, 3), stride $: =$ (2, 2), padding $=$ (1, 1), bias=False) (18): LeakyReLU (0.2, inplace) (19): Dropout ( $\\mathrm { ~ \\cdot ~ p ~ } = \\mathrm { ~ 0 ~ . ~ 5 ~ }$ (20): Conv2d(192, 384, kernel_size $: =$ (3, 3), stride $=$ (1, 1), bias=False) (22): LeakyReLU (0.2, inplace) (23): Dropout (p = 0.5) (24): Conv2d(384, 384, kernel_size $=$ (3, 3), stride $=$ (1, 1), bias=False) (26): LeakyReLU (0.2, inplace) (27): Dropout $( \\mathrm { p } ~ = ~ 0 . 5 )$ (28): Conv2d(384, 384, kernel_size=(1, 1), stride=(1, 1), bias=False) (30): LeakyReLU (0.2, inplace) (31): Dropout $( \\mathrm { p } ~ = ~ 0 . 5 )$ ) ) (V): Linear (6144 -> 1) (S): Linear (6144 -> 10) ) ", + "bbox": [ + 169, + 108, + 728, + 491 + ], + "page_idx": 26 + } +] \ No newline at end of file diff --git a/parse/train/SJA7xfb0b/SJA7xfb0b_middle.json b/parse/train/SJA7xfb0b/SJA7xfb0b_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..f338d2feb2ff77e745eabbbf8b863edc9d1dd84b --- /dev/null +++ b/parse/train/SJA7xfb0b/SJA7xfb0b_middle.json @@ -0,0 +1,74352 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 222, + 96 + ], + "lines": [ + { + "bbox": [ + 104, + 78, + 226, + 98 + ], + "spans": [ + { + "bbox": [ + 104, + 78, + 226, + 98 + ], + "score": 1.0, + "content": "SOBOLEV GAN", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 113, + 114, + 448, + 127 + ], + "lines": [ + { + "bbox": [ + 111, + 112, + 449, + 130 + ], + "spans": [ + { + "bbox": [ + 111, + 112, + 244, + 130 + ], + "score": 1.0, + "content": "Youssef Mroueh†, Chun-Liang", + "type": "text" + }, + { + "bbox": [ + 245, + 115, + 266, + 126 + ], + "score": 0.72, + "content": "\\mathbf { L i } ^ { \\circ , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 112, + 449, + 130 + ], + "score": 1.0, + "content": ", Tom Sercu†,?, Anant Raj♦,? & Yu Cheng†", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 113, + 127, + 403, + 192 + ], + "lines": [ + { + "bbox": [ + 112, + 126, + 193, + 138 + ], + "spans": [ + { + "bbox": [ + 112, + 127, + 119, + 138 + ], + "score": 0.4, + "content": "\\dagger", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 126, + 193, + 137 + ], + "score": 1.0, + "content": "IBM Research AI", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 136, + 233, + 149 + ], + "spans": [ + { + "bbox": [ + 112, + 139, + 119, + 147 + ], + "score": 0.28, + "content": "\\circ", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 136, + 233, + 149 + ], + "score": 1.0, + "content": "Carnegie Mellon University", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 113, + 147, + 300, + 161 + ], + "spans": [ + { + "bbox": [ + 113, + 149, + 120, + 159 + ], + "score": 0.76, + "content": "\\diamondsuit", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 147, + 300, + 161 + ], + "score": 1.0, + "content": "Max Planck Institute for Intelligent Systems", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 112, + 159, + 232, + 171 + ], + "spans": [ + { + "bbox": [ + 112, + 161, + 119, + 169 + ], + "score": 0.76, + "content": "\\star", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 159, + 232, + 171 + ], + "score": 1.0, + "content": "denotes Equal Contribution", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 169, + 403, + 182 + ], + "spans": [ + { + "bbox": [ + 112, + 169, + 403, + 182 + ], + "score": 1.0, + "content": "mroueh,chengyu @us.ibm.com, chunlial@cs.cmu.edu,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 111, + 181, + 384, + 194 + ], + "spans": [ + { + "bbox": [ + 111, + 181, + 384, + 194 + ], + "score": 1.0, + "content": "tom.sercu1@ibm.com,anant.raj@tuebingen.mpg.de", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4.5 + }, + { + "type": "title", + "bbox": [ + 278, + 221, + 333, + 233 + ], + "lines": [ + { + "bbox": [ + 276, + 220, + 336, + 235 + ], + "spans": [ + { + "bbox": [ + 276, + 220, + 336, + 235 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 143, + 248, + 468, + 401 + ], + "lines": [ + { + "bbox": [ + 142, + 247, + 469, + 260 + ], + "spans": [ + { + "bbox": [ + 142, + 247, + 469, + 260 + ], + "score": 1.0, + "content": "We propose a new Integral Probability Metric (IPM) between distributions: the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 258, + 469, + 271 + ], + "spans": [ + { + "bbox": [ + 141, + 258, + 469, + 271 + ], + "score": 1.0, + "content": "Sobolev IPM. The Sobolev IPM compares the mean discrepancy of two distribu-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 268, + 470, + 283 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 470, + 283 + ], + "score": 1.0, + "content": "tions for functions (critic) restricted to a Sobolev ball defined with respect to a", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 280, + 469, + 293 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 218, + 293 + ], + "score": 1.0, + "content": "dominant measure", + "type": "text" + }, + { + "bbox": [ + 219, + 282, + 226, + 292 + ], + "score": 0.77, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 280, + 469, + 293 + ], + "score": 1.0, + "content": ". We show that the Sobolev IPM compares two distributions", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 291, + 469, + 304 + ], + "spans": [ + { + "bbox": [ + 141, + 291, + 469, + 304 + ], + "score": 1.0, + "content": "in high dimensions based on weighted conditional Cumulative Distribution Func-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 303, + 469, + 314 + ], + "spans": [ + { + "bbox": [ + 142, + 303, + 469, + 314 + ], + "score": 1.0, + "content": "tions (CDF) of each coordinate on a leave one out basis. The Dominant measure", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 313, + 470, + 325 + ], + "spans": [ + { + "bbox": [ + 142, + 315, + 150, + 325 + ], + "score": 0.73, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 313, + 470, + 325 + ], + "score": 1.0, + "content": "plays a crucial role as it defines the support on which conditional CDFs are", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 325, + 469, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 325, + 469, + 336 + ], + "score": 1.0, + "content": "compared. Sobolev IPM can be seen as an extension of the one dimensional Von-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 336, + 469, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 336, + 469, + 347 + ], + "score": 1.0, + "content": "Mises Cramer statistics to high dimensional distributions. We show how Sobolev ´", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 346, + 469, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 346, + 469, + 358 + ], + "score": 1.0, + "content": "IPM can be used to train Generative Adversarial Networks (GANs). We then ex-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 358, + 469, + 370 + ], + "spans": [ + { + "bbox": [ + 142, + 358, + 469, + 370 + ], + "score": 1.0, + "content": "ploit the intrinsic conditioning implied by Sobolev IPM in text generation. Finally", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 369, + 469, + 380 + ], + "spans": [ + { + "bbox": [ + 142, + 369, + 469, + 380 + ], + "score": 1.0, + "content": "we show that a variant of Sobolev GAN achieves competitive results in semi-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 379, + 469, + 391 + ], + "spans": [ + { + "bbox": [ + 141, + 379, + 469, + 391 + ], + "score": 1.0, + "content": "supervised learning on CIFAR-10, thanks to the smoothness enforced on the critic", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 390, + 382, + 403 + ], + "spans": [ + { + "bbox": [ + 141, + 390, + 382, + 403 + ], + "score": 1.0, + "content": "by Sobolev GAN which relates to Laplacian regularization.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 15.5 + }, + { + "type": "title", + "bbox": [ + 108, + 426, + 206, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 425, + 208, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 208, + 442 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 452, + 505, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 505, + 463 + ], + "score": 1.0, + "content": "In order to learn Generative Adversarial Networks (Goodfellow et al., 2014), it is now well estab-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 463, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 505, + 474 + ], + "score": 1.0, + "content": "lished that the generator should mimic the distribution of real data, in the sense of a certain dis-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 486 + ], + "score": 1.0, + "content": "crepancy measure. Discrepancies between distributions that measure the goodness of the fit of the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "score": 1.0, + "content": "neural generator to the real data distribution has been the subject of many recent studies (Arjovsky", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "& Bottou, 2017; Nowozin et al., 2016; Kaae Sønderby et al., 2017; Mao et al., 2017; Arjovsky et al.,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 506, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 506, + 518 + ], + "score": 1.0, + "content": "2017; Gulrajani et al., 2017; Mroueh et al., 2017; Mroueh & Sercu, 2017; Li et al., 2017), most of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 518, + 240, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 240, + 530 + ], + "score": 1.0, + "content": "which focus on training stability.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 505, + 699 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "In terms of data modalities, most success was booked in plausible natural image generation after the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 546, + 504, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 504, + 557 + ], + "score": 1.0, + "content": "introduction of Deep Convolutional Generative Adversarial Networks (DCGAN) (Radford et al.,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 556, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 505, + 569 + ], + "score": 1.0, + "content": "2015). This success is not only due to advances in training generative adversarial networks in terms", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "score": 1.0, + "content": "of loss functions (Arjovsky et al., 2017) and stable algorithms, but also to the representation power", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "of convolutional neural networks in modeling images and in finding sufficient statistics that capture", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 590, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 602 + ], + "score": 1.0, + "content": "the continuous density function of natural images. When moving to neural generators of discrete", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "sequences generative adversarial networks theory and practice are still not very well understood.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "Maximum likelihood pre-training or augmentation, in conjunction with the use of reinforcement", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "learning techniques were proposed in many recent works for training GAN for discrete sequences", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "score": 1.0, + "content": "generation (Yu et al., 2016; Che et al., 2017; Hjelm et al., 2017; Rajeswar et al., 2017). Other", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "methods included using the Gumbel Softmax trick (Kusner & Hernandez-Lobato ´ , 2016) and the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 656, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 505, + 667 + ], + "score": 1.0, + "content": "use of auto-encoders to generate adversarially discrete sequences from a continuous space (Zhao", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 666, + 504, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 504, + 678 + ], + "score": 1.0, + "content": "et al., 2017). End to end training of GANs for discrete sequence generation is still an open prob-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "lem (Press et al., 2017). Empirical successes of end to end training have been reported within the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "framework of WGAN-GP (Gulrajani et al., 2017), using a proxy for the Wasserstein distance via a", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 38 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 109, + 711, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 504, + 724 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 504, + 724 + ], + "score": 1.0, + "content": "1 Code for semi-supervised learning experiments is available on https://github.com/tomsercu/", + "type": "text" + } + ] + }, + { + "bbox": [ + 107, + 721, + 185, + 732 + ], + "spans": [ + { + "bbox": [ + 107, + 721, + 185, + 732 + ], + "score": 1.0, + "content": "SobolevGAN-SSL", + "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 2018", + "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, + 222, + 96 + ], + "lines": [ + { + "bbox": [ + 104, + 78, + 226, + 98 + ], + "spans": [ + { + "bbox": [ + 104, + 78, + 226, + 98 + ], + "score": 1.0, + "content": "SOBOLEV GAN", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 113, + 114, + 448, + 127 + ], + "lines": [ + { + "bbox": [ + 111, + 112, + 449, + 130 + ], + "spans": [ + { + "bbox": [ + 111, + 112, + 244, + 130 + ], + "score": 1.0, + "content": "Youssef Mroueh†, Chun-Liang", + "type": "text" + }, + { + "bbox": [ + 245, + 115, + 266, + 126 + ], + "score": 0.72, + "content": "\\mathbf { L i } ^ { \\circ , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 112, + 449, + 130 + ], + "score": 1.0, + "content": ", Tom Sercu†,?, Anant Raj♦,? & Yu Cheng†", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 111, + 112, + 449, + 130 + ] + }, + { + "type": "list", + "bbox": [ + 113, + 127, + 403, + 192 + ], + "lines": [ + { + "bbox": [ + 112, + 126, + 193, + 138 + ], + "spans": [ + { + "bbox": [ + 112, + 127, + 119, + 138 + ], + "score": 0.4, + "content": "\\dagger", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 126, + 193, + 137 + ], + "score": 1.0, + "content": "IBM Research AI", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 136, + 233, + 149 + ], + "spans": [ + { + "bbox": [ + 112, + 139, + 119, + 147 + ], + "score": 0.28, + "content": "\\circ", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 136, + 233, + 149 + ], + "score": 1.0, + "content": "Carnegie Mellon University", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 147, + 300, + 161 + ], + "spans": [ + { + "bbox": [ + 113, + 149, + 120, + 159 + ], + "score": 0.76, + "content": "\\diamondsuit", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 147, + 300, + 161 + ], + "score": 1.0, + "content": "Max Planck Institute for Intelligent Systems", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 159, + 232, + 171 + ], + "spans": [ + { + "bbox": [ + 112, + 161, + 119, + 169 + ], + "score": 0.76, + "content": "\\star", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 159, + 232, + 171 + ], + "score": 1.0, + "content": "denotes Equal Contribution", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 169, + 403, + 182 + ], + "spans": [ + { + "bbox": [ + 112, + 169, + 403, + 182 + ], + "score": 1.0, + "content": "mroueh,chengyu @us.ibm.com, chunlial@cs.cmu.edu,", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 181, + 384, + 194 + ], + "spans": [ + { + "bbox": [ + 111, + 181, + 384, + 194 + ], + "score": 1.0, + "content": "tom.sercu1@ibm.com,anant.raj@tuebingen.mpg.de", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + } + ], + "index": 4.5, + "bbox_fs": [ + 111, + 126, + 403, + 194 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 221, + 333, + 233 + ], + "lines": [ + { + "bbox": [ + 276, + 220, + 336, + 235 + ], + "spans": [ + { + "bbox": [ + 276, + 220, + 336, + 235 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 143, + 248, + 468, + 401 + ], + "lines": [ + { + "bbox": [ + 142, + 247, + 469, + 260 + ], + "spans": [ + { + "bbox": [ + 142, + 247, + 469, + 260 + ], + "score": 1.0, + "content": "We propose a new Integral Probability Metric (IPM) between distributions: the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 258, + 469, + 271 + ], + "spans": [ + { + "bbox": [ + 141, + 258, + 469, + 271 + ], + "score": 1.0, + "content": "Sobolev IPM. The Sobolev IPM compares the mean discrepancy of two distribu-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 268, + 470, + 283 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 470, + 283 + ], + "score": 1.0, + "content": "tions for functions (critic) restricted to a Sobolev ball defined with respect to a", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 280, + 469, + 293 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 218, + 293 + ], + "score": 1.0, + "content": "dominant measure", + "type": "text" + }, + { + "bbox": [ + 219, + 282, + 226, + 292 + ], + "score": 0.77, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 280, + 469, + 293 + ], + "score": 1.0, + "content": ". We show that the Sobolev IPM compares two distributions", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 291, + 469, + 304 + ], + "spans": [ + { + "bbox": [ + 141, + 291, + 469, + 304 + ], + "score": 1.0, + "content": "in high dimensions based on weighted conditional Cumulative Distribution Func-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 303, + 469, + 314 + ], + "spans": [ + { + "bbox": [ + 142, + 303, + 469, + 314 + ], + "score": 1.0, + "content": "tions (CDF) of each coordinate on a leave one out basis. The Dominant measure", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 313, + 470, + 325 + ], + "spans": [ + { + "bbox": [ + 142, + 315, + 150, + 325 + ], + "score": 0.73, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 313, + 470, + 325 + ], + "score": 1.0, + "content": "plays a crucial role as it defines the support on which conditional CDFs are", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 325, + 469, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 325, + 469, + 336 + ], + "score": 1.0, + "content": "compared. Sobolev IPM can be seen as an extension of the one dimensional Von-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 336, + 469, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 336, + 469, + 347 + ], + "score": 1.0, + "content": "Mises Cramer statistics to high dimensional distributions. We show how Sobolev ´", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 346, + 469, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 346, + 469, + 358 + ], + "score": 1.0, + "content": "IPM can be used to train Generative Adversarial Networks (GANs). We then ex-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 358, + 469, + 370 + ], + "spans": [ + { + "bbox": [ + 142, + 358, + 469, + 370 + ], + "score": 1.0, + "content": "ploit the intrinsic conditioning implied by Sobolev IPM in text generation. Finally", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 369, + 469, + 380 + ], + "spans": [ + { + "bbox": [ + 142, + 369, + 469, + 380 + ], + "score": 1.0, + "content": "we show that a variant of Sobolev GAN achieves competitive results in semi-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 379, + 469, + 391 + ], + "spans": [ + { + "bbox": [ + 141, + 379, + 469, + 391 + ], + "score": 1.0, + "content": "supervised learning on CIFAR-10, thanks to the smoothness enforced on the critic", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 390, + 382, + 403 + ], + "spans": [ + { + "bbox": [ + 141, + 390, + 382, + 403 + ], + "score": 1.0, + "content": "by Sobolev GAN which relates to Laplacian regularization.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 15.5, + "bbox_fs": [ + 141, + 247, + 470, + 403 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 426, + 206, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 425, + 208, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 208, + 442 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 452, + 505, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 505, + 463 + ], + "score": 1.0, + "content": "In order to learn Generative Adversarial Networks (Goodfellow et al., 2014), it is now well estab-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 463, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 505, + 474 + ], + "score": 1.0, + "content": "lished that the generator should mimic the distribution of real data, in the sense of a certain dis-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 486 + ], + "score": 1.0, + "content": "crepancy measure. Discrepancies between distributions that measure the goodness of the fit of the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "score": 1.0, + "content": "neural generator to the real data distribution has been the subject of many recent studies (Arjovsky", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "& Bottou, 2017; Nowozin et al., 2016; Kaae Sønderby et al., 2017; Mao et al., 2017; Arjovsky et al.,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 506, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 506, + 518 + ], + "score": 1.0, + "content": "2017; Gulrajani et al., 2017; Mroueh et al., 2017; Mroueh & Sercu, 2017; Li et al., 2017), most of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 518, + 240, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 240, + 530 + ], + "score": 1.0, + "content": "which focus on training stability.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 452, + 506, + 530 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 505, + 699 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "In terms of data modalities, most success was booked in plausible natural image generation after the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 546, + 504, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 504, + 557 + ], + "score": 1.0, + "content": "introduction of Deep Convolutional Generative Adversarial Networks (DCGAN) (Radford et al.,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 556, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 505, + 569 + ], + "score": 1.0, + "content": "2015). This success is not only due to advances in training generative adversarial networks in terms", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "score": 1.0, + "content": "of loss functions (Arjovsky et al., 2017) and stable algorithms, but also to the representation power", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "of convolutional neural networks in modeling images and in finding sufficient statistics that capture", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 590, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 602 + ], + "score": 1.0, + "content": "the continuous density function of natural images. When moving to neural generators of discrete", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "sequences generative adversarial networks theory and practice are still not very well understood.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "Maximum likelihood pre-training or augmentation, in conjunction with the use of reinforcement", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "learning techniques were proposed in many recent works for training GAN for discrete sequences", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "score": 1.0, + "content": "generation (Yu et al., 2016; Che et al., 2017; Hjelm et al., 2017; Rajeswar et al., 2017). Other", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "methods included using the Gumbel Softmax trick (Kusner & Hernandez-Lobato ´ , 2016) and the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 656, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 505, + 667 + ], + "score": 1.0, + "content": "use of auto-encoders to generate adversarially discrete sequences from a continuous space (Zhao", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 666, + 504, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 504, + 678 + ], + "score": 1.0, + "content": "et al., 2017). End to end training of GANs for discrete sequence generation is still an open prob-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "lem (Press et al., 2017). Empirical successes of end to end training have been reported within the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "framework of WGAN-GP (Gulrajani et al., 2017), using a proxy for the Wasserstein distance via a", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 104, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "pointwise gradient penalty on the critic. Inspired by this success, we propose in this paper a new In-", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "tegral Probability Metric (IPM) between distributions that we coin Sobolev IPM. Intuitively an IPM", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 440, + 117 + ], + "score": 1.0, + "content": "(Muller ¨ , 1997) between two probability distributions looks for a witness function", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 441, + 105, + 448, + 116 + ], + "score": 0.82, + "content": "f", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 448, + 104, + 506, + 117 + ], + "score": 1.0, + "content": ", called critic,", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 436, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 436, + 127 + ], + "score": 1.0, + "content": "that maximally discriminates between samples coming from the two distributions:", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 534, + 506, + 701 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 104, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 104, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "pointwise gradient penalty on the critic. Inspired by this success, we propose in this paper a new In-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "tegral Probability Metric (IPM) between distributions that we coin Sobolev IPM. Intuitively an IPM", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 440, + 117 + ], + "score": 1.0, + "content": "(Muller ¨ , 1997) between two probability distributions looks for a witness function", + "type": "text" + }, + { + "bbox": [ + 441, + 105, + 448, + 116 + ], + "score": 0.82, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 104, + 506, + 117 + ], + "score": 1.0, + "content": ", called critic,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 436, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 436, + 127 + ], + "score": 1.0, + "content": "that maximally discriminates between samples coming from the two distributions:", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 132, + 366, + 154 + ], + "lines": [ + { + "bbox": [ + 243, + 132, + 366, + 154 + ], + "spans": [ + { + "bbox": [ + 243, + 132, + 366, + 154 + ], + "score": 0.91, + "content": "\\operatorname* { s u p } _ { f \\in \\mathcal { F } } \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) .", + "type": "interline_equation", + "image_path": "a98ebe639cd3d8ea740d650c0644ca19dff3a339cd72867878bbf88dd81cb39e.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 243, + 132, + 366, + 154 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 160, + 505, + 216 + ], + "lines": [ + { + "bbox": [ + 106, + 160, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 211, + 172 + ], + "score": 1.0, + "content": "Traditionally, the function", + "type": "text" + }, + { + "bbox": [ + 212, + 161, + 218, + 172 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 160, + 341, + 172 + ], + "score": 1.0, + "content": "is defined over a function class", + "type": "text" + }, + { + "bbox": [ + 341, + 161, + 352, + 171 + ], + "score": 0.86, + "content": "\\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 160, + 505, + 172 + ], + "score": 1.0, + "content": "that is independent to the distributions", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 172, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 183 + ], + "score": 1.0, + "content": "at hand (Sriperumbudur et al., 2012). The Wasserstein-1 distance corresponds for instance to an IPM", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "where the witness functions are defined over the space of Lipschitz functions; The MMD distance", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 192, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 207 + ], + "score": 1.0, + "content": "(Gretton et al., 2012) corresponds to witness functions defined over a ball in a Reproducing Kernel", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 204, + 201, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 201, + 217 + ], + "score": 1.0, + "content": "Hilbert Space (RKHS).", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 221, + 505, + 266 + ], + "lines": [ + { + "bbox": [ + 106, + 221, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 233 + ], + "score": 1.0, + "content": "We will revisit in this paper Fisher IPM defined in (Mroueh & Sercu, 2017), which extends the IPM", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "definition to function classes defined with norms that depend on the distributions. Fisher IPM can", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 494, + 257 + ], + "score": 1.0, + "content": "be seen as restricting the critic to a Lebsegue ball defined with respect to a dominant measure", + "type": "text" + }, + { + "bbox": [ + 494, + 246, + 501, + 255 + ], + "score": 0.75, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 243, + 505, + 257 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 254, + 275, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 275, + 266 + ], + "score": 1.0, + "content": "The Lebsegue norm is defined as follows:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 268, + 272, + 342, + 298 + ], + "lines": [ + { + "bbox": [ + 268, + 272, + 342, + 298 + ], + "spans": [ + { + "bbox": [ + 268, + 272, + 342, + 298 + ], + "score": 0.94, + "content": "\\int _ { \\mathcal { X } } f ^ { 2 } ( x ) \\mu ( x ) d x .", + "type": "interline_equation", + "image_path": "966178bc96ad159d2cef7de229090b6fdbbd04e35a7b168d54122f65f3b2fe91.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 268, + 272, + 342, + 298 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 303, + 281, + 315 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 279, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 133, + 317 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 306, + 141, + 315 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 302, + 244, + 317 + ], + "score": 1.0, + "content": "is a dominant measure of", + "type": "text" + }, + { + "bbox": [ + 245, + 304, + 252, + 313 + ], + "score": 0.82, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 302, + 270, + 317 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 270, + 304, + 279, + 315 + ], + "score": 0.86, + "content": "\\mathbb { Q }", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 320, + 442, + 332 + ], + "lines": [ + { + "bbox": [ + 105, + 319, + 443, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 443, + 333 + ], + "score": 1.0, + "content": "In this paper we extend the IPM framework to critics bounded in the Sobolev norm:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 255, + 337, + 354, + 364 + ], + "lines": [ + { + "bbox": [ + 255, + 337, + 354, + 364 + ], + "spans": [ + { + "bbox": [ + 255, + 337, + 354, + 364 + ], + "score": 0.93, + "content": "\\int _ { \\mathcal { X } } \\| \\nabla _ { \\boldsymbol { x } } f ( \\boldsymbol { x } ) \\| _ { 2 } ^ { 2 } \\mu ( \\boldsymbol { x } ) d x ,", + "type": "interline_equation", + "image_path": "9acae480abe15bd92f2858f3db977054cb0898e2e6eca672ab7245aeab1e28a2.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 255, + 337, + 354, + 350.5 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 255, + 350.5, + 354, + 364.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 369, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 104, + 369, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 104, + 369, + 505, + 382 + ], + "score": 1.0, + "content": "In contrast to Fisher IPM, which compares joint probability density functions of all coordinates", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 381, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 392 + ], + "score": 1.0, + "content": "between two distributions, we will show that Sobolev IPM compares weighted (coordinate-wise)", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "conditional Cumulative Distribution Functions for all coordinates on a leave on out basis. Matching", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 402, + 432, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 432, + 416 + ], + "score": 1.0, + "content": "conditional dependencies between coordinates is crucial for sequence modeling.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 505, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "Our analysis and empirical verification show that the modeling of the conditional dependencies can", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "score": 1.0, + "content": "be built in to the metric used to learn GANs as in Sobolev IPM. For instance, this gives an advantage", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 441, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 104, + 441, + 505, + 454 + ], + "score": 1.0, + "content": "to Sobolev IPM in comparing sequences over Fisher IPM. Nevertheless, in sequence modeling when", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 452, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 506, + 464 + ], + "score": 1.0, + "content": "we parametrize the critic and the generator with a neural network, we find an interesting tradeoff", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 464, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 475 + ], + "score": 1.0, + "content": "between the metric used and the architectures used to parametrize the critic and the generator as", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 473, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 487 + ], + "score": 1.0, + "content": "well as the conditioning used in the generator. The burden of modeling the conditional long term", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 485, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 505, + 498 + ], + "score": 1.0, + "content": "dependencies can be handled by the IPM loss function as in Sobolev IPM (more accurately the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "choice of the data dependent function class of the critic) or by a simpler metric such as Fisher IPM", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 508, + 504, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 504, + 519 + ], + "score": 1.0, + "content": "together with a powerful architecture for the critic that models conditional long term dependencies", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "such as LSTM or GRUs in conjunction with a curriculum conditioning of the generator as done", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 528, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 104, + 528, + 505, + 542 + ], + "score": 1.0, + "content": "in (Press et al., 2017). Highlighting those interesting tradeoffs between metrics, data dependent", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 539, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 554 + ], + "score": 1.0, + "content": "functions classes for the critic (Fisher or Sobolev) and architectures is crucial to advance sequence", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 551, + 380, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 380, + 563 + ], + "score": 1.0, + "content": "modeling and more broadly structured data generation using GANs.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 568, + 505, + 634 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 505, + 579 + ], + "score": 1.0, + "content": "On the other hand, Sobolev norms have been widely used in manifold regularization in the so called", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 579, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 505, + 590 + ], + "score": 1.0, + "content": "Laplacian framework for semi-supervised learning (SSL) (Belkin et al., 2006). GANs have shown", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 590, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 600 + ], + "score": 1.0, + "content": "success in semi-supervised learning (Salimans et al., 2016; Dumoulin et al., 2017; Dai et al., 2017;", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "Kumar et al., 2017). Nevertheless, many normalizations and additional tricks were needed. We show", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "in this paper that a variant of Sobolev GAN achieves strong results in semi-supervised learning on", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 623, + 399, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 399, + 634 + ], + "score": 1.0, + "content": "CIFAR-10, without the need of any activation normalization in the critic.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 107, + 640, + 378, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 639, + 379, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 379, + 652 + ], + "score": 1.0, + "content": "The main contributions of this paper can be summarized as follows:", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 130, + 660, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 129, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 129, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "1. We overview in Section 2 different metrics between distribution used in the GAN literature.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 141, + 672, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 141, + 672, + 456, + 684 + ], + "score": 1.0, + "content": "We then generalize Fisher IPM in Section 3 with a general dominant measure", + "type": "text" + }, + { + "bbox": [ + 456, + 673, + 464, + 684 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 672, + 505, + 684 + ], + "score": 1.0, + "content": "and show", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 141, + 683, + 348, + 695 + ], + "spans": [ + { + "bbox": [ + 141, + 683, + 348, + 695 + ], + "score": 1.0, + "content": "how it compares distributions based on their PDFs.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 130, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 130, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "2. We introduce Sobolev IPM in Section 4 by restricting the critic of an IPM to a Sobolev ball", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 142, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 142, + 710, + 321, + 722 + ], + "score": 1.0, + "content": "defined with respect to a dominant measure", + "type": "text" + }, + { + "bbox": [ + 321, + 713, + 328, + 721 + ], + "score": 0.74, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 710, + 506, + 722 + ], + "score": 1.0, + "content": ". We then show that Sobolev IPM defines a", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 141, + 720, + 478, + 733 + ], + "spans": [ + { + "bbox": [ + 141, + 720, + 478, + 733 + ], + "score": 1.0, + "content": "discrepancy between weighted (coordinate-wise) conditional CDFs of distributions.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 127 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 104, + 82, + 506, + 127 + ], + "lines_deleted": true + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 132, + 366, + 154 + ], + "lines": [ + { + "bbox": [ + 243, + 132, + 366, + 154 + ], + "spans": [ + { + "bbox": [ + 243, + 132, + 366, + 154 + ], + "score": 0.91, + "content": "\\operatorname* { s u p } _ { f \\in \\mathcal { F } } \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) .", + "type": "interline_equation", + "image_path": "a98ebe639cd3d8ea740d650c0644ca19dff3a339cd72867878bbf88dd81cb39e.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 243, + 132, + 366, + 154 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 160, + 505, + 216 + ], + "lines": [ + { + "bbox": [ + 106, + 160, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 211, + 172 + ], + "score": 1.0, + "content": "Traditionally, the function", + "type": "text" + }, + { + "bbox": [ + 212, + 161, + 218, + 172 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 160, + 341, + 172 + ], + "score": 1.0, + "content": "is defined over a function class", + "type": "text" + }, + { + "bbox": [ + 341, + 161, + 352, + 171 + ], + "score": 0.86, + "content": "\\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 160, + 505, + 172 + ], + "score": 1.0, + "content": "that is independent to the distributions", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 172, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 183 + ], + "score": 1.0, + "content": "at hand (Sriperumbudur et al., 2012). The Wasserstein-1 distance corresponds for instance to an IPM", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "where the witness functions are defined over the space of Lipschitz functions; The MMD distance", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 192, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 207 + ], + "score": 1.0, + "content": "(Gretton et al., 2012) corresponds to witness functions defined over a ball in a Reproducing Kernel", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 204, + 201, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 201, + 217 + ], + "score": 1.0, + "content": "Hilbert Space (RKHS).", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 160, + 505, + 217 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 221, + 505, + 266 + ], + "lines": [ + { + "bbox": [ + 106, + 221, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 233 + ], + "score": 1.0, + "content": "We will revisit in this paper Fisher IPM defined in (Mroueh & Sercu, 2017), which extends the IPM", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "definition to function classes defined with norms that depend on the distributions. Fisher IPM can", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 494, + 257 + ], + "score": 1.0, + "content": "be seen as restricting the critic to a Lebsegue ball defined with respect to a dominant measure", + "type": "text" + }, + { + "bbox": [ + 494, + 246, + 501, + 255 + ], + "score": 0.75, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 243, + 505, + 257 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 254, + 275, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 275, + 266 + ], + "score": 1.0, + "content": "The Lebsegue norm is defined as follows:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 221, + 505, + 266 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 268, + 272, + 342, + 298 + ], + "lines": [ + { + "bbox": [ + 268, + 272, + 342, + 298 + ], + "spans": [ + { + "bbox": [ + 268, + 272, + 342, + 298 + ], + "score": 0.94, + "content": "\\int _ { \\mathcal { X } } f ^ { 2 } ( x ) \\mu ( x ) d x .", + "type": "interline_equation", + "image_path": "966178bc96ad159d2cef7de229090b6fdbbd04e35a7b168d54122f65f3b2fe91.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 268, + 272, + 342, + 298 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 303, + 281, + 315 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 279, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 133, + 317 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 306, + 141, + 315 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 302, + 244, + 317 + ], + "score": 1.0, + "content": "is a dominant measure of", + "type": "text" + }, + { + "bbox": [ + 245, + 304, + 252, + 313 + ], + "score": 0.82, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 302, + 270, + 317 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 270, + 304, + 279, + 315 + ], + "score": 0.86, + "content": "\\mathbb { Q }", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 302, + 279, + 317 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 320, + 442, + 332 + ], + "lines": [ + { + "bbox": [ + 105, + 319, + 443, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 443, + 333 + ], + "score": 1.0, + "content": "In this paper we extend the IPM framework to critics bounded in the Sobolev norm:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 319, + 443, + 333 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 255, + 337, + 354, + 364 + ], + "lines": [ + { + "bbox": [ + 255, + 337, + 354, + 364 + ], + "spans": [ + { + "bbox": [ + 255, + 337, + 354, + 364 + ], + "score": 0.93, + "content": "\\int _ { \\mathcal { X } } \\| \\nabla _ { \\boldsymbol { x } } f ( \\boldsymbol { x } ) \\| _ { 2 } ^ { 2 } \\mu ( \\boldsymbol { x } ) d x ,", + "type": "interline_equation", + "image_path": "9acae480abe15bd92f2858f3db977054cb0898e2e6eca672ab7245aeab1e28a2.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 255, + 337, + 354, + 350.5 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 255, + 350.5, + 354, + 364.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 369, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 104, + 369, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 104, + 369, + 505, + 382 + ], + "score": 1.0, + "content": "In contrast to Fisher IPM, which compares joint probability density functions of all coordinates", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 381, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 392 + ], + "score": 1.0, + "content": "between two distributions, we will show that Sobolev IPM compares weighted (coordinate-wise)", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "conditional Cumulative Distribution Functions for all coordinates on a leave on out basis. Matching", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 402, + 432, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 432, + 416 + ], + "score": 1.0, + "content": "conditional dependencies between coordinates is crucial for sequence modeling.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 104, + 369, + 505, + 416 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 505, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "Our analysis and empirical verification show that the modeling of the conditional dependencies can", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "score": 1.0, + "content": "be built in to the metric used to learn GANs as in Sobolev IPM. For instance, this gives an advantage", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 441, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 104, + 441, + 505, + 454 + ], + "score": 1.0, + "content": "to Sobolev IPM in comparing sequences over Fisher IPM. Nevertheless, in sequence modeling when", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 452, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 506, + 464 + ], + "score": 1.0, + "content": "we parametrize the critic and the generator with a neural network, we find an interesting tradeoff", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 464, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 475 + ], + "score": 1.0, + "content": "between the metric used and the architectures used to parametrize the critic and the generator as", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 473, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 487 + ], + "score": 1.0, + "content": "well as the conditioning used in the generator. The burden of modeling the conditional long term", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 485, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 505, + 498 + ], + "score": 1.0, + "content": "dependencies can be handled by the IPM loss function as in Sobolev IPM (more accurately the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "choice of the data dependent function class of the critic) or by a simpler metric such as Fisher IPM", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 508, + 504, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 504, + 519 + ], + "score": 1.0, + "content": "together with a powerful architecture for the critic that models conditional long term dependencies", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "such as LSTM or GRUs in conjunction with a curriculum conditioning of the generator as done", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 528, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 104, + 528, + 505, + 542 + ], + "score": 1.0, + "content": "in (Press et al., 2017). Highlighting those interesting tradeoffs between metrics, data dependent", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 539, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 554 + ], + "score": 1.0, + "content": "functions classes for the critic (Fisher or Sobolev) and architectures is crucial to advance sequence", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 551, + 380, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 380, + 563 + ], + "score": 1.0, + "content": "modeling and more broadly structured data generation using GANs.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 29, + "bbox_fs": [ + 104, + 419, + 506, + 563 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 568, + 505, + 634 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 505, + 579 + ], + "score": 1.0, + "content": "On the other hand, Sobolev norms have been widely used in manifold regularization in the so called", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 579, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 505, + 590 + ], + "score": 1.0, + "content": "Laplacian framework for semi-supervised learning (SSL) (Belkin et al., 2006). GANs have shown", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 590, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 600 + ], + "score": 1.0, + "content": "success in semi-supervised learning (Salimans et al., 2016; Dumoulin et al., 2017; Dai et al., 2017;", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "Kumar et al., 2017). Nevertheless, many normalizations and additional tricks were needed. We show", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "in this paper that a variant of Sobolev GAN achieves strong results in semi-supervised learning on", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 623, + 399, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 399, + 634 + ], + "score": 1.0, + "content": "CIFAR-10, without the need of any activation normalization in the critic.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 568, + 505, + 634 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 640, + 378, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 639, + 379, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 379, + 652 + ], + "score": 1.0, + "content": "The main contributions of this paper can be summarized as follows:", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 639, + 379, + 652 + ] + }, + { + "type": "text", + "bbox": [ + 130, + 660, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 129, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 129, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "1. We overview in Section 2 different metrics between distribution used in the GAN literature.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 141, + 672, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 141, + 672, + 456, + 684 + ], + "score": 1.0, + "content": "We then generalize Fisher IPM in Section 3 with a general dominant measure", + "type": "text" + }, + { + "bbox": [ + 456, + 673, + 464, + 684 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 672, + 505, + 684 + ], + "score": 1.0, + "content": "and show", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 141, + 683, + 348, + 695 + ], + "spans": [ + { + "bbox": [ + 141, + 683, + 348, + 695 + ], + "score": 1.0, + "content": "how it compares distributions based on their PDFs.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 130, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 130, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "2. We introduce Sobolev IPM in Section 4 by restricting the critic of an IPM to a Sobolev ball", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 142, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 142, + 710, + 321, + 722 + ], + "score": 1.0, + "content": "defined with respect to a dominant measure", + "type": "text" + }, + { + "bbox": [ + 321, + 713, + 328, + 721 + ], + "score": 0.74, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 710, + 506, + 722 + ], + "score": 1.0, + "content": ". We then show that Sobolev IPM defines a", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 141, + 720, + 478, + 733 + ], + "spans": [ + { + "bbox": [ + 141, + 720, + 478, + 733 + ], + "score": 1.0, + "content": "discrepancy between weighted (coordinate-wise) conditional CDFs of distributions.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45.5, + "bbox_fs": [ + 129, + 660, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 129, + 82, + 505, + 304 + ], + "lines": [ + { + "bbox": [ + 129, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 129, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "3. The intrinsic conditioning and the CDF matching make Sobolev IPM suitable for discrete", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 141, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 141, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "sequence matching and explain the success of the gradient pernalty in WGAN-GP and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 141, + 103, + 331, + 118 + ], + "spans": [ + { + "bbox": [ + 141, + 103, + 331, + 118 + ], + "score": 1.0, + "content": "Sobolev GAN in discrete sequence generation.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 128, + 118, + 505, + 132 + ], + "spans": [ + { + "bbox": [ + 128, + 118, + 505, + 132 + ], + "score": 1.0, + "content": "4. We give in Section 5 an ALM (Augmented Lagrangian Multiplier) algorithm for training", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 141, + 129, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 141, + 129, + 505, + 142 + ], + "score": 1.0, + "content": "Sobolev GAN. Similar to Fisher GAN, this algorithm is stable and does not compromise", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 141, + 141, + 243, + 153 + ], + "spans": [ + { + "bbox": [ + 141, + 141, + 243, + 153 + ], + "score": 1.0, + "content": "the capacity of the critic.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 128, + 153, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 128, + 153, + 505, + 167 + ], + "score": 1.0, + "content": "5. We show in Appendix A that the critic of Sobolev IPM satisfies an elliptic Partial Differ-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 142, + 166, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 142, + 166, + 505, + 178 + ], + "score": 1.0, + "content": "ential Equation (PDE). We relate this diffusion to the Fokker-Planck equation and show", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 140, + 176, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 140, + 176, + 505, + 190 + ], + "score": 1.0, + "content": "the behavior of the gradient of the optimal Sobolev critic as a transportation plan between", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 187, + 197, + 199 + ], + "spans": [ + { + "bbox": [ + 141, + 187, + 197, + 199 + ], + "score": 1.0, + "content": "distributions.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 129, + 201, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 129, + 201, + 505, + 213 + ], + "score": 1.0, + "content": "6. We empirically study Sobolev GAN in character level text generation (Section 6.1). We", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 212, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 142, + 212, + 505, + 224 + ], + "score": 1.0, + "content": "validate that the conditioning implied by Sobolev GAN is crucial for the success and sta-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 222, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 506, + 236 + ], + "score": 1.0, + "content": "bility of GAN in text generation. As a take home message from this study, we see that text", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 140, + 234, + 506, + 247 + ], + "spans": [ + { + "bbox": [ + 140, + 234, + 506, + 247 + ], + "score": 1.0, + "content": "generation succeeds either by implicit conditioning i.e using Sobolev GAN (or WGAN-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 141, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "GP) together with convolutional critics and generators, or by explicit conditioning i.e using", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 255, + 465, + 270 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 465, + 270 + ], + "score": 1.0, + "content": "Fisher IPM together with recurrent critic and generator and curriculum learning.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 129, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 129, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "7. We finally show in Section 6.2 that a variant of Sobolev GAN achieves competitive semi-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 281, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 141, + 281, + 505, + 294 + ], + "score": 1.0, + "content": "supervised learning results on CIFAR-10, thanks to the smoothness implied by the Sobolev", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 292, + 190, + 304 + ], + "spans": [ + { + "bbox": [ + 141, + 292, + 190, + 304 + ], + "score": 1.0, + "content": "regularizer.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 106, + 318, + 387, + 331 + ], + "lines": [ + { + "bbox": [ + 104, + 317, + 388, + 333 + ], + "spans": [ + { + "bbox": [ + 104, + 317, + 388, + 333 + ], + "score": 1.0, + "content": "2 OVERVIEW OF METRICS BETWEEN DISTRIBUTIONS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 342, + 505, + 409 + ], + "lines": [ + { + "bbox": [ + 105, + 342, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 355 + ], + "score": 1.0, + "content": "In this Section, we review different representations of probability distributions and metrics for com-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "score": 1.0, + "content": "paring distributions that use those representations. Those metrics are at the core of training GAN.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 364, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 505, + 377 + ], + "score": 1.0, + "content": "In what follows, we consider probability measures with a positive weakly differentiable probabil-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 375, + 504, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 239, + 389 + ], + "score": 1.0, + "content": "ity density functions (PDF). Let", + "type": "text" + }, + { + "bbox": [ + 239, + 376, + 248, + 385 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 375, + 267, + 389 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 267, + 376, + 276, + 387 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 375, + 441, + 389 + ], + "score": 1.0, + "content": "be two probability measures with PDFs", + "type": "text" + }, + { + "bbox": [ + 441, + 375, + 462, + 387 + ], + "score": 0.91, + "content": "\\mathbb { P } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 375, + 481, + 389 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 482, + 375, + 504, + 387 + ], + "score": 0.9, + "content": "\\mathbb { Q } ( x )", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 384, + 504, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 152, + 399 + ], + "score": 1.0, + "content": "defined on", + "type": "text" + }, + { + "bbox": [ + 152, + 386, + 189, + 397 + ], + "score": 0.91, + "content": "\\mathcal { X } \\subset \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 384, + 211, + 399 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 212, + 387, + 223, + 397 + ], + "score": 0.89, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 384, + 243, + 399 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 243, + 387, + 257, + 398 + ], + "score": 0.89, + "content": "F _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 384, + 468, + 399 + ], + "score": 1.0, + "content": "be the Cumulative Distribution Functions (CDF) of", + "type": "text" + }, + { + "bbox": [ + 468, + 387, + 476, + 396 + ], + "score": 0.82, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 384, + 495, + 399 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 495, + 387, + 504, + 398 + ], + "score": 0.85, + "content": "\\mathbb { Q }", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 398, + 287, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 175, + 411 + ], + "score": 1.0, + "content": "respectively. For", + "type": "text" + }, + { + "bbox": [ + 175, + 398, + 245, + 410 + ], + "score": 0.92, + "content": "\\boldsymbol { x } = ( x _ { 1 } , \\dots , x _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 398, + 287, + 411 + ], + "score": 1.0, + "content": ", we have:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 409, + 404, + 437 + ], + "lines": [ + { + "bbox": [ + 207, + 409, + 404, + 437 + ], + "spans": [ + { + "bbox": [ + 207, + 409, + 404, + 437 + ], + "score": 0.93, + "content": "F _ { \\mathbb { P } } ( x ) = \\int _ { - \\infty } ^ { x _ { 1 } } \\ldots \\cdot \\cdot \\int _ { - \\infty } ^ { x _ { d } } \\mathbb { P } ( u _ { 1 } , \\ldots \\cdot u _ { d } ) d u _ { 1 } \\ldots \\cdot \\cdot d u _ { d } .", + "type": "interline_equation", + "image_path": "dfc3710e8726c51e7ac97beed732772f72c0624bdfa5f7064d766a87677813a4.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 409, + 404, + 423.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 207, + 423.0, + 404, + 437.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 443, + 456 + ], + "lines": [ + { + "bbox": [ + 105, + 442, + 444, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 324, + 457 + ], + "score": 1.0, + "content": "The score function of a density function is defined as:", + "type": "text" + }, + { + "bbox": [ + 324, + 443, + 441, + 457 + ], + "score": 0.9, + "content": "s _ { \\mathbb { P } } ( x ) = \\nabla _ { x } \\log ( \\mathbb { P } ( x ) ) \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 442, + 444, + 457 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 505, + 505 + ], + "lines": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "In this work, we are interested in metrics between distributions that have a variational form and can", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 472, + 504, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 504, + 484 + ], + "score": 1.0, + "content": "be written as a suprema of mean discrepancies of functions defined on a specific function class. This", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 483, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 200, + 496 + ], + "score": 1.0, + "content": "type of metrics include", + "type": "text" + }, + { + "bbox": [ + 201, + 485, + 208, + 495 + ], + "score": 0.82, + "content": "\\varphi", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 483, + 505, + 496 + ], + "score": 1.0, + "content": "-divergences as well as Integral Probability Metrics (Sriperumbudur et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 494, + 250, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 250, + 506 + ], + "score": 1.0, + "content": "2009) and have the following form:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 506, + 369, + 527 + ], + "lines": [ + { + "bbox": [ + 240, + 506, + 369, + 527 + ], + "spans": [ + { + "bbox": [ + 240, + 506, + 369, + 527 + ], + "score": 0.94, + "content": "d _ { \\mathcal { F } } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { f \\in \\mathcal { F } } \\left| \\Delta ( f ; \\mathbb { P } , \\mathbb { Q } ) \\right| ,", + "type": "interline_equation", + "image_path": "90c861d763dff1c6c7b258b248ec40ee16517370ae2a39a533de96170653062c.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 240, + 506, + 369, + 527 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 528, + 505, + 562 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 133, + 541 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 528, + 144, + 538 + ], + "score": 0.86, + "content": "\\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 527, + 260, + 541 + ], + "score": 1.0, + "content": "is a function class defined on", + "type": "text" + }, + { + "bbox": [ + 260, + 529, + 270, + 538 + ], + "score": 0.85, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 527, + 287, + 541 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 288, + 529, + 297, + 538 + ], + "score": 0.85, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 527, + 388, + 541 + ], + "score": 1.0, + "content": "is a mean discrepancy,", + "type": "text" + }, + { + "bbox": [ + 388, + 528, + 438, + 538 + ], + "score": 0.91, + "content": "\\Delta : \\mathcal { F } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 527, + 505, + 541 + ], + "score": 1.0, + "content": ". The variational", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 539, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 462, + 551 + ], + "score": 1.0, + "content": "form given above leads in certain cases to closed form expressions in terms of the PDFs", + "type": "text" + }, + { + "bbox": [ + 463, + 540, + 483, + 551 + ], + "score": 0.89, + "content": "\\mathbb { P } , \\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 539, + 505, + 551 + ], + "score": 1.0, + "content": "or in", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 549, + 331, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 182, + 564 + ], + "score": 1.0, + "content": "terms of the CDFs", + "type": "text" + }, + { + "bbox": [ + 182, + 550, + 212, + 562 + ], + "score": 0.9, + "content": "F _ { \\mathbb { P } } , F _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 549, + 301, + 564 + ], + "score": 1.0, + "content": "or the score functions", + "type": "text" + }, + { + "bbox": [ + 302, + 552, + 327, + 563 + ], + "score": 0.81, + "content": "s _ { \\mathbb { P } } , s _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 549, + 331, + 564 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 567, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 350, + 579 + ], + "score": 1.0, + "content": "In Table 1, we give a comparison of different discrepancies", + "type": "text" + }, + { + "bbox": [ + 351, + 568, + 360, + 577 + ], + "score": 0.82, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 567, + 444, + 579 + ], + "score": 1.0, + "content": "and function spaces", + "type": "text" + }, + { + "bbox": [ + 444, + 567, + 456, + 577 + ], + "score": 0.85, + "content": "\\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 567, + 505, + 579 + ], + "score": 1.0, + "content": "used in the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 577, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 104, + 577, + 506, + 591 + ], + "score": 1.0, + "content": "literature for GAN training together with our proposed Sobolev IPM. We see from Table 1 that", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "Sobolev IPM, compared to Wasserstein Distance, imposes a tractable smoothness constraint on the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 288, + 613 + ], + "score": 1.0, + "content": "critic on points sampled from a distribution", + "type": "text" + }, + { + "bbox": [ + 288, + 602, + 295, + 612 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 600, + 505, + 613 + ], + "score": 1.0, + "content": ", rather then imposing a Lipschitz constraint on all", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 610, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 186, + 623 + ], + "score": 1.0, + "content": "points in the space", + "type": "text" + }, + { + "bbox": [ + 186, + 611, + 196, + 621 + ], + "score": 0.78, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 610, + 506, + 623 + ], + "score": 1.0, + "content": ". We also see that Sobolev IPM is the natural generalization of the Cramer´", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 506, + 634 + ], + "score": 1.0, + "content": "Von-Mises Distance from one dimension to high dimensions. We note that the Energy Distance, a", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "form of Maximum Mean Discrepancy for a special kernel, was used in (Bellemare et al., 2017b)", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "as a generalization of the Cramer distance in GAN training but still needed a gradient penalty in ´", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "its algorithmic counterpart leading to a mis-specified distance between distributions. Finally it is", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "worth noting that when comparing Fisher IPM and Sobolev IPM we see that while Fisher IPM com-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "pares joint PDF of the distributions, Sobolev IPM compares weighted (coordinate-wise) conditional", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "CDFs. As we will see later, this conditioning nature of the metric makes Sobolev IPM suitable for", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "comparing sequences. Note that the Stein metric (Liu et al., 2016; Liu, 2017) uses the score func-", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 104, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "tion to match distributions. We will show later how Sobolev IPM relates to the Stein discrepancy", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 721, + 167, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 167, + 732 + ], + "score": 1.0, + "content": "(Appendix A).", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 44 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 129, + 82, + 505, + 304 + ], + "lines": [ + { + "bbox": [ + 129, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 129, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "3. The intrinsic conditioning and the CDF matching make Sobolev IPM suitable for discrete", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 141, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "sequence matching and explain the success of the gradient pernalty in WGAN-GP and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 141, + 103, + 331, + 118 + ], + "spans": [ + { + "bbox": [ + 141, + 103, + 331, + 118 + ], + "score": 1.0, + "content": "Sobolev GAN in discrete sequence generation.", + "type": "text" + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 118, + 505, + 132 + ], + "spans": [ + { + "bbox": [ + 128, + 118, + 505, + 132 + ], + "score": 1.0, + "content": "4. We give in Section 5 an ALM (Augmented Lagrangian Multiplier) algorithm for training", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 129, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 141, + 129, + 505, + 142 + ], + "score": 1.0, + "content": "Sobolev GAN. Similar to Fisher GAN, this algorithm is stable and does not compromise", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 141, + 141, + 243, + 153 + ], + "spans": [ + { + "bbox": [ + 141, + 141, + 243, + 153 + ], + "score": 1.0, + "content": "the capacity of the critic.", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 153, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 128, + 153, + 505, + 167 + ], + "score": 1.0, + "content": "5. We show in Appendix A that the critic of Sobolev IPM satisfies an elliptic Partial Differ-", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 166, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 142, + 166, + 505, + 178 + ], + "score": 1.0, + "content": "ential Equation (PDE). We relate this diffusion to the Fokker-Planck equation and show", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 140, + 176, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 140, + 176, + 505, + 190 + ], + "score": 1.0, + "content": "the behavior of the gradient of the optimal Sobolev critic as a transportation plan between", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 187, + 197, + 199 + ], + "spans": [ + { + "bbox": [ + 141, + 187, + 197, + 199 + ], + "score": 1.0, + "content": "distributions.", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 129, + 201, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 129, + 201, + 505, + 213 + ], + "score": 1.0, + "content": "6. We empirically study Sobolev GAN in character level text generation (Section 6.1). We", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 212, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 142, + 212, + 505, + 224 + ], + "score": 1.0, + "content": "validate that the conditioning implied by Sobolev GAN is crucial for the success and sta-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 222, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 506, + 236 + ], + "score": 1.0, + "content": "bility of GAN in text generation. As a take home message from this study, we see that text", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 140, + 234, + 506, + 247 + ], + "spans": [ + { + "bbox": [ + 140, + 234, + 506, + 247 + ], + "score": 1.0, + "content": "generation succeeds either by implicit conditioning i.e using Sobolev GAN (or WGAN-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 141, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "GP) together with convolutional critics and generators, or by explicit conditioning i.e using", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 255, + 465, + 270 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 465, + 270 + ], + "score": 1.0, + "content": "Fisher IPM together with recurrent critic and generator and curriculum learning.", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 129, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 129, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "7. We finally show in Section 6.2 that a variant of Sobolev GAN achieves competitive semi-", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 281, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 141, + 281, + 505, + 294 + ], + "score": 1.0, + "content": "supervised learning results on CIFAR-10, thanks to the smoothness implied by the Sobolev", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 292, + 190, + 304 + ], + "spans": [ + { + "bbox": [ + 141, + 292, + 190, + 304 + ], + "score": 1.0, + "content": "regularizer.", + "type": "text" + } + ], + "index": 18, + "is_list_end_line": true + } + ], + "index": 9, + "bbox_fs": [ + 128, + 82, + 506, + 304 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 318, + 387, + 331 + ], + "lines": [ + { + "bbox": [ + 104, + 317, + 388, + 333 + ], + "spans": [ + { + "bbox": [ + 104, + 317, + 388, + 333 + ], + "score": 1.0, + "content": "2 OVERVIEW OF METRICS BETWEEN DISTRIBUTIONS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 342, + 505, + 409 + ], + "lines": [ + { + "bbox": [ + 105, + 342, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 355 + ], + "score": 1.0, + "content": "In this Section, we review different representations of probability distributions and metrics for com-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "score": 1.0, + "content": "paring distributions that use those representations. Those metrics are at the core of training GAN.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 364, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 505, + 377 + ], + "score": 1.0, + "content": "In what follows, we consider probability measures with a positive weakly differentiable probabil-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 375, + 504, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 239, + 389 + ], + "score": 1.0, + "content": "ity density functions (PDF). Let", + "type": "text" + }, + { + "bbox": [ + 239, + 376, + 248, + 385 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 375, + 267, + 389 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 267, + 376, + 276, + 387 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 375, + 441, + 389 + ], + "score": 1.0, + "content": "be two probability measures with PDFs", + "type": "text" + }, + { + "bbox": [ + 441, + 375, + 462, + 387 + ], + "score": 0.91, + "content": "\\mathbb { P } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 375, + 481, + 389 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 482, + 375, + 504, + 387 + ], + "score": 0.9, + "content": "\\mathbb { Q } ( x )", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 384, + 504, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 152, + 399 + ], + "score": 1.0, + "content": "defined on", + "type": "text" + }, + { + "bbox": [ + 152, + 386, + 189, + 397 + ], + "score": 0.91, + "content": "\\mathcal { X } \\subset \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 384, + 211, + 399 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 212, + 387, + 223, + 397 + ], + "score": 0.89, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 384, + 243, + 399 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 243, + 387, + 257, + 398 + ], + "score": 0.89, + "content": "F _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 384, + 468, + 399 + ], + "score": 1.0, + "content": "be the Cumulative Distribution Functions (CDF) of", + "type": "text" + }, + { + "bbox": [ + 468, + 387, + 476, + 396 + ], + "score": 0.82, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 384, + 495, + 399 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 495, + 387, + 504, + 398 + ], + "score": 0.85, + "content": "\\mathbb { Q }", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 398, + 287, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 175, + 411 + ], + "score": 1.0, + "content": "respectively. For", + "type": "text" + }, + { + "bbox": [ + 175, + 398, + 245, + 410 + ], + "score": 0.92, + "content": "\\boldsymbol { x } = ( x _ { 1 } , \\dots , x _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 398, + 287, + 411 + ], + "score": 1.0, + "content": ", we have:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 342, + 505, + 411 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 409, + 404, + 437 + ], + "lines": [ + { + "bbox": [ + 207, + 409, + 404, + 437 + ], + "spans": [ + { + "bbox": [ + 207, + 409, + 404, + 437 + ], + "score": 0.93, + "content": "F _ { \\mathbb { P } } ( x ) = \\int _ { - \\infty } ^ { x _ { 1 } } \\ldots \\cdot \\cdot \\int _ { - \\infty } ^ { x _ { d } } \\mathbb { P } ( u _ { 1 } , \\ldots \\cdot u _ { d } ) d u _ { 1 } \\ldots \\cdot \\cdot d u _ { d } .", + "type": "interline_equation", + "image_path": "dfc3710e8726c51e7ac97beed732772f72c0624bdfa5f7064d766a87677813a4.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 409, + 404, + 423.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 207, + 423.0, + 404, + 437.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 443, + 456 + ], + "lines": [ + { + "bbox": [ + 105, + 442, + 444, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 324, + 457 + ], + "score": 1.0, + "content": "The score function of a density function is defined as:", + "type": "text" + }, + { + "bbox": [ + 324, + 443, + 441, + 457 + ], + "score": 0.9, + "content": "s _ { \\mathbb { P } } ( x ) = \\nabla _ { x } \\log ( \\mathbb { P } ( x ) ) \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 442, + 444, + 457 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 442, + 444, + 457 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 505, + 505 + ], + "lines": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "In this work, we are interested in metrics between distributions that have a variational form and can", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 472, + 504, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 504, + 484 + ], + "score": 1.0, + "content": "be written as a suprema of mean discrepancies of functions defined on a specific function class. This", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 483, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 200, + 496 + ], + "score": 1.0, + "content": "type of metrics include", + "type": "text" + }, + { + "bbox": [ + 201, + 485, + 208, + 495 + ], + "score": 0.82, + "content": "\\varphi", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 483, + 505, + 496 + ], + "score": 1.0, + "content": "-divergences as well as Integral Probability Metrics (Sriperumbudur et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 494, + 250, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 250, + 506 + ], + "score": 1.0, + "content": "2009) and have the following form:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 460, + 505, + 506 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 506, + 369, + 527 + ], + "lines": [ + { + "bbox": [ + 240, + 506, + 369, + 527 + ], + "spans": [ + { + "bbox": [ + 240, + 506, + 369, + 527 + ], + "score": 0.94, + "content": "d _ { \\mathcal { F } } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { f \\in \\mathcal { F } } \\left| \\Delta ( f ; \\mathbb { P } , \\mathbb { Q } ) \\right| ,", + "type": "interline_equation", + "image_path": "90c861d763dff1c6c7b258b248ec40ee16517370ae2a39a533de96170653062c.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 240, + 506, + 369, + 527 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 528, + 505, + 562 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 133, + 541 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 528, + 144, + 538 + ], + "score": 0.86, + "content": "\\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 527, + 260, + 541 + ], + "score": 1.0, + "content": "is a function class defined on", + "type": "text" + }, + { + "bbox": [ + 260, + 529, + 270, + 538 + ], + "score": 0.85, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 527, + 287, + 541 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 288, + 529, + 297, + 538 + ], + "score": 0.85, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 527, + 388, + 541 + ], + "score": 1.0, + "content": "is a mean discrepancy,", + "type": "text" + }, + { + "bbox": [ + 388, + 528, + 438, + 538 + ], + "score": 0.91, + "content": "\\Delta : \\mathcal { F } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 527, + 505, + 541 + ], + "score": 1.0, + "content": ". The variational", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 539, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 462, + 551 + ], + "score": 1.0, + "content": "form given above leads in certain cases to closed form expressions in terms of the PDFs", + "type": "text" + }, + { + "bbox": [ + 463, + 540, + 483, + 551 + ], + "score": 0.89, + "content": "\\mathbb { P } , \\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 539, + 505, + 551 + ], + "score": 1.0, + "content": "or in", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 549, + 331, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 182, + 564 + ], + "score": 1.0, + "content": "terms of the CDFs", + "type": "text" + }, + { + "bbox": [ + 182, + 550, + 212, + 562 + ], + "score": 0.9, + "content": "F _ { \\mathbb { P } } , F _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 549, + 301, + 564 + ], + "score": 1.0, + "content": "or the score functions", + "type": "text" + }, + { + "bbox": [ + 302, + 552, + 327, + 563 + ], + "score": 0.81, + "content": "s _ { \\mathbb { P } } , s _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 549, + 331, + 564 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 527, + 505, + 564 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 567, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 350, + 579 + ], + "score": 1.0, + "content": "In Table 1, we give a comparison of different discrepancies", + "type": "text" + }, + { + "bbox": [ + 351, + 568, + 360, + 577 + ], + "score": 0.82, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 567, + 444, + 579 + ], + "score": 1.0, + "content": "and function spaces", + "type": "text" + }, + { + "bbox": [ + 444, + 567, + 456, + 577 + ], + "score": 0.85, + "content": "\\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 567, + 505, + 579 + ], + "score": 1.0, + "content": "used in the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 577, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 104, + 577, + 506, + 591 + ], + "score": 1.0, + "content": "literature for GAN training together with our proposed Sobolev IPM. We see from Table 1 that", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "Sobolev IPM, compared to Wasserstein Distance, imposes a tractable smoothness constraint on the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 288, + 613 + ], + "score": 1.0, + "content": "critic on points sampled from a distribution", + "type": "text" + }, + { + "bbox": [ + 288, + 602, + 295, + 612 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 600, + 505, + 613 + ], + "score": 1.0, + "content": ", rather then imposing a Lipschitz constraint on all", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 610, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 186, + 623 + ], + "score": 1.0, + "content": "points in the space", + "type": "text" + }, + { + "bbox": [ + 186, + 611, + 196, + 621 + ], + "score": 0.78, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 610, + 506, + 623 + ], + "score": 1.0, + "content": ". We also see that Sobolev IPM is the natural generalization of the Cramer´", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 506, + 634 + ], + "score": 1.0, + "content": "Von-Mises Distance from one dimension to high dimensions. We note that the Energy Distance, a", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "form of Maximum Mean Discrepancy for a special kernel, was used in (Bellemare et al., 2017b)", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "as a generalization of the Cramer distance in GAN training but still needed a gradient penalty in ´", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "its algorithmic counterpart leading to a mis-specified distance between distributions. Finally it is", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "worth noting that when comparing Fisher IPM and Sobolev IPM we see that while Fisher IPM com-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "pares joint PDF of the distributions, Sobolev IPM compares weighted (coordinate-wise) conditional", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "CDFs. As we will see later, this conditioning nature of the metric makes Sobolev IPM suitable for", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "comparing sequences. Note that the Stein metric (Liu et al., 2016; Liu, 2017) uses the score func-", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 104, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "tion to match distributions. We will show later how Sobolev IPM relates to the Stein discrepancy", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 721, + 167, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 167, + 732 + ], + "score": 1.0, + "content": "(Appendix A).", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 44, + "bbox_fs": [ + 104, + 567, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 80, + 505, + 439 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 80, + 505, + 439 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 80, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 505, + 439 + ], + "score": 0.983, + "html": "
△(f;P,Q)FFunction classdg(P,Q)Closed Form
-Divergence(Goodfellow et al., 2014)(Nowozin et al., 2016)Ex~Pf(x)-Ex~Q*(f(x))*Fenchel Conjugate{f:x→R,f∈domp*}E~[(]
Wasserstein -1(Arjovsky et al., 2017)(Gulrajani et al., 2017)Ex~Pf(x)-Ex~qf(x){f : x→R,fli ≤1}infπ∈(P,Q) Sx |lx-ylli dπ(x,y)Sinkhorn Divergence(Genevay et al., 2017)
MMD(Li et al., 2017)(Li et al., 2015)(Dziugaite et al., 2015)Ex~Pf(x)-Ex~qf(x){f:x→R,/fl/x ≤1}Ex~Pkx -Ex~Qr llyex
SteinDiscrepancy(Wang & Liu, 2016)Ex~Q[T(P)f(x)]T(P)=(Vxlog(P(x))T+Vx.{f:x→Rdf smooth with zeroboundary conditionNA in generalhas a closed formin RKHS
Cramerfor d =1(Bellemare et al., 2017a)Ex~Pf(x)-Ex~Qf(x){f:x→R,Ea~P()²≤1,f smooth with zeroboundary conditionEx~P(Fp(2)-F0())²P(x)xER
μ-FisherIPM(Mroueh & Sercu,2017)Ex~Pf(x)-Ex~Qf(x){f:X→R,f∈L(x,μ),Ex~μf²(x)≤1}Ex~u(P()-Q(x))²2μ(x)
μ-SobolevIPM(This work)Ex~Pf(x)-Ex~qf(x){f:X→R,f eW²(x,μ),Ex~μ|/Vxf(x)²≤1,with zero boundary condition }1VE~u∑i-((中i(P)-Φi(Q)μ(x)where 𝜙(P) =Px-i(x-i)FP[xx-i-ij(mi)x−=(x1,..xi-1,Ti+1,..d)
", + "type": "table", + "image_path": "a902eb13ef0e600d618ef6520feed6e52f0d53869e489d1691bf1605a481948a.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 80, + 505, + 199.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 199.66666666666669, + 505, + 319.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 319.33333333333337, + 505, + 439.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 446, + 504, + 470 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 445, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 506, + 460 + ], + "score": 1.0, + "content": "Table 1: Comparison of different metrics between distributions used for GAN training. References", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 457, + 318, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 318, + 472 + ], + "score": 1.0, + "content": "are for papers using those metrics for GAN training.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "title", + "bbox": [ + 106, + 492, + 376, + 507 + ], + "lines": [ + { + "bbox": [ + 104, + 492, + 377, + 509 + ], + "spans": [ + { + "bbox": [ + 104, + 492, + 377, + 509 + ], + "score": 1.0, + "content": "3 GENERALIZING FISHER IPM: PDF COMPARISON", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 518, + 505, + 574 + ], + "lines": [ + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "Imposing data-independent constraints on the function class in the IPM framework, such as the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "Lipschitz constraint in the Wasserstein distance is computationally challenging and intractable for", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "score": 1.0, + "content": "the general case. In this Section, we generalize the Fisher IPM introduced in (Mroueh & Sercu,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "score": 1.0, + "content": "2017), where the function class is relaxed to a tractable data dependent constraint on the second", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 562, + 470, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 470, + 574 + ], + "score": 1.0, + "content": "order moment of the critic, in other words the critic is constrained to be in a Lebsegue ball.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 104, + 578, + 503, + 602 + ], + "lines": [ + { + "bbox": [ + 105, + 577, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 185, + 591 + ], + "score": 1.0, + "content": "Fisher IPM. Let", + "type": "text" + }, + { + "bbox": [ + 185, + 578, + 224, + 589 + ], + "score": 0.91, + "content": "\\mathcal { X } \\subset \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 577, + 244, + 591 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 244, + 579, + 273, + 591 + ], + "score": 0.93, + "content": "\\mathcal { P } ( \\mathcal { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 577, + 439, + 591 + ], + "score": 1.0, + "content": "be the space of distributions defined on", + "type": "text" + }, + { + "bbox": [ + 439, + 579, + 450, + 589 + ], + "score": 0.83, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 577, + 473, + 591 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 473, + 579, + 505, + 591 + ], + "score": 0.88, + "content": "\\mathbb { P } , \\mathbb { Q } \\in", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 108, + 590, + 375, + 603 + ], + "spans": [ + { + "bbox": [ + 108, + 590, + 135, + 602 + ], + "score": 0.91, + "content": "\\mathcal { P } ( \\mathcal { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 590, + 156, + 603 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 156, + 591, + 164, + 602 + ], + "score": 0.81, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 590, + 270, + 603 + ], + "score": 1.0, + "content": "be a dominant measure of", + "type": "text" + }, + { + "bbox": [ + 270, + 591, + 278, + 600 + ], + "score": 0.82, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 590, + 295, + 603 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 295, + 591, + 304, + 601 + ], + "score": 0.86, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 590, + 375, + 603 + ], + "score": 1.0, + "content": ", in the sense that", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 606, + 388, + 620 + ], + "lines": [ + { + "bbox": [ + 222, + 606, + 388, + 620 + ], + "spans": [ + { + "bbox": [ + 222, + 606, + 388, + 620 + ], + "score": 0.8, + "content": "\\mu ( x ) = 0 \\implies \\mathbb { P } ( x ) = 0 { \\mathrm { ~ a n d } } \\mathbb { Q } ( x ) = 0 .", + "type": "interline_equation", + "image_path": "c0f789d8ffd1b190245ac2d5c2109164edc26b49965fa31000e8c43bc0ca1bce.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 222, + 606, + 388, + 620 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 624, + 505, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 623, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 154, + 639 + ], + "score": 1.0, + "content": "We assume", + "type": "text" + }, + { + "bbox": [ + 154, + 627, + 161, + 637 + ], + "score": 0.81, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 623, + 268, + 639 + ], + "score": 1.0, + "content": "to be also a distribution in", + "type": "text" + }, + { + "bbox": [ + 268, + 625, + 296, + 637 + ], + "score": 0.91, + "content": "\\mathcal { P } ( \\mathcal { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 623, + 349, + 639 + ], + "score": 1.0, + "content": ", and assume", + "type": "text" + }, + { + "bbox": [ + 349, + 625, + 430, + 637 + ], + "score": 0.51, + "content": "\\pmb { \\mu } ( \\pmb { x } ) > \\mathbf { 0 } , \\forall \\pmb { x } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 623, + 450, + 639 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 450, + 625, + 492, + 637 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 623, + 505, + 639 + ], + "score": 1.0, + "content": "be", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 156, + 649 + ], + "score": 1.0, + "content": "the space of", + "type": "text" + }, + { + "bbox": [ + 156, + 639, + 163, + 648 + ], + "score": 0.83, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 636, + 272, + 649 + ], + "score": 1.0, + "content": "-measurable functions. For", + "type": "text" + }, + { + "bbox": [ + 272, + 637, + 340, + 649 + ], + "score": 0.93, + "content": "f , g \\in \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 636, + 505, + 649 + ], + "score": 1.0, + "content": ", we define the following dot product and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 646, + 204, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 204, + 660 + ], + "score": 1.0, + "content": "its corresponding norm:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 154, + 664, + 457, + 698 + ], + "lines": [ + { + "bbox": [ + 154, + 664, + 457, + 698 + ], + "spans": [ + { + "bbox": [ + 154, + 664, + 457, + 698 + ], + "score": 0.93, + "content": "\\langle f , g \\rangle _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } = \\int _ { \\mathcal { X } } f ( x ) g ( x ) \\mu ( x ) d x , \\| f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } = \\sqrt { \\int _ { \\mathcal { X } } f ^ { 2 } ( x ) \\mu ( x ) d x } .", + "type": "interline_equation", + "image_path": "88f56b94989940a85facb05c3b4699c2785ac41c8649ec20ce8494b9a619d6be.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 154, + 664, + 457, + 675.3333333333334 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 154, + 675.3333333333334, + 457, + 686.6666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 154, + 686.6666666666667, + 457, + 698.0000000000001 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 702, + 333, + 715 + ], + "lines": [ + { + "bbox": [ + 106, + 702, + 334, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 702, + 146, + 715 + ], + "score": 1.0, + "content": "Note that", + "type": "text" + }, + { + "bbox": [ + 146, + 703, + 187, + 715 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 702, + 334, + 715 + ], + "score": 1.0, + "content": ", can be formally defined as follows:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 719, + 404, + 735 + ], + "lines": [ + { + "bbox": [ + 204, + 719, + 404, + 735 + ], + "spans": [ + { + "bbox": [ + 204, + 719, + 404, + 735 + ], + "score": 0.82, + "content": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) = \\{ f : \\mathcal { X } \\to \\mathbb { R } \\mathrm { s . t } \\ \\| f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } < \\infty \\} .", + "type": "interline_equation", + "image_path": "57c9c82b706a6af55890433de3272cf1166b92ac86003a5135e9b3124436ccfa.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 204, + 719, + 404, + 735 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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": "4", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 80, + 505, + 439 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 80, + 505, + 439 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 80, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 505, + 439 + ], + "score": 0.983, + "html": "
△(f;P,Q)FFunction classdg(P,Q)Closed Form
-Divergence(Goodfellow et al., 2014)(Nowozin et al., 2016)Ex~Pf(x)-Ex~Q*(f(x))*Fenchel Conjugate{f:x→R,f∈domp*}E~[(]
Wasserstein -1(Arjovsky et al., 2017)(Gulrajani et al., 2017)Ex~Pf(x)-Ex~qf(x){f : x→R,fli ≤1}infπ∈(P,Q) Sx |lx-ylli dπ(x,y)Sinkhorn Divergence(Genevay et al., 2017)
MMD(Li et al., 2017)(Li et al., 2015)(Dziugaite et al., 2015)Ex~Pf(x)-Ex~qf(x){f:x→R,/fl/x ≤1}Ex~Pkx -Ex~Qr llyex
SteinDiscrepancy(Wang & Liu, 2016)Ex~Q[T(P)f(x)]T(P)=(Vxlog(P(x))T+Vx.{f:x→Rdf smooth with zeroboundary conditionNA in generalhas a closed formin RKHS
Cramerfor d =1(Bellemare et al., 2017a)Ex~Pf(x)-Ex~Qf(x){f:x→R,Ea~P()²≤1,f smooth with zeroboundary conditionEx~P(Fp(2)-F0())²P(x)xER
μ-FisherIPM(Mroueh & Sercu,2017)Ex~Pf(x)-Ex~Qf(x){f:X→R,f∈L(x,μ),Ex~μf²(x)≤1}Ex~u(P()-Q(x))²2μ(x)
μ-SobolevIPM(This work)Ex~Pf(x)-Ex~qf(x){f:X→R,f eW²(x,μ),Ex~μ|/Vxf(x)²≤1,with zero boundary condition }1VE~u∑i-((中i(P)-Φi(Q)μ(x)where 𝜙(P) =Px-i(x-i)FP[xx-i-ij(mi)x−=(x1,..xi-1,Ti+1,..d)
", + "type": "table", + "image_path": "a902eb13ef0e600d618ef6520feed6e52f0d53869e489d1691bf1605a481948a.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 80, + 505, + 199.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 199.66666666666669, + 505, + 319.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 319.33333333333337, + 505, + 439.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 446, + 504, + 470 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 445, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 506, + 460 + ], + "score": 1.0, + "content": "Table 1: Comparison of different metrics between distributions used for GAN training. References", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 457, + 318, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 318, + 472 + ], + "score": 1.0, + "content": "are for papers using those metrics for GAN training.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "title", + "bbox": [ + 106, + 492, + 376, + 507 + ], + "lines": [ + { + "bbox": [ + 104, + 492, + 377, + 509 + ], + "spans": [ + { + "bbox": [ + 104, + 492, + 377, + 509 + ], + "score": 1.0, + "content": "3 GENERALIZING FISHER IPM: PDF COMPARISON", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 518, + 505, + 574 + ], + "lines": [ + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "Imposing data-independent constraints on the function class in the IPM framework, such as the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "Lipschitz constraint in the Wasserstein distance is computationally challenging and intractable for", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "score": 1.0, + "content": "the general case. In this Section, we generalize the Fisher IPM introduced in (Mroueh & Sercu,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "score": 1.0, + "content": "2017), where the function class is relaxed to a tractable data dependent constraint on the second", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 562, + 470, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 470, + 574 + ], + "score": 1.0, + "content": "order moment of the critic, in other words the critic is constrained to be in a Lebsegue ball.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 518, + 505, + 574 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 578, + 503, + 602 + ], + "lines": [ + { + "bbox": [ + 105, + 577, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 185, + 591 + ], + "score": 1.0, + "content": "Fisher IPM. Let", + "type": "text" + }, + { + "bbox": [ + 185, + 578, + 224, + 589 + ], + "score": 0.91, + "content": "\\mathcal { X } \\subset \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 577, + 244, + 591 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 244, + 579, + 273, + 591 + ], + "score": 0.93, + "content": "\\mathcal { P } ( \\mathcal { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 577, + 439, + 591 + ], + "score": 1.0, + "content": "be the space of distributions defined on", + "type": "text" + }, + { + "bbox": [ + 439, + 579, + 450, + 589 + ], + "score": 0.83, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 577, + 473, + 591 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 473, + 579, + 505, + 591 + ], + "score": 0.88, + "content": "\\mathbb { P } , \\mathbb { Q } \\in", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 108, + 590, + 375, + 603 + ], + "spans": [ + { + "bbox": [ + 108, + 590, + 135, + 602 + ], + "score": 0.91, + "content": "\\mathcal { P } ( \\mathcal { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 590, + 156, + 603 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 156, + 591, + 164, + 602 + ], + "score": 0.81, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 590, + 270, + 603 + ], + "score": 1.0, + "content": "be a dominant measure of", + "type": "text" + }, + { + "bbox": [ + 270, + 591, + 278, + 600 + ], + "score": 0.82, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 590, + 295, + 603 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 295, + 591, + 304, + 601 + ], + "score": 0.86, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 590, + 375, + 603 + ], + "score": 1.0, + "content": ", in the sense that", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 577, + 505, + 603 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 606, + 388, + 620 + ], + "lines": [ + { + "bbox": [ + 222, + 606, + 388, + 620 + ], + "spans": [ + { + "bbox": [ + 222, + 606, + 388, + 620 + ], + "score": 0.8, + "content": "\\mu ( x ) = 0 \\implies \\mathbb { P } ( x ) = 0 { \\mathrm { ~ a n d } } \\mathbb { Q } ( x ) = 0 .", + "type": "interline_equation", + "image_path": "c0f789d8ffd1b190245ac2d5c2109164edc26b49965fa31000e8c43bc0ca1bce.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 222, + 606, + 388, + 620 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 624, + 505, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 623, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 154, + 639 + ], + "score": 1.0, + "content": "We assume", + "type": "text" + }, + { + "bbox": [ + 154, + 627, + 161, + 637 + ], + "score": 0.81, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 623, + 268, + 639 + ], + "score": 1.0, + "content": "to be also a distribution in", + "type": "text" + }, + { + "bbox": [ + 268, + 625, + 296, + 637 + ], + "score": 0.91, + "content": "\\mathcal { P } ( \\mathcal { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 623, + 349, + 639 + ], + "score": 1.0, + "content": ", and assume", + "type": "text" + }, + { + "bbox": [ + 349, + 625, + 430, + 637 + ], + "score": 0.51, + "content": "\\pmb { \\mu } ( \\pmb { x } ) > \\mathbf { 0 } , \\forall \\pmb { x } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 623, + 450, + 639 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 450, + 625, + 492, + 637 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 623, + 505, + 639 + ], + "score": 1.0, + "content": "be", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 156, + 649 + ], + "score": 1.0, + "content": "the space of", + "type": "text" + }, + { + "bbox": [ + 156, + 639, + 163, + 648 + ], + "score": 0.83, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 636, + 272, + 649 + ], + "score": 1.0, + "content": "-measurable functions. For", + "type": "text" + }, + { + "bbox": [ + 272, + 637, + 340, + 649 + ], + "score": 0.93, + "content": "f , g \\in \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 636, + 505, + 649 + ], + "score": 1.0, + "content": ", we define the following dot product and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 646, + 204, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 204, + 660 + ], + "score": 1.0, + "content": "its corresponding norm:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 623, + 505, + 660 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 154, + 664, + 457, + 698 + ], + "lines": [ + { + "bbox": [ + 154, + 664, + 457, + 698 + ], + "spans": [ + { + "bbox": [ + 154, + 664, + 457, + 698 + ], + "score": 0.93, + "content": "\\langle f , g \\rangle _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } = \\int _ { \\mathcal { X } } f ( x ) g ( x ) \\mu ( x ) d x , \\| f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } = \\sqrt { \\int _ { \\mathcal { X } } f ^ { 2 } ( x ) \\mu ( x ) d x } .", + "type": "interline_equation", + "image_path": "88f56b94989940a85facb05c3b4699c2785ac41c8649ec20ce8494b9a619d6be.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 154, + 664, + 457, + 675.3333333333334 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 154, + 675.3333333333334, + 457, + 686.6666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 154, + 686.6666666666667, + 457, + 698.0000000000001 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 702, + 333, + 715 + ], + "lines": [ + { + "bbox": [ + 106, + 702, + 334, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 702, + 146, + 715 + ], + "score": 1.0, + "content": "Note that", + "type": "text" + }, + { + "bbox": [ + 146, + 703, + 187, + 715 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 702, + 334, + 715 + ], + "score": 1.0, + "content": ", can be formally defined as follows:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 702, + 334, + 715 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 719, + 404, + 735 + ], + "lines": [ + { + "bbox": [ + 204, + 719, + 404, + 735 + ], + "spans": [ + { + "bbox": [ + 204, + 719, + 404, + 735 + ], + "score": 0.82, + "content": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) = \\{ f : \\mathcal { X } \\to \\mathbb { R } \\mathrm { s . t } \\ \\| f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } < \\infty \\} .", + "type": "interline_equation", + "image_path": "57c9c82b706a6af55890433de3272cf1166b92ac86003a5135e9b3124436ccfa.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 204, + 719, + 404, + 735 + ], + "spans": [], + "index": 21 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 285, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 286, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 286, + 96 + ], + "score": 1.0, + "content": "We define the unit Lebesgue ball as follows:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 95, + 402, + 111 + ], + "lines": [ + { + "bbox": [ + 207, + 95, + 402, + 111 + ], + "spans": [ + { + "bbox": [ + 207, + 95, + 402, + 111 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu ) = \\{ f \\in \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) , \\| f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } \\leq 1 \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "ed5b076ecf167418ab81fd98dc01d6d5f7e66b35768fe8f111ec1304aecbf9ce.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 207, + 95, + 402, + 111 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 112, + 505, + 156 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 124 + ], + "score": 1.0, + "content": "Fisher IPM defined in (Mroueh & Sercu, 2017), searches for the critic function in the Lebesgue Ball", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 123, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 146, + 135 + ], + "score": 0.92, + "content": "\\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 123, + 338, + 135 + ], + "score": 1.0, + "content": "that maximizes the mean discrepancy between", + "type": "text" + }, + { + "bbox": [ + 338, + 124, + 346, + 133 + ], + "score": 0.82, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 123, + 364, + 135 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 364, + 124, + 373, + 134 + ], + "score": 0.84, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 123, + 505, + 135 + ], + "score": 1.0, + "content": ". Fisher GAN (Mroueh & Sercu,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 133, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 303, + 147 + ], + "score": 1.0, + "content": "2017) was originally formulated specifically for", + "type": "text" + }, + { + "bbox": [ + 303, + 134, + 366, + 147 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mu = \\frac 1 2 ( { \\mathbb P } + { \\mathbb Q } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 133, + 485, + 147 + ], + "score": 1.0, + "content": ". We consider here a general", + "type": "text" + }, + { + "bbox": [ + 485, + 136, + 492, + 146 + ], + "score": 0.79, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 133, + 506, + 147 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 145, + 414, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 189, + 156 + ], + "score": 1.0, + "content": "long as it dominates", + "type": "text" + }, + { + "bbox": [ + 189, + 146, + 197, + 155 + ], + "score": 0.84, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 145, + 214, + 156 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 214, + 146, + 223, + 156 + ], + "score": 0.85, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 145, + 414, + 156 + ], + "score": 1.0, + "content": ". We define Generalized Fisher IPM as follows:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 158, + 402, + 180 + ], + "lines": [ + { + "bbox": [ + 209, + 158, + 402, + 180 + ], + "spans": [ + { + "bbox": [ + 209, + 158, + 402, + 180 + ], + "score": 0.93, + "content": "\\mathcal { F } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { f \\in \\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu ) } \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x )", + "type": "interline_equation", + "image_path": "0459b6283064953f4a579db933a7da8d2f8da64146d6cb7f61d718f7edc339ed.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 209, + 158, + 402, + 180 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 147, + 193 + ], + "lines": [ + { + "bbox": [ + 105, + 181, + 149, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 149, + 194 + ], + "score": 1.0, + "content": "Note that:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 189, + 406, + 219 + ], + "lines": [ + { + "bbox": [ + 204, + 189, + 406, + 219 + ], + "spans": [ + { + "bbox": [ + 204, + 189, + 406, + 219 + ], + "score": 0.9, + "content": "\\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) = \\left. f , { \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu } } \\right. _ { { \\mathcal { L } } _ { 2 } ( \\mathcal { X } , \\mu ) } .", + "type": "interline_equation", + "image_path": "7adc5ae6d5564e7bdcb40573887203e12aae54584adacb2f75345dce0941e0c9.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 204, + 189, + 406, + 204.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 204, + 204.0, + 406, + 219.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 218, + 285, + 230 + ], + "lines": [ + { + "bbox": [ + 106, + 217, + 286, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 286, + 231 + ], + "score": 1.0, + "content": "Hence Fisher IPM can be written as follows:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 229, + 396, + 259 + ], + "lines": [ + { + "bbox": [ + 215, + 229, + 396, + 259 + ], + "spans": [ + { + "bbox": [ + 215, + 229, + 396, + 259 + ], + "score": 0.92, + "content": "\\mathcal { F } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { f \\in \\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu ) } \\left. f , \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu } \\right. _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) }", + "type": "interline_equation", + "image_path": "cf2ca2c1ee9e66d8cc139d9ab4818c3ad24e905d70ad8d497fd2b16dffeacf48.jpg" + } + ] + } + ], + "index": 11.5, + "virtual_lines": [ + { + "bbox": [ + 215, + 229, + 396, + 244.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 215, + 244.0, + 396, + 259.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 260, + 225, + 271 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 226, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 226, + 273 + ], + "score": 1.0, + "content": "We have the following result:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 103, + 273, + 493, + 285 + ], + "lines": [ + { + "bbox": [ + 106, + 271, + 495, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 495, + 286 + ], + "score": 1.0, + "content": "Theorem 1 (Generalized Fisher IPM). The Fisher distance and the optimal critic are as follows:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 131, + 292, + 271, + 304 + ], + "lines": [ + { + "bbox": [ + 129, + 291, + 272, + 307 + ], + "spans": [ + { + "bbox": [ + 129, + 291, + 272, + 307 + ], + "score": 1.0, + "content": "1. The Fisher distance is given by:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 306, + 450, + 341 + ], + "lines": [ + { + "bbox": [ + 198, + 306, + 450, + 341 + ], + "spans": [ + { + "bbox": [ + 198, + 306, + 450, + 341 + ], + "score": 0.93, + "content": "\\mathcal { F } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\left\\| \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu } \\right\\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } = \\sqrt { \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mu } \\left( \\frac { \\mathbb { P } ( \\boldsymbol { x } ) - \\mathbb { Q } ( \\boldsymbol { x } ) } { \\mu ( \\boldsymbol { x } ) } \\right) ^ { 2 } } .", + "type": "interline_equation", + "image_path": "3db2e30f980cd8a9477d69935b4e5387d1876b47cb6bc9a7613e57d66273b858.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 198, + 306, + 450, + 317.6666666666667 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 198, + 317.6666666666667, + 450, + 329.33333333333337 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 198, + 329.33333333333337, + 450, + 341.00000000000006 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 129, + 348, + 380, + 360 + ], + "lines": [ + { + "bbox": [ + 129, + 347, + 380, + 362 + ], + "spans": [ + { + "bbox": [ + 129, + 347, + 192, + 362 + ], + "score": 1.0, + "content": "2. The optimal", + "type": "text" + }, + { + "bbox": [ + 193, + 349, + 204, + 360 + ], + "score": 0.88, + "content": "f _ { \\chi }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 347, + 325, + 362 + ], + "score": 1.0, + "content": "achieving the Fisher distance", + "type": "text" + }, + { + "bbox": [ + 325, + 348, + 366, + 361 + ], + "score": 0.93, + "content": "\\mathcal { F } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } )", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 347, + 380, + 362 + ], + "score": 1.0, + "content": "is:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 392, + 302, + 460 + ], + "lines": [ + { + "bbox": [ + 106, + 391, + 302, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 302, + 405 + ], + "score": 1.0, + "content": "Proof of Theorem 1. From Equation (2), the op-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 403, + 302, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 131, + 416 + ], + "score": 1.0, + "content": "timal", + "type": "text" + }, + { + "bbox": [ + 131, + 404, + 143, + 416 + ], + "score": 0.9, + "content": "f _ { \\chi }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 403, + 302, + 416 + ], + "score": 1.0, + "content": "belong to the intersection of the hy-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 415, + 303, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 215, + 428 + ], + "score": 1.0, + "content": "perplane that has normal", + "type": "text" + }, + { + "bbox": [ + 216, + 415, + 262, + 430 + ], + "score": 0.86, + "content": "n ~ = ~ \\textstyle \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 415, + 303, + 428 + ], + "score": 1.0, + "content": "and the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 428, + 303, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 229, + 444 + ], + "score": 1.0, + "content": "ball B2(X , µ), hence fχ =", + "type": "text" + }, + { + "bbox": [ + 196, + 429, + 266, + 446 + ], + "score": 0.9, + "content": "\\begin{array} { r } { f _ { \\chi } = \\frac { n ^ { \\cdot } } { \\| n \\| _ { \\mathcal { L } _ { 2 } ( \\chi , \\mu ) } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 428, + 303, + 442 + ], + "score": 1.0, + "content": "Hence", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 444, + 302, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 205, + 460 + ], + "score": 0.81, + "content": "\\mathcal { F } ( \\mathbb { P } , \\mathbb { Q } ) = \\| n \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } .", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 446, + 302, + 455 + ], + "score": 1.0, + "content": "□", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22 + }, + { + "type": "image", + "bbox": [ + 358, + 389, + 453, + 455 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 358, + 389, + 453, + 455 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 358, + 389, + 453, + 455 + ], + "spans": [ + { + "bbox": [ + 358, + 389, + 453, + 455 + ], + "score": 0.935, + "type": "image", + "image_path": "39105c967ba0488a4607950203039a45c6b2ef8745052cceb191e400af567c21.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 358, + 389, + 453, + 422.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 358, + 422.0, + 453, + 455.0 + ], + "spans": [], + "index": 26 + } + ] + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 505, + 519 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 334, + 486 + ], + "score": 1.0, + "content": "We see from Theorem 1 the role of the dominant measure", + "type": "text" + }, + { + "bbox": [ + 334, + 476, + 341, + 486 + ], + "score": 0.75, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 473, + 505, + 486 + ], + "score": 1.0, + "content": ": the optimal critic is defined with respect", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 486, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 505, + 497 + ], + "score": 1.0, + "content": "to this measure and the overall Fisher distance can be seen as an average weighted distance between", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 496, + 504, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 436, + 508 + ], + "score": 1.0, + "content": "probability density functions, where the average is taken on points sampled from", + "type": "text" + }, + { + "bbox": [ + 436, + 498, + 443, + 507 + ], + "score": 0.77, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 496, + 504, + 508 + ], + "score": 1.0, + "content": ". We give here", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 507, + 185, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 173, + 520 + ], + "score": 1.0, + "content": "some choices of", + "type": "text" + }, + { + "bbox": [ + 173, + 509, + 181, + 519 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 507, + 185, + 520 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 129, + 525, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 130, + 525, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 130, + 525, + 158, + 538 + ], + "score": 1.0, + "content": "1. For", + "type": "text" + }, + { + "bbox": [ + 159, + 525, + 217, + 539 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mu = \\frac 1 2 ( { \\mathbb P } + { \\mathbb Q } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 525, + 505, + 538 + ], + "score": 1.0, + "content": ", we obtain the symmetric chi-squared distance as defined in (Mroueh &", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 536, + 197, + 548 + ], + "spans": [ + { + "bbox": [ + 141, + 536, + 197, + 548 + ], + "score": 1.0, + "content": "Sercu, 2017).", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 128, + 550, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 128, + 550, + 142, + 564 + ], + "score": 1.0, + "content": "2.", + "type": "text" + }, + { + "bbox": [ + 142, + 552, + 162, + 563 + ], + "score": 0.81, + "content": "\\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 550, + 437, + 564 + ], + "score": 1.0, + "content": ", the implicit distribution defined by the interpolation lines between", + "type": "text" + }, + { + "bbox": [ + 437, + 552, + 449, + 562 + ], + "score": 0.89, + "content": "\\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 550, + 468, + 564 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 468, + 551, + 482, + 563 + ], + "score": 0.89, + "content": "\\mathbb { Q } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 550, + 505, + 564 + ], + "score": 1.0, + "content": "as in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 142, + 562, + 238, + 574 + ], + "spans": [ + { + "bbox": [ + 142, + 562, + 238, + 574 + ], + "score": 1.0, + "content": "(Gulrajani et al., 2017).", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 128, + 575, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 128, + 575, + 168, + 589 + ], + "score": 1.0, + "content": "3. When", + "type": "text" + }, + { + "bbox": [ + 169, + 578, + 176, + 588 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 575, + 252, + 589 + ], + "score": 1.0, + "content": "does not dominate", + "type": "text" + }, + { + "bbox": [ + 253, + 577, + 260, + 586 + ], + "score": 0.77, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 575, + 281, + 589 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 281, + 577, + 290, + 587 + ], + "score": 0.83, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 575, + 505, + 589 + ], + "score": 1.0, + "content": ", we obtain a non symmetric divergence. For example", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 139, + 586, + 507, + 606 + ], + "spans": [ + { + "bbox": [ + 139, + 588, + 156, + 606 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 157, + 590, + 184, + 603 + ], + "score": 0.87, + "content": "\\mu = \\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 588, + 187, + 606 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 187, + 588, + 318, + 605 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\mathcal { F } _ { \\mathbb { P } } ^ { 2 } ( \\mathbb { P } , \\mathbb { Q } ) = \\int _ { \\mathcal { X } } \\frac { ( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) ) ^ { 2 } } { \\mathbb { P } ( x ) } d x } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 586, + 507, + 606 + ], + "score": 1.0, + "content": "(P(x)−Q(x))2P(x) dx. We see here that for this particular choice we", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 142, + 602, + 267, + 617 + ], + "spans": [ + { + "bbox": [ + 142, + 602, + 267, + 617 + ], + "score": 1.0, + "content": "obtain the Pearson divergence.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34 + }, + { + "type": "title", + "bbox": [ + 107, + 630, + 203, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 628, + 204, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 204, + 645 + ], + "score": 1.0, + "content": "4 SOBOLEV IPM", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 666 + ], + "score": 1.0, + "content": "In this Section, we introduce the Sobolev IPM. In a nutshell, the Sobolev IPM constrains the critic", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "function to belong to a ball in the restricted Sobolev Space. In other words we constrain the norm", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 222, + 690 + ], + "score": 1.0, + "content": "of the gradient of the critic", + "type": "text" + }, + { + "bbox": [ + 222, + 677, + 256, + 689 + ], + "score": 0.92, + "content": "\\nabla _ { x } f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 676, + 506, + 690 + ], + "score": 1.0, + "content": ". We will show that by moving from a Lebesgue constraint", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "as in Fisher IPM to a Sobolev constraint as in Sobolev IPM, the metric changes from a joint PDF", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "matching to weighted (ccordinate-wise) conditional CDFs matching. The intrinsic conditioning built", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "in to the Sobolev IPM and the comparison of cumulative distributions makes Sobolev IPM suitable", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 245, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 245, + 734 + ], + "score": 1.0, + "content": "for comparing discrete sequences.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 285, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 286, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 286, + 96 + ], + "score": 1.0, + "content": "We define the unit Lebesgue ball as follows:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 81, + 286, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 95, + 402, + 111 + ], + "lines": [ + { + "bbox": [ + 207, + 95, + 402, + 111 + ], + "spans": [ + { + "bbox": [ + 207, + 95, + 402, + 111 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu ) = \\{ f \\in \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) , \\| f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } \\leq 1 \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "ed5b076ecf167418ab81fd98dc01d6d5f7e66b35768fe8f111ec1304aecbf9ce.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 207, + 95, + 402, + 111 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 112, + 505, + 156 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 124 + ], + "score": 1.0, + "content": "Fisher IPM defined in (Mroueh & Sercu, 2017), searches for the critic function in the Lebesgue Ball", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 123, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 146, + 135 + ], + "score": 0.92, + "content": "\\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 123, + 338, + 135 + ], + "score": 1.0, + "content": "that maximizes the mean discrepancy between", + "type": "text" + }, + { + "bbox": [ + 338, + 124, + 346, + 133 + ], + "score": 0.82, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 123, + 364, + 135 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 364, + 124, + 373, + 134 + ], + "score": 0.84, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 123, + 505, + 135 + ], + "score": 1.0, + "content": ". Fisher GAN (Mroueh & Sercu,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 133, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 303, + 147 + ], + "score": 1.0, + "content": "2017) was originally formulated specifically for", + "type": "text" + }, + { + "bbox": [ + 303, + 134, + 366, + 147 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mu = \\frac 1 2 ( { \\mathbb P } + { \\mathbb Q } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 133, + 485, + 147 + ], + "score": 1.0, + "content": ". We consider here a general", + "type": "text" + }, + { + "bbox": [ + 485, + 136, + 492, + 146 + ], + "score": 0.79, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 133, + 506, + 147 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 145, + 414, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 189, + 156 + ], + "score": 1.0, + "content": "long as it dominates", + "type": "text" + }, + { + "bbox": [ + 189, + 146, + 197, + 155 + ], + "score": 0.84, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 145, + 214, + 156 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 214, + 146, + 223, + 156 + ], + "score": 0.85, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 145, + 414, + 156 + ], + "score": 1.0, + "content": ". We define Generalized Fisher IPM as follows:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 111, + 506, + 156 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 158, + 402, + 180 + ], + "lines": [ + { + "bbox": [ + 209, + 158, + 402, + 180 + ], + "spans": [ + { + "bbox": [ + 209, + 158, + 402, + 180 + ], + "score": 0.93, + "content": "\\mathcal { F } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { f \\in \\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu ) } \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x )", + "type": "interline_equation", + "image_path": "0459b6283064953f4a579db933a7da8d2f8da64146d6cb7f61d718f7edc339ed.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 209, + 158, + 402, + 180 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 147, + 193 + ], + "lines": [ + { + "bbox": [ + 105, + 181, + 149, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 149, + 194 + ], + "score": 1.0, + "content": "Note that:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 181, + 149, + 194 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 189, + 406, + 219 + ], + "lines": [ + { + "bbox": [ + 204, + 189, + 406, + 219 + ], + "spans": [ + { + "bbox": [ + 204, + 189, + 406, + 219 + ], + "score": 0.9, + "content": "\\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) = \\left. f , { \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu } } \\right. _ { { \\mathcal { L } } _ { 2 } ( \\mathcal { X } , \\mu ) } .", + "type": "interline_equation", + "image_path": "7adc5ae6d5564e7bdcb40573887203e12aae54584adacb2f75345dce0941e0c9.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 204, + 189, + 406, + 204.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 204, + 204.0, + 406, + 219.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 218, + 285, + 230 + ], + "lines": [ + { + "bbox": [ + 106, + 217, + 286, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 286, + 231 + ], + "score": 1.0, + "content": "Hence Fisher IPM can be written as follows:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 217, + 286, + 231 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 229, + 396, + 259 + ], + "lines": [ + { + "bbox": [ + 215, + 229, + 396, + 259 + ], + "spans": [ + { + "bbox": [ + 215, + 229, + 396, + 259 + ], + "score": 0.92, + "content": "\\mathcal { F } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { f \\in \\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu ) } \\left. f , \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu } \\right. _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) }", + "type": "interline_equation", + "image_path": "cf2ca2c1ee9e66d8cc139d9ab4818c3ad24e905d70ad8d497fd2b16dffeacf48.jpg" + } + ] + } + ], + "index": 11.5, + "virtual_lines": [ + { + "bbox": [ + 215, + 229, + 396, + 244.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 215, + 244.0, + 396, + 259.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 260, + 225, + 271 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 226, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 226, + 273 + ], + "score": 1.0, + "content": "We have the following result:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 258, + 226, + 273 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 273, + 493, + 285 + ], + "lines": [ + { + "bbox": [ + 106, + 271, + 495, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 495, + 286 + ], + "score": 1.0, + "content": "Theorem 1 (Generalized Fisher IPM). The Fisher distance and the optimal critic are as follows:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 106, + 271, + 495, + 286 + ] + }, + { + "type": "text", + "bbox": [ + 131, + 292, + 271, + 304 + ], + "lines": [ + { + "bbox": [ + 129, + 291, + 272, + 307 + ], + "spans": [ + { + "bbox": [ + 129, + 291, + 272, + 307 + ], + "score": 1.0, + "content": "1. The Fisher distance is given by:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 129, + 291, + 272, + 307 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 306, + 450, + 341 + ], + "lines": [ + { + "bbox": [ + 198, + 306, + 450, + 341 + ], + "spans": [ + { + "bbox": [ + 198, + 306, + 450, + 341 + ], + "score": 0.93, + "content": "\\mathcal { F } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\left\\| \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu } \\right\\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } = \\sqrt { \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mu } \\left( \\frac { \\mathbb { P } ( \\boldsymbol { x } ) - \\mathbb { Q } ( \\boldsymbol { x } ) } { \\mu ( \\boldsymbol { x } ) } \\right) ^ { 2 } } .", + "type": "interline_equation", + "image_path": "3db2e30f980cd8a9477d69935b4e5387d1876b47cb6bc9a7613e57d66273b858.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 198, + 306, + 450, + 317.6666666666667 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 198, + 317.6666666666667, + 450, + 329.33333333333337 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 198, + 329.33333333333337, + 450, + 341.00000000000006 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 129, + 348, + 380, + 360 + ], + "lines": [ + { + "bbox": [ + 129, + 347, + 380, + 362 + ], + "spans": [ + { + "bbox": [ + 129, + 347, + 192, + 362 + ], + "score": 1.0, + "content": "2. The optimal", + "type": "text" + }, + { + "bbox": [ + 193, + 349, + 204, + 360 + ], + "score": 0.88, + "content": "f _ { \\chi }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 347, + 325, + 362 + ], + "score": 1.0, + "content": "achieving the Fisher distance", + "type": "text" + }, + { + "bbox": [ + 325, + 348, + 366, + 361 + ], + "score": 0.93, + "content": "\\mathcal { F } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } )", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 347, + 380, + 362 + ], + "score": 1.0, + "content": "is:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 129, + 347, + 380, + 362 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 392, + 302, + 460 + ], + "lines": [ + { + "bbox": [ + 106, + 391, + 302, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 302, + 405 + ], + "score": 1.0, + "content": "Proof of Theorem 1. From Equation (2), the op-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 403, + 302, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 131, + 416 + ], + "score": 1.0, + "content": "timal", + "type": "text" + }, + { + "bbox": [ + 131, + 404, + 143, + 416 + ], + "score": 0.9, + "content": "f _ { \\chi }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 403, + 302, + 416 + ], + "score": 1.0, + "content": "belong to the intersection of the hy-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 415, + 303, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 215, + 428 + ], + "score": 1.0, + "content": "perplane that has normal", + "type": "text" + }, + { + "bbox": [ + 216, + 415, + 262, + 430 + ], + "score": 0.86, + "content": "n ~ = ~ \\textstyle \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 415, + 303, + 428 + ], + "score": 1.0, + "content": "and the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 428, + 303, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 229, + 444 + ], + "score": 1.0, + "content": "ball B2(X , µ), hence fχ =", + "type": "text" + }, + { + "bbox": [ + 196, + 429, + 266, + 446 + ], + "score": 0.9, + "content": "\\begin{array} { r } { f _ { \\chi } = \\frac { n ^ { \\cdot } } { \\| n \\| _ { \\mathcal { L } _ { 2 } ( \\chi , \\mu ) } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 428, + 303, + 442 + ], + "score": 1.0, + "content": "Hence", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 444, + 302, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 205, + 460 + ], + "score": 0.81, + "content": "\\mathcal { F } ( \\mathbb { P } , \\mathbb { Q } ) = \\| n \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } .", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 446, + 302, + 455 + ], + "score": 1.0, + "content": "□", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 391, + 303, + 460 + ] + }, + { + "type": "image", + "bbox": [ + 358, + 389, + 453, + 455 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 358, + 389, + 453, + 455 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 358, + 389, + 453, + 455 + ], + "spans": [ + { + "bbox": [ + 358, + 389, + 453, + 455 + ], + "score": 0.935, + "type": "image", + "image_path": "39105c967ba0488a4607950203039a45c6b2ef8745052cceb191e400af567c21.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 358, + 389, + 453, + 422.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 358, + 422.0, + 453, + 455.0 + ], + "spans": [], + "index": 26 + } + ] + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 505, + 519 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 334, + 486 + ], + "score": 1.0, + "content": "We see from Theorem 1 the role of the dominant measure", + "type": "text" + }, + { + "bbox": [ + 334, + 476, + 341, + 486 + ], + "score": 0.75, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 473, + 505, + 486 + ], + "score": 1.0, + "content": ": the optimal critic is defined with respect", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 486, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 505, + 497 + ], + "score": 1.0, + "content": "to this measure and the overall Fisher distance can be seen as an average weighted distance between", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 496, + 504, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 436, + 508 + ], + "score": 1.0, + "content": "probability density functions, where the average is taken on points sampled from", + "type": "text" + }, + { + "bbox": [ + 436, + 498, + 443, + 507 + ], + "score": 0.77, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 496, + 504, + 508 + ], + "score": 1.0, + "content": ". We give here", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 507, + 185, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 173, + 520 + ], + "score": 1.0, + "content": "some choices of", + "type": "text" + }, + { + "bbox": [ + 173, + 509, + 181, + 519 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 507, + 185, + 520 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 473, + 505, + 520 + ] + }, + { + "type": "list", + "bbox": [ + 129, + 525, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 130, + 525, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 130, + 525, + 158, + 538 + ], + "score": 1.0, + "content": "1. For", + "type": "text" + }, + { + "bbox": [ + 159, + 525, + 217, + 539 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mu = \\frac 1 2 ( { \\mathbb P } + { \\mathbb Q } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 525, + 505, + 538 + ], + "score": 1.0, + "content": ", we obtain the symmetric chi-squared distance as defined in (Mroueh &", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 536, + 197, + 548 + ], + "spans": [ + { + "bbox": [ + 141, + 536, + 197, + 548 + ], + "score": 1.0, + "content": "Sercu, 2017).", + "type": "text" + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 550, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 128, + 550, + 142, + 564 + ], + "score": 1.0, + "content": "2.", + "type": "text" + }, + { + "bbox": [ + 142, + 552, + 162, + 563 + ], + "score": 0.81, + "content": "\\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 550, + 437, + 564 + ], + "score": 1.0, + "content": ", the implicit distribution defined by the interpolation lines between", + "type": "text" + }, + { + "bbox": [ + 437, + 552, + 449, + 562 + ], + "score": 0.89, + "content": "\\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 550, + 468, + 564 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 468, + 551, + 482, + 563 + ], + "score": 0.89, + "content": "\\mathbb { Q } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 550, + 505, + 564 + ], + "score": 1.0, + "content": "as in", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 562, + 238, + 574 + ], + "spans": [ + { + "bbox": [ + 142, + 562, + 238, + 574 + ], + "score": 1.0, + "content": "(Gulrajani et al., 2017).", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 575, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 128, + 575, + 168, + 589 + ], + "score": 1.0, + "content": "3. When", + "type": "text" + }, + { + "bbox": [ + 169, + 578, + 176, + 588 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 575, + 252, + 589 + ], + "score": 1.0, + "content": "does not dominate", + "type": "text" + }, + { + "bbox": [ + 253, + 577, + 260, + 586 + ], + "score": 0.77, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 575, + 281, + 589 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 281, + 577, + 290, + 587 + ], + "score": 0.83, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 575, + 505, + 589 + ], + "score": 1.0, + "content": ", we obtain a non symmetric divergence. For example", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 139, + 586, + 507, + 606 + ], + "spans": [ + { + "bbox": [ + 139, + 588, + 156, + 606 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 157, + 590, + 184, + 603 + ], + "score": 0.87, + "content": "\\mu = \\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 588, + 187, + 606 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 187, + 588, + 318, + 605 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\mathcal { F } _ { \\mathbb { P } } ^ { 2 } ( \\mathbb { P } , \\mathbb { Q } ) = \\int _ { \\mathcal { X } } \\frac { ( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) ) ^ { 2 } } { \\mathbb { P } ( x ) } d x } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 586, + 507, + 606 + ], + "score": 1.0, + "content": "(P(x)−Q(x))2P(x) dx. We see here that for this particular choice we", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 142, + 602, + 267, + 617 + ], + "spans": [ + { + "bbox": [ + 142, + 602, + 267, + 617 + ], + "score": 1.0, + "content": "obtain the Pearson divergence.", + "type": "text" + } + ], + "index": 37, + "is_list_end_line": true + } + ], + "index": 34, + "bbox_fs": [ + 128, + 525, + 507, + 617 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 630, + 203, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 628, + 204, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 204, + 645 + ], + "score": 1.0, + "content": "4 SOBOLEV IPM", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 666 + ], + "score": 1.0, + "content": "In this Section, we introduce the Sobolev IPM. In a nutshell, the Sobolev IPM constrains the critic", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "function to belong to a ball in the restricted Sobolev Space. In other words we constrain the norm", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 222, + 690 + ], + "score": 1.0, + "content": "of the gradient of the critic", + "type": "text" + }, + { + "bbox": [ + 222, + 677, + 256, + 689 + ], + "score": 0.92, + "content": "\\nabla _ { x } f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 676, + 506, + 690 + ], + "score": 1.0, + "content": ". We will show that by moving from a Lebesgue constraint", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "as in Fisher IPM to a Sobolev constraint as in Sobolev IPM, the metric changes from a joint PDF", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "matching to weighted (ccordinate-wise) conditional CDFs matching. The intrinsic conditioning built", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "in to the Sobolev IPM and the comparison of cumulative distributions makes Sobolev IPM suitable", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 245, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 245, + 734 + ], + "score": 1.0, + "content": "for comparing discrete sequences.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42, + "bbox_fs": [ + 104, + 655, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 457, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 458, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 458, + 94 + ], + "score": 1.0, + "content": "4.1 DEFINITION AND EXPRESSION OF SOBOLEV IPM IN TERMS OF COORDINATE", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 130, + 93, + 222, + 104 + ], + "spans": [ + { + "bbox": [ + 130, + 93, + 222, + 104 + ], + "score": 1.0, + "content": "CONDITIONAL CDFS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 104, + 113, + 504, + 137 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 504, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 493, + 126 + ], + "score": 1.0, + "content": "We will start by recalling some definitions on Sobolev Spaces. We assume in the following that", + "type": "text" + }, + { + "bbox": [ + 494, + 114, + 504, + 124 + ], + "score": 0.8, + "content": "\\mathcal { X }", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 123, + 384, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 329, + 139 + ], + "score": 1.0, + "content": "is compact and consider functions in the Sobolev space", + "type": "text" + }, + { + "bbox": [ + 329, + 124, + 379, + 137 + ], + "score": 0.93, + "content": "\\mathring { W } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 123, + 384, + 139 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 140, + 430, + 168 + ], + "lines": [ + { + "bbox": [ + 180, + 140, + 430, + 168 + ], + "spans": [ + { + "bbox": [ + 180, + 140, + 430, + 168 + ], + "score": 0.94, + "content": "W ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) = \\left\\{ f : \\mathcal { X } \\to \\mathbb { R } , \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) \\right. ^ { 2 } \\mu ( x ) d x < \\infty \\right\\} ,", + "type": "interline_equation", + "image_path": "4dd3c4c9510738e81204ba0d088fe7d352e34da54909b8462ff90e72252d37bb.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 180, + 140, + 430, + 168 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 171, + 504, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 169, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 259, + 185 + ], + "score": 1.0, + "content": "We restrict ourselves to functions in", + "type": "text" + }, + { + "bbox": [ + 259, + 171, + 309, + 183 + ], + "score": 0.93, + "content": "W ^ { 1 , 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 169, + 505, + 185 + ], + "score": 1.0, + "content": "vanishing at the boundary, and note this space", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 181, + 251, + 198 + ], + "spans": [ + { + "bbox": [ + 107, + 182, + 156, + 197 + ], + "score": 0.92, + "content": "W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 181, + 251, + 198 + ], + "score": 1.0, + "content": ". Note that in this case:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 199, + 393, + 234 + ], + "lines": [ + { + "bbox": [ + 219, + 199, + 393, + 234 + ], + "spans": [ + { + "bbox": [ + 219, + 199, + 393, + 234 + ], + "score": 0.94, + "content": "\\| f \\| _ { W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) } = \\sqrt { \\int _ { \\mathcal { X } } \\| \\nabla _ { x } f ( x ) \\| ^ { 2 } \\mu ( x ) d x }", + "type": "interline_equation", + "image_path": "2214e21f4eadc9152ee5680c70949b5c27ead062efe29705cb6cd7ad541fef3b.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 219, + 199, + 393, + 216.5 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 219, + 216.5, + 393, + 234.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 503, + 251 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 355, + 252 + ], + "score": 1.0, + "content": "defines a semi-norm. We can similarly define a dot product in", + "type": "text" + }, + { + "bbox": [ + 355, + 237, + 405, + 251 + ], + "score": 0.93, + "content": "W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 236, + 423, + 252 + ], + "score": 1.0, + "content": ", for", + "type": "text" + }, + { + "bbox": [ + 423, + 236, + 500, + 251 + ], + "score": 0.93, + "content": "f , g \\in W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 236, + 505, + 252 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 253, + 412, + 280 + ], + "lines": [ + { + "bbox": [ + 199, + 253, + 412, + 280 + ], + "spans": [ + { + "bbox": [ + 199, + 253, + 412, + 280 + ], + "score": 0.92, + "content": "\\langle f , g \\rangle _ { W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) } = \\int _ { \\mathcal { X } } \\langle \\nabla _ { x } f ( x ) , \\nabla _ { x } g ( x ) \\rangle _ { \\mathbb { R } ^ { d } } \\mu ( x ) d x .", + "type": "interline_equation", + "image_path": "519d221b59a2972c2c722e9abe4f0070a191217e27f4769d20b3d3ecb4b62046.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 199, + 253, + 412, + 280 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 288, + 504, + 310 + ], + "lines": [ + { + "bbox": [ + 105, + 287, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 302 + ], + "score": 1.0, + "content": "Hence we define the following Sobolev IPM, by restricting the critic of the mean discrepancy to the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 299, + 183, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 183, + 311 + ], + "score": 1.0, + "content": "Sobolev unit ball :", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 177, + 312, + 434, + 344 + ], + "lines": [ + { + "bbox": [ + 177, + 312, + 434, + 344 + ], + "spans": [ + { + "bbox": [ + 177, + 312, + 434, + 344 + ], + "score": 0.94, + "content": "\\mathcal { S } _ { \\boldsymbol { \\mu } } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { \\substack { f \\in W _ { 0 } ^ { 1 , 2 } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\boldsymbol { \\mu } ) } \\leq 1 } } \\bigg \\{ \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mathbb { P } } f ( \\boldsymbol { x } ) - \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mathbb { Q } } f ( \\boldsymbol { x } ) \\bigg \\} .", + "type": "interline_equation", + "image_path": "2164ff51845e7b061208c655341d466218cfe9d7307e1638f2149974e75927b1.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 177, + 312, + 434, + 322.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 177, + 322.6666666666667, + 434, + 333.33333333333337 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 177, + 333.33333333333337, + 434, + 344.00000000000006 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 347, + 506, + 381 + ], + "lines": [ + { + "bbox": [ + 105, + 346, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 506, + 360 + ], + "score": 1.0, + "content": "When compared to the Wasserstein distance, the Sobolev IPM given in Equation (3) uses a data", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 358, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 276, + 370 + ], + "score": 1.0, + "content": "dependent gradient constraint (depends on", + "type": "text" + }, + { + "bbox": [ + 276, + 360, + 284, + 370 + ], + "score": 0.77, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 358, + 506, + 370 + ], + "score": 1.0, + "content": ") rather than a data independent Lipchitz constraint. Let", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 369, + 451, + 381 + ], + "spans": [ + { + "bbox": [ + 107, + 370, + 119, + 380 + ], + "score": 0.87, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 369, + 137, + 381 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 137, + 369, + 151, + 381 + ], + "score": 0.89, + "content": "F _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 369, + 323, + 381 + ], + "score": 1.0, + "content": "be the cumulative distribution functions of", + "type": "text" + }, + { + "bbox": [ + 323, + 370, + 331, + 379 + ], + "score": 0.83, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 369, + 348, + 381 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 349, + 369, + 358, + 380 + ], + "score": 0.86, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 369, + 451, + 381 + ], + "score": 1.0, + "content": "respectively. We have:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 249, + 384, + 361, + 411 + ], + "lines": [ + { + "bbox": [ + 249, + 384, + 361, + 411 + ], + "spans": [ + { + "bbox": [ + 249, + 384, + 361, + 411 + ], + "score": 0.94, + "content": "\\mathbb { P } ( x ) = \\frac { \\partial ^ { d } } { \\partial x _ { 1 } \\hdots \\partial x _ { d } } F _ { \\mathbb { P } } ( x ) ,", + "type": "interline_equation", + "image_path": "12e013d292fb43ace5cb893d767b9deaa3a5d0371cc443ca3e7ec2fd7bab3c03.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 249, + 384, + 361, + 411 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 164, + 425 + ], + "lines": [ + { + "bbox": [ + 106, + 413, + 164, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 164, + 426 + ], + "score": 1.0, + "content": "and we define", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 421, + 412, + 450 + ], + "lines": [ + { + "bbox": [ + 198, + 421, + 412, + 450 + ], + "spans": [ + { + "bbox": [ + 198, + 421, + 412, + 450 + ], + "score": 0.94, + "content": "D ^ { - i } = \\frac { \\partial ^ { d - 1 } } { \\partial x _ { 1 } \\dots \\partial x _ { i - 1 } \\partial x _ { i + 1 } \\dots \\partial x _ { d } } , \\mathrm { f o r } i = 1 \\dots d .", + "type": "interline_equation", + "image_path": "743b961821257fa0fa92772b952b707d1896db052f5fae4f4bb446ccb49fcefd.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 198, + 421, + 412, + 435.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 198, + 435.5, + 412, + 450.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 457, + 427, + 470 + ], + "lines": [ + { + "bbox": [ + 107, + 455, + 424, + 473 + ], + "spans": [ + { + "bbox": [ + 107, + 457, + 126, + 468 + ], + "score": 0.87, + "content": "D ^ { - i }", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 455, + 183, + 473 + ], + "score": 1.0, + "content": "computes the", + "type": "text" + }, + { + "bbox": [ + 183, + 457, + 213, + 470 + ], + "score": 0.91, + "content": "( d - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 455, + 419, + 473 + ], + "score": 1.0, + "content": "high-order partial derivative excluding the variable", + "type": "text" + }, + { + "bbox": [ + 420, + 459, + 424, + 468 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 108, + 484, + 504, + 508 + ], + "lines": [ + { + "bbox": [ + 106, + 485, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 505, + 498 + ], + "score": 1.0, + "content": "Our main result is presented in Theorem 2. Additional theoretical results are given in Appendix A.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 496, + 253, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 253, + 509 + ], + "score": 1.0, + "content": "All proofs are given in Appendix B.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 510, + 503, + 534 + ], + "lines": [ + { + "bbox": [ + 107, + 509, + 504, + 523 + ], + "spans": [ + { + "bbox": [ + 107, + 509, + 271, + 523 + ], + "score": 1.0, + "content": "Theorem 2 (Sobolev IPM). Assume that", + "type": "text" + }, + { + "bbox": [ + 272, + 511, + 284, + 522 + ], + "score": 0.88, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 509, + 305, + 523 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 306, + 511, + 319, + 523 + ], + "score": 0.89, + "content": "F _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 509, + 504, + 523 + ], + "score": 1.0, + "content": "and its d derivatives exist and are continuous:", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 521, + 347, + 536 + ], + "spans": [ + { + "bbox": [ + 107, + 523, + 119, + 534 + ], + "score": 0.86, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 521, + 138, + 536 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 138, + 522, + 192, + 535 + ], + "score": 0.93, + "content": "F _ { \\mathbb { Q } } \\in C ^ { d } ( \\mathcal { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 521, + 324, + 536 + ], + "score": 1.0, + "content": ". Define the differential operator", + "type": "text" + }, + { + "bbox": [ + 324, + 522, + 340, + 532 + ], + "score": 0.89, + "content": "D ^ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 521, + 347, + 536 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "interline_equation", + "bbox": [ + 256, + 538, + 353, + 552 + ], + "lines": [ + { + "bbox": [ + 256, + 538, + 353, + 552 + ], + "spans": [ + { + "bbox": [ + 256, + 538, + 353, + 552 + ], + "score": 0.91, + "content": "D ^ { - } = ( D ^ { - 1 } , \\ldots D ^ { - d } ) .", + "type": "interline_equation", + "image_path": "3c7fdaadd09bf295ec830d3bc5cb7007418d6ca293309fe91d976278733e575d.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 256, + 538, + 353, + 552 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 555, + 418, + 568 + ], + "lines": [ + { + "bbox": [ + 123, + 555, + 418, + 568 + ], + "spans": [ + { + "bbox": [ + 123, + 555, + 418, + 568 + ], + "score": 0.35, + "content": "x = ( x _ { 1 } , \\ldots x _ { i - 1 } , x _ { i } , x _ { i + 1 } , \\ldots x _ { d } ) , l e t x ^ { - i } = ( x _ { 1 } , \\ldots x _ { i - 1 } , x _ { i + 1 } , \\ldots x _ { d } ) .", + "type": "interline_equation", + "image_path": "63d9ab9f3fb9fe1c2a6a7b82d836d425d046d82439e3a55bea0eb26f1ab45225.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 123, + 555, + 418, + 568 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 572, + 409, + 585 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 409, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 409, + 587 + ], + "score": 1.0, + "content": "The Sobolev IPM given in Equation (3) has the following equivalent forms:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 130, + 592, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 129, + 592, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 129, + 592, + 506, + 606 + ], + "score": 1.0, + "content": "1. Sobolev IPM as comparison of high order partial derivatives of CDFs. The Sobolev IPM", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 603, + 238, + 617 + ], + "spans": [ + { + "bbox": [ + 141, + 603, + 238, + 617 + ], + "score": 1.0, + "content": "has the following form:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 619, + 432, + 653 + ], + "lines": [ + { + "bbox": [ + 195, + 619, + 432, + 653 + ], + "spans": [ + { + "bbox": [ + 195, + 619, + 432, + 653 + ], + "score": 0.94, + "content": "S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\frac { 1 } { d } \\sqrt { \\int _ { \\mathcal { X } } \\frac { \\sum _ { i = 1 } ^ { d } ( D ^ { - i } F _ { \\mathbb { P } } ( x ) - D ^ { - i } F _ { \\mathbb { Q } } ( x ) ) ^ { 2 } } { \\mu ( x ) } d x } .", + "type": "interline_equation", + "image_path": "1b1c47f69d225b36578c4457fe34066d17c0087bbe99bfe90899a175ce3b816c.jpg" + } + ] + } + ], + "index": 33.5, + "virtual_lines": [ + { + "bbox": [ + 195, + 619, + 432, + 636.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 195, + 636.0, + 432, + 653.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 129, + 661, + 505, + 684 + ], + "lines": [ + { + "bbox": [ + 129, + 661, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 129, + 661, + 505, + 674 + ], + "score": 1.0, + "content": "2. Sobolev IPM as comparison of weighted (coordinate-wise) conditional CDFs. The Sobolev", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 141, + 671, + 356, + 685 + ], + "spans": [ + { + "bbox": [ + 141, + 671, + 356, + 685 + ], + "score": 1.0, + "content": "IPM can be written in the following equivalent form:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 689, + 533, + 723 + ], + "lines": [ + { + "bbox": [ + 142, + 689, + 533, + 723 + ], + "spans": [ + { + "bbox": [ + 142, + 689, + 533, + 723 + ], + "score": 0.94, + "content": "S _ { \\mu } ^ { 2 } ( { \\mathbb { P } } , { \\mathbb { Q } } ) = \\frac { 1 } { d ^ { 2 } } { \\mathbb { E } } _ { x \\sim \\mu } \\sum _ { i = 1 } ^ { d } \\left( \\frac { { \\mathbb { P } } _ { X ^ { - i } } ( x ^ { - i } ) F _ { { \\mathbb { P } } _ { [ X _ { i } ] X ^ { - i } = x ^ { - i } ] } } ( x _ { i } ) - { \\mathbb { Q } } _ { X ^ { - i } } ( x ^ { - i } ) F _ { { \\mathbb { Q } } _ { [ X _ { i } ] X ^ { - i } = x ^ { - i } ] } } ( x _ { i } ) } { \\mu ( x ) } \\right) ^ { 2 } .", + "type": "interline_equation", + "image_path": "2a5b2bc7e573d2b9c2a0fd824ac10bb207b79aeeac1c362884b6ce9aaa3aa8a2.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 142, + 689, + 533, + 700.3333333333334 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 142, + 700.3333333333334, + 533, + 711.6666666666667 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 142, + 711.6666666666667, + 533, + 723.0000000000001 + ], + "spans": [], + "index": 39 + } + ] + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 457, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 458, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 458, + 94 + ], + "score": 1.0, + "content": "4.1 DEFINITION AND EXPRESSION OF SOBOLEV IPM IN TERMS OF COORDINATE", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 130, + 93, + 222, + 104 + ], + "spans": [ + { + "bbox": [ + 130, + 93, + 222, + 104 + ], + "score": 1.0, + "content": "CONDITIONAL CDFS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 104, + 113, + 504, + 137 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 504, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 493, + 126 + ], + "score": 1.0, + "content": "We will start by recalling some definitions on Sobolev Spaces. We assume in the following that", + "type": "text" + }, + { + "bbox": [ + 494, + 114, + 504, + 124 + ], + "score": 0.8, + "content": "\\mathcal { X }", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 123, + 384, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 329, + 139 + ], + "score": 1.0, + "content": "is compact and consider functions in the Sobolev space", + "type": "text" + }, + { + "bbox": [ + 329, + 124, + 379, + 137 + ], + "score": 0.93, + "content": "\\mathring { W } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 123, + 384, + 139 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 113, + 504, + 139 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 140, + 430, + 168 + ], + "lines": [ + { + "bbox": [ + 180, + 140, + 430, + 168 + ], + "spans": [ + { + "bbox": [ + 180, + 140, + 430, + 168 + ], + "score": 0.94, + "content": "W ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) = \\left\\{ f : \\mathcal { X } \\to \\mathbb { R } , \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) \\right. ^ { 2 } \\mu ( x ) d x < \\infty \\right\\} ,", + "type": "interline_equation", + "image_path": "4dd3c4c9510738e81204ba0d088fe7d352e34da54909b8462ff90e72252d37bb.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 180, + 140, + 430, + 168 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 171, + 504, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 169, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 259, + 185 + ], + "score": 1.0, + "content": "We restrict ourselves to functions in", + "type": "text" + }, + { + "bbox": [ + 259, + 171, + 309, + 183 + ], + "score": 0.93, + "content": "W ^ { 1 , 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 169, + 505, + 185 + ], + "score": 1.0, + "content": "vanishing at the boundary, and note this space", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 181, + 251, + 198 + ], + "spans": [ + { + "bbox": [ + 107, + 182, + 156, + 197 + ], + "score": 0.92, + "content": "W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 181, + 251, + 198 + ], + "score": 1.0, + "content": ". Note that in this case:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 106, + 169, + 505, + 198 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 199, + 393, + 234 + ], + "lines": [ + { + "bbox": [ + 219, + 199, + 393, + 234 + ], + "spans": [ + { + "bbox": [ + 219, + 199, + 393, + 234 + ], + "score": 0.94, + "content": "\\| f \\| _ { W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) } = \\sqrt { \\int _ { \\mathcal { X } } \\| \\nabla _ { x } f ( x ) \\| ^ { 2 } \\mu ( x ) d x }", + "type": "interline_equation", + "image_path": "2214e21f4eadc9152ee5680c70949b5c27ead062efe29705cb6cd7ad541fef3b.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 219, + 199, + 393, + 216.5 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 219, + 216.5, + 393, + 234.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 503, + 251 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 355, + 252 + ], + "score": 1.0, + "content": "defines a semi-norm. We can similarly define a dot product in", + "type": "text" + }, + { + "bbox": [ + 355, + 237, + 405, + 251 + ], + "score": 0.93, + "content": "W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 236, + 423, + 252 + ], + "score": 1.0, + "content": ", for", + "type": "text" + }, + { + "bbox": [ + 423, + 236, + 500, + 251 + ], + "score": 0.93, + "content": "f , g \\in W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 236, + 505, + 252 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 236, + 505, + 252 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 253, + 412, + 280 + ], + "lines": [ + { + "bbox": [ + 199, + 253, + 412, + 280 + ], + "spans": [ + { + "bbox": [ + 199, + 253, + 412, + 280 + ], + "score": 0.92, + "content": "\\langle f , g \\rangle _ { W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) } = \\int _ { \\mathcal { X } } \\langle \\nabla _ { x } f ( x ) , \\nabla _ { x } g ( x ) \\rangle _ { \\mathbb { R } ^ { d } } \\mu ( x ) d x .", + "type": "interline_equation", + "image_path": "519d221b59a2972c2c722e9abe4f0070a191217e27f4769d20b3d3ecb4b62046.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 199, + 253, + 412, + 280 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 288, + 504, + 310 + ], + "lines": [ + { + "bbox": [ + 105, + 287, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 302 + ], + "score": 1.0, + "content": "Hence we define the following Sobolev IPM, by restricting the critic of the mean discrepancy to the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 299, + 183, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 183, + 311 + ], + "score": 1.0, + "content": "Sobolev unit ball :", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 287, + 505, + 311 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 177, + 312, + 434, + 344 + ], + "lines": [ + { + "bbox": [ + 177, + 312, + 434, + 344 + ], + "spans": [ + { + "bbox": [ + 177, + 312, + 434, + 344 + ], + "score": 0.94, + "content": "\\mathcal { S } _ { \\boldsymbol { \\mu } } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { \\substack { f \\in W _ { 0 } ^ { 1 , 2 } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\boldsymbol { \\mu } ) } \\leq 1 } } \\bigg \\{ \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mathbb { P } } f ( \\boldsymbol { x } ) - \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mathbb { Q } } f ( \\boldsymbol { x } ) \\bigg \\} .", + "type": "interline_equation", + "image_path": "2164ff51845e7b061208c655341d466218cfe9d7307e1638f2149974e75927b1.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 177, + 312, + 434, + 322.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 177, + 322.6666666666667, + 434, + 333.33333333333337 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 177, + 333.33333333333337, + 434, + 344.00000000000006 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 347, + 506, + 381 + ], + "lines": [ + { + "bbox": [ + 105, + 346, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 506, + 360 + ], + "score": 1.0, + "content": "When compared to the Wasserstein distance, the Sobolev IPM given in Equation (3) uses a data", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 358, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 276, + 370 + ], + "score": 1.0, + "content": "dependent gradient constraint (depends on", + "type": "text" + }, + { + "bbox": [ + 276, + 360, + 284, + 370 + ], + "score": 0.77, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 358, + 506, + 370 + ], + "score": 1.0, + "content": ") rather than a data independent Lipchitz constraint. Let", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 369, + 451, + 381 + ], + "spans": [ + { + "bbox": [ + 107, + 370, + 119, + 380 + ], + "score": 0.87, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 369, + 137, + 381 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 137, + 369, + 151, + 381 + ], + "score": 0.89, + "content": "F _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 369, + 323, + 381 + ], + "score": 1.0, + "content": "be the cumulative distribution functions of", + "type": "text" + }, + { + "bbox": [ + 323, + 370, + 331, + 379 + ], + "score": 0.83, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 369, + 348, + 381 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 349, + 369, + 358, + 380 + ], + "score": 0.86, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 369, + 451, + 381 + ], + "score": 1.0, + "content": "respectively. We have:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 346, + 506, + 381 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 249, + 384, + 361, + 411 + ], + "lines": [ + { + "bbox": [ + 249, + 384, + 361, + 411 + ], + "spans": [ + { + "bbox": [ + 249, + 384, + 361, + 411 + ], + "score": 0.94, + "content": "\\mathbb { P } ( x ) = \\frac { \\partial ^ { d } } { \\partial x _ { 1 } \\hdots \\partial x _ { d } } F _ { \\mathbb { P } } ( x ) ,", + "type": "interline_equation", + "image_path": "12e013d292fb43ace5cb893d767b9deaa3a5d0371cc443ca3e7ec2fd7bab3c03.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 249, + 384, + 361, + 411 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 164, + 425 + ], + "lines": [ + { + "bbox": [ + 106, + 413, + 164, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 164, + 426 + ], + "score": 1.0, + "content": "and we define", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 413, + 164, + 426 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 421, + 412, + 450 + ], + "lines": [ + { + "bbox": [ + 198, + 421, + 412, + 450 + ], + "spans": [ + { + "bbox": [ + 198, + 421, + 412, + 450 + ], + "score": 0.94, + "content": "D ^ { - i } = \\frac { \\partial ^ { d - 1 } } { \\partial x _ { 1 } \\dots \\partial x _ { i - 1 } \\partial x _ { i + 1 } \\dots \\partial x _ { d } } , \\mathrm { f o r } i = 1 \\dots d .", + "type": "interline_equation", + "image_path": "743b961821257fa0fa92772b952b707d1896db052f5fae4f4bb446ccb49fcefd.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 198, + 421, + 412, + 435.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 198, + 435.5, + 412, + 450.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 457, + 427, + 470 + ], + "lines": [ + { + "bbox": [ + 107, + 455, + 424, + 473 + ], + "spans": [ + { + "bbox": [ + 107, + 457, + 126, + 468 + ], + "score": 0.87, + "content": "D ^ { - i }", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 455, + 183, + 473 + ], + "score": 1.0, + "content": "computes the", + "type": "text" + }, + { + "bbox": [ + 183, + 457, + 213, + 470 + ], + "score": 0.91, + "content": "( d - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 455, + 419, + 473 + ], + "score": 1.0, + "content": "high-order partial derivative excluding the variable", + "type": "text" + }, + { + "bbox": [ + 420, + 459, + 424, + 468 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 107, + 455, + 424, + 473 + ] + }, + { + "type": "list", + "bbox": [ + 108, + 484, + 504, + 508 + ], + "lines": [ + { + "bbox": [ + 106, + 485, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 505, + 498 + ], + "score": 1.0, + "content": "Our main result is presented in Theorem 2. Additional theoretical results are given in Appendix A.", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 496, + 253, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 253, + 509 + ], + "score": 1.0, + "content": "All proofs are given in Appendix B.", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 24.5, + "bbox_fs": [ + 106, + 485, + 505, + 509 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 510, + 503, + 534 + ], + "lines": [ + { + "bbox": [ + 107, + 509, + 504, + 523 + ], + "spans": [ + { + "bbox": [ + 107, + 509, + 271, + 523 + ], + "score": 1.0, + "content": "Theorem 2 (Sobolev IPM). Assume that", + "type": "text" + }, + { + "bbox": [ + 272, + 511, + 284, + 522 + ], + "score": 0.88, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 509, + 305, + 523 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 306, + 511, + 319, + 523 + ], + "score": 0.89, + "content": "F _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 509, + 504, + 523 + ], + "score": 1.0, + "content": "and its d derivatives exist and are continuous:", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 521, + 347, + 536 + ], + "spans": [ + { + "bbox": [ + 107, + 523, + 119, + 534 + ], + "score": 0.86, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 521, + 138, + 536 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 138, + 522, + 192, + 535 + ], + "score": 0.93, + "content": "F _ { \\mathbb { Q } } \\in C ^ { d } ( \\mathcal { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 521, + 324, + 536 + ], + "score": 1.0, + "content": ". Define the differential operator", + "type": "text" + }, + { + "bbox": [ + 324, + 522, + 340, + 532 + ], + "score": 0.89, + "content": "D ^ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 521, + 347, + 536 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 107, + 509, + 504, + 536 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 256, + 538, + 353, + 552 + ], + "lines": [ + { + "bbox": [ + 256, + 538, + 353, + 552 + ], + "spans": [ + { + "bbox": [ + 256, + 538, + 353, + 552 + ], + "score": 0.91, + "content": "D ^ { - } = ( D ^ { - 1 } , \\ldots D ^ { - d } ) .", + "type": "interline_equation", + "image_path": "3c7fdaadd09bf295ec830d3bc5cb7007418d6ca293309fe91d976278733e575d.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 256, + 538, + 353, + 552 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 555, + 418, + 568 + ], + "lines": [ + { + "bbox": [ + 123, + 555, + 418, + 568 + ], + "spans": [ + { + "bbox": [ + 123, + 555, + 418, + 568 + ], + "score": 0.35, + "content": "x = ( x _ { 1 } , \\ldots x _ { i - 1 } , x _ { i } , x _ { i + 1 } , \\ldots x _ { d } ) , l e t x ^ { - i } = ( x _ { 1 } , \\ldots x _ { i - 1 } , x _ { i + 1 } , \\ldots x _ { d } ) .", + "type": "interline_equation", + "image_path": "63d9ab9f3fb9fe1c2a6a7b82d836d425d046d82439e3a55bea0eb26f1ab45225.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 123, + 555, + 418, + 568 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 572, + 409, + 585 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 409, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 409, + 587 + ], + "score": 1.0, + "content": "The Sobolev IPM given in Equation (3) has the following equivalent forms:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 572, + 409, + 587 + ] + }, + { + "type": "text", + "bbox": [ + 130, + 592, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 129, + 592, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 129, + 592, + 506, + 606 + ], + "score": 1.0, + "content": "1. Sobolev IPM as comparison of high order partial derivatives of CDFs. The Sobolev IPM", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 603, + 238, + 617 + ], + "spans": [ + { + "bbox": [ + 141, + 603, + 238, + 617 + ], + "score": 1.0, + "content": "has the following form:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 129, + 592, + 506, + 617 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 619, + 432, + 653 + ], + "lines": [ + { + "bbox": [ + 195, + 619, + 432, + 653 + ], + "spans": [ + { + "bbox": [ + 195, + 619, + 432, + 653 + ], + "score": 0.94, + "content": "S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\frac { 1 } { d } \\sqrt { \\int _ { \\mathcal { X } } \\frac { \\sum _ { i = 1 } ^ { d } ( D ^ { - i } F _ { \\mathbb { P } } ( x ) - D ^ { - i } F _ { \\mathbb { Q } } ( x ) ) ^ { 2 } } { \\mu ( x ) } d x } .", + "type": "interline_equation", + "image_path": "1b1c47f69d225b36578c4457fe34066d17c0087bbe99bfe90899a175ce3b816c.jpg" + } + ] + } + ], + "index": 33.5, + "virtual_lines": [ + { + "bbox": [ + 195, + 619, + 432, + 636.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 195, + 636.0, + 432, + 653.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 129, + 661, + 505, + 684 + ], + "lines": [ + { + "bbox": [ + 129, + 661, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 129, + 661, + 505, + 674 + ], + "score": 1.0, + "content": "2. Sobolev IPM as comparison of weighted (coordinate-wise) conditional CDFs. The Sobolev", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 141, + 671, + 356, + 685 + ], + "spans": [ + { + "bbox": [ + 141, + 671, + 356, + 685 + ], + "score": 1.0, + "content": "IPM can be written in the following equivalent form:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 129, + 661, + 505, + 685 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 689, + 533, + 723 + ], + "lines": [ + { + "bbox": [ + 142, + 689, + 533, + 723 + ], + "spans": [ + { + "bbox": [ + 142, + 689, + 533, + 723 + ], + "score": 0.94, + "content": "S _ { \\mu } ^ { 2 } ( { \\mathbb { P } } , { \\mathbb { Q } } ) = \\frac { 1 } { d ^ { 2 } } { \\mathbb { E } } _ { x \\sim \\mu } \\sum _ { i = 1 } ^ { d } \\left( \\frac { { \\mathbb { P } } _ { X ^ { - i } } ( x ^ { - i } ) F _ { { \\mathbb { P } } _ { [ X _ { i } ] X ^ { - i } = x ^ { - i } ] } } ( x _ { i } ) - { \\mathbb { Q } } _ { X ^ { - i } } ( x ^ { - i } ) F _ { { \\mathbb { Q } } _ { [ X _ { i } ] X ^ { - i } = x ^ { - i } ] } } ( x _ { i } ) } { \\mu ( x ) } \\right) ^ { 2 } .", + "type": "interline_equation", + "image_path": "2a5b2bc7e573d2b9c2a0fd824ac10bb207b79aeeac1c362884b6ce9aaa3aa8a2.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 142, + 689, + 533, + 700.3333333333334 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 142, + 700.3333333333334, + 533, + 711.6666666666667 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 142, + 711.6666666666667, + 533, + 723.0000000000001 + ], + "spans": [], + "index": 39 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 129, + 82, + 353, + 95 + ], + "lines": [ + { + "bbox": [ + 128, + 81, + 354, + 96 + ], + "spans": [ + { + "bbox": [ + 128, + 81, + 216, + 96 + ], + "score": 1.0, + "content": "3. The optimal critic", + "type": "text" + }, + { + "bbox": [ + 216, + 83, + 228, + 94 + ], + "score": 0.88, + "content": "f ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 81, + 354, + 96 + ], + "score": 1.0, + "content": "satisfies the following identity:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 103, + 460, + 131 + ], + "lines": [ + { + "bbox": [ + 186, + 103, + 460, + 131 + ], + "spans": [ + { + "bbox": [ + 186, + 103, + 460, + 131 + ], + "score": 0.93, + "content": "\\nabla _ { x } f ^ { * } ( x ) = \\frac { 1 } { d S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } \\frac { D ^ { - } F _ { \\mathbb { Q } } ( x ) - D ^ { - } F _ { \\mathbb { P } } ( x ) } { \\mu ( x ) } , \\mu - a l m o s t s u r e l y .", + "type": "interline_equation", + "image_path": "297f36e6e4f5011107b075eb04b65fc03f0bdbf7bb22ec038cd57b8be573697b.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 186, + 103, + 460, + 112.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 186, + 112.33333333333333, + 460, + 121.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 186, + 121.66666666666666, + 460, + 131.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 152, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 101, + 149, + 507, + 173 + ], + "spans": [ + { + "bbox": [ + 101, + 149, + 383, + 173 + ], + "score": 1.0, + "content": "Sobolev IPM Approximation. Learning in the whole Sobolev space", + "type": "text" + }, + { + "bbox": [ + 383, + 152, + 406, + 166 + ], + "score": 0.92, + "content": "W _ { 0 } ^ { 1 , 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 149, + 507, + 173 + ], + "score": 1.0, + "content": "is challenging hence we", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 164, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 333, + 178 + ], + "score": 1.0, + "content": "need to restrict our function class to a hypothesis class", + "type": "text" + }, + { + "bbox": [ + 347, + 164, + 506, + 178 + ], + "score": 1.0, + "content": ", such as neural networks. We assume", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 245, + 189 + ], + "score": 1.0, + "content": "in the following that functions in", + "type": "text" + }, + { + "bbox": [ + 245, + 176, + 259, + 186 + ], + "score": 0.86, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 176, + 372, + 189 + ], + "score": 1.0, + "content": "vanish on the boundary of", + "type": "text" + }, + { + "bbox": [ + 372, + 176, + 383, + 186 + ], + "score": 0.84, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 176, + 505, + 189 + ], + "score": 1.0, + "content": ", and restrict the optimization", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 186, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 194, + 200 + ], + "score": 1.0, + "content": "to the function space", + "type": "text" + }, + { + "bbox": [ + 194, + 187, + 208, + 197 + ], + "score": 0.84, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 186, + 213, + 200 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 214, + 187, + 228, + 197 + ], + "score": 0.81, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 186, + 506, + 200 + ], + "score": 1.0, + "content": "can be a Reproducing Kernel Hilbert Space as in the MMD case or", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 197, + 434, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 415, + 210 + ], + "score": 1.0, + "content": "parametrized by a neural network. Define the Sobolev IPM approximation in", + "type": "text" + }, + { + "bbox": [ + 416, + 198, + 429, + 208 + ], + "score": 0.86, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 197, + 434, + 210 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 218, + 425, + 248 + ], + "lines": [ + { + "bbox": [ + 185, + 218, + 425, + 248 + ], + "spans": [ + { + "bbox": [ + 185, + 218, + 425, + 248 + ], + "score": 0.94, + "content": "\\mathcal { S } _ { \\mathcal { H } , \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { \\substack { f \\in \\mathcal { H } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } } \\leq 1 } } \\left\\{ \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) \\right\\}", + "type": "interline_equation", + "image_path": "971ea3456676bcb111ab4fbee39726afebd8782ade48f246922be856df9f0f05.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 218, + 425, + 233.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 185, + 233.0, + 425, + 248.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 257, + 505, + 303 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 384, + 271 + ], + "score": 1.0, + "content": "The following Lemma shows that the Sobolev IPM approximation in", + "type": "text" + }, + { + "bbox": [ + 384, + 259, + 398, + 268 + ], + "score": 0.86, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "is proportional to Sobolev", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "score": 1.0, + "content": "IPM. The tightness of the approximation of the Sobolev IPM is governed by the tightness of the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 294, + 293 + ], + "score": 1.0, + "content": "approximation of the optimal Sobolev Critic", + "type": "text" + }, + { + "bbox": [ + 294, + 280, + 306, + 292 + ], + "score": 0.88, + "content": "f ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 280, + 320, + 293 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 320, + 280, + 334, + 290 + ], + "score": 0.88, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 280, + 505, + 293 + ], + "score": 1.0, + "content": ". This approximation is measured in the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 290, + 293, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 293, + 304 + ], + "score": 1.0, + "content": "Sobolev sense, using the Sobolev dot product.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 105, + 318, + 505, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 388, + 331 + ], + "score": 1.0, + "content": "Lemma 1 (Sobolev IPM Approximation in a Hypothesis Class). Let", + "type": "text" + }, + { + "bbox": [ + 388, + 319, + 402, + 329 + ], + "score": 0.74, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 318, + 505, + 331 + ], + "score": 1.0, + "content": "be a function space with", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 102, + 327, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 102, + 327, + 492, + 347 + ], + "score": 1.0, + "content": "functions vanishing at the boundary. For any f ∈ H and for f ∗ the optimal critic in W 1,20 ,", + "type": "text" + }, + { + "bbox": [ + 479, + 332, + 505, + 343 + ], + "score": 1.0, + "content": "we", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 342, + 132, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 132, + 356 + ], + "score": 1.0, + "content": "have:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 360, + 469, + 393 + ], + "lines": [ + { + "bbox": [ + 142, + 360, + 469, + 393 + ], + "spans": [ + { + "bbox": [ + 142, + 360, + 469, + 393 + ], + "score": 0.93, + "content": "\\mathcal { S } _ { \\mathcal { H } , \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\mathcal { S } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\operatorname* { s u p } _ { \\substack { f \\in \\mathcal { H } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } ( \\chi , \\mu ) } \\leq 1 } } \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. _ { \\mathbb { R } ^ { d } } \\mu ( x ) d x .", + "type": "interline_equation", + "image_path": "854756f3154ceda8fb70a3a4edd5a69c5e21b3651ce7d7acdb0f36d3e2488644.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 142, + 360, + 469, + 371.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 142, + 371.0, + 469, + 382.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 142, + 382.0, + 469, + 393.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 403, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 402, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 460, + 416 + ], + "score": 1.0, + "content": "Note that this Lemma means that the Sobolev IPM is well approximated if the space", + "type": "text" + }, + { + "bbox": [ + 460, + 404, + 474, + 414 + ], + "score": 0.83, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 402, + 505, + 416 + ], + "score": 1.0, + "content": "has an", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 415, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 267, + 427 + ], + "score": 1.0, + "content": "enough representation power to express", + "type": "text" + }, + { + "bbox": [ + 267, + 415, + 305, + 427 + ], + "score": 0.92, + "content": "\\nabla _ { x } f ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 415, + 505, + 427 + ], + "score": 1.0, + "content": ". This is parallel to the Fisher IPM approximation", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "(Mroueh & Sercu, 2017) where it is shown that the Fisher IPM approximation error is proportional", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "to the critic approximation in the Lebesgue sense. Having in mind that the gradient of the critic is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 447, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 461 + ], + "score": 1.0, + "content": "the information that is passed on to the generator, we see that this convergence in the Sobolev sense", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 459, + 360, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 360, + 472 + ], + "score": 1.0, + "content": "to the optimal critic is an important property for GAN training.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 105, + 475, + 504, + 498 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "Relation to Fokker-Planck Diffusion. We show in Appendix A that the optimal Sobolev critic is", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 486, + 407, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 407, + 499 + ], + "score": 1.0, + "content": "the solution of the following elliptic PDE (with zero boundary conditions):", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 506, + 375, + 534 + ], + "lines": [ + { + "bbox": [ + 236, + 506, + 375, + 534 + ], + "spans": [ + { + "bbox": [ + 236, + 506, + 375, + 534 + ], + "score": 0.95, + "content": "\\frac { \\mathbb { P } - \\mathbb { Q } } { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } = - \\mathrm { d i v } ( \\mu ( x ) \\nabla _ { x } f ( x ) ) .", + "type": "interline_equation", + "image_path": "130523609727ae305fca8ff6534076a07e4f5637a5d4dc5e460b99ebf3723f21.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 236, + 506, + 375, + 520.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 236, + 520.0, + 375, + 534.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 542, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 542, + 504, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 504, + 555 + ], + "score": 1.0, + "content": "We further link the elliptic PDE given in Equation (8) and the Fokker-Planck diffusion. As we illus-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 553, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 566 + ], + "score": 1.0, + "content": "trate in Figure 2(b) the gradient of the critic defines a transportation plan for moving the distribution", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 565, + 182, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 151, + 577 + ], + "score": 1.0, + "content": "mass from", + "type": "text" + }, + { + "bbox": [ + 151, + 565, + 160, + 576 + ], + "score": 0.86, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 565, + 171, + 577 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 172, + 565, + 178, + 575 + ], + "score": 0.78, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 565, + 182, + 577 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 592, + 413, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 591, + 414, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 414, + 606 + ], + "score": 1.0, + "content": "Discussion of Theorem 2. We make the following remarks on Theorem 2:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 108, + 615, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 108, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 108, + 615, + 358, + 628 + ], + "score": 1.0, + "content": "1. From Theorem 2, we see that the Sobolev IPM compares", + "type": "text" + }, + { + "bbox": [ + 358, + 617, + 365, + 626 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "higher order partial derivatives of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 119, + 625, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 119, + 625, + 238, + 641 + ], + "score": 1.0, + "content": "the cumulative distributions", + "type": "text" + }, + { + "bbox": [ + 238, + 627, + 251, + 638 + ], + "score": 0.89, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 625, + 271, + 641 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 272, + 627, + 285, + 639 + ], + "score": 0.89, + "content": "F _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 625, + 505, + 641 + ], + "score": 1.0, + "content": ", while Fisher IPM compares the probability density", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 119, + 636, + 164, + 650 + ], + "spans": [ + { + "bbox": [ + 119, + 636, + 164, + 650 + ], + "score": 1.0, + "content": "functions.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 108, + 656, + 342, + 669 + ], + "lines": [ + { + "bbox": [ + 107, + 656, + 342, + 669 + ], + "spans": [ + { + "bbox": [ + 107, + 656, + 214, + 669 + ], + "score": 1.0, + "content": "2. The dominant measure", + "type": "text" + }, + { + "bbox": [ + 214, + 659, + 222, + 668 + ], + "score": 0.82, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 656, + 342, + 669 + ], + "score": 1.0, + "content": "plays a similar role to Fisher:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 677, + 428, + 712 + ], + "lines": [ + { + "bbox": [ + 196, + 677, + 428, + 712 + ], + "spans": [ + { + "bbox": [ + 196, + 677, + 428, + 712 + ], + "score": 0.94, + "content": "S _ { \\mu } ^ { 2 } ( { \\mathbb { P } } , \\mathbb { Q } ) = \\frac 1 { d ^ { 2 } } \\sum _ { i = 1 } ^ { d } { \\mathbb { E } } _ { x \\sim \\mu } \\left( \\frac { D ^ { - i } F _ { \\mathbb { P } } ( x ) - D ^ { - i } F _ { \\mathbb { Q } } ( x ) } { \\mu ( x ) } \\right) ^ { 2 } ,", + "type": "interline_equation", + "image_path": "74e0ea07b0892100bb72453fb981347f5d3b84bb4cb932af144d8ebd56ed9107.jpg" + } + ] + } + ], + "index": 39.5, + "virtual_lines": [ + { + "bbox": [ + 196, + 677, + 428, + 694.5 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 196, + 694.5, + 428, + 712.0 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 120, + 720, + 401, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 718, + 402, + 735 + ], + "spans": [ + { + "bbox": [ + 119, + 718, + 390, + 735 + ], + "score": 1.0, + "content": "the average distance is defined with respect to points sampled from", + "type": "text" + }, + { + "bbox": [ + 391, + 724, + 397, + 732 + ], + "score": 0.77, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 718, + 402, + 735 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + } + ], + "page_idx": 6, + "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": [ + 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": [ + 129, + 82, + 353, + 95 + ], + "lines": [ + { + "bbox": [ + 128, + 81, + 354, + 96 + ], + "spans": [ + { + "bbox": [ + 128, + 81, + 216, + 96 + ], + "score": 1.0, + "content": "3. The optimal critic", + "type": "text" + }, + { + "bbox": [ + 216, + 83, + 228, + 94 + ], + "score": 0.88, + "content": "f ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 81, + 354, + 96 + ], + "score": 1.0, + "content": "satisfies the following identity:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 128, + 81, + 354, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 103, + 460, + 131 + ], + "lines": [ + { + "bbox": [ + 186, + 103, + 460, + 131 + ], + "spans": [ + { + "bbox": [ + 186, + 103, + 460, + 131 + ], + "score": 0.93, + "content": "\\nabla _ { x } f ^ { * } ( x ) = \\frac { 1 } { d S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } \\frac { D ^ { - } F _ { \\mathbb { Q } } ( x ) - D ^ { - } F _ { \\mathbb { P } } ( x ) } { \\mu ( x ) } , \\mu - a l m o s t s u r e l y .", + "type": "interline_equation", + "image_path": "297f36e6e4f5011107b075eb04b65fc03f0bdbf7bb22ec038cd57b8be573697b.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 186, + 103, + 460, + 112.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 186, + 112.33333333333333, + 460, + 121.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 186, + 121.66666666666666, + 460, + 131.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 152, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 101, + 149, + 507, + 173 + ], + "spans": [ + { + "bbox": [ + 101, + 149, + 383, + 173 + ], + "score": 1.0, + "content": "Sobolev IPM Approximation. Learning in the whole Sobolev space", + "type": "text" + }, + { + "bbox": [ + 383, + 152, + 406, + 166 + ], + "score": 0.92, + "content": "W _ { 0 } ^ { 1 , 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 149, + 507, + 173 + ], + "score": 1.0, + "content": "is challenging hence we", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 164, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 333, + 178 + ], + "score": 1.0, + "content": "need to restrict our function class to a hypothesis class", + "type": "text" + }, + { + "bbox": [ + 347, + 164, + 506, + 178 + ], + "score": 1.0, + "content": ", such as neural networks. We assume", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 245, + 189 + ], + "score": 1.0, + "content": "in the following that functions in", + "type": "text" + }, + { + "bbox": [ + 245, + 176, + 259, + 186 + ], + "score": 0.86, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 176, + 372, + 189 + ], + "score": 1.0, + "content": "vanish on the boundary of", + "type": "text" + }, + { + "bbox": [ + 372, + 176, + 383, + 186 + ], + "score": 0.84, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 176, + 505, + 189 + ], + "score": 1.0, + "content": ", and restrict the optimization", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 186, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 194, + 200 + ], + "score": 1.0, + "content": "to the function space", + "type": "text" + }, + { + "bbox": [ + 194, + 187, + 208, + 197 + ], + "score": 0.84, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 186, + 213, + 200 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 214, + 187, + 228, + 197 + ], + "score": 0.81, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 186, + 506, + 200 + ], + "score": 1.0, + "content": "can be a Reproducing Kernel Hilbert Space as in the MMD case or", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 197, + 434, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 415, + 210 + ], + "score": 1.0, + "content": "parametrized by a neural network. Define the Sobolev IPM approximation in", + "type": "text" + }, + { + "bbox": [ + 416, + 198, + 429, + 208 + ], + "score": 0.86, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 197, + 434, + 210 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6, + "bbox_fs": [ + 101, + 149, + 507, + 210 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 218, + 425, + 248 + ], + "lines": [ + { + "bbox": [ + 185, + 218, + 425, + 248 + ], + "spans": [ + { + "bbox": [ + 185, + 218, + 425, + 248 + ], + "score": 0.94, + "content": "\\mathcal { S } _ { \\mathcal { H } , \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { \\substack { f \\in \\mathcal { H } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } } \\leq 1 } } \\left\\{ \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) \\right\\}", + "type": "interline_equation", + "image_path": "971ea3456676bcb111ab4fbee39726afebd8782ade48f246922be856df9f0f05.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 218, + 425, + 233.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 185, + 233.0, + 425, + 248.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 257, + 505, + 303 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 384, + 271 + ], + "score": 1.0, + "content": "The following Lemma shows that the Sobolev IPM approximation in", + "type": "text" + }, + { + "bbox": [ + 384, + 259, + 398, + 268 + ], + "score": 0.86, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "is proportional to Sobolev", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "score": 1.0, + "content": "IPM. The tightness of the approximation of the Sobolev IPM is governed by the tightness of the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 294, + 293 + ], + "score": 1.0, + "content": "approximation of the optimal Sobolev Critic", + "type": "text" + }, + { + "bbox": [ + 294, + 280, + 306, + 292 + ], + "score": 0.88, + "content": "f ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 280, + 320, + 293 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 320, + 280, + 334, + 290 + ], + "score": 0.88, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 280, + 505, + 293 + ], + "score": 1.0, + "content": ". This approximation is measured in the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 290, + 293, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 293, + 304 + ], + "score": 1.0, + "content": "Sobolev sense, using the Sobolev dot product.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 258, + 505, + 304 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 318, + 505, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 388, + 331 + ], + "score": 1.0, + "content": "Lemma 1 (Sobolev IPM Approximation in a Hypothesis Class). Let", + "type": "text" + }, + { + "bbox": [ + 388, + 319, + 402, + 329 + ], + "score": 0.74, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 318, + 505, + 331 + ], + "score": 1.0, + "content": "be a function space with", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 102, + 327, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 102, + 327, + 492, + 347 + ], + "score": 1.0, + "content": "functions vanishing at the boundary. For any f ∈ H and for f ∗ the optimal critic in W 1,20 ,", + "type": "text" + }, + { + "bbox": [ + 479, + 332, + 505, + 343 + ], + "score": 1.0, + "content": "we", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 342, + 132, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 132, + 356 + ], + "score": 1.0, + "content": "have:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 102, + 318, + 505, + 356 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 360, + 469, + 393 + ], + "lines": [ + { + "bbox": [ + 142, + 360, + 469, + 393 + ], + "spans": [ + { + "bbox": [ + 142, + 360, + 469, + 393 + ], + "score": 0.93, + "content": "\\mathcal { S } _ { \\mathcal { H } , \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\mathcal { S } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\operatorname* { s u p } _ { \\substack { f \\in \\mathcal { H } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } ( \\chi , \\mu ) } \\leq 1 } } \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. _ { \\mathbb { R } ^ { d } } \\mu ( x ) d x .", + "type": "interline_equation", + "image_path": "854756f3154ceda8fb70a3a4edd5a69c5e21b3651ce7d7acdb0f36d3e2488644.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 142, + 360, + 469, + 371.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 142, + 371.0, + 469, + 382.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 142, + 382.0, + 469, + 393.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 403, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 402, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 460, + 416 + ], + "score": 1.0, + "content": "Note that this Lemma means that the Sobolev IPM is well approximated if the space", + "type": "text" + }, + { + "bbox": [ + 460, + 404, + 474, + 414 + ], + "score": 0.83, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 402, + 505, + 416 + ], + "score": 1.0, + "content": "has an", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 415, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 267, + 427 + ], + "score": 1.0, + "content": "enough representation power to express", + "type": "text" + }, + { + "bbox": [ + 267, + 415, + 305, + 427 + ], + "score": 0.92, + "content": "\\nabla _ { x } f ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 415, + 505, + 427 + ], + "score": 1.0, + "content": ". This is parallel to the Fisher IPM approximation", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "(Mroueh & Sercu, 2017) where it is shown that the Fisher IPM approximation error is proportional", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "to the critic approximation in the Lebesgue sense. Having in mind that the gradient of the critic is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 447, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 461 + ], + "score": 1.0, + "content": "the information that is passed on to the generator, we see that this convergence in the Sobolev sense", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 459, + 360, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 360, + 472 + ], + "score": 1.0, + "content": "to the optimal critic is an important property for GAN training.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 402, + 506, + 472 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 475, + 504, + 498 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "Relation to Fokker-Planck Diffusion. We show in Appendix A that the optimal Sobolev critic is", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 486, + 407, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 407, + 499 + ], + "score": 1.0, + "content": "the solution of the following elliptic PDE (with zero boundary conditions):", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 475, + 505, + 499 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 506, + 375, + 534 + ], + "lines": [ + { + "bbox": [ + 236, + 506, + 375, + 534 + ], + "spans": [ + { + "bbox": [ + 236, + 506, + 375, + 534 + ], + "score": 0.95, + "content": "\\frac { \\mathbb { P } - \\mathbb { Q } } { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } = - \\mathrm { d i v } ( \\mu ( x ) \\nabla _ { x } f ( x ) ) .", + "type": "interline_equation", + "image_path": "130523609727ae305fca8ff6534076a07e4f5637a5d4dc5e460b99ebf3723f21.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 236, + 506, + 375, + 520.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 236, + 520.0, + 375, + 534.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 542, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 542, + 504, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 504, + 555 + ], + "score": 1.0, + "content": "We further link the elliptic PDE given in Equation (8) and the Fokker-Planck diffusion. As we illus-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 553, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 566 + ], + "score": 1.0, + "content": "trate in Figure 2(b) the gradient of the critic defines a transportation plan for moving the distribution", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 565, + 182, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 151, + 577 + ], + "score": 1.0, + "content": "mass from", + "type": "text" + }, + { + "bbox": [ + 151, + 565, + 160, + 576 + ], + "score": 0.86, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 565, + 171, + 577 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 172, + 565, + 178, + 575 + ], + "score": 0.78, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 565, + 182, + 577 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 542, + 505, + 577 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 592, + 413, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 591, + 414, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 414, + 606 + ], + "score": 1.0, + "content": "Discussion of Theorem 2. We make the following remarks on Theorem 2:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 591, + 414, + 606 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 615, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 108, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 108, + 615, + 358, + 628 + ], + "score": 1.0, + "content": "1. From Theorem 2, we see that the Sobolev IPM compares", + "type": "text" + }, + { + "bbox": [ + 358, + 617, + 365, + 626 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "higher order partial derivatives of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 119, + 625, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 119, + 625, + 238, + 641 + ], + "score": 1.0, + "content": "the cumulative distributions", + "type": "text" + }, + { + "bbox": [ + 238, + 627, + 251, + 638 + ], + "score": 0.89, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 625, + 271, + 641 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 272, + 627, + 285, + 639 + ], + "score": 0.89, + "content": "F _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 625, + 505, + 641 + ], + "score": 1.0, + "content": ", while Fisher IPM compares the probability density", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 119, + 636, + 164, + 650 + ], + "spans": [ + { + "bbox": [ + 119, + 636, + 164, + 650 + ], + "score": 1.0, + "content": "functions.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 108, + 615, + 505, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 656, + 342, + 669 + ], + "lines": [ + { + "bbox": [ + 107, + 656, + 342, + 669 + ], + "spans": [ + { + "bbox": [ + 107, + 656, + 214, + 669 + ], + "score": 1.0, + "content": "2. The dominant measure", + "type": "text" + }, + { + "bbox": [ + 214, + 659, + 222, + 668 + ], + "score": 0.82, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 656, + 342, + 669 + ], + "score": 1.0, + "content": "plays a similar role to Fisher:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 107, + 656, + 342, + 669 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 677, + 428, + 712 + ], + "lines": [ + { + "bbox": [ + 196, + 677, + 428, + 712 + ], + "spans": [ + { + "bbox": [ + 196, + 677, + 428, + 712 + ], + "score": 0.94, + "content": "S _ { \\mu } ^ { 2 } ( { \\mathbb { P } } , \\mathbb { Q } ) = \\frac 1 { d ^ { 2 } } \\sum _ { i = 1 } ^ { d } { \\mathbb { E } } _ { x \\sim \\mu } \\left( \\frac { D ^ { - i } F _ { \\mathbb { P } } ( x ) - D ^ { - i } F _ { \\mathbb { Q } } ( x ) } { \\mu ( x ) } \\right) ^ { 2 } ,", + "type": "interline_equation", + "image_path": "74e0ea07b0892100bb72453fb981347f5d3b84bb4cb932af144d8ebd56ed9107.jpg" + } + ] + } + ], + "index": 39.5, + "virtual_lines": [ + { + "bbox": [ + 196, + 677, + 428, + 694.5 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 196, + 694.5, + 428, + 712.0 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 120, + 720, + 401, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 718, + 402, + 735 + ], + "spans": [ + { + "bbox": [ + 119, + 718, + 390, + 735 + ], + "score": 1.0, + "content": "the average distance is defined with respect to points sampled from", + "type": "text" + }, + { + "bbox": [ + 391, + 724, + 397, + 732 + ], + "score": 0.77, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 718, + 402, + 735 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41, + "bbox_fs": [ + 119, + 718, + 402, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 107, + 81, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 107, + 81, + 471, + 95 + ], + "score": 1.0, + "content": "3. Comparison of coordinate-wise Conditional CDFs. We note in the following", + "type": "text" + }, + { + "bbox": [ + 472, + 82, + 504, + 95 + ], + "score": 0.84, + "content": "\\begin{array} { r l } { x ^ { - i } } & { { } = } \\end{array}", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 121, + 93, + 310, + 106 + ], + "spans": [ + { + "bbox": [ + 121, + 94, + 228, + 106 + ], + "score": 0.87, + "content": "( x _ { 1 } , \\ldots x _ { i - 1 } , x _ { i + 1 } , \\ldots x _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 93, + 310, + 106 + ], + "score": 1.0, + "content": ". Note that we have:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 124, + 109, + 524, + 230 + ], + "lines": [ + { + "bbox": [ + 124, + 109, + 524, + 230 + ], + "spans": [ + { + "bbox": [ + 124, + 109, + 524, + 230 + ], + "score": 0.87, + "content": "\\begin{array} { r l } & { \\mathsf { P } ^ { - i } F _ { \\mathbb { P } } ( x ) = \\frac { \\partial ^ { d - 1 } } { \\partial x _ { 1 } \\hdots \\partial x _ { i - 1 } \\partial x _ { i + 1 } \\hdots \\partial x _ { d } } \\displaystyle \\int _ { - \\infty } ^ { x _ { 1 } } \\hdots \\int _ { - \\infty } ^ { x _ { d } } \\mathbb { P } ( u _ { 1 } \\hdots u _ { d } ) d u _ { 1 } \\hdots d u _ { d } } \\\\ & { \\hphantom { \\mathsf { P } ^ { - i } F _ { \\mathbb { P } } ( x ) = } = \\displaystyle \\int _ { - \\infty } ^ { x _ { i } } \\mathbb { P } ( x _ { 1 } , \\hdots , x _ { i - 1 } , u , x _ { i + 1 } , \\hdots , x _ { d } ) d u } \\\\ & { \\hphantom { \\mathsf { P } ^ { - i } F _ { \\mathbb { P } } ( x ) = } = \\mathbb { P } _ { X ^ { - i } } ( x _ { 1 } , \\hdots , x _ { i - 1 } , x _ { i + 1 } , \\hdots x _ { d } ) \\displaystyle \\int _ { - \\infty } ^ { x _ { i } } \\mathbb { P } _ { [ X _ { i } | X ^ { - i } = x ^ { - i } ] } ( u | x _ { 1 } , \\hdots , x _ { i - 1 } , x _ { i + 1 } , \\hdots x _ { d } ) d u } \\\\ & { \\displaystyle ( \\mathrm { U s i n g ~ B a y e s ~ r u l e } ) } \\\\ & { \\hphantom { \\mathsf { P } ^ { - i } F _ { \\mathbb { P } } ( x ) = } = \\mathbb { P } _ { X ^ { - i } } ( x ^ { - i } ) F _ { \\mathbb { P } _ { [ X _ { i } | X ^ { - i } = x ^ { - i } ] } } ( x _ { i } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "18bd3f92f5c34e7173ad84a6c2be2d7bf1c6ec7e29506402937c180d48994612.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 124, + 109, + 524, + 149.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 124, + 149.33333333333334, + 524, + 189.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 124, + 189.66666666666669, + 524, + 230.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 120, + 232, + 506, + 266 + ], + "lines": [ + { + "bbox": [ + 119, + 231, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 119, + 231, + 195, + 245 + ], + "score": 1.0, + "content": "Note that for each", + "type": "text" + }, + { + "bbox": [ + 195, + 234, + 200, + 243 + ], + "score": 0.38, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 231, + 204, + 245 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 204, + 232, + 248, + 245 + ], + "score": 0.92, + "content": "D ^ { - i } F _ { \\mathbb { P } } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 231, + 428, + 245 + ], + "score": 1.0, + "content": "is the cumulative distribution of the variable", + "type": "text" + }, + { + "bbox": [ + 429, + 234, + 441, + 244 + ], + "score": 0.88, + "content": "X _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 231, + 506, + 245 + ], + "score": 1.0, + "content": "given the other", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 120, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 120, + 243, + 159, + 256 + ], + "score": 1.0, + "content": "variables", + "type": "text" + }, + { + "bbox": [ + 159, + 244, + 207, + 254 + ], + "score": 0.91, + "content": "X ^ { - i } = x ^ { - i }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 243, + 353, + 256 + ], + "score": 1.0, + "content": ", weighted by the density function of", + "type": "text" + }, + { + "bbox": [ + 354, + 244, + 373, + 254 + ], + "score": 0.91, + "content": "X ^ { - i }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 243, + 384, + 256 + ], + "score": 1.0, + "content": "at", + "type": "text" + }, + { + "bbox": [ + 384, + 244, + 400, + 254 + ], + "score": 0.89, + "content": "x ^ { - i }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 243, + 505, + 256 + ], + "score": 1.0, + "content": ". This leads us to the form", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 119, + 255, + 204, + 267 + ], + "spans": [ + { + "bbox": [ + 119, + 255, + 204, + 267 + ], + "score": 1.0, + "content": "given in Equation 5.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 120, + 268, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 120, + 268, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 120, + 268, + 362, + 280 + ], + "score": 1.0, + "content": "We see that the Sobolev IPM compares for each dimension", + "type": "text" + }, + { + "bbox": [ + 363, + 269, + 367, + 278 + ], + "score": 0.73, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 268, + 505, + 280 + ], + "score": 1.0, + "content": "the conditional cumulative distri-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 119, + 278, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 119, + 278, + 506, + 291 + ], + "score": 1.0, + "content": "bution of each variable given the other variables, weighted by their density function. We refer to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 119, + 289, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 119, + 289, + 506, + 303 + ], + "score": 1.0, + "content": "this as comparison of coordinate-wise CDFs on a leave one out basis. From this we see that we", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 119, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 119, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "are comparing CDFs, which are better behaved on discrete distributions. Moreover, the condi-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 119, + 310, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 119, + 310, + 506, + 326 + ], + "score": 1.0, + "content": "tioning built in to this metric will play a crucial role in comparing sequences as the conditioning", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 120, + 323, + 301, + 334 + ], + "spans": [ + { + "bbox": [ + 120, + 323, + 301, + 334 + ], + "score": 1.0, + "content": "is important in this context (See section 6.1).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 107, + 347, + 244, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 347, + 245, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 245, + 360 + ], + "score": 1.0, + "content": "4.2 ILLUSTRATIVE EXAMPLES", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 505, + 412 + ], + "lines": [ + { + "bbox": [ + 105, + 367, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 380 + ], + "score": 1.0, + "content": "Sobolev IPM / Cramer Distance and Wasserstein-1 in one Dimension. ´ In one dimension,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 277, + 391 + ], + "score": 1.0, + "content": "Sobolev IPM is the Cramer Distance (for ´", + "type": "text" + }, + { + "bbox": [ + 277, + 381, + 285, + 390 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 378, + 335, + 391 + ], + "score": 1.0, + "content": "uniform on", + "type": "text" + }, + { + "bbox": [ + 335, + 379, + 345, + 389 + ], + "score": 0.83, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 378, + 402, + 391 + ], + "score": 1.0, + "content": ", we note this", + "type": "text" + }, + { + "bbox": [ + 402, + 380, + 433, + 390 + ], + "score": 0.89, + "content": "\\mu : = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 378, + 505, + 391 + ], + "score": 1.0, + "content": "). While Sobolev", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 389, + 504, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 497, + 403 + ], + "score": 1.0, + "content": "IPM in one dimension measures the discrepancy between CDFs, the one dimensional Wasserstein-", + "type": "text" + }, + { + "bbox": [ + 498, + 392, + 504, + 402 + ], + "score": 0.76, + "content": "p", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 401, + 340, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 340, + 413 + ], + "score": 1.0, + "content": "distance measures the discrepancy between inverse CDFs:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 122, + 417, + 487, + 445 + ], + "lines": [ + { + "bbox": [ + 122, + 417, + 487, + 445 + ], + "spans": [ + { + "bbox": [ + 122, + 417, + 487, + 445 + ], + "score": 0.92, + "content": "S _ { \\mu : = 1 } ^ { 2 } ( { \\mathbb { P } } , \\mathbb { Q } ) = \\int _ { \\chi } ( F _ { \\mathbb { P } } ( x ) - F _ { \\mathbb { Q } } ( x ) ) ^ { 2 } d x { \\mathrm { ~ v e r s u s ~ } } W _ { p } ^ { p } ( { \\mathbb { P } } , \\mathbb { Q } ) = \\int _ { 0 } ^ { 1 } | F _ { \\mathbb { P } } ^ { - 1 } ( u ) - F _ { \\mathbb { Q } } ^ { - 1 } ( u ) | ^ { p } d u ,", + "type": "interline_equation", + "image_path": "183d4cd42789e60279bafd5256498ce1453a649fdcef170b5027e44a88bb104d.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 122, + 417, + 487, + 426.3333333333333 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 122, + 426.3333333333333, + 487, + 435.66666666666663 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 122, + 435.66666666666663, + 487, + 444.99999999999994 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 449, + 341, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 342, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 281, + 464 + ], + "score": 1.0, + "content": "Recall also that the Fisher IPM for uniform", + "type": "text" + }, + { + "bbox": [ + 282, + 452, + 289, + 461 + ], + "score": 0.81, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 446, + 342, + 464 + ], + "score": 1.0, + "content": "is given by :", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 465, + 385, + 491 + ], + "lines": [ + { + "bbox": [ + 225, + 465, + 385, + 491 + ], + "spans": [ + { + "bbox": [ + 225, + 465, + 385, + 491 + ], + "score": 0.94, + "content": "\\mathcal { F } _ { \\mu : = 1 } ^ { 2 } ( \\mathbb { P } , \\mathbb { Q } ) = \\int _ { \\mathcal { X } } ( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) ) ^ { 2 } d x .", + "type": "interline_equation", + "image_path": "bc4a4fd656eb1ed525ce0227233b10fb01960a523616219858e1b67184ca0376.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 225, + 465, + 385, + 491 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 263, + 507 + ], + "score": 1.0, + "content": "Consider for instance two point masses", + "type": "text" + }, + { + "bbox": [ + 264, + 496, + 297, + 507 + ], + "score": 0.92, + "content": "\\mathbb { P } = \\delta _ { a _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 495, + 315, + 507 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 316, + 496, + 350, + 507 + ], + "score": 0.91, + "content": "\\mathbb { Q } = \\delta _ { a _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 495, + 371, + 507 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 372, + 496, + 416, + 507 + ], + "score": 0.92, + "content": "a _ { 1 } , a _ { 2 } \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 495, + 506, + 507 + ], + "score": 1.0, + "content": ". The rationale behind", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 507, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 505, + 518 + ], + "score": 1.0, + "content": "using Wasserstein distance for GAN training is that since it is a weak metric, for far distributions", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 517, + 509, + 553 + ], + "spans": [ + { + "bbox": [ + 107, + 528, + 242, + 542 + ], + "score": 0.91, + "content": "W _ { 1 } ^ { 1 } ( \\mathbb { P } , \\mathbb { Q } ) = S _ { \\mu : = 1 } ^ { 2 } \\stackrel { - } { = } | a _ { 1 } - a _ { 2 } |", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 517, + 272, + 553 + ], + "score": 1.0, + "content": "me sign, while e than", + "type": "text" + }, + { + "bbox": [ + 272, + 529, + 346, + 542 + ], + "score": 0.9, + "content": "\\mathcal { F } _ { \\mu : = 1 } ^ { 2 } ( \\mathbb { P } , \\mathbb { Q } ) = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 517, + 509, + 553 + ], + "score": 1.0, + "content": "2017). In this case, it is easy to see that. As we see from this simple example,g distributions on discrete spaces. See", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 540, + 128, + 550 + ], + "spans": [ + { + "bbox": [ + 107, + 540, + 128, + 550 + ], + "score": 0.74, + "content": "C D F", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 550, + 376, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 376, + 563 + ], + "score": 1.0, + "content": "Figure 1, for a further discussion of this effect in the GAN context.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 338, + 586 + ], + "score": 1.0, + "content": "Sobolev IPM between two 2D Gaussians. We consider", + "type": "text" + }, + { + "bbox": [ + 339, + 575, + 346, + 584 + ], + "score": 0.83, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 574, + 363, + 586 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 363, + 574, + 372, + 585 + ], + "score": 0.87, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 574, + 505, + 586 + ], + "score": 1.0, + "content": "to be two dimensional Gaussians", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 584, + 504, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 154, + 597 + ], + "score": 1.0, + "content": "with means", + "type": "text" + }, + { + "bbox": [ + 155, + 587, + 166, + 597 + ], + "score": 0.86, + "content": "\\mu _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 584, + 184, + 597 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 185, + 586, + 196, + 597 + ], + "score": 0.86, + "content": "\\mu _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 584, + 263, + 597 + ], + "score": 1.0, + "content": "and covariances", + "type": "text" + }, + { + "bbox": [ + 264, + 586, + 276, + 596 + ], + "score": 0.88, + "content": "\\Sigma _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 584, + 294, + 597 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 295, + 585, + 307, + 596 + ], + "score": 0.87, + "content": "\\Sigma _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 584, + 328, + 597 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 329, + 585, + 352, + 597 + ], + "score": 0.92, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 584, + 491, + 597 + ], + "score": 1.0, + "content": "be the coordinates in 2D. We note", + "type": "text" + }, + { + "bbox": [ + 491, + 586, + 504, + 596 + ], + "score": 0.86, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 593, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 104, + 593, + 123, + 611 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 597, + 137, + 609 + ], + "score": 0.88, + "content": "F _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 593, + 191, + 611 + ], + "score": 1.0, + "content": "the CDFs of", + "type": "text" + }, + { + "bbox": [ + 191, + 598, + 199, + 607 + ], + "score": 0.82, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 593, + 217, + 611 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 217, + 597, + 226, + 609 + ], + "score": 0.86, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 593, + 397, + 611 + ], + "score": 1.0, + "content": "respectively. We consider in this example", + "type": "text" + }, + { + "bbox": [ + 398, + 596, + 437, + 610 + ], + "score": 0.93, + "content": "\\textstyle \\mu = { \\frac { \\mathbb { P } + \\mathbb { Q } } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 593, + 506, + 611 + ], + "score": 1.0, + "content": ". We know from", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 607, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 505, + 622 + ], + "score": 1.0, + "content": "Theorem 2 that the gradient of the Sobolev optimal critic is proportional to the following vector", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 619, + 130, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 130, + 631 + ], + "score": 1.0, + "content": "field:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 626, + 474, + 685 + ], + "lines": [ + { + "bbox": [ + 203, + 626, + 474, + 685 + ], + "spans": [ + { + "bbox": [ + 203, + 626, + 474, + 685 + ], + "score": 0.69, + "content": "\\begin{array} { l } { \\displaystyle \\nabla f ^ { * } ( x , y ) \\alpha \\frac { 1 } { \\mu ( x , y ) } \\left[ \\frac { \\partial } { \\partial x } ( F _ { \\mathbb { Q } } ( x , y ) - F _ { \\mathbb { P } } ( x , y ) ) \\right] } \\\\ { \\displaystyle \\mu _ { 1 } = [ 1 , 0 ] , \\Sigma _ { 1 } = \\left[ \\frac { 1 . 9 } { 0 . 8 } \\quad 0 . 8 \\right] \\mu _ { 2 } = [ 1 , - 2 ] , \\Sigma _ { 2 } = \\left[ \\frac { 1 . 9 } { - 0 . 8 } \\quad - 0 . 8 \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "e50ee0347c9ba8d47bdefce58ca0db56fec3e968585997acd5e08b9f5538b96a.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 203, + 626, + 474, + 645.6666666666666 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 203, + 645.6666666666666, + 474, + 665.3333333333333 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 203, + 665.3333333333333, + 474, + 684.9999999999999 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 471, + 683 + ], + "lines": [ + { + "bbox": [ + 102, + 652, + 203, + 690 + ], + "spans": [ + { + "bbox": [ + 102, + 652, + 203, + 690 + ], + "score": 1.0, + "content": "In Figure 2 we consider", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 687, + 505, + 735 + ], + "lines": [ + { + "bbox": [ + 104, + 686, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 104, + 686, + 505, + 700 + ], + "score": 1.0, + "content": "In Figure 2(a) we plot the numerical solution of the PDE satisfied by the optimal Sobolev", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "critic given in Equation (8), using MATLAB solver for elliptic PDEs (more accurately we solve", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 260, + 721 + ], + "score": 0.9, + "content": "- d i v ( \\bar { \\mu } ( x ) \\nabla _ { x } f ( \\bar { x } ) ) = \\mathbb { P } ( x ) - \\bar { \\mathbb { Q } } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 709, + 505, + 722 + ], + "score": 1.0, + "content": ", hence we obtain the solution of Equation (8) up to a nor-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 103, + 718, + 507, + 738 + ], + "spans": [ + { + "bbox": [ + 103, + 718, + 189, + 738 + ], + "score": 1.0, + "content": "malization constant", + "type": "text" + }, + { + "bbox": [ + 190, + 720, + 227, + 735 + ], + "score": 0.86, + "content": "( \\frac { 1 } { S _ { \\mu } ( { \\mathbb P } , { \\mathbb Q } ) } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 718, + 507, + 738 + ], + "score": 1.0, + "content": ". We numerically solve the PDE on a rectangle with zero boundary", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5 + } + ], + "page_idx": 7, + "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": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 107, + 81, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 107, + 81, + 471, + 95 + ], + "score": 1.0, + "content": "3. Comparison of coordinate-wise Conditional CDFs. We note in the following", + "type": "text" + }, + { + "bbox": [ + 472, + 82, + 504, + 95 + ], + "score": 0.84, + "content": "\\begin{array} { r l } { x ^ { - i } } & { { } = } \\end{array}", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 121, + 93, + 310, + 106 + ], + "spans": [ + { + "bbox": [ + 121, + 94, + 228, + 106 + ], + "score": 0.87, + "content": "( x _ { 1 } , \\ldots x _ { i - 1 } , x _ { i + 1 } , \\ldots x _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 93, + 310, + 106 + ], + "score": 1.0, + "content": ". Note that we have:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 107, + 81, + 504, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 124, + 109, + 524, + 230 + ], + "lines": [ + { + "bbox": [ + 124, + 109, + 524, + 230 + ], + "spans": [ + { + "bbox": [ + 124, + 109, + 524, + 230 + ], + "score": 0.87, + "content": "\\begin{array} { r l } & { \\mathsf { P } ^ { - i } F _ { \\mathbb { P } } ( x ) = \\frac { \\partial ^ { d - 1 } } { \\partial x _ { 1 } \\hdots \\partial x _ { i - 1 } \\partial x _ { i + 1 } \\hdots \\partial x _ { d } } \\displaystyle \\int _ { - \\infty } ^ { x _ { 1 } } \\hdots \\int _ { - \\infty } ^ { x _ { d } } \\mathbb { P } ( u _ { 1 } \\hdots u _ { d } ) d u _ { 1 } \\hdots d u _ { d } } \\\\ & { \\hphantom { \\mathsf { P } ^ { - i } F _ { \\mathbb { P } } ( x ) = } = \\displaystyle \\int _ { - \\infty } ^ { x _ { i } } \\mathbb { P } ( x _ { 1 } , \\hdots , x _ { i - 1 } , u , x _ { i + 1 } , \\hdots , x _ { d } ) d u } \\\\ & { \\hphantom { \\mathsf { P } ^ { - i } F _ { \\mathbb { P } } ( x ) = } = \\mathbb { P } _ { X ^ { - i } } ( x _ { 1 } , \\hdots , x _ { i - 1 } , x _ { i + 1 } , \\hdots x _ { d } ) \\displaystyle \\int _ { - \\infty } ^ { x _ { i } } \\mathbb { P } _ { [ X _ { i } | X ^ { - i } = x ^ { - i } ] } ( u | x _ { 1 } , \\hdots , x _ { i - 1 } , x _ { i + 1 } , \\hdots x _ { d } ) d u } \\\\ & { \\displaystyle ( \\mathrm { U s i n g ~ B a y e s ~ r u l e } ) } \\\\ & { \\hphantom { \\mathsf { P } ^ { - i } F _ { \\mathbb { P } } ( x ) = } = \\mathbb { P } _ { X ^ { - i } } ( x ^ { - i } ) F _ { \\mathbb { P } _ { [ X _ { i } | X ^ { - i } = x ^ { - i } ] } } ( x _ { i } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "18bd3f92f5c34e7173ad84a6c2be2d7bf1c6ec7e29506402937c180d48994612.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 124, + 109, + 524, + 149.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 124, + 149.33333333333334, + 524, + 189.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 124, + 189.66666666666669, + 524, + 230.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 120, + 232, + 506, + 266 + ], + "lines": [ + { + "bbox": [ + 119, + 231, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 119, + 231, + 195, + 245 + ], + "score": 1.0, + "content": "Note that for each", + "type": "text" + }, + { + "bbox": [ + 195, + 234, + 200, + 243 + ], + "score": 0.38, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 231, + 204, + 245 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 204, + 232, + 248, + 245 + ], + "score": 0.92, + "content": "D ^ { - i } F _ { \\mathbb { P } } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 231, + 428, + 245 + ], + "score": 1.0, + "content": "is the cumulative distribution of the variable", + "type": "text" + }, + { + "bbox": [ + 429, + 234, + 441, + 244 + ], + "score": 0.88, + "content": "X _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 231, + 506, + 245 + ], + "score": 1.0, + "content": "given the other", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 120, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 120, + 243, + 159, + 256 + ], + "score": 1.0, + "content": "variables", + "type": "text" + }, + { + "bbox": [ + 159, + 244, + 207, + 254 + ], + "score": 0.91, + "content": "X ^ { - i } = x ^ { - i }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 243, + 353, + 256 + ], + "score": 1.0, + "content": ", weighted by the density function of", + "type": "text" + }, + { + "bbox": [ + 354, + 244, + 373, + 254 + ], + "score": 0.91, + "content": "X ^ { - i }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 243, + 384, + 256 + ], + "score": 1.0, + "content": "at", + "type": "text" + }, + { + "bbox": [ + 384, + 244, + 400, + 254 + ], + "score": 0.89, + "content": "x ^ { - i }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 243, + 505, + 256 + ], + "score": 1.0, + "content": ". This leads us to the form", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 119, + 255, + 204, + 267 + ], + "spans": [ + { + "bbox": [ + 119, + 255, + 204, + 267 + ], + "score": 1.0, + "content": "given in Equation 5.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 119, + 231, + 506, + 267 + ] + }, + { + "type": "text", + "bbox": [ + 120, + 268, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 120, + 268, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 120, + 268, + 362, + 280 + ], + "score": 1.0, + "content": "We see that the Sobolev IPM compares for each dimension", + "type": "text" + }, + { + "bbox": [ + 363, + 269, + 367, + 278 + ], + "score": 0.73, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 268, + 505, + 280 + ], + "score": 1.0, + "content": "the conditional cumulative distri-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 119, + 278, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 119, + 278, + 506, + 291 + ], + "score": 1.0, + "content": "bution of each variable given the other variables, weighted by their density function. We refer to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 119, + 289, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 119, + 289, + 506, + 303 + ], + "score": 1.0, + "content": "this as comparison of coordinate-wise CDFs on a leave one out basis. From this we see that we", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 119, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 119, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "are comparing CDFs, which are better behaved on discrete distributions. Moreover, the condi-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 119, + 310, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 119, + 310, + 506, + 326 + ], + "score": 1.0, + "content": "tioning built in to this metric will play a crucial role in comparing sequences as the conditioning", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 120, + 323, + 301, + 334 + ], + "spans": [ + { + "bbox": [ + 120, + 323, + 301, + 334 + ], + "score": 1.0, + "content": "is important in this context (See section 6.1).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5, + "bbox_fs": [ + 119, + 268, + 506, + 334 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 347, + 244, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 347, + 245, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 245, + 360 + ], + "score": 1.0, + "content": "4.2 ILLUSTRATIVE EXAMPLES", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 505, + 412 + ], + "lines": [ + { + "bbox": [ + 105, + 367, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 380 + ], + "score": 1.0, + "content": "Sobolev IPM / Cramer Distance and Wasserstein-1 in one Dimension. ´ In one dimension,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 277, + 391 + ], + "score": 1.0, + "content": "Sobolev IPM is the Cramer Distance (for ´", + "type": "text" + }, + { + "bbox": [ + 277, + 381, + 285, + 390 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 378, + 335, + 391 + ], + "score": 1.0, + "content": "uniform on", + "type": "text" + }, + { + "bbox": [ + 335, + 379, + 345, + 389 + ], + "score": 0.83, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 378, + 402, + 391 + ], + "score": 1.0, + "content": ", we note this", + "type": "text" + }, + { + "bbox": [ + 402, + 380, + 433, + 390 + ], + "score": 0.89, + "content": "\\mu : = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 378, + 505, + 391 + ], + "score": 1.0, + "content": "). While Sobolev", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 389, + 504, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 497, + 403 + ], + "score": 1.0, + "content": "IPM in one dimension measures the discrepancy between CDFs, the one dimensional Wasserstein-", + "type": "text" + }, + { + "bbox": [ + 498, + 392, + 504, + 402 + ], + "score": 0.76, + "content": "p", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 401, + 340, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 340, + 413 + ], + "score": 1.0, + "content": "distance measures the discrepancy between inverse CDFs:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 367, + 505, + 413 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 122, + 417, + 487, + 445 + ], + "lines": [ + { + "bbox": [ + 122, + 417, + 487, + 445 + ], + "spans": [ + { + "bbox": [ + 122, + 417, + 487, + 445 + ], + "score": 0.92, + "content": "S _ { \\mu : = 1 } ^ { 2 } ( { \\mathbb { P } } , \\mathbb { Q } ) = \\int _ { \\chi } ( F _ { \\mathbb { P } } ( x ) - F _ { \\mathbb { Q } } ( x ) ) ^ { 2 } d x { \\mathrm { ~ v e r s u s ~ } } W _ { p } ^ { p } ( { \\mathbb { P } } , \\mathbb { Q } ) = \\int _ { 0 } ^ { 1 } | F _ { \\mathbb { P } } ^ { - 1 } ( u ) - F _ { \\mathbb { Q } } ^ { - 1 } ( u ) | ^ { p } d u ,", + "type": "interline_equation", + "image_path": "183d4cd42789e60279bafd5256498ce1453a649fdcef170b5027e44a88bb104d.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 122, + 417, + 487, + 426.3333333333333 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 122, + 426.3333333333333, + 487, + 435.66666666666663 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 122, + 435.66666666666663, + 487, + 444.99999999999994 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 449, + 341, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 342, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 281, + 464 + ], + "score": 1.0, + "content": "Recall also that the Fisher IPM for uniform", + "type": "text" + }, + { + "bbox": [ + 282, + 452, + 289, + 461 + ], + "score": 0.81, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 446, + 342, + 464 + ], + "score": 1.0, + "content": "is given by :", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 446, + 342, + 464 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 465, + 385, + 491 + ], + "lines": [ + { + "bbox": [ + 225, + 465, + 385, + 491 + ], + "spans": [ + { + "bbox": [ + 225, + 465, + 385, + 491 + ], + "score": 0.94, + "content": "\\mathcal { F } _ { \\mu : = 1 } ^ { 2 } ( \\mathbb { P } , \\mathbb { Q } ) = \\int _ { \\mathcal { X } } ( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) ) ^ { 2 } d x .", + "type": "interline_equation", + "image_path": "bc4a4fd656eb1ed525ce0227233b10fb01960a523616219858e1b67184ca0376.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 225, + 465, + 385, + 491 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "list", + "bbox": [ + 106, + 495, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 263, + 507 + ], + "score": 1.0, + "content": "Consider for instance two point masses", + "type": "text" + }, + { + "bbox": [ + 264, + 496, + 297, + 507 + ], + "score": 0.92, + "content": "\\mathbb { P } = \\delta _ { a _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 495, + 315, + 507 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 316, + 496, + 350, + 507 + ], + "score": 0.91, + "content": "\\mathbb { Q } = \\delta _ { a _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 495, + 371, + 507 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 372, + 496, + 416, + 507 + ], + "score": 0.92, + "content": "a _ { 1 } , a _ { 2 } \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 495, + 506, + 507 + ], + "score": 1.0, + "content": ". The rationale behind", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 507, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 505, + 518 + ], + "score": 1.0, + "content": "using Wasserstein distance for GAN training is that since it is a weak metric, for far distributions", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 517, + 509, + 553 + ], + "spans": [ + { + "bbox": [ + 107, + 528, + 242, + 542 + ], + "score": 0.91, + "content": "W _ { 1 } ^ { 1 } ( \\mathbb { P } , \\mathbb { Q } ) = S _ { \\mu : = 1 } ^ { 2 } \\stackrel { - } { = } | a _ { 1 } - a _ { 2 } |", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 517, + 272, + 553 + ], + "score": 1.0, + "content": "me sign, while e than", + "type": "text" + }, + { + "bbox": [ + 272, + 529, + 346, + 542 + ], + "score": 0.9, + "content": "\\mathcal { F } _ { \\mu : = 1 } ^ { 2 } ( \\mathbb { P } , \\mathbb { Q } ) = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 517, + 509, + 553 + ], + "score": 1.0, + "content": "2017). In this case, it is easy to see that. As we see from this simple example,g distributions on discrete spaces. See", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 540, + 128, + 550 + ], + "spans": [ + { + "bbox": [ + 107, + 540, + 128, + 550 + ], + "score": 0.74, + "content": "C D F", + "type": "inline_equation" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 550, + 376, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 376, + 563 + ], + "score": 1.0, + "content": "Figure 1, for a further discussion of this effect in the GAN context.", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 26, + "bbox_fs": [ + 105, + 495, + 509, + 563 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 338, + 586 + ], + "score": 1.0, + "content": "Sobolev IPM between two 2D Gaussians. We consider", + "type": "text" + }, + { + "bbox": [ + 339, + 575, + 346, + 584 + ], + "score": 0.83, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 574, + 363, + 586 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 363, + 574, + 372, + 585 + ], + "score": 0.87, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 574, + 505, + 586 + ], + "score": 1.0, + "content": "to be two dimensional Gaussians", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 584, + 504, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 154, + 597 + ], + "score": 1.0, + "content": "with means", + "type": "text" + }, + { + "bbox": [ + 155, + 587, + 166, + 597 + ], + "score": 0.86, + "content": "\\mu _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 584, + 184, + 597 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 185, + 586, + 196, + 597 + ], + "score": 0.86, + "content": "\\mu _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 584, + 263, + 597 + ], + "score": 1.0, + "content": "and covariances", + "type": "text" + }, + { + "bbox": [ + 264, + 586, + 276, + 596 + ], + "score": 0.88, + "content": "\\Sigma _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 584, + 294, + 597 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 295, + 585, + 307, + 596 + ], + "score": 0.87, + "content": "\\Sigma _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 584, + 328, + 597 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 329, + 585, + 352, + 597 + ], + "score": 0.92, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 584, + 491, + 597 + ], + "score": 1.0, + "content": "be the coordinates in 2D. We note", + "type": "text" + }, + { + "bbox": [ + 491, + 586, + 504, + 596 + ], + "score": 0.86, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 593, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 104, + 593, + 123, + 611 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 597, + 137, + 609 + ], + "score": 0.88, + "content": "F _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 593, + 191, + 611 + ], + "score": 1.0, + "content": "the CDFs of", + "type": "text" + }, + { + "bbox": [ + 191, + 598, + 199, + 607 + ], + "score": 0.82, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 593, + 217, + 611 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 217, + 597, + 226, + 609 + ], + "score": 0.86, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 593, + 397, + 611 + ], + "score": 1.0, + "content": "respectively. We consider in this example", + "type": "text" + }, + { + "bbox": [ + 398, + 596, + 437, + 610 + ], + "score": 0.93, + "content": "\\textstyle \\mu = { \\frac { \\mathbb { P } + \\mathbb { Q } } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 593, + 506, + 611 + ], + "score": 1.0, + "content": ". We know from", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 607, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 505, + 622 + ], + "score": 1.0, + "content": "Theorem 2 that the gradient of the Sobolev optimal critic is proportional to the following vector", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 619, + 130, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 130, + 631 + ], + "score": 1.0, + "content": "field:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 104, + 574, + 506, + 631 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 626, + 474, + 685 + ], + "lines": [ + { + "bbox": [ + 203, + 626, + 474, + 685 + ], + "spans": [ + { + "bbox": [ + 203, + 626, + 474, + 685 + ], + "score": 0.69, + "content": "\\begin{array} { l } { \\displaystyle \\nabla f ^ { * } ( x , y ) \\alpha \\frac { 1 } { \\mu ( x , y ) } \\left[ \\frac { \\partial } { \\partial x } ( F _ { \\mathbb { Q } } ( x , y ) - F _ { \\mathbb { P } } ( x , y ) ) \\right] } \\\\ { \\displaystyle \\mu _ { 1 } = [ 1 , 0 ] , \\Sigma _ { 1 } = \\left[ \\frac { 1 . 9 } { 0 . 8 } \\quad 0 . 8 \\right] \\mu _ { 2 } = [ 1 , - 2 ] , \\Sigma _ { 2 } = \\left[ \\frac { 1 . 9 } { - 0 . 8 } \\quad - 0 . 8 \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "e50ee0347c9ba8d47bdefce58ca0db56fec3e968585997acd5e08b9f5538b96a.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 203, + 626, + 474, + 645.6666666666666 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 203, + 645.6666666666666, + 474, + 665.3333333333333 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 203, + 665.3333333333333, + 474, + 684.9999999999999 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 471, + 683 + ], + "lines": [ + { + "bbox": [ + 102, + 652, + 203, + 690 + ], + "spans": [ + { + "bbox": [ + 102, + 652, + 203, + 690 + ], + "score": 1.0, + "content": "In Figure 2 we consider", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 102, + 652, + 203, + 690 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 687, + 505, + 735 + ], + "lines": [ + { + "bbox": [ + 104, + 686, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 104, + 686, + 505, + 700 + ], + "score": 1.0, + "content": "In Figure 2(a) we plot the numerical solution of the PDE satisfied by the optimal Sobolev", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "critic given in Equation (8), using MATLAB solver for elliptic PDEs (more accurately we solve", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 260, + 721 + ], + "score": 0.9, + "content": "- d i v ( \\bar { \\mu } ( x ) \\nabla _ { x } f ( \\bar { x } ) ) = \\mathbb { P } ( x ) - \\bar { \\mathbb { Q } } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 709, + 505, + 722 + ], + "score": 1.0, + "content": ", hence we obtain the solution of Equation (8) up to a nor-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 103, + 718, + 507, + 738 + ], + "spans": [ + { + "bbox": [ + 103, + 718, + 189, + 738 + ], + "score": 1.0, + "content": "malization constant", + "type": "text" + }, + { + "bbox": [ + 190, + 720, + 227, + 735 + ], + "score": 0.86, + "content": "( \\frac { 1 } { S _ { \\mu } ( { \\mathbb P } , { \\mathbb Q } ) } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 718, + 507, + 738 + ], + "score": 1.0, + "content": ". We numerically solve the PDE on a rectangle with zero boundary", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 405, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 418 + ], + "score": 1.0, + "content": "conditions. We see that the optimal Sobolev critic separates the two distributions well. In Figure", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "2(b) we then numerically compute the gradient of the optimal Sobolev critic on a 2D grid as given", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 505, + 439 + ], + "score": 1.0, + "content": "in Equation 9 (using numerical evaluation of the CDF and finite difference for the evaluation of the", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 438, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 104, + 438, + 369, + 450 + ], + "score": 1.0, + "content": "partial derivatives). We plot in Figure 2(b) the density functions of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 370, + 439, + 377, + 448 + ], + "score": 0.81, + "content": "\\mathbb { P }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 378, + 438, + 394, + 450 + ], + "score": 1.0, + "content": "and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 394, + 438, + 403, + 450 + ], + "score": 0.86, + "content": "\\mathbb { Q }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 404, + 438, + 506, + 450 + ], + "score": 1.0, + "content": "as well as the vector field", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "score": 1.0, + "content": "of the gradient of the optimal Sobolev critic. As discussed in Section A.1, we see that the gradient", + "type": "text", + "cross_page": true + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 458, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 331, + 475 + ], + "score": 1.0, + "content": "of the critic (wrt to the input), defines on the support of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 332, + 460, + 371, + 474 + ], + "score": 0.94, + "content": "\\textstyle \\mu = { \\frac { \\mathbb { P } + \\mathbb { Q } } { 2 } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 371, + 458, + 506, + 475 + ], + "score": 1.0, + "content": "a transportation plan for moving", + "type": "text", + "cross_page": true + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 473, + 244, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 213, + 484 + ], + "score": 1.0, + "content": "the distribution mass from", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 214, + 473, + 223, + 484 + ], + "score": 0.87, + "content": "\\mathbb { Q }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 223, + 473, + 234, + 484 + ], + "score": 1.0, + "content": "to", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 234, + 473, + 241, + 482 + ], + "score": 0.79, + "content": "\\mathbb { P }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 242, + 473, + 244, + 484 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 21 + } + ], + "index": 39.5, + "bbox_fs": [ + 103, + 686, + 507, + 738 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 167, + 83, + 432, + 162 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 167, + 83, + 432, + 162 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 167, + 83, + 432, + 162 + ], + "spans": [ + { + "bbox": [ + 167, + 83, + 432, + 162 + ], + "score": 0.955, + "type": "image", + "image_path": "bf79812d77b73653170a552e274a8e31c047709d105768f320b54b41bce68e2a.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 167, + 83, + 432, + 109.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 167, + 109.33333333333333, + 432, + 135.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 167, + 135.66666666666666, + 432, + 162.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 162, + 169, + 449, + 190 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 162, + 169, + 449, + 180 + ], + "spans": [ + { + "bbox": [ + 162, + 169, + 449, + 180 + ], + "score": 1.0, + "content": "(a) Smoothed discrete densities: PDF versus CDF of smoothed discrete densi-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 161, + 179, + 291, + 191 + ], + "spans": [ + { + "bbox": [ + 161, + 179, + 291, + 191 + ], + "score": 1.0, + "content": "ties with non overlapping supports.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "image", + "bbox": [ + 166, + 208, + 430, + 288 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 166, + 208, + 430, + 288 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 166, + 208, + 430, + 288 + ], + "spans": [ + { + "bbox": [ + 166, + 208, + 430, + 288 + ], + "score": 0.963, + "type": "image", + "image_path": "aebf2bc5c2f3315395bc93792e96d731c49ae95608257b3482f05c10e62e4c99.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 166, + 208, + 430, + 234.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 166, + 234.66666666666666, + 430, + 261.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 166, + 261.3333333333333, + 430, + 288.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 160, + 295, + 449, + 326 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 160, + 295, + 449, + 307 + ], + "spans": [ + { + "bbox": [ + 160, + 295, + 449, + 307 + ], + "score": 1.0, + "content": "(b) Smoothed Discrete and Continuous densities: PDF versus CDF of a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 159, + 304, + 448, + 318 + ], + "spans": [ + { + "bbox": [ + 159, + 304, + 448, + 318 + ], + "score": 1.0, + "content": "smoothed discrete density and a continuous density with non overlapping sup-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 159, + 316, + 184, + 326 + ], + "spans": [ + { + "bbox": [ + 159, + 316, + 184, + 326 + ], + "score": 1.0, + "content": "ports.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "image_caption", + "bbox": [ + 106, + 339, + 505, + 384 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 339, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 352 + ], + "score": 1.0, + "content": "Figure 1: In the GAN context for example in text generation, we have to match a (smoothed) discrete", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 350, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 104, + 350, + 505, + 363 + ], + "score": 1.0, + "content": "real distribution and a continuous generator. In this case, the CDF matching enabled by Sobolev", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "IPM gives non zero discrepancy between a (smoothed) discrete and a continuous density even if the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 372, + 438, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 438, + 385 + ], + "score": 1.0, + "content": "densities have disjoint supports. This ensures non vanishing gradients of the critic.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 405, + 505, + 484 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 418 + ], + "score": 1.0, + "content": "conditions. We see that the optimal Sobolev critic separates the two distributions well. In Figure", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "2(b) we then numerically compute the gradient of the optimal Sobolev critic on a 2D grid as given", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 505, + 439 + ], + "score": 1.0, + "content": "in Equation 9 (using numerical evaluation of the CDF and finite difference for the evaluation of the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 438, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 104, + 438, + 369, + 450 + ], + "score": 1.0, + "content": "partial derivatives). We plot in Figure 2(b) the density functions of", + "type": "text" + }, + { + "bbox": [ + 370, + 439, + 377, + 448 + ], + "score": 0.81, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 438, + 394, + 450 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 394, + 438, + 403, + 450 + ], + "score": 0.86, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 438, + 506, + 450 + ], + "score": 1.0, + "content": "as well as the vector field", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "score": 1.0, + "content": "of the gradient of the optimal Sobolev critic. As discussed in Section A.1, we see that the gradient", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 458, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 331, + 475 + ], + "score": 1.0, + "content": "of the critic (wrt to the input), defines on the support of", + "type": "text" + }, + { + "bbox": [ + 332, + 460, + 371, + 474 + ], + "score": 0.94, + "content": "\\textstyle \\mu = { \\frac { \\mathbb { P } + \\mathbb { Q } } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 458, + 506, + 475 + ], + "score": 1.0, + "content": "a transportation plan for moving", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 473, + 244, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 213, + 484 + ], + "score": 1.0, + "content": "the distribution mass from", + "type": "text" + }, + { + "bbox": [ + 214, + 473, + 223, + 484 + ], + "score": 0.87, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 473, + 234, + 484 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 234, + 473, + 241, + 482 + ], + "score": 0.79, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 473, + 244, + 484 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 108, + 500, + 207, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 208, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 208, + 516 + ], + "score": 1.0, + "content": "5 SOBOLEV GAN", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 525, + 506, + 593 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "Now we turn to the problem of learning GANs with Sobolev IPM. Given the “real distribution”", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 537, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 162, + 549 + ], + "score": 0.92, + "content": "\\mathbb { P } _ { r } \\in \\mathcal { P } ( \\mathcal { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 537, + 298, + 550 + ], + "score": 1.0, + "content": ", our goal is to learn a generator", + "type": "text" + }, + { + "bbox": [ + 299, + 537, + 392, + 549 + ], + "score": 0.9, + "content": "g _ { \\boldsymbol { \\theta } } : \\mathcal { Z } \\subset \\mathbb { R } ^ { n _ { z } } \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 537, + 452, + 550 + ], + "score": 1.0, + "content": ", such that for", + "type": "text" + }, + { + "bbox": [ + 452, + 539, + 485, + 549 + ], + "score": 0.89, + "content": "z \\sim p _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 537, + 506, + 550 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 547, + 504, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 166, + 560 + ], + "score": 1.0, + "content": "distribution of", + "type": "text" + }, + { + "bbox": [ + 167, + 549, + 190, + 560 + ], + "score": 0.92, + "content": "g _ { \\boldsymbol { \\theta } } ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 547, + 336, + 560 + ], + "score": 1.0, + "content": "is close to the real data distribution", + "type": "text" + }, + { + "bbox": [ + 336, + 549, + 348, + 559 + ], + "score": 0.88, + "content": "\\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 547, + 379, + 560 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 380, + 550, + 391, + 560 + ], + "score": 0.86, + "content": "p _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 547, + 494, + 560 + ], + "score": 1.0, + "content": "is a fixed distribution on", + "type": "text" + }, + { + "bbox": [ + 494, + 549, + 504, + 558 + ], + "score": 0.8, + "content": "\\mathcal { Z }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 559, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 160, + 572 + ], + "score": 1.0, + "content": "(for instance", + "type": "text" + }, + { + "bbox": [ + 160, + 559, + 227, + 570 + ], + "score": 0.9, + "content": "z \\sim \\mathcal { N } ( 0 , I _ { n _ { z } } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 559, + 270, + 572 + ], + "score": 1.0, + "content": ". We note", + "type": "text" + }, + { + "bbox": [ + 270, + 560, + 283, + 570 + ], + "score": 0.88, + "content": "\\mathbb { Q } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 559, + 403, + 572 + ], + "score": 1.0, + "content": "for the “fake distribution” of", + "type": "text" + }, + { + "bbox": [ + 404, + 559, + 461, + 571 + ], + "score": 0.9, + "content": "g _ { \\theta } ( z ) , z \\sim p _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 559, + 506, + 572 + ], + "score": 1.0, + "content": ". Consider", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 569, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 107, + 570, + 203, + 582 + ], + "score": 0.88, + "content": "\\{ x _ { i } , i = 1 \\ldots N \\} \\sim \\bar { \\mathbb { P } } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 569, + 207, + 583 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 207, + 570, + 334, + 582 + ], + "score": 0.86, + "content": "\\{ z _ { i } , i = 1 \\ldots N \\} \\sim { \\mathcal { N } } ( 0 , I _ { n _ { z } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 569, + 356, + 583 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 357, + 570, + 447, + 582 + ], + "score": 0.92, + "content": "\\{ \\tilde { x } _ { i } , i = 1 \\ldots N \\} \\sim \\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 569, + 506, + 583 + ], + "score": 1.0, + "content": ". We consider", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 579, + 188, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 176, + 595 + ], + "score": 1.0, + "content": "these choices for", + "type": "text" + }, + { + "bbox": [ + 176, + 583, + 183, + 593 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 579, + 188, + 595 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 129, + 601, + 506, + 654 + ], + "lines": [ + { + "bbox": [ + 129, + 598, + 424, + 619 + ], + "spans": [ + { + "bbox": [ + 129, + 598, + 142, + 619 + ], + "score": 1.0, + "content": "1.", + "type": "text" + }, + { + "bbox": [ + 142, + 602, + 189, + 617 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mu = \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 598, + 202, + 619 + ], + "score": 1.0, + "content": "i.e", + "type": "text" + }, + { + "bbox": [ + 202, + 603, + 233, + 615 + ], + "score": 0.9, + "content": "\\tilde { x } \\sim \\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 598, + 245, + 619 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 245, + 603, + 320, + 615 + ], + "score": 0.93, + "content": "\\tilde { x } = g _ { \\theta } ( z ) , z \\sim p _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 598, + 412, + 619 + ], + "score": 1.0, + "content": "with equal probability", + "type": "text" + }, + { + "bbox": [ + 412, + 603, + 419, + 617 + ], + "score": 0.85, + "content": "\\textstyle { \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 598, + 424, + 619 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 127, + 617, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 127, + 617, + 142, + 633 + ], + "score": 1.0, + "content": "2.", + "type": "text" + }, + { + "bbox": [ + 142, + 621, + 162, + 631 + ], + "score": 0.8, + "content": "\\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 617, + 447, + 633 + ], + "score": 1.0, + "content": "is the implicit distribution defined by the interpolation lines between", + "type": "text" + }, + { + "bbox": [ + 447, + 620, + 459, + 630 + ], + "score": 0.87, + "content": "\\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 617, + 478, + 633 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 479, + 620, + 492, + 631 + ], + "score": 0.89, + "content": "\\mathbb { Q } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 617, + 506, + 633 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 140, + 629, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 140, + 629, + 272, + 644 + ], + "score": 1.0, + "content": "in (Gulrajani et al., 2017) i.e :", + "type": "text" + }, + { + "bbox": [ + 272, + 630, + 486, + 642 + ], + "score": 0.83, + "content": "\\tilde { x } = u x + ( 1 - u ) y , x \\sim \\mathbb { P } _ { r } , y = g _ { \\theta } ( z ) , z \\sim p _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 629, + 506, + 644 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 142, + 639, + 205, + 655 + ], + "spans": [ + { + "bbox": [ + 142, + 641, + 200, + 653 + ], + "score": 0.88, + "content": "u \\sim \\mathrm { U n i f } [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 639, + 205, + 655 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 662, + 270, + 674 + ], + "lines": [ + { + "bbox": [ + 106, + 661, + 270, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 661, + 270, + 675 + ], + "score": 1.0, + "content": "Sobolev GAN can be written as follows:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 667, + 460, + 701 + ], + "lines": [ + { + "bbox": [ + 150, + 667, + 460, + 701 + ], + "spans": [ + { + "bbox": [ + 150, + 667, + 460, + 701 + ], + "score": 0.91, + "content": "\\begin{array}{c} \\begin{array} { l } { \\displaystyle \\mathrm { A N ~ c a n ~ p e ~ w r i t t e n ~ a s ~ r o l l o w s } \\colon } \\\\ { \\displaystyle \\operatorname* { m i n } _ { g _ { \\theta } } } \\\\ { \\displaystyle \\quad { f _ { p } , \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } \\| \\nabla _ { x } f _ { p } ( \\tilde { x } _ { i } ) \\| ^ { 2 } = 1 } } \\end{array} \\hat { \\hat { \\mathcal E } } ( f _ { p } , g _ { \\theta } ) = \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( x _ { i } ) - \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( g _ { \\theta } ( z _ { i } ) ) \\end{array}", + "type": "interline_equation", + "image_path": "84c761688237f258341cc60927fb4938acb57a1bf7b4967a36aba82aa1f7d826.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 150, + 667, + 460, + 678.3333333333334 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 150, + 678.3333333333334, + 460, + 689.6666666666667 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 150, + 689.6666666666667, + 460, + 701.0000000000001 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 707, + 505, + 734 + ], + "lines": [ + { + "bbox": [ + 105, + 705, + 504, + 720 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 316, + 720 + ], + "score": 1.0, + "content": "For any choice of the parametric function class", + "type": "text" + }, + { + "bbox": [ + 317, + 707, + 332, + 719 + ], + "score": 0.88, + "content": "\\mathcal { H } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 705, + 443, + 720 + ], + "score": 1.0, + "content": ", note the constraint by", + "type": "text" + }, + { + "bbox": [ + 443, + 705, + 504, + 719 + ], + "score": 0.9, + "content": "\\hat { \\Omega } _ { S } ( f _ { p } , g _ { \\theta } ) \\ =", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 107, + 712, + 503, + 739 + ], + "spans": [ + { + "bbox": [ + 107, + 718, + 199, + 734 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { { \\frac { 1 } { N } } \\sum _ { i = 1 } ^ { N } \\left\\| \\nabla _ { x } f _ { p } ( \\tilde { x } _ { i } ) \\right\\| ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 712, + 272, + 739 + ], + "score": 1.0, + "content": ". For example if", + "type": "text" + }, + { + "bbox": [ + 273, + 719, + 326, + 734 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\mu \\ = \\ \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 712, + 332, + 739 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 332, + 718, + 503, + 734 + ], + "score": 0.79, + "content": "\\begin{array} { r c l } { \\hat { \\Omega } _ { S } ( f _ { p } , g _ { \\theta } ) } & { = } & { \\frac { 1 } { 2 N } \\sum _ { i = 1 } ^ { N } \\| \\nabla _ { x } \\boldsymbol { f } _ { p } ( x _ { i } ) \\| ^ { 2 } + } \\end{array}", + "type": "inline_equation" + } + ], + "index": 38 + } + ], + "index": 37.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 167, + 83, + 432, + 162 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 167, + 83, + 432, + 162 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 167, + 83, + 432, + 162 + ], + "spans": [ + { + "bbox": [ + 167, + 83, + 432, + 162 + ], + "score": 0.955, + "type": "image", + "image_path": "bf79812d77b73653170a552e274a8e31c047709d105768f320b54b41bce68e2a.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 167, + 83, + 432, + 109.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 167, + 109.33333333333333, + 432, + 135.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 167, + 135.66666666666666, + 432, + 162.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 162, + 169, + 449, + 190 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 162, + 169, + 449, + 180 + ], + "spans": [ + { + "bbox": [ + 162, + 169, + 449, + 180 + ], + "score": 1.0, + "content": "(a) Smoothed discrete densities: PDF versus CDF of smoothed discrete densi-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 161, + 179, + 291, + 191 + ], + "spans": [ + { + "bbox": [ + 161, + 179, + 291, + 191 + ], + "score": 1.0, + "content": "ties with non overlapping supports.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "image", + "bbox": [ + 166, + 208, + 430, + 288 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 166, + 208, + 430, + 288 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 166, + 208, + 430, + 288 + ], + "spans": [ + { + "bbox": [ + 166, + 208, + 430, + 288 + ], + "score": 0.963, + "type": "image", + "image_path": "aebf2bc5c2f3315395bc93792e96d731c49ae95608257b3482f05c10e62e4c99.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 166, + 208, + 430, + 234.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 166, + 234.66666666666666, + 430, + 261.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 166, + 261.3333333333333, + 430, + 288.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 160, + 295, + 449, + 326 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 160, + 295, + 449, + 307 + ], + "spans": [ + { + "bbox": [ + 160, + 295, + 449, + 307 + ], + "score": 1.0, + "content": "(b) Smoothed Discrete and Continuous densities: PDF versus CDF of a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 159, + 304, + 448, + 318 + ], + "spans": [ + { + "bbox": [ + 159, + 304, + 448, + 318 + ], + "score": 1.0, + "content": "smoothed discrete density and a continuous density with non overlapping sup-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 159, + 316, + 184, + 326 + ], + "spans": [ + { + "bbox": [ + 159, + 316, + 184, + 326 + ], + "score": 1.0, + "content": "ports.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "image_caption", + "bbox": [ + 106, + 339, + 505, + 384 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 339, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 352 + ], + "score": 1.0, + "content": "Figure 1: In the GAN context for example in text generation, we have to match a (smoothed) discrete", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 350, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 104, + 350, + 505, + 363 + ], + "score": 1.0, + "content": "real distribution and a continuous generator. In this case, the CDF matching enabled by Sobolev", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "IPM gives non zero discrepancy between a (smoothed) discrete and a continuous density even if the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 372, + 438, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 438, + 385 + ], + "score": 1.0, + "content": "densities have disjoint supports. This ensures non vanishing gradients of the critic.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 405, + 505, + 484 + ], + "lines": [], + "index": 18, + "bbox_fs": [ + 104, + 405, + 506, + 484 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 500, + 207, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 208, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 208, + 516 + ], + "score": 1.0, + "content": "5 SOBOLEV GAN", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 525, + 506, + 593 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "Now we turn to the problem of learning GANs with Sobolev IPM. Given the “real distribution”", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 537, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 162, + 549 + ], + "score": 0.92, + "content": "\\mathbb { P } _ { r } \\in \\mathcal { P } ( \\mathcal { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 537, + 298, + 550 + ], + "score": 1.0, + "content": ", our goal is to learn a generator", + "type": "text" + }, + { + "bbox": [ + 299, + 537, + 392, + 549 + ], + "score": 0.9, + "content": "g _ { \\boldsymbol { \\theta } } : \\mathcal { Z } \\subset \\mathbb { R } ^ { n _ { z } } \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 537, + 452, + 550 + ], + "score": 1.0, + "content": ", such that for", + "type": "text" + }, + { + "bbox": [ + 452, + 539, + 485, + 549 + ], + "score": 0.89, + "content": "z \\sim p _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 537, + 506, + 550 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 547, + 504, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 166, + 560 + ], + "score": 1.0, + "content": "distribution of", + "type": "text" + }, + { + "bbox": [ + 167, + 549, + 190, + 560 + ], + "score": 0.92, + "content": "g _ { \\boldsymbol { \\theta } } ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 547, + 336, + 560 + ], + "score": 1.0, + "content": "is close to the real data distribution", + "type": "text" + }, + { + "bbox": [ + 336, + 549, + 348, + 559 + ], + "score": 0.88, + "content": "\\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 547, + 379, + 560 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 380, + 550, + 391, + 560 + ], + "score": 0.86, + "content": "p _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 547, + 494, + 560 + ], + "score": 1.0, + "content": "is a fixed distribution on", + "type": "text" + }, + { + "bbox": [ + 494, + 549, + 504, + 558 + ], + "score": 0.8, + "content": "\\mathcal { Z }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 559, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 160, + 572 + ], + "score": 1.0, + "content": "(for instance", + "type": "text" + }, + { + "bbox": [ + 160, + 559, + 227, + 570 + ], + "score": 0.9, + "content": "z \\sim \\mathcal { N } ( 0 , I _ { n _ { z } } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 559, + 270, + 572 + ], + "score": 1.0, + "content": ". We note", + "type": "text" + }, + { + "bbox": [ + 270, + 560, + 283, + 570 + ], + "score": 0.88, + "content": "\\mathbb { Q } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 559, + 403, + 572 + ], + "score": 1.0, + "content": "for the “fake distribution” of", + "type": "text" + }, + { + "bbox": [ + 404, + 559, + 461, + 571 + ], + "score": 0.9, + "content": "g _ { \\theta } ( z ) , z \\sim p _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 559, + 506, + 572 + ], + "score": 1.0, + "content": ". Consider", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 569, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 107, + 570, + 203, + 582 + ], + "score": 0.88, + "content": "\\{ x _ { i } , i = 1 \\ldots N \\} \\sim \\bar { \\mathbb { P } } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 569, + 207, + 583 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 207, + 570, + 334, + 582 + ], + "score": 0.86, + "content": "\\{ z _ { i } , i = 1 \\ldots N \\} \\sim { \\mathcal { N } } ( 0 , I _ { n _ { z } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 569, + 356, + 583 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 357, + 570, + 447, + 582 + ], + "score": 0.92, + "content": "\\{ \\tilde { x } _ { i } , i = 1 \\ldots N \\} \\sim \\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 569, + 506, + 583 + ], + "score": 1.0, + "content": ". We consider", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 579, + 188, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 176, + 595 + ], + "score": 1.0, + "content": "these choices for", + "type": "text" + }, + { + "bbox": [ + 176, + 583, + 183, + 593 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 579, + 188, + 595 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 525, + 506, + 595 + ] + }, + { + "type": "text", + "bbox": [ + 129, + 601, + 506, + 654 + ], + "lines": [ + { + "bbox": [ + 129, + 598, + 424, + 619 + ], + "spans": [ + { + "bbox": [ + 129, + 598, + 142, + 619 + ], + "score": 1.0, + "content": "1.", + "type": "text" + }, + { + "bbox": [ + 142, + 602, + 189, + 617 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mu = \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 598, + 202, + 619 + ], + "score": 1.0, + "content": "i.e", + "type": "text" + }, + { + "bbox": [ + 202, + 603, + 233, + 615 + ], + "score": 0.9, + "content": "\\tilde { x } \\sim \\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 598, + 245, + 619 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 245, + 603, + 320, + 615 + ], + "score": 0.93, + "content": "\\tilde { x } = g _ { \\theta } ( z ) , z \\sim p _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 598, + 412, + 619 + ], + "score": 1.0, + "content": "with equal probability", + "type": "text" + }, + { + "bbox": [ + 412, + 603, + 419, + 617 + ], + "score": 0.85, + "content": "\\textstyle { \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 598, + 424, + 619 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 127, + 617, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 127, + 617, + 142, + 633 + ], + "score": 1.0, + "content": "2.", + "type": "text" + }, + { + "bbox": [ + 142, + 621, + 162, + 631 + ], + "score": 0.8, + "content": "\\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 617, + 447, + 633 + ], + "score": 1.0, + "content": "is the implicit distribution defined by the interpolation lines between", + "type": "text" + }, + { + "bbox": [ + 447, + 620, + 459, + 630 + ], + "score": 0.87, + "content": "\\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 617, + 478, + 633 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 479, + 620, + 492, + 631 + ], + "score": 0.89, + "content": "\\mathbb { Q } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 617, + 506, + 633 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 140, + 629, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 140, + 629, + 272, + 644 + ], + "score": 1.0, + "content": "in (Gulrajani et al., 2017) i.e :", + "type": "text" + }, + { + "bbox": [ + 272, + 630, + 486, + 642 + ], + "score": 0.83, + "content": "\\tilde { x } = u x + ( 1 - u ) y , x \\sim \\mathbb { P } _ { r } , y = g _ { \\theta } ( z ) , z \\sim p _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 629, + 506, + 644 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 142, + 639, + 205, + 655 + ], + "spans": [ + { + "bbox": [ + 142, + 641, + 200, + 653 + ], + "score": 0.88, + "content": "u \\sim \\mathrm { U n i f } [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 639, + 205, + 655 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5, + "bbox_fs": [ + 127, + 598, + 506, + 655 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 662, + 270, + 674 + ], + "lines": [ + { + "bbox": [ + 106, + 661, + 270, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 661, + 270, + 675 + ], + "score": 1.0, + "content": "Sobolev GAN can be written as follows:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 661, + 270, + 675 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 667, + 460, + 701 + ], + "lines": [ + { + "bbox": [ + 150, + 667, + 460, + 701 + ], + "spans": [ + { + "bbox": [ + 150, + 667, + 460, + 701 + ], + "score": 0.91, + "content": "\\begin{array}{c} \\begin{array} { l } { \\displaystyle \\mathrm { A N ~ c a n ~ p e ~ w r i t t e n ~ a s ~ r o l l o w s } \\colon } \\\\ { \\displaystyle \\operatorname* { m i n } _ { g _ { \\theta } } } \\\\ { \\displaystyle \\quad { f _ { p } , \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } \\| \\nabla _ { x } f _ { p } ( \\tilde { x } _ { i } ) \\| ^ { 2 } = 1 } } \\end{array} \\hat { \\hat { \\mathcal E } } ( f _ { p } , g _ { \\theta } ) = \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( x _ { i } ) - \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( g _ { \\theta } ( z _ { i } ) ) \\end{array}", + "type": "interline_equation", + "image_path": "84c761688237f258341cc60927fb4938acb57a1bf7b4967a36aba82aa1f7d826.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 150, + 667, + 460, + 678.3333333333334 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 150, + 678.3333333333334, + 460, + 689.6666666666667 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 150, + 689.6666666666667, + 460, + 701.0000000000001 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 707, + 505, + 734 + ], + "lines": [ + { + "bbox": [ + 105, + 705, + 504, + 720 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 316, + 720 + ], + "score": 1.0, + "content": "For any choice of the parametric function class", + "type": "text" + }, + { + "bbox": [ + 317, + 707, + 332, + 719 + ], + "score": 0.88, + "content": "\\mathcal { H } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 705, + 443, + 720 + ], + "score": 1.0, + "content": ", note the constraint by", + "type": "text" + }, + { + "bbox": [ + 443, + 705, + 504, + 719 + ], + "score": 0.9, + "content": "\\hat { \\Omega } _ { S } ( f _ { p } , g _ { \\theta } ) \\ =", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 107, + 712, + 503, + 739 + ], + "spans": [ + { + "bbox": [ + 107, + 718, + 199, + 734 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { { \\frac { 1 } { N } } \\sum _ { i = 1 } ^ { N } \\left\\| \\nabla _ { x } f _ { p } ( \\tilde { x } _ { i } ) \\right\\| ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 712, + 272, + 739 + ], + "score": 1.0, + "content": ". For example if", + "type": "text" + }, + { + "bbox": [ + 273, + 719, + 326, + 734 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\mu \\ = \\ \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 712, + 332, + 739 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 332, + 718, + 503, + 734 + ], + "score": 0.79, + "content": "\\begin{array} { r c l } { \\hat { \\Omega } _ { S } ( f _ { p } , g _ { \\theta } ) } & { = } & { \\frac { 1 } { 2 N } \\sum _ { i = 1 } ^ { N } \\| \\nabla _ { x } \\boldsymbol { f } _ { p } ( x _ { i } ) \\| ^ { 2 } + } \\end{array}", + "type": "inline_equation" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 705, + 504, + 739 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 122, + 98, + 286, + 217 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 122, + 98, + 286, + 217 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 98, + 286, + 217 + ], + "spans": [ + { + "bbox": [ + 122, + 98, + 286, + 217 + ], + "score": 0.946, + "type": "image", + "image_path": "7e31e2430319983c215121a0e70ffc66b6fbcb2eef7bf131143c1e35323dcb1d.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 122, + 98, + 286, + 111.22222222222223 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 122, + 111.22222222222223, + 286, + 124.44444444444446 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 122, + 124.44444444444446, + 286, + 137.66666666666669 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 122, + 137.66666666666669, + 286, + 150.8888888888889 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 122, + 150.8888888888889, + 286, + 164.11111111111114 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 122, + 164.11111111111114, + 286, + 177.33333333333337 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 122, + 177.33333333333337, + 286, + 190.5555555555556 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 122, + 190.5555555555556, + 286, + 203.77777777777783 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 122, + 203.77777777777783, + 286, + 217.00000000000006 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 307, + 228, + 491, + 269 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 307, + 227, + 492, + 239 + ], + "spans": [ + { + "bbox": [ + 307, + 227, + 492, + 239 + ], + "score": 1.0, + "content": "(b) Optimal Sobolev Transport Vector Field", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 308, + 236, + 490, + 250 + ], + "spans": [ + { + "bbox": [ + 308, + 238, + 344, + 249 + ], + "score": 0.92, + "content": "\\nabla _ { x } f ^ { * } { \\bar { ( x ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 236, + 454, + 250 + ], + "score": 1.0, + "content": "(arrows are the vector field", + "type": "text" + }, + { + "bbox": [ + 454, + 238, + 490, + 249 + ], + "score": 0.92, + "content": "\\nabla _ { x } f ^ { * } ( x )", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 307, + 248, + 492, + 259 + ], + "spans": [ + { + "bbox": [ + 307, + 248, + 492, + 259 + ], + "score": 1.0, + "content": "evaluated on the 2D grid. Magnitude of arrows was", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 308, + 259, + 406, + 268 + ], + "spans": [ + { + "bbox": [ + 308, + 259, + 406, + 268 + ], + "score": 1.0, + "content": "rescaled for visualization.)", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + } + ], + "index": 9.25 + }, + { + "type": "image", + "bbox": [ + 327, + 89, + 472, + 215 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 327, + 89, + 472, + 215 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 327, + 89, + 472, + 215 + ], + "spans": [ + { + "bbox": [ + 327, + 89, + 472, + 215 + ], + "score": 0.965, + "type": "image", + "image_path": "c2e0765d22d99d612ec7689965f0fb6fce3a5271eaa33de3baadab7bc9b8eda2.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 327, + 89, + 472, + 152.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 327, + 152.0, + 472, + 215.0 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 117, + 228, + 300, + 249 + ], + "lines": [ + { + "bbox": [ + 117, + 227, + 300, + 240 + ], + "spans": [ + { + "bbox": [ + 117, + 227, + 300, + 240 + ], + "score": 1.0, + "content": "(a) Numerical solution of the PDE satisfied by the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 117, + 238, + 202, + 249 + ], + "spans": [ + { + "bbox": [ + 117, + 238, + 202, + 249 + ], + "score": 1.0, + "content": "optimal Sobolev critic.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 281, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 294 + ], + "score": 1.0, + "content": "Figure 2: Numerical solution of the PDE satisfied by the optimal Sobolev critic and the transporta-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "score": 1.0, + "content": "tion Plan induced by the gradient of Sobolev critic. The gradient of the critic (wrt to the input),", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 302, + 504, + 320 + ], + "spans": [ + { + "bbox": [ + 104, + 302, + 209, + 320 + ], + "score": 1.0, + "content": "defines on the support of", + "type": "text" + }, + { + "bbox": [ + 210, + 303, + 249, + 318 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\bar { \\boldsymbol { \\mu } } = \\frac { \\mathbb { P } + \\mathbb { Q } } { 2 } , } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 302, + 495, + 320 + ], + "score": 1.0, + "content": "a transportation plan for moving the distribution mass from", + "type": "text" + }, + { + "bbox": [ + 495, + 305, + 504, + 316 + ], + "score": 0.83, + "content": "\\mathbb { Q }", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 116, + 329 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 316, + 124, + 326 + ], + "score": 0.6, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 315, + 506, + 329 + ], + "score": 1.0, + "content": ". For a theoretical analysis of this transportation plan and its relation to Fokker-Planck diffusion", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 327, + 277, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 277, + 339 + ], + "score": 1.0, + "content": "the reader is invited to check Appendix A.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 360, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 107, + 360, + 507, + 378 + ], + "spans": [ + { + "bbox": [ + 107, + 361, + 218, + 376 + ], + "score": 0.9, + "content": "\\begin{array} { r l } { } & { { } \\frac { 1 } { 2 N } \\sum _ { i = 1 } ^ { N } \\left\\| \\nabla _ { x } f _ { p } ( g _ { \\theta } ( z _ { i } ) ) \\right\\| ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 360, + 507, + 378 + ], + "score": 1.0, + "content": ". Note that, since the optimal theoretical critic is achieved on the sphere,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 386 + ], + "score": 1.0, + "content": "we impose a sphere constraint rather than a ball constraint. Similar to (Mroueh & Sercu, 2017) we", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 384, + 471, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 471, + 397 + ], + "score": 1.0, + "content": "define the Augmented Lagrangian corresponding to Sobolev GAN objective and constraint", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 405, + 445, + 427 + ], + "lines": [ + { + "bbox": [ + 165, + 405, + 445, + 427 + ], + "spans": [ + { + "bbox": [ + 165, + 405, + 445, + 427 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { S } ( p , \\theta , \\lambda ) = \\hat { \\mathcal { E } } ( f _ { p } , g _ { \\theta } ) + \\lambda ( 1 - \\hat { \\Omega } _ { S } ( f _ { p } , g _ { \\theta } ) ) - \\frac { \\rho } { 2 } ( \\hat { \\Omega } _ { S } ( f _ { p } , g _ { \\theta } ) - 1 ) ^ { 2 }", + "type": "interline_equation", + "image_path": "875dea4cf700e6a0eaa1835a680f4276eca8648f8b599108f6c3a1ed53f1fb1f.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 165, + 405, + 445, + 427 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 106, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 133, + 448 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 436, + 140, + 446 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 435, + 264, + 448 + ], + "score": 1.0, + "content": "is the Lagrange multiplier and", + "type": "text" + }, + { + "bbox": [ + 264, + 436, + 289, + 447 + ], + "score": 0.91, + "content": "\\rho > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "is the quadratic penalty weight. We alternate between", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "optimizing the critic and the generator. We impose the constraint when training the critic only. Given", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 107, + 457, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 107, + 458, + 113, + 468 + ], + "score": 0.73, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 457, + 156, + 471 + ], + "score": 1.0, + "content": ", we solve", + "type": "text" + }, + { + "bbox": [ + 156, + 457, + 251, + 470 + ], + "score": 0.86, + "content": "\\begin{array} { r } { \\operatorname* { m a x } _ { p } \\operatorname* { m i n } _ { \\lambda } \\mathcal { L } _ { S } ( p , \\theta , \\lambda ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 457, + 482, + 471 + ], + "score": 1.0, + "content": ", for training the critic. Then given the critic parameters", + "type": "text" + }, + { + "bbox": [ + 483, + 460, + 489, + 469 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 457, + 505, + 471 + ], + "score": 1.0, + "content": "we", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 469, + 481, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 232, + 484 + ], + "score": 1.0, + "content": "optimize the generator weights", + "type": "text" + }, + { + "bbox": [ + 232, + 471, + 239, + 481 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 470, + 366, + 484 + ], + "score": 1.0, + "content": "to minimize the objective minθ", + "type": "text" + }, + { + "bbox": [ + 366, + 469, + 405, + 483 + ], + "score": 0.89, + "content": "\\hat { \\mathcal { E } } ( f _ { p } , g _ { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 470, + 481, + 484 + ], + "score": 1.0, + "content": ". See Algorithm 1.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "title", + "bbox": [ + 107, + 499, + 219, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 220, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 220, + 513 + ], + "score": 1.0, + "content": "Algorithm 1 Sobolev GAN", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "table", + "bbox": [ + 109, + 513, + 505, + 683 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 109, + 513, + 505, + 683 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 513, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 109, + 513, + 505, + 683 + ], + "score": 0.87, + "html": "
Input: ρ penalty weight, n Learning rate, nc number of iterations for training the critic, N batch size
Initialize p, 0,λ=0
repeat
for j = 1 to nc do
Samplea minibatch xi,i=1...N,xi~ Pr
Sample a minibatch zi,i = 1...N,zi ~ Pz
(gp,gx)←(VpLs,VxLs)(p,0,λ)
p ←p+η ADAM(p,9p)
λ ← λ- pgx {SGD rule on 入with learning rate ρ} end for
Sample zi,i= 1...N, zi ~ Pz
d←Vθ8(fp,g0)=-VθN∑=1fp(g0(zi)) N
0←0-nADAM(0,dθ)
until θ converges
", + "type": "table", + "image_path": "b7766853bc2e593a135cf95879ea92915912856229217e062dbd9939f34d0ad6.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 109, + 513, + 505, + 569.6666666666666 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 109, + 569.6666666666666, + 505, + 626.3333333333333 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 109, + 626.3333333333333, + 505, + 682.9999999999999 + ], + "spans": [], + "index": 33 + } + ] + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 249, + 711 + ], + "score": 1.0, + "content": "Remark 1. Note that in Algorithm", + "type": "text" + }, + { + "bbox": [ + 249, + 700, + 254, + 709 + ], + "score": 0.37, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 698, + 505, + 711 + ], + "score": 1.0, + "content": ", we obtain a biased estimate since we are using same samples", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "for the cost function and the constraint, but the incurred bias can be shown to be small and vanishing", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 721, + 476, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 476, + 732 + ], + "score": 1.0, + "content": "as the number of samples increases as shown and justified in (Shivaswamy & Jebara, 2010).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 122, + 98, + 286, + 217 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 122, + 98, + 286, + 217 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 98, + 286, + 217 + ], + "spans": [ + { + "bbox": [ + 122, + 98, + 286, + 217 + ], + "score": 0.946, + "type": "image", + "image_path": "7e31e2430319983c215121a0e70ffc66b6fbcb2eef7bf131143c1e35323dcb1d.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 122, + 98, + 286, + 111.22222222222223 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 122, + 111.22222222222223, + 286, + 124.44444444444446 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 122, + 124.44444444444446, + 286, + 137.66666666666669 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 122, + 137.66666666666669, + 286, + 150.8888888888889 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 122, + 150.8888888888889, + 286, + 164.11111111111114 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 122, + 164.11111111111114, + 286, + 177.33333333333337 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 122, + 177.33333333333337, + 286, + 190.5555555555556 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 122, + 190.5555555555556, + 286, + 203.77777777777783 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 122, + 203.77777777777783, + 286, + 217.00000000000006 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 307, + 228, + 491, + 269 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 307, + 227, + 492, + 239 + ], + "spans": [ + { + "bbox": [ + 307, + 227, + 492, + 239 + ], + "score": 1.0, + "content": "(b) Optimal Sobolev Transport Vector Field", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 308, + 236, + 490, + 250 + ], + "spans": [ + { + "bbox": [ + 308, + 238, + 344, + 249 + ], + "score": 0.92, + "content": "\\nabla _ { x } f ^ { * } { \\bar { ( x ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 236, + 454, + 250 + ], + "score": 1.0, + "content": "(arrows are the vector field", + "type": "text" + }, + { + "bbox": [ + 454, + 238, + 490, + 249 + ], + "score": 0.92, + "content": "\\nabla _ { x } f ^ { * } ( x )", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 307, + 248, + 492, + 259 + ], + "spans": [ + { + "bbox": [ + 307, + 248, + 492, + 259 + ], + "score": 1.0, + "content": "evaluated on the 2D grid. Magnitude of arrows was", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 308, + 259, + 406, + 268 + ], + "spans": [ + { + "bbox": [ + 308, + 259, + 406, + 268 + ], + "score": 1.0, + "content": "rescaled for visualization.)", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + } + ], + "index": 9.25 + }, + { + "type": "image", + "bbox": [ + 327, + 89, + 472, + 215 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 327, + 89, + 472, + 215 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 327, + 89, + 472, + 215 + ], + "spans": [ + { + "bbox": [ + 327, + 89, + 472, + 215 + ], + "score": 0.965, + "type": "image", + "image_path": "c2e0765d22d99d612ec7689965f0fb6fce3a5271eaa33de3baadab7bc9b8eda2.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 327, + 89, + 472, + 152.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 327, + 152.0, + 472, + 215.0 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 117, + 228, + 300, + 249 + ], + "lines": [ + { + "bbox": [ + 117, + 227, + 300, + 240 + ], + "spans": [ + { + "bbox": [ + 117, + 227, + 300, + 240 + ], + "score": 1.0, + "content": "(a) Numerical solution of the PDE satisfied by the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 117, + 238, + 202, + 249 + ], + "spans": [ + { + "bbox": [ + 117, + 238, + 202, + 249 + ], + "score": 1.0, + "content": "optimal Sobolev critic.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 117, + 227, + 300, + 249 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 281, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 294 + ], + "score": 1.0, + "content": "Figure 2: Numerical solution of the PDE satisfied by the optimal Sobolev critic and the transporta-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "score": 1.0, + "content": "tion Plan induced by the gradient of Sobolev critic. The gradient of the critic (wrt to the input),", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 302, + 504, + 320 + ], + "spans": [ + { + "bbox": [ + 104, + 302, + 209, + 320 + ], + "score": 1.0, + "content": "defines on the support of", + "type": "text" + }, + { + "bbox": [ + 210, + 303, + 249, + 318 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\bar { \\boldsymbol { \\mu } } = \\frac { \\mathbb { P } + \\mathbb { Q } } { 2 } , } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 302, + 495, + 320 + ], + "score": 1.0, + "content": "a transportation plan for moving the distribution mass from", + "type": "text" + }, + { + "bbox": [ + 495, + 305, + 504, + 316 + ], + "score": 0.83, + "content": "\\mathbb { Q }", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 116, + 329 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 316, + 124, + 326 + ], + "score": 0.6, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 315, + 506, + 329 + ], + "score": 1.0, + "content": ". For a theoretical analysis of this transportation plan and its relation to Fokker-Planck diffusion", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 327, + 277, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 277, + 339 + ], + "score": 1.0, + "content": "the reader is invited to check Appendix A.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19, + "bbox_fs": [ + 104, + 281, + 506, + 339 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 360, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 107, + 360, + 507, + 378 + ], + "spans": [ + { + "bbox": [ + 107, + 361, + 218, + 376 + ], + "score": 0.9, + "content": "\\begin{array} { r l } { } & { { } \\frac { 1 } { 2 N } \\sum _ { i = 1 } ^ { N } \\left\\| \\nabla _ { x } f _ { p } ( g _ { \\theta } ( z _ { i } ) ) \\right\\| ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 360, + 507, + 378 + ], + "score": 1.0, + "content": ". Note that, since the optimal theoretical critic is achieved on the sphere,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 386 + ], + "score": 1.0, + "content": "we impose a sphere constraint rather than a ball constraint. Similar to (Mroueh & Sercu, 2017) we", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 384, + 471, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 471, + 397 + ], + "score": 1.0, + "content": "define the Augmented Lagrangian corresponding to Sobolev GAN objective and constraint", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 360, + 507, + 397 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 405, + 445, + 427 + ], + "lines": [ + { + "bbox": [ + 165, + 405, + 445, + 427 + ], + "spans": [ + { + "bbox": [ + 165, + 405, + 445, + 427 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { S } ( p , \\theta , \\lambda ) = \\hat { \\mathcal { E } } ( f _ { p } , g _ { \\theta } ) + \\lambda ( 1 - \\hat { \\Omega } _ { S } ( f _ { p } , g _ { \\theta } ) ) - \\frac { \\rho } { 2 } ( \\hat { \\Omega } _ { S } ( f _ { p } , g _ { \\theta } ) - 1 ) ^ { 2 }", + "type": "interline_equation", + "image_path": "875dea4cf700e6a0eaa1835a680f4276eca8648f8b599108f6c3a1ed53f1fb1f.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 165, + 405, + 445, + 427 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 106, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 133, + 448 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 436, + 140, + 446 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 435, + 264, + 448 + ], + "score": 1.0, + "content": "is the Lagrange multiplier and", + "type": "text" + }, + { + "bbox": [ + 264, + 436, + 289, + 447 + ], + "score": 0.91, + "content": "\\rho > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "is the quadratic penalty weight. We alternate between", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "optimizing the critic and the generator. We impose the constraint when training the critic only. Given", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 107, + 457, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 107, + 458, + 113, + 468 + ], + "score": 0.73, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 457, + 156, + 471 + ], + "score": 1.0, + "content": ", we solve", + "type": "text" + }, + { + "bbox": [ + 156, + 457, + 251, + 470 + ], + "score": 0.86, + "content": "\\begin{array} { r } { \\operatorname* { m a x } _ { p } \\operatorname* { m i n } _ { \\lambda } \\mathcal { L } _ { S } ( p , \\theta , \\lambda ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 457, + 482, + 471 + ], + "score": 1.0, + "content": ", for training the critic. Then given the critic parameters", + "type": "text" + }, + { + "bbox": [ + 483, + 460, + 489, + 469 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 457, + 505, + 471 + ], + "score": 1.0, + "content": "we", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 469, + 481, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 232, + 484 + ], + "score": 1.0, + "content": "optimize the generator weights", + "type": "text" + }, + { + "bbox": [ + 232, + 471, + 239, + 481 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 470, + 366, + 484 + ], + "score": 1.0, + "content": "to minimize the objective minθ", + "type": "text" + }, + { + "bbox": [ + 366, + 469, + 405, + 483 + ], + "score": 0.89, + "content": "\\hat { \\mathcal { E } } ( f _ { p } , g _ { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 470, + 481, + 484 + ], + "score": 1.0, + "content": ". See Algorithm 1.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 435, + 505, + 484 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 499, + 219, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 220, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 220, + 513 + ], + "score": 1.0, + "content": "Algorithm 1 Sobolev GAN", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "table", + "bbox": [ + 109, + 513, + 505, + 683 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 109, + 513, + 505, + 683 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 513, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 109, + 513, + 505, + 683 + ], + "score": 0.87, + "html": "
Input: ρ penalty weight, n Learning rate, nc number of iterations for training the critic, N batch size
Initialize p, 0,λ=0
repeat
for j = 1 to nc do
Samplea minibatch xi,i=1...N,xi~ Pr
Sample a minibatch zi,i = 1...N,zi ~ Pz
(gp,gx)←(VpLs,VxLs)(p,0,λ)
p ←p+η ADAM(p,9p)
λ ← λ- pgx {SGD rule on 入with learning rate ρ} end for
Sample zi,i= 1...N, zi ~ Pz
d←Vθ8(fp,g0)=-VθN∑=1fp(g0(zi)) N
0←0-nADAM(0,dθ)
until θ converges
", + "type": "table", + "image_path": "b7766853bc2e593a135cf95879ea92915912856229217e062dbd9939f34d0ad6.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 109, + 513, + 505, + 569.6666666666666 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 109, + 569.6666666666666, + 505, + 626.3333333333333 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 109, + 626.3333333333333, + 505, + 682.9999999999999 + ], + "spans": [], + "index": 33 + } + ] + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 249, + 711 + ], + "score": 1.0, + "content": "Remark 1. Note that in Algorithm", + "type": "text" + }, + { + "bbox": [ + 249, + 700, + 254, + 709 + ], + "score": 0.37, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 698, + 505, + 711 + ], + "score": 1.0, + "content": ", we obtain a biased estimate since we are using same samples", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "for the cost function and the constraint, but the incurred bias can be shown to be small and vanishing", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 721, + 476, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 476, + 732 + ], + "score": 1.0, + "content": "as the number of samples increases as shown and justified in (Shivaswamy & Jebara, 2010).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 104, + 698, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 370, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 371, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 371, + 96 + ], + "score": 1.0, + "content": "Relation to WGAN-GP. WGAN-GP can be written as follows:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 96, + 457, + 130 + ], + "lines": [ + { + "bbox": [ + 153, + 96, + 457, + 130 + ], + "spans": [ + { + "bbox": [ + 153, + 96, + 457, + 130 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { \\substack { g _ { \\theta } } } \\operatorname* { s u p } _ { f , \\| \\nabla _ { x } f _ { p } ( \\bar { x } _ { i } ) \\| = 1 , \\bar { x } _ { i } \\sim \\mu _ { G P } } \\hat { \\bar { \\mathcal { E } } } ( f _ { p } , g _ { \\theta } ) = \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( x _ { i } ) - \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( g _ { \\theta } ( z _ { i } ) )", + "type": "interline_equation", + "image_path": "791192fb27625a05cd429c211071280256274c29486f742719fb77e1e0b8c129.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 153, + 96, + 457, + 107.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 153, + 107.33333333333333, + 457, + 118.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 153, + 118.66666666666666, + 457, + 130.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 132, + 505, + 180 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 505, + 146 + ], + "score": 1.0, + "content": "The main difference between WGAN-GP and our setting, is that WGAN-GP enforces pointwise con-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 102, + 143, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 102, + 143, + 225, + 162 + ], + "score": 1.0, + "content": "straints on points drawn from", + "type": "text" + }, + { + "bbox": [ + 225, + 147, + 264, + 158 + ], + "score": 0.88, + "content": "\\mu = \\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 143, + 402, + 162 + ], + "score": 1.0, + "content": "via a point-wise quadratic penalty", + "type": "text" + }, + { + "bbox": [ + 402, + 144, + 506, + 159 + ], + "score": 0.91, + "content": "\\begin{array} { r l } { { \\big ( \\hat { \\mathcal { E } } ( f _ { p } , g _ { \\theta } ) - \\lambda \\sum _ { i = 1 } ^ { N } \\bigl ( 1 - \\bigl ) } \\quad } & { { } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 158, + 504, + 170 + ], + "spans": [ + { + "bbox": [ + 107, + 158, + 165, + 170 + ], + "score": 0.91, + "content": "\\| \\nabla _ { x } f ( \\widetilde { x } _ { i } ) \\| ) ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 158, + 504, + 170 + ], + "score": 1.0, + "content": "while we enforce that constraint on average as a Sobolev norm, allowing us the co-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 168, + 354, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 354, + 181 + ], + "score": 1.0, + "content": "ordinate weighted conditional CDF interpretation of the IPM.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "title", + "bbox": [ + 108, + 196, + 301, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 195, + 303, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 303, + 211 + ], + "score": 1.0, + "content": "6 APPLICATIONS OF SOBOLEV GAN", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 220, + 505, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 220, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 506, + 234 + ], + "score": 1.0, + "content": "Sobolev IPM has two important properties; The first stems from the conditioning built in to the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "metric through the weighted conditional CDF interpretation. The second stems from the diffusion", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 242, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 104, + 242, + 506, + 256 + ], + "score": 1.0, + "content": "properties that the critic of Sobolev IPM satisfies (Appendix A) that has theoretical and practical ties", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 253, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 506, + 267 + ], + "score": 1.0, + "content": "to the Laplacian regularizer and diffusion on manifolds used in semi-supervised learning (Belkin", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 263, + 159, + 277 + ], + "spans": [ + { + "bbox": [ + 104, + 263, + 159, + 277 + ], + "score": 1.0, + "content": "et al., 2006).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 281, + 505, + 370 + ], + "lines": [ + { + "bbox": [ + 105, + 282, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 506, + 294 + ], + "score": 1.0, + "content": "In this Section, we exploit those two important properties in two applications of Sobolev GAN: Text", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 293, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 506, + 305 + ], + "score": 1.0, + "content": "generation and semi-supervised learning. First in text generation, which can be seen as a discrete", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 303, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 104, + 303, + 506, + 316 + ], + "score": 1.0, + "content": "sequence generation, Sobolev GAN (and WGAN-GP) enable training GANs without need to do", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 315, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 505, + 327 + ], + "score": 1.0, + "content": "explicit brute-force conditioning. We attribute this to the built-in conditioning in Sobolev IPM (for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "the sequence aspect) and to the CDF matching (for the discrete aspect). Secondly using GANs in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 336, + 507, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 507, + 350 + ], + "score": 1.0, + "content": "semi-supervised learning is a promising avenue for learning using unlabeled data. We show that a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 348, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 506, + 360 + ], + "score": 1.0, + "content": "variant of Sobolev GAN can achieve strong SSL results on the CIFAR-10 dataset, without the need", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 360, + 435, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 435, + 370 + ], + "score": 1.0, + "content": "of any form of activation normalization in the networks or any extra ad hoc tricks.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 106, + 383, + 309, + 394 + ], + "lines": [ + { + "bbox": [ + 106, + 383, + 311, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 311, + 396 + ], + "score": 1.0, + "content": "6.1 TEXT GENERATION WITH SOBOLEV GAN", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 403, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 106, + 404, + 504, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 504, + 415 + ], + "score": 1.0, + "content": "In this Section, we present an empirical study of Sobolev GAN in character level text generation.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 415, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 505, + 426 + ], + "score": 1.0, + "content": "Our empirical study on end to end training of character-level GAN for text generation is articulated", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 281, + 438 + ], + "score": 1.0, + "content": "on four dimensions (loss, critic, generator,", + "type": "text" + }, + { + "bbox": [ + 282, + 427, + 290, + 437 + ], + "score": 0.73, + "content": "\\pmb { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "). (1) the loss used (GP: WGAN-GP (Gulrajani et al.,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "score": 1.0, + "content": "2017), S: Sobolev or F: Fisher) (2) the architecture of the critic (Resnets or RNN) (3) the architecture", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 446, + 504, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 495, + 461 + ], + "score": 1.0, + "content": "of the generator (Resnets or RNN or RNN with curriculum learning) (4) the sampling distribution", + "type": "text" + }, + { + "bbox": [ + 496, + 449, + 504, + 459 + ], + "score": 0.77, + "content": "\\pmb { \\mu }", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 459, + 176, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 176, + 470 + ], + "score": 1.0, + "content": "in the constraint.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 475, + 505, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 476, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 505, + 487 + ], + "score": 1.0, + "content": "Text Generation Experiments. We train a character-level GAN on Google Billion Word dataset and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 485, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 104, + 485, + 506, + 500 + ], + "score": 1.0, + "content": "follow the same experimental setup used in (Gulrajani et al., 2017). The generated sequence length", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 510 + ], + "score": 1.0, + "content": "is 32 and the evaluation is based on Jensen-Shannon divergence on empirical 4-gram probabilities", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 509, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 520 + ], + "score": 1.0, + "content": "(JS-4) of validation data and generated data. JS-4 may not be an ideal evaluation criteria, but it", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 518, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 104, + 518, + 505, + 533 + ], + "score": 1.0, + "content": "is a reasonable metric for current character-level GAN results, which is still far from generating", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 531, + 198, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 198, + 542 + ], + "score": 1.0, + "content": "meaningful sentences.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 547, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 106, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 248, + 559 + ], + "score": 1.0, + "content": "Annealed Smoothing of discrete", + "type": "text" + }, + { + "bbox": [ + 248, + 548, + 261, + 558 + ], + "score": 0.88, + "content": "\\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 547, + 338, + 559 + ], + "score": 1.0, + "content": "in the constraint", + "type": "text" + }, + { + "bbox": [ + 339, + 549, + 347, + 559 + ], + "score": 0.77, + "content": "\\pmb { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 547, + 505, + 559 + ], + "score": 1.0, + "content": ". Since the generator distribution will", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 558, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 464, + 570 + ], + "score": 1.0, + "content": "always be defined on a continuous space, we can replace the discrete “real” distribution", + "type": "text" + }, + { + "bbox": [ + 464, + 558, + 475, + 569 + ], + "score": 0.89, + "content": "\\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 558, + 506, + 570 + ], + "score": 1.0, + "content": "with a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 569, + 504, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 301, + 581 + ], + "score": 1.0, + "content": "smoothed version (Gaussian kernel smoothing)", + "type": "text" + }, + { + "bbox": [ + 302, + 569, + 373, + 581 + ], + "score": 0.91, + "content": "\\mathbb { P } _ { r } \\star \\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 569, + 504, + 581 + ], + "score": 1.0, + "content": ". This corresponds to doing the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 200, + 593 + ], + "score": 1.0, + "content": "following sampling for", + "type": "text" + }, + { + "bbox": [ + 201, + 580, + 279, + 591 + ], + "score": 0.92, + "content": "\\mathbb { P } _ { r } : x + \\xi , x \\sim \\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 579, + 299, + 593 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 300, + 580, + 368, + 592 + ], + "score": 0.91, + "content": "\\xi \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 579, + 506, + 593 + ], + "score": 1.0, + "content": ". Note that we only inject noise to", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 591, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 505, + 603 + ], + "score": 1.0, + "content": "the “real” distribution with the goal of smoothing the support of the discrete distribution, as opposed", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 603, + 504, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 504, + 613 + ], + "score": 1.0, + "content": "to instance noise on both “real” and “fake” to stabilize the training, as introduced in (Kaae Sønderby", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 612, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 626 + ], + "score": 1.0, + "content": "et al., 2017; Arjovsky & Bottou, 2017). As it is common in optimization by continuation (Mobahi", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 623, + 478, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 280, + 637 + ], + "score": 1.0, + "content": "& III, 2015), we also anneal the noise level", + "type": "text" + }, + { + "bbox": [ + 281, + 626, + 288, + 634 + ], + "score": 0.76, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 623, + 478, + 637 + ], + "score": 1.0, + "content": "as the training progresses on a linear schedule.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 106, + 640, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 639, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 505, + 653 + ], + "score": 1.0, + "content": "Sobolev GAN versus WGAN-GP with Resnets. In this setting, we compare (WGAN-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 650, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 128, + 664 + ], + "score": 1.0, + "content": "GP,G", + "type": "text" + }, + { + "bbox": [ + 128, + 653, + 137, + 662 + ], + "score": 0.5, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 650, + 172, + 664 + ], + "score": 1.0, + "content": "Resnet,D", + "type": "text" + }, + { + "bbox": [ + 173, + 653, + 181, + 662 + ], + "score": 0.55, + "content": "^ { 1 \\textless }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 650, + 210, + 664 + ], + "score": 1.0, + "content": "Resnet,", + "type": "text" + }, + { + "bbox": [ + 210, + 653, + 254, + 664 + ], + "score": 0.85, + "content": "\\mu = \\mu _ { G P } ) ", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 650, + 315, + 664 + ], + "score": 1.0, + "content": "to (Sobolev,G", + "type": "text" + }, + { + "bbox": [ + 315, + 652, + 324, + 662 + ], + "score": 0.41, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 650, + 359, + 664 + ], + "score": 1.0, + "content": "Resnet,D", + "type": "text" + }, + { + "bbox": [ + 360, + 653, + 368, + 662 + ], + "score": 0.53, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 650, + 397, + 664 + ], + "score": 1.0, + "content": "Resnet,", + "type": "text" + }, + { + "bbox": [ + 397, + 654, + 404, + 663 + ], + "score": 0.56, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 650, + 437, + 664 + ], + "score": 1.0, + "content": ") where", + "type": "text" + }, + { + "bbox": [ + 437, + 654, + 444, + 663 + ], + "score": 0.79, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 650, + 506, + 664 + ], + "score": 1.0, + "content": "is one of: (1)", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 659, + 509, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 126, + 677 + ], + "score": 0.65, + "content": "\\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 659, + 231, + 681 + ], + "score": 1.0, + "content": ", (2) the noise smoothed", + "type": "text" + }, + { + "bbox": [ + 232, + 663, + 344, + 679 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mu _ { s } ( \\sigma ) \\ = \\ \\frac { \\mathbb { P } _ { r } \\star \\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { d } ) + \\mathbb { Q } _ { \\theta } } { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 659, + 509, + 681 + ], + "score": 1.0, + "content": "or (3) noise smoothed with annealing", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 136, + 689 + ], + "score": 0.91, + "content": "\\mu _ { s } ^ { a } ( \\sigma _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 676, + 159, + 689 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 159, + 678, + 171, + 688 + ], + "score": 0.85, + "content": "\\sigma _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "the initial noise level. We use the same architectures of Resnet with 1D convolu-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "tion for the critic and the generator as in (Gulrajani et al., 2017) (4 resnet blocks with hidden layer", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 699, + 505, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 710 + ], + "score": 1.0, + "content": "size of 512). In order to implement the noise smoothing we transform the data into one-hot vec-", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 211, + 721 + ], + "score": 1.0, + "content": "tors. Each one hot vector", + "type": "text" + }, + { + "bbox": [ + 211, + 712, + 218, + 720 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 710, + 372, + 721 + ], + "score": 1.0, + "content": "is transformed to a probability vector", + "type": "text" + }, + { + "bbox": [ + 372, + 712, + 379, + 721 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "with 0.9 replacing the one and", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 107, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 107, + 720, + 180, + 732 + ], + "score": 0.91, + "content": "0 . 1 / ( d i c t _ { s i z e } - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 720, + 322, + 733 + ], + "score": 1.0, + "content": "replacing the zero. We then sample", + "type": "text" + }, + { + "bbox": [ + 322, + 723, + 327, + 730 + ], + "score": 0.73, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 720, + 443, + 733 + ], + "score": 1.0, + "content": "from a Gaussian distribution", + "type": "text" + }, + { + "bbox": [ + 443, + 720, + 484, + 732 + ], + "score": 0.93, + "content": "{ \\bar { \\mathcal { N } } } ( 0 , \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 720, + 505, + 733 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 46.5 + } + ], + "page_idx": 10, + "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 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 370, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 371, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 371, + 96 + ], + "score": 1.0, + "content": "Relation to WGAN-GP. WGAN-GP can be written as follows:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 81, + 371, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 96, + 457, + 130 + ], + "lines": [ + { + "bbox": [ + 153, + 96, + 457, + 130 + ], + "spans": [ + { + "bbox": [ + 153, + 96, + 457, + 130 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { \\substack { g _ { \\theta } } } \\operatorname* { s u p } _ { f , \\| \\nabla _ { x } f _ { p } ( \\bar { x } _ { i } ) \\| = 1 , \\bar { x } _ { i } \\sim \\mu _ { G P } } \\hat { \\bar { \\mathcal { E } } } ( f _ { p } , g _ { \\theta } ) = \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( x _ { i } ) - \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( g _ { \\theta } ( z _ { i } ) )", + "type": "interline_equation", + "image_path": "791192fb27625a05cd429c211071280256274c29486f742719fb77e1e0b8c129.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 153, + 96, + 457, + 107.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 153, + 107.33333333333333, + 457, + 118.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 153, + 118.66666666666666, + 457, + 130.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 132, + 505, + 180 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 505, + 146 + ], + "score": 1.0, + "content": "The main difference between WGAN-GP and our setting, is that WGAN-GP enforces pointwise con-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 102, + 143, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 102, + 143, + 225, + 162 + ], + "score": 1.0, + "content": "straints on points drawn from", + "type": "text" + }, + { + "bbox": [ + 225, + 147, + 264, + 158 + ], + "score": 0.88, + "content": "\\mu = \\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 143, + 402, + 162 + ], + "score": 1.0, + "content": "via a point-wise quadratic penalty", + "type": "text" + }, + { + "bbox": [ + 402, + 144, + 506, + 159 + ], + "score": 0.91, + "content": "\\begin{array} { r l } { { \\big ( \\hat { \\mathcal { E } } ( f _ { p } , g _ { \\theta } ) - \\lambda \\sum _ { i = 1 } ^ { N } \\bigl ( 1 - \\bigl ) } \\quad } & { { } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 158, + 504, + 170 + ], + "spans": [ + { + "bbox": [ + 107, + 158, + 165, + 170 + ], + "score": 0.91, + "content": "\\| \\nabla _ { x } f ( \\widetilde { x } _ { i } ) \\| ) ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 158, + 504, + 170 + ], + "score": 1.0, + "content": "while we enforce that constraint on average as a Sobolev norm, allowing us the co-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 168, + 354, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 354, + 181 + ], + "score": 1.0, + "content": "ordinate weighted conditional CDF interpretation of the IPM.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 102, + 131, + 506, + 181 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 196, + 301, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 195, + 303, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 303, + 211 + ], + "score": 1.0, + "content": "6 APPLICATIONS OF SOBOLEV GAN", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 220, + 505, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 220, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 506, + 234 + ], + "score": 1.0, + "content": "Sobolev IPM has two important properties; The first stems from the conditioning built in to the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "metric through the weighted conditional CDF interpretation. The second stems from the diffusion", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 242, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 104, + 242, + 506, + 256 + ], + "score": 1.0, + "content": "properties that the critic of Sobolev IPM satisfies (Appendix A) that has theoretical and practical ties", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 253, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 506, + 267 + ], + "score": 1.0, + "content": "to the Laplacian regularizer and diffusion on manifolds used in semi-supervised learning (Belkin", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 263, + 159, + 277 + ], + "spans": [ + { + "bbox": [ + 104, + 263, + 159, + 277 + ], + "score": 1.0, + "content": "et al., 2006).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11, + "bbox_fs": [ + 104, + 220, + 506, + 277 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 281, + 505, + 370 + ], + "lines": [ + { + "bbox": [ + 105, + 282, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 506, + 294 + ], + "score": 1.0, + "content": "In this Section, we exploit those two important properties in two applications of Sobolev GAN: Text", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 293, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 506, + 305 + ], + "score": 1.0, + "content": "generation and semi-supervised learning. First in text generation, which can be seen as a discrete", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 303, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 104, + 303, + 506, + 316 + ], + "score": 1.0, + "content": "sequence generation, Sobolev GAN (and WGAN-GP) enable training GANs without need to do", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 315, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 505, + 327 + ], + "score": 1.0, + "content": "explicit brute-force conditioning. We attribute this to the built-in conditioning in Sobolev IPM (for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "the sequence aspect) and to the CDF matching (for the discrete aspect). Secondly using GANs in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 336, + 507, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 507, + 350 + ], + "score": 1.0, + "content": "semi-supervised learning is a promising avenue for learning using unlabeled data. We show that a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 348, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 506, + 360 + ], + "score": 1.0, + "content": "variant of Sobolev GAN can achieve strong SSL results on the CIFAR-10 dataset, without the need", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 360, + 435, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 435, + 370 + ], + "score": 1.0, + "content": "of any form of activation normalization in the networks or any extra ad hoc tricks.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17.5, + "bbox_fs": [ + 104, + 282, + 507, + 370 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 383, + 309, + 394 + ], + "lines": [ + { + "bbox": [ + 106, + 383, + 311, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 311, + 396 + ], + "score": 1.0, + "content": "6.1 TEXT GENERATION WITH SOBOLEV GAN", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 403, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 106, + 404, + 504, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 504, + 415 + ], + "score": 1.0, + "content": "In this Section, we present an empirical study of Sobolev GAN in character level text generation.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 415, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 505, + 426 + ], + "score": 1.0, + "content": "Our empirical study on end to end training of character-level GAN for text generation is articulated", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 281, + 438 + ], + "score": 1.0, + "content": "on four dimensions (loss, critic, generator,", + "type": "text" + }, + { + "bbox": [ + 282, + 427, + 290, + 437 + ], + "score": 0.73, + "content": "\\pmb { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "). (1) the loss used (GP: WGAN-GP (Gulrajani et al.,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "score": 1.0, + "content": "2017), S: Sobolev or F: Fisher) (2) the architecture of the critic (Resnets or RNN) (3) the architecture", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 446, + 504, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 495, + 461 + ], + "score": 1.0, + "content": "of the generator (Resnets or RNN or RNN with curriculum learning) (4) the sampling distribution", + "type": "text" + }, + { + "bbox": [ + 496, + 449, + 504, + 459 + ], + "score": 0.77, + "content": "\\pmb { \\mu }", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 459, + 176, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 176, + 470 + ], + "score": 1.0, + "content": "in the constraint.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 404, + 505, + 470 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 475, + 505, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 476, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 505, + 487 + ], + "score": 1.0, + "content": "Text Generation Experiments. We train a character-level GAN on Google Billion Word dataset and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 485, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 104, + 485, + 506, + 500 + ], + "score": 1.0, + "content": "follow the same experimental setup used in (Gulrajani et al., 2017). The generated sequence length", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 510 + ], + "score": 1.0, + "content": "is 32 and the evaluation is based on Jensen-Shannon divergence on empirical 4-gram probabilities", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 509, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 520 + ], + "score": 1.0, + "content": "(JS-4) of validation data and generated data. JS-4 may not be an ideal evaluation criteria, but it", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 518, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 104, + 518, + 505, + 533 + ], + "score": 1.0, + "content": "is a reasonable metric for current character-level GAN results, which is still far from generating", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 531, + 198, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 198, + 542 + ], + "score": 1.0, + "content": "meaningful sentences.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 104, + 476, + 506, + 542 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 547, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 106, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 248, + 559 + ], + "score": 1.0, + "content": "Annealed Smoothing of discrete", + "type": "text" + }, + { + "bbox": [ + 248, + 548, + 261, + 558 + ], + "score": 0.88, + "content": "\\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 547, + 338, + 559 + ], + "score": 1.0, + "content": "in the constraint", + "type": "text" + }, + { + "bbox": [ + 339, + 549, + 347, + 559 + ], + "score": 0.77, + "content": "\\pmb { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 547, + 505, + 559 + ], + "score": 1.0, + "content": ". Since the generator distribution will", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 558, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 464, + 570 + ], + "score": 1.0, + "content": "always be defined on a continuous space, we can replace the discrete “real” distribution", + "type": "text" + }, + { + "bbox": [ + 464, + 558, + 475, + 569 + ], + "score": 0.89, + "content": "\\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 558, + 506, + 570 + ], + "score": 1.0, + "content": "with a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 569, + 504, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 301, + 581 + ], + "score": 1.0, + "content": "smoothed version (Gaussian kernel smoothing)", + "type": "text" + }, + { + "bbox": [ + 302, + 569, + 373, + 581 + ], + "score": 0.91, + "content": "\\mathbb { P } _ { r } \\star \\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 569, + 504, + 581 + ], + "score": 1.0, + "content": ". This corresponds to doing the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 200, + 593 + ], + "score": 1.0, + "content": "following sampling for", + "type": "text" + }, + { + "bbox": [ + 201, + 580, + 279, + 591 + ], + "score": 0.92, + "content": "\\mathbb { P } _ { r } : x + \\xi , x \\sim \\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 579, + 299, + 593 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 300, + 580, + 368, + 592 + ], + "score": 0.91, + "content": "\\xi \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 579, + 506, + 593 + ], + "score": 1.0, + "content": ". Note that we only inject noise to", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 591, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 505, + 603 + ], + "score": 1.0, + "content": "the “real” distribution with the goal of smoothing the support of the discrete distribution, as opposed", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 603, + 504, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 504, + 613 + ], + "score": 1.0, + "content": "to instance noise on both “real” and “fake” to stabilize the training, as introduced in (Kaae Sønderby", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 612, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 626 + ], + "score": 1.0, + "content": "et al., 2017; Arjovsky & Bottou, 2017). As it is common in optimization by continuation (Mobahi", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 623, + 478, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 280, + 637 + ], + "score": 1.0, + "content": "& III, 2015), we also anneal the noise level", + "type": "text" + }, + { + "bbox": [ + 281, + 626, + 288, + 634 + ], + "score": 0.76, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 623, + 478, + 637 + ], + "score": 1.0, + "content": "as the training progresses on a linear schedule.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 547, + 506, + 637 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 640, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 639, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 505, + 653 + ], + "score": 1.0, + "content": "Sobolev GAN versus WGAN-GP with Resnets. In this setting, we compare (WGAN-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 650, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 128, + 664 + ], + "score": 1.0, + "content": "GP,G", + "type": "text" + }, + { + "bbox": [ + 128, + 653, + 137, + 662 + ], + "score": 0.5, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 650, + 172, + 664 + ], + "score": 1.0, + "content": "Resnet,D", + "type": "text" + }, + { + "bbox": [ + 173, + 653, + 181, + 662 + ], + "score": 0.55, + "content": "^ { 1 \\textless }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 650, + 210, + 664 + ], + "score": 1.0, + "content": "Resnet,", + "type": "text" + }, + { + "bbox": [ + 210, + 653, + 254, + 664 + ], + "score": 0.85, + "content": "\\mu = \\mu _ { G P } ) ", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 650, + 315, + 664 + ], + "score": 1.0, + "content": "to (Sobolev,G", + "type": "text" + }, + { + "bbox": [ + 315, + 652, + 324, + 662 + ], + "score": 0.41, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 650, + 359, + 664 + ], + "score": 1.0, + "content": "Resnet,D", + "type": "text" + }, + { + "bbox": [ + 360, + 653, + 368, + 662 + ], + "score": 0.53, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 650, + 397, + 664 + ], + "score": 1.0, + "content": "Resnet,", + "type": "text" + }, + { + "bbox": [ + 397, + 654, + 404, + 663 + ], + "score": 0.56, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 650, + 437, + 664 + ], + "score": 1.0, + "content": ") where", + "type": "text" + }, + { + "bbox": [ + 437, + 654, + 444, + 663 + ], + "score": 0.79, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 650, + 506, + 664 + ], + "score": 1.0, + "content": "is one of: (1)", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 659, + 509, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 126, + 677 + ], + "score": 0.65, + "content": "\\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 659, + 231, + 681 + ], + "score": 1.0, + "content": ", (2) the noise smoothed", + "type": "text" + }, + { + "bbox": [ + 232, + 663, + 344, + 679 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mu _ { s } ( \\sigma ) \\ = \\ \\frac { \\mathbb { P } _ { r } \\star \\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { d } ) + \\mathbb { Q } _ { \\theta } } { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 659, + 509, + 681 + ], + "score": 1.0, + "content": "or (3) noise smoothed with annealing", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 136, + 689 + ], + "score": 0.91, + "content": "\\mu _ { s } ^ { a } ( \\sigma _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 676, + 159, + 689 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 159, + 678, + 171, + 688 + ], + "score": 0.85, + "content": "\\sigma _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "the initial noise level. We use the same architectures of Resnet with 1D convolu-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "tion for the critic and the generator as in (Gulrajani et al., 2017) (4 resnet blocks with hidden layer", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 699, + 505, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 710 + ], + "score": 1.0, + "content": "size of 512). In order to implement the noise smoothing we transform the data into one-hot vec-", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 211, + 721 + ], + "score": 1.0, + "content": "tors. Each one hot vector", + "type": "text" + }, + { + "bbox": [ + 211, + 712, + 218, + 720 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 710, + 372, + 721 + ], + "score": 1.0, + "content": "is transformed to a probability vector", + "type": "text" + }, + { + "bbox": [ + 372, + 712, + 379, + 721 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "with 0.9 replacing the one and", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 107, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 107, + 720, + 180, + 732 + ], + "score": 0.91, + "content": "0 . 1 / ( d i c t _ { s i z e } - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 720, + 322, + 733 + ], + "score": 1.0, + "content": "replacing the zero. We then sample", + "type": "text" + }, + { + "bbox": [ + 322, + 723, + 327, + 730 + ], + "score": 0.73, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 720, + 443, + 733 + ], + "score": 1.0, + "content": "from a Gaussian distribution", + "type": "text" + }, + { + "bbox": [ + 443, + 720, + 484, + 732 + ], + "score": 0.93, + "content": "{ \\bar { \\mathcal { N } } } ( 0 , \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 720, + 505, + 733 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 639, + 509, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 138, + 93, + 288, + 192 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 138, + 93, + 288, + 192 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 138, + 93, + 288, + 192 + ], + "spans": [ + { + "bbox": [ + 138, + 93, + 288, + 192 + ], + "score": 0.788, + "type": "image", + "image_path": "95d02c80f9b5a08286ec9176c050401e5ad02420894a30a90fcc19711b6eed94.jpg" + } + ] + } + ], + "index": 1.0, + "virtual_lines": [ + { + "bbox": [ + 138, + 93, + 288, + 142.5 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 138, + 142.5, + 288, + 192.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 137, + 195, + 298, + 225 + ], + "lines": [ + { + "bbox": [ + 136, + 194, + 299, + 206 + ], + "spans": [ + { + "bbox": [ + 136, + 194, + 258, + 206 + ], + "score": 1.0, + "content": "(a) Comparing Sobolev with", + "type": "text" + }, + { + "bbox": [ + 259, + 196, + 277, + 205 + ], + "score": 0.48, + "content": "\\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 194, + 299, + 206 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 136, + 203, + 299, + 216 + ], + "spans": [ + { + "bbox": [ + 136, + 203, + 299, + 216 + ], + "score": 1.0, + "content": "WGAN-GP. The JS-4 are 0.3363 and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 136, + 213, + 213, + 227 + ], + "spans": [ + { + "bbox": [ + 136, + 213, + 213, + 227 + ], + "score": 1.0, + "content": "0.3302 respectively.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "image", + "bbox": [ + 312, + 93, + 461, + 191 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 312, + 93, + 461, + 191 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 312, + 93, + 461, + 191 + ], + "spans": [ + { + "bbox": [ + 312, + 93, + 461, + 191 + ], + "score": 0.843, + "type": "image", + "image_path": "6e2575ca9e9bb232ea44064ff715cb92a3beab4fce8471509ac419d7b8ec9342.jpg" + } + ] + } + ], + "index": 2.0, + "virtual_lines": [ + { + "bbox": [ + 312, + 93, + 461, + 142.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 312, + 142.0, + 461, + 191.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 310, + 195, + 471, + 226 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 310, + 194, + 470, + 207 + ], + "spans": [ + { + "bbox": [ + 310, + 194, + 463, + 207 + ], + "score": 1.0, + "content": "(b) Comparing Sobolev with different", + "type": "text" + }, + { + "bbox": [ + 464, + 197, + 470, + 205 + ], + "score": 0.69, + "content": "\\mu", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 310, + 205, + 472, + 216 + ], + "spans": [ + { + "bbox": [ + 310, + 205, + 472, + 216 + ], + "score": 1.0, + "content": "dominant measures and WGAN-GP. The JS-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 309, + 214, + 419, + 226 + ], + "spans": [ + { + "bbox": [ + 309, + 214, + 327, + 226 + ], + "score": 1.0, + "content": "4 of", + "type": "text" + }, + { + "bbox": [ + 327, + 215, + 378, + 226 + ], + "score": 0.92, + "content": "\\mu _ { s } ^ { a } ( \\sigma _ { 0 } = 1 . 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 214, + 419, + 226 + ], + "score": 1.0, + "content": "is 0.3268.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "image_caption", + "bbox": [ + 106, + 239, + 506, + 261 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 374, + 252 + ], + "score": 1.0, + "content": "Figure 3: Result of Sobolev GAN for various dominating measure", + "type": "text" + }, + { + "bbox": [ + 374, + 241, + 381, + 250 + ], + "score": 0.78, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 239, + 505, + 252 + ], + "score": 1.0, + "content": ", for resnets as architectures of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 249, + 218, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 218, + 262 + ], + "score": 1.0, + "content": "the critic and the generator.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 505, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 327, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 210, + 339 + ], + "score": 1.0, + "content": "use softmax to normalize", + "type": "text" + }, + { + "bbox": [ + 210, + 328, + 248, + 339 + ], + "score": 0.9, + "content": "\\log p + \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 327, + 505, + 339 + ], + "score": 1.0, + "content": ". We use algorithm 1 for Sobolev GAN and fix the learning rate", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 337, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 117, + 351 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 338, + 138, + 349 + ], + "score": 0.9, + "content": "1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 337, + 156, + 351 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 157, + 340, + 163, + 350 + ], + "score": 0.81, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 337, + 174, + 351 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 175, + 338, + 196, + 349 + ], + "score": 0.9, + "content": "1 0 ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 337, + 264, + 351 + ], + "score": 1.0, + "content": ". The noise level", + "type": "text" + }, + { + "bbox": [ + 264, + 340, + 271, + 348 + ], + "score": 0.76, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 337, + 505, + 351 + ], + "score": 1.0, + "content": "was annealed following a linear schedule starting from an", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 103, + 347, + 507, + 366 + ], + "spans": [ + { + "bbox": [ + 103, + 347, + 177, + 366 + ], + "score": 1.0, + "content": "initial noise level", + "type": "text" + }, + { + "bbox": [ + 177, + 351, + 189, + 361 + ], + "score": 0.85, + "content": "\\sigma _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 347, + 238, + 366 + ], + "score": 1.0, + "content": "(at iteration", + "type": "text" + }, + { + "bbox": [ + 238, + 351, + 243, + 360 + ], + "score": 0.55, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 347, + 246, + 366 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 246, + 349, + 338, + 362 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\sigma _ { i } = \\sigma _ { 0 } ( 1 - \\frac { i } { M a x i t e r } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 347, + 373, + 366 + ], + "score": 1.0, + "content": ", Maxite", + "type": "text" + }, + { + "bbox": [ + 374, + 350, + 398, + 360 + ], + "score": 0.64, + "content": "{ \\displaystyle = 3 0 \\mathsf K }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 347, + 507, + 366 + ], + "score": 1.0, + "content": "). For WGAN-GP we used", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 305, + 372 + ], + "score": 1.0, + "content": "the open source implementation with the penalty", + "type": "text" + }, + { + "bbox": [ + 306, + 362, + 337, + 371 + ], + "score": 0.85, + "content": "\\lambda = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "as in (Gulrajani et al., 2017). Results are", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 369, + 507, + 385 + ], + "spans": [ + { + "bbox": [ + 104, + 369, + 460, + 385 + ], + "score": 1.0, + "content": "given in Figure 3(a) for the JS-4 evaluation of both WGAN-GP and Sobolev GAN for", + "type": "text" + }, + { + "bbox": [ + 460, + 373, + 501, + 383 + ], + "score": 0.88, + "content": "\\mu = \\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 369, + 507, + 385 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 381, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 396 + ], + "score": 1.0, + "content": "In Figure 3(b) we show the JS-4 evaluation of Sobolev GAN with the annealed noise smoothing", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 393, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 136, + 405 + ], + "score": 0.92, + "content": "\\mu _ { s } ^ { a } ( \\bar { \\sigma _ { 0 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 393, + 316, + 406 + ], + "score": 1.0, + "content": ", for various values of the initial noise level", + "type": "text" + }, + { + "bbox": [ + 317, + 394, + 328, + 405 + ], + "score": 0.86, + "content": "\\sigma _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 393, + 506, + 406 + ], + "score": 1.0, + "content": ". We see that the training succeeds in both", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "cases. Sobolev GAN achieves slightly better results than WGAN-GP for the annealing that starts", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 103, + 415, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 103, + 415, + 191, + 430 + ], + "score": 1.0, + "content": "with high noise level", + "type": "text" + }, + { + "bbox": [ + 191, + 417, + 228, + 428 + ], + "score": 0.89, + "content": "\\sigma _ { 0 } = 1 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 415, + 454, + 430 + ], + "score": 1.0, + "content": ". We note that without smoothing and annealing i.e using", + "type": "text" + }, + { + "bbox": [ + 455, + 415, + 501, + 429 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\bar { \\boldsymbol { \\mu } } = \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 415, + 505, + 430 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 310, + 439 + ], + "score": 1.0, + "content": "Sobolev GAN is behind. Annealed smoothing of", + "type": "text" + }, + { + "bbox": [ + 311, + 428, + 322, + 438 + ], + "score": 0.88, + "content": "\\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 427, + 505, + 439 + ], + "score": 1.0, + "content": ", helps the training as the real distribution is", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "score": 1.0, + "content": "slowly going from a continuous distribution to a discrete distribution. See Appendix C (Figure 6)", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 449, + 369, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 369, + 462 + ], + "score": 1.0, + "content": "for a comparison between annealed and non annealed smoothing.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 108, + 466, + 504, + 488 + ], + "lines": [ + { + "bbox": [ + 106, + 465, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 506, + 480 + ], + "score": 1.0, + "content": "We give in Appendix C a comparison of WGAN-GP and Sobolev GAN for a Resnet generator", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 476, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 505, + 490 + ], + "score": 1.0, + "content": "architecture and an RNN critic. The RNN has degraded performance due to optimization difficulties.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 106, + 493, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "Fisher GAN Curriculum Conditioning versus Sobolev GAN: Explicit versus Implicit condi-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "score": 1.0, + "content": "tioning. We analyze how Fisher GAN behaves under different architectures of generators and critics.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 516, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 527 + ], + "score": 1.0, + "content": "We first fix the generator to be ResNet. We study 3 different architectures of critics: ResNet, GRU", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 527, + 504, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 396, + 538 + ], + "score": 1.0, + "content": "(we follow the experimental setup from (Press et al., 2017)), and hybrid", + "type": "text" + }, + { + "bbox": [ + 396, + 527, + 453, + 538 + ], + "score": 0.39, + "content": "\\mathrm { R e s N e t + G R U }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 527, + 504, + 538 + ], + "score": 1.0, + "content": "(Reed et al.,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 457, + 550 + ], + "score": 1.0, + "content": "2016). We notice that RNN is unstable, we need to clip the gradient values of critics in", + "type": "text" + }, + { + "bbox": [ + 457, + 538, + 501, + 550 + ], + "score": 0.59, + "content": "[ - 0 . 5 , 0 . 5 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 537, + 505, + 550 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 548, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 288, + 562 + ], + "score": 1.0, + "content": "and the gradient of the Lagrange multiplier", + "type": "text" + }, + { + "bbox": [ + 288, + 549, + 302, + 560 + ], + "score": 0.88, + "content": "\\lambda _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 548, + 316, + 562 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 316, + 549, + 363, + 560 + ], + "score": 0.91, + "content": "[ - 1 0 ^ { 4 } , \\bar { 1 } 0 ^ { 4 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 548, + 402, + 562 + ], + "score": 1.0, + "content": ". We fix", + "type": "text" + }, + { + "bbox": [ + 402, + 549, + 453, + 560 + ], + "score": 0.92, + "content": "\\rho _ { F } = 1 0 ^ { - 7 }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 548, + 506, + 562 + ], + "score": 1.0, + "content": "and we use", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 558, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 146, + 571 + ], + "score": 0.88, + "content": "\\mu = \\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 558, + 326, + 573 + ], + "score": 1.0, + "content": ". We search the value for the learning rate in", + "type": "text" + }, + { + "bbox": [ + 327, + 560, + 379, + 572 + ], + "score": 0.88, + "content": "[ 1 0 ^ { - 5 } , 1 \\dot { 0 } ^ { - 4 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 558, + 446, + 573 + ], + "score": 1.0, + "content": ". We see that for", + "type": "text" + }, + { + "bbox": [ + 447, + 561, + 487, + 572 + ], + "score": 0.9, + "content": "\\mu = \\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 558, + 506, + 573 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 133, + 581 + ], + "score": 0.62, + "content": "G = \\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "Resnet for various critic architectures, Fisher GAN fails at the task of text generation (Figure", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 581, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 128, + 592 + ], + "score": 0.25, + "content": "{ \\mathfrak { 4 } } \\ { \\mathfrak { a - c } } { \\mathrm { , } }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 581, + 290, + 595 + ], + "score": 1.0, + "content": "). Nevertheless, when using RNN critics", + "type": "text" + }, + { + "bbox": [ + 290, + 582, + 334, + 593 + ], + "score": 0.39, + "content": "( \\mathrm { F i g } \\quad \\mathsf { b } , \\mathsf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 581, + 506, + 595 + ], + "score": 1.0, + "content": "a marginal improvement happens over the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 592, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 606 + ], + "score": 1.0, + "content": "fully collapsed state when using a resnet critic (Fig 4 a). We hypothesize that RNN critics enable", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 604, + 443, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 443, + 615 + ], + "score": 1.0, + "content": "some conditioning and factoring of the distribution, which is lacking in Fisher IPM.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 620, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "score": 1.0, + "content": "Finally Figure 4 (d) shows the result of training with recurrent generator and critic. We follow (Press", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "et al., 2017) in terms of GRU architecture, but differ by using Fisher GAN rather than WGAN-GP.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 639, + 507, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 138, + 658 + ], + "score": 1.0, + "content": "We use", + "type": "text" + }, + { + "bbox": [ + 139, + 642, + 186, + 657 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mu = { \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 639, + 474, + 658 + ], + "score": 1.0, + "content": "i.e. without annealed noise smoothing. We train (F, D=RNN,G=RNN,", + "type": "text" + }, + { + "bbox": [ + 474, + 642, + 501, + 657 + ], + "score": 0.85, + "content": "{ \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } .", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 639, + 507, + 658 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 356, + 667 + ], + "score": 1.0, + "content": "using curriculum conditioning of the generator for all lengths", + "type": "text" + }, + { + "bbox": [ + 357, + 655, + 363, + 665 + ], + "score": 0.73, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "as done in (Press et al., 2017): the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 104, + 665, + 217, + 678 + ], + "score": 1.0, + "content": "generator is conditioned on", + "type": "text" + }, + { + "bbox": [ + 217, + 666, + 244, + 676 + ], + "score": 0.87, + "content": "3 2 - \\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 665, + 352, + 678 + ], + "score": 1.0, + "content": "characters and predicts the", + "type": "text" + }, + { + "bbox": [ + 352, + 666, + 358, + 676 + ], + "score": 0.73, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "remaining characters. We increment", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 131, + 687 + ], + "score": 0.9, + "content": "\\ell = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 676, + 271, + 689 + ], + "score": 1.0, + "content": "to 32 on a regular schedule (every", + "type": "text" + }, + { + "bbox": [ + 271, + 677, + 288, + 687 + ], + "score": 0.69, + "content": "1 5 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 676, + 444, + 689 + ], + "score": 1.0, + "content": "updates). JS-4 is only computed when", + "type": "text" + }, + { + "bbox": [ + 444, + 677, + 469, + 687 + ], + "score": 0.89, + "content": "\\ell > 4", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 676, + 506, + 689 + ], + "score": 1.0, + "content": ". We see", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "in Figure 4 that under curriculum conditioning with recurrent critics and generators, the training of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Fisher GAN succeeds and reaches similar levels of Sobolev GAN (and WGAN-GP). Note that the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 707, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 707, + 506, + 723 + ], + "score": 1.0, + "content": "need of this explicit brute force conditioning for Fisher GAN, highlights the implicit conditioning", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "induced by Sobolev GAN via the gradient regularizer, without the need for curriculum conditioning.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 41.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 138, + 93, + 288, + 192 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 138, + 93, + 288, + 192 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 138, + 93, + 288, + 192 + ], + "spans": [ + { + "bbox": [ + 138, + 93, + 288, + 192 + ], + "score": 0.788, + "type": "image", + "image_path": "95d02c80f9b5a08286ec9176c050401e5ad02420894a30a90fcc19711b6eed94.jpg" + } + ] + } + ], + "index": 1.0, + "virtual_lines": [ + { + "bbox": [ + 138, + 93, + 288, + 142.5 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 138, + 142.5, + 288, + 192.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 137, + 195, + 298, + 225 + ], + "lines": [ + { + "bbox": [ + 136, + 194, + 299, + 206 + ], + "spans": [ + { + "bbox": [ + 136, + 194, + 258, + 206 + ], + "score": 1.0, + "content": "(a) Comparing Sobolev with", + "type": "text" + }, + { + "bbox": [ + 259, + 196, + 277, + 205 + ], + "score": 0.48, + "content": "\\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 194, + 299, + 206 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 136, + 203, + 299, + 216 + ], + "spans": [ + { + "bbox": [ + 136, + 203, + 299, + 216 + ], + "score": 1.0, + "content": "WGAN-GP. The JS-4 are 0.3363 and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 136, + 213, + 213, + 227 + ], + "spans": [ + { + "bbox": [ + 136, + 213, + 213, + 227 + ], + "score": 1.0, + "content": "0.3302 respectively.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 136, + 194, + 299, + 227 + ] + }, + { + "type": "image", + "bbox": [ + 312, + 93, + 461, + 191 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 312, + 93, + 461, + 191 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 312, + 93, + 461, + 191 + ], + "spans": [ + { + "bbox": [ + 312, + 93, + 461, + 191 + ], + "score": 0.843, + "type": "image", + "image_path": "6e2575ca9e9bb232ea44064ff715cb92a3beab4fce8471509ac419d7b8ec9342.jpg" + } + ] + } + ], + "index": 2.0, + "virtual_lines": [ + { + "bbox": [ + 312, + 93, + 461, + 142.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 312, + 142.0, + 461, + 191.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 310, + 195, + 471, + 226 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 310, + 194, + 470, + 207 + ], + "spans": [ + { + "bbox": [ + 310, + 194, + 463, + 207 + ], + "score": 1.0, + "content": "(b) Comparing Sobolev with different", + "type": "text" + }, + { + "bbox": [ + 464, + 197, + 470, + 205 + ], + "score": 0.69, + "content": "\\mu", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 310, + 205, + 472, + 216 + ], + "spans": [ + { + "bbox": [ + 310, + 205, + 472, + 216 + ], + "score": 1.0, + "content": "dominant measures and WGAN-GP. The JS-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 309, + 214, + 419, + 226 + ], + "spans": [ + { + "bbox": [ + 309, + 214, + 327, + 226 + ], + "score": 1.0, + "content": "4 of", + "type": "text" + }, + { + "bbox": [ + 327, + 215, + 378, + 226 + ], + "score": 0.92, + "content": "\\mu _ { s } ^ { a } ( \\sigma _ { 0 } = 1 . 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 214, + 419, + 226 + ], + "score": 1.0, + "content": "is 0.3268.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "image_caption", + "bbox": [ + 106, + 239, + 506, + 261 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 374, + 252 + ], + "score": 1.0, + "content": "Figure 3: Result of Sobolev GAN for various dominating measure", + "type": "text" + }, + { + "bbox": [ + 374, + 241, + 381, + 250 + ], + "score": 0.78, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 239, + 505, + 252 + ], + "score": 1.0, + "content": ", for resnets as architectures of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 249, + 218, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 218, + 262 + ], + "score": 1.0, + "content": "the critic and the generator.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 505, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 327, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 210, + 339 + ], + "score": 1.0, + "content": "use softmax to normalize", + "type": "text" + }, + { + "bbox": [ + 210, + 328, + 248, + 339 + ], + "score": 0.9, + "content": "\\log p + \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 327, + 505, + 339 + ], + "score": 1.0, + "content": ". We use algorithm 1 for Sobolev GAN and fix the learning rate", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 337, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 117, + 351 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 338, + 138, + 349 + ], + "score": 0.9, + "content": "1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 337, + 156, + 351 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 157, + 340, + 163, + 350 + ], + "score": 0.81, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 337, + 174, + 351 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 175, + 338, + 196, + 349 + ], + "score": 0.9, + "content": "1 0 ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 337, + 264, + 351 + ], + "score": 1.0, + "content": ". The noise level", + "type": "text" + }, + { + "bbox": [ + 264, + 340, + 271, + 348 + ], + "score": 0.76, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 337, + 505, + 351 + ], + "score": 1.0, + "content": "was annealed following a linear schedule starting from an", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 103, + 347, + 507, + 366 + ], + "spans": [ + { + "bbox": [ + 103, + 347, + 177, + 366 + ], + "score": 1.0, + "content": "initial noise level", + "type": "text" + }, + { + "bbox": [ + 177, + 351, + 189, + 361 + ], + "score": 0.85, + "content": "\\sigma _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 347, + 238, + 366 + ], + "score": 1.0, + "content": "(at iteration", + "type": "text" + }, + { + "bbox": [ + 238, + 351, + 243, + 360 + ], + "score": 0.55, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 347, + 246, + 366 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 246, + 349, + 338, + 362 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\sigma _ { i } = \\sigma _ { 0 } ( 1 - \\frac { i } { M a x i t e r } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 347, + 373, + 366 + ], + "score": 1.0, + "content": ", Maxite", + "type": "text" + }, + { + "bbox": [ + 374, + 350, + 398, + 360 + ], + "score": 0.64, + "content": "{ \\displaystyle = 3 0 \\mathsf K }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 347, + 507, + 366 + ], + "score": 1.0, + "content": "). For WGAN-GP we used", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 305, + 372 + ], + "score": 1.0, + "content": "the open source implementation with the penalty", + "type": "text" + }, + { + "bbox": [ + 306, + 362, + 337, + 371 + ], + "score": 0.85, + "content": "\\lambda = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "as in (Gulrajani et al., 2017). Results are", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 369, + 507, + 385 + ], + "spans": [ + { + "bbox": [ + 104, + 369, + 460, + 385 + ], + "score": 1.0, + "content": "given in Figure 3(a) for the JS-4 evaluation of both WGAN-GP and Sobolev GAN for", + "type": "text" + }, + { + "bbox": [ + 460, + 373, + 501, + 383 + ], + "score": 0.88, + "content": "\\mu = \\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 369, + 507, + 385 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 381, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 396 + ], + "score": 1.0, + "content": "In Figure 3(b) we show the JS-4 evaluation of Sobolev GAN with the annealed noise smoothing", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 393, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 136, + 405 + ], + "score": 0.92, + "content": "\\mu _ { s } ^ { a } ( \\bar { \\sigma _ { 0 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 393, + 316, + 406 + ], + "score": 1.0, + "content": ", for various values of the initial noise level", + "type": "text" + }, + { + "bbox": [ + 317, + 394, + 328, + 405 + ], + "score": 0.86, + "content": "\\sigma _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 393, + 506, + 406 + ], + "score": 1.0, + "content": ". We see that the training succeeds in both", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "cases. Sobolev GAN achieves slightly better results than WGAN-GP for the annealing that starts", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 103, + 415, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 103, + 415, + 191, + 430 + ], + "score": 1.0, + "content": "with high noise level", + "type": "text" + }, + { + "bbox": [ + 191, + 417, + 228, + 428 + ], + "score": 0.89, + "content": "\\sigma _ { 0 } = 1 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 415, + 454, + 430 + ], + "score": 1.0, + "content": ". We note that without smoothing and annealing i.e using", + "type": "text" + }, + { + "bbox": [ + 455, + 415, + 501, + 429 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\bar { \\boldsymbol { \\mu } } = \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 415, + 505, + 430 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 310, + 439 + ], + "score": 1.0, + "content": "Sobolev GAN is behind. Annealed smoothing of", + "type": "text" + }, + { + "bbox": [ + 311, + 428, + 322, + 438 + ], + "score": 0.88, + "content": "\\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 427, + 505, + 439 + ], + "score": 1.0, + "content": ", helps the training as the real distribution is", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "score": 1.0, + "content": "slowly going from a continuous distribution to a discrete distribution. See Appendix C (Figure 6)", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 449, + 369, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 369, + 462 + ], + "score": 1.0, + "content": "for a comparison between annealed and non annealed smoothing.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 17.5, + "bbox_fs": [ + 103, + 327, + 507, + 462 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 466, + 504, + 488 + ], + "lines": [ + { + "bbox": [ + 106, + 465, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 506, + 480 + ], + "score": 1.0, + "content": "We give in Appendix C a comparison of WGAN-GP and Sobolev GAN for a Resnet generator", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 476, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 505, + 490 + ], + "score": 1.0, + "content": "architecture and an RNN critic. The RNN has degraded performance due to optimization difficulties.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 106, + 465, + 506, + 490 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 493, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "Fisher GAN Curriculum Conditioning versus Sobolev GAN: Explicit versus Implicit condi-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "score": 1.0, + "content": "tioning. We analyze how Fisher GAN behaves under different architectures of generators and critics.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 516, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 527 + ], + "score": 1.0, + "content": "We first fix the generator to be ResNet. We study 3 different architectures of critics: ResNet, GRU", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 527, + 504, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 396, + 538 + ], + "score": 1.0, + "content": "(we follow the experimental setup from (Press et al., 2017)), and hybrid", + "type": "text" + }, + { + "bbox": [ + 396, + 527, + 453, + 538 + ], + "score": 0.39, + "content": "\\mathrm { R e s N e t + G R U }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 527, + 504, + 538 + ], + "score": 1.0, + "content": "(Reed et al.,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 457, + 550 + ], + "score": 1.0, + "content": "2016). We notice that RNN is unstable, we need to clip the gradient values of critics in", + "type": "text" + }, + { + "bbox": [ + 457, + 538, + 501, + 550 + ], + "score": 0.59, + "content": "[ - 0 . 5 , 0 . 5 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 537, + 505, + 550 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 548, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 288, + 562 + ], + "score": 1.0, + "content": "and the gradient of the Lagrange multiplier", + "type": "text" + }, + { + "bbox": [ + 288, + 549, + 302, + 560 + ], + "score": 0.88, + "content": "\\lambda _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 548, + 316, + 562 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 316, + 549, + 363, + 560 + ], + "score": 0.91, + "content": "[ - 1 0 ^ { 4 } , \\bar { 1 } 0 ^ { 4 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 548, + 402, + 562 + ], + "score": 1.0, + "content": ". We fix", + "type": "text" + }, + { + "bbox": [ + 402, + 549, + 453, + 560 + ], + "score": 0.92, + "content": "\\rho _ { F } = 1 0 ^ { - 7 }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 548, + 506, + 562 + ], + "score": 1.0, + "content": "and we use", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 558, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 146, + 571 + ], + "score": 0.88, + "content": "\\mu = \\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 558, + 326, + 573 + ], + "score": 1.0, + "content": ". We search the value for the learning rate in", + "type": "text" + }, + { + "bbox": [ + 327, + 560, + 379, + 572 + ], + "score": 0.88, + "content": "[ 1 0 ^ { - 5 } , 1 \\dot { 0 } ^ { - 4 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 558, + 446, + 573 + ], + "score": 1.0, + "content": ". We see that for", + "type": "text" + }, + { + "bbox": [ + 447, + 561, + 487, + 572 + ], + "score": 0.9, + "content": "\\mu = \\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 558, + 506, + 573 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 133, + 581 + ], + "score": 0.62, + "content": "G = \\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "Resnet for various critic architectures, Fisher GAN fails at the task of text generation (Figure", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 581, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 128, + 592 + ], + "score": 0.25, + "content": "{ \\mathfrak { 4 } } \\ { \\mathfrak { a - c } } { \\mathrm { , } }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 581, + 290, + 595 + ], + "score": 1.0, + "content": "). Nevertheless, when using RNN critics", + "type": "text" + }, + { + "bbox": [ + 290, + 582, + 334, + 593 + ], + "score": 0.39, + "content": "( \\mathrm { F i g } \\quad \\mathsf { b } , \\mathsf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 581, + 506, + 595 + ], + "score": 1.0, + "content": "a marginal improvement happens over the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 592, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 606 + ], + "score": 1.0, + "content": "fully collapsed state when using a resnet critic (Fig 4 a). We hypothesize that RNN critics enable", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 604, + 443, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 443, + 615 + ], + "score": 1.0, + "content": "some conditioning and factoring of the distribution, which is lacking in Fisher IPM.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 493, + 506, + 615 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 620, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "score": 1.0, + "content": "Finally Figure 4 (d) shows the result of training with recurrent generator and critic. We follow (Press", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "et al., 2017) in terms of GRU architecture, but differ by using Fisher GAN rather than WGAN-GP.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 639, + 507, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 138, + 658 + ], + "score": 1.0, + "content": "We use", + "type": "text" + }, + { + "bbox": [ + 139, + 642, + 186, + 657 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mu = { \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 639, + 474, + 658 + ], + "score": 1.0, + "content": "i.e. without annealed noise smoothing. We train (F, D=RNN,G=RNN,", + "type": "text" + }, + { + "bbox": [ + 474, + 642, + 501, + 657 + ], + "score": 0.85, + "content": "{ \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } .", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 639, + 507, + 658 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 356, + 667 + ], + "score": 1.0, + "content": "using curriculum conditioning of the generator for all lengths", + "type": "text" + }, + { + "bbox": [ + 357, + 655, + 363, + 665 + ], + "score": 0.73, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "as done in (Press et al., 2017): the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 104, + 665, + 217, + 678 + ], + "score": 1.0, + "content": "generator is conditioned on", + "type": "text" + }, + { + "bbox": [ + 217, + 666, + 244, + 676 + ], + "score": 0.87, + "content": "3 2 - \\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 665, + 352, + 678 + ], + "score": 1.0, + "content": "characters and predicts the", + "type": "text" + }, + { + "bbox": [ + 352, + 666, + 358, + 676 + ], + "score": 0.73, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "remaining characters. We increment", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 131, + 687 + ], + "score": 0.9, + "content": "\\ell = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 676, + 271, + 689 + ], + "score": 1.0, + "content": "to 32 on a regular schedule (every", + "type": "text" + }, + { + "bbox": [ + 271, + 677, + 288, + 687 + ], + "score": 0.69, + "content": "1 5 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 676, + 444, + 689 + ], + "score": 1.0, + "content": "updates). JS-4 is only computed when", + "type": "text" + }, + { + "bbox": [ + 444, + 677, + 469, + 687 + ], + "score": 0.89, + "content": "\\ell > 4", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 676, + 506, + 689 + ], + "score": 1.0, + "content": ". We see", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "in Figure 4 that under curriculum conditioning with recurrent critics and generators, the training of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Fisher GAN succeeds and reaches similar levels of Sobolev GAN (and WGAN-GP). Note that the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 707, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 707, + 506, + 723 + ], + "score": 1.0, + "content": "need of this explicit brute force conditioning for Fisher GAN, highlights the implicit conditioning", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "induced by Sobolev GAN via the gradient regularizer, without the need for curriculum conditioning.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 41.5, + "bbox_fs": [ + 104, + 620, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 209, + 80, + 393, + 203 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 209, + 80, + 393, + 203 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 209, + 80, + 393, + 203 + ], + "spans": [ + { + "bbox": [ + 209, + 80, + 393, + 203 + ], + "score": 0.967, + "type": "image", + "image_path": "2cad69ff4d412b18994156d6951f045e5d5629da2e40f46cfb2e8bb9373125ba.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 209, + 80, + 393, + 93.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 209, + 93.66666666666667, + 393, + 107.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 209, + 107.33333333333334, + 393, + 121.00000000000001 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 209, + 121.00000000000001, + 393, + 134.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 209, + 134.66666666666669, + 393, + 148.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 209, + 148.33333333333334, + 393, + 162.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 209, + 162.0, + 393, + 175.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 209, + 175.66666666666666, + 393, + 189.33333333333331 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 209, + 189.33333333333331, + 393, + 202.99999999999997 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 214, + 506, + 314 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 214, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 444, + 228 + ], + "score": 1.0, + "content": "Figure 4: Fisher GAN with different architectures for critics: (a-c) We see that for", + "type": "text" + }, + { + "bbox": [ + 445, + 217, + 486, + 226 + ], + "score": 0.89, + "content": "\\mu = \\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 214, + 506, + 228 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 225, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 131, + 236 + ], + "score": 0.7, + "content": "G =", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 225, + 506, + 239 + ], + "score": 1.0, + "content": "Resnet for various critic architectures, Fisher GAN fails at the task of text generation. We", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "notice small improvements for RNN critics (b-c) due to the conditioning and factoring of the dis-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 246, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 104, + 246, + 506, + 262 + ], + "score": 1.0, + "content": "tribution. (d) Fisher GAN with recurrent generator and critic, trained on a curriculum conditioning", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 258, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 197, + 272 + ], + "score": 1.0, + "content": "for increasing lengths", + "type": "text" + }, + { + "bbox": [ + 197, + 259, + 203, + 269 + ], + "score": 0.59, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 258, + 505, + 272 + ], + "score": 1.0, + "content": ", increments indicated by gridlines. In this curriculum conditioning setup,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 269, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 506, + 282 + ], + "score": 1.0, + "content": "with recurrent critics and generators, the training of Fisher GAN succeeds and reaches similar levels", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 280, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 506, + 293 + ], + "score": 1.0, + "content": "of Sobolev GAN (and WGAN-GP). It is important to note that by doing this explicit curriculum", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 291, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 506, + 304 + ], + "score": 1.0, + "content": "conditioning for Fisher GAN, we highlight the implicit conditioning induced by Sobolev GAN, via", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 302, + 203, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 203, + 316 + ], + "score": 1.0, + "content": "the gradient regularizer.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13 + } + ], + "index": 8.5 + }, + { + "type": "title", + "bbox": [ + 107, + 334, + 354, + 345 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 355, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 355, + 346 + ], + "score": 1.0, + "content": "6.2 SEMI-SUPERVISED LEARNING WITH SOBOLEV GAN", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 354, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 354, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 506, + 366 + ], + "score": 1.0, + "content": "A proper and promising framework for evaluating GANs consists in using it as a regularizer in the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 365, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 505, + 378 + ], + "score": 1.0, + "content": "semi-supervised learning setting (Salimans et al., 2016; Dumoulin et al., 2017; Kumar et al., 2017).", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 377, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 505, + 388 + ], + "score": 1.0, + "content": "As mentioned before, the Sobolev norm as a regularizer for the Sobolev IPM draws connections with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 387, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 505, + 399 + ], + "score": 1.0, + "content": "the Laplacian regularization in manifold learning (Belkin et al., 2006). In the Laplacian framework", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 398, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 505, + 411 + ], + "score": 1.0, + "content": "of semi-supervised learning, the classifier satisfies a smoothness constraint imposed by controlling", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 409, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 104, + 410, + 179, + 424 + ], + "score": 1.0, + "content": "its Sobolev norm:", + "type": "text" + }, + { + "bbox": [ + 180, + 409, + 277, + 424 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\int _ { \\mathcal { X } } \\left\\| \\nabla _ { x } \\bar { f } ( x ) \\right\\| ^ { 2 } \\mu ^ { 2 } ( x ) d x } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 410, + 506, + 424 + ], + "score": 1.0, + "content": "(Alaoui et al., 2016). In this Section, we present a variant", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "Xof Sobolev GAN that achieves competitive performance in semi-supervised learning on the CIFAR-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 432, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 505, + 446 + ], + "score": 1.0, + "content": "10 dataset Krizhevsky & Hinton (2009) without using any internal activation normalization in the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 444, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 506, + 456 + ], + "score": 1.0, + "content": "critic, such as batch normalization (BN) (Ioffe & Szegedy, 2015), layer normalization (LN) (Ba", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 455, + 374, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 374, + 467 + ], + "score": 1.0, + "content": "et al., 2016), or weight normalization (Salimans & Kingma, 2016).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 471, + 505, + 505 + ], + "lines": [ + { + "bbox": [ + 104, + 470, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 104, + 470, + 294, + 486 + ], + "score": 1.0, + "content": "In this setting, a convolutional neural network", + "type": "text" + }, + { + "bbox": [ + 294, + 472, + 358, + 483 + ], + "score": 0.9, + "content": "\\Phi _ { \\omega } : \\mathcal { X } \\mathbb { R } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 470, + 505, + 486 + ], + "score": 1.0, + "content": "is shared between the cross entropy", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 480, + 507, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 181, + 496 + ], + "score": 1.0, + "content": "(CE) training of a", + "type": "text" + }, + { + "bbox": [ + 181, + 483, + 191, + 493 + ], + "score": 0.81, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 480, + 256, + 496 + ], + "score": 1.0, + "content": "-class classifier", + "type": "text" + }, + { + "bbox": [ + 256, + 482, + 308, + 493 + ], + "score": 0.89, + "content": "( S \\in \\mathbb { R } ^ { K \\times m } )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 480, + 507, + 496 + ], + "score": 1.0, + "content": ") and the critic of GAN (See Figure 5). We have", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 494, + 412, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 290, + 506 + ], + "score": 1.0, + "content": "the following training equations for the (critic", + "type": "text" + }, + { + "bbox": [ + 291, + 495, + 299, + 504 + ], + "score": 0.77, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 494, + 412, + 506 + ], + "score": 1.0, + "content": "classifer) and the generator:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "interline_equation", + "bbox": [ + 147, + 510, + 464, + 539 + ], + "lines": [ + { + "bbox": [ + 147, + 510, + 464, + 539 + ], + "spans": [ + { + "bbox": [ + 147, + 510, + 464, + 539 + ], + "score": 0.87, + "content": "{ \\mathrm { C r i t i c } } + { \\mathrm { C l a s s i f i e r } } ; \\quad \\operatorname* { m a x } _ { S , \\Phi _ { \\omega } , f } \\mathcal { L } _ { D } = \\mathcal { L } _ { \\mathrm { a l m } } ^ { \\mathrm { G A N } } ( f , g _ { \\theta } ) - \\lambda _ { C E } \\sum _ { ( x , y ) \\in \\mathrm { l a b } } C E ( p ( y | x ) , y )", + "type": "interline_equation", + "image_path": "73a48d9b2d0b771c267d552ceb29b802d35dabab0224cb66b7f31be6684d17f0.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 147, + 510, + 464, + 519.6666666666666 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 147, + 519.6666666666666, + 464, + 529.3333333333333 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 147, + 529.3333333333333, + 464, + 538.9999999999999 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 543, + 372, + 563 + ], + "lines": [ + { + "bbox": [ + 239, + 543, + 372, + 563 + ], + "spans": [ + { + "bbox": [ + 239, + 543, + 372, + 563 + ], + "score": 0.82, + "content": "\\mathrm { G e n e r a t o r : \\ m a x } { \\mathcal { L } } _ { G } = { \\hat { \\mathcal { E } } } ( f , g _ { \\theta } )", + "type": "interline_equation", + "image_path": "ded3d8d7b9bfb1e91382d83e938938173d7ca784cd5c705701bdfb7b402c6e8f.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 239, + 543, + 372, + 563 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 566, + 503, + 585 + ], + "lines": [ + { + "bbox": [ + 102, + 563, + 502, + 588 + ], + "spans": [ + { + "bbox": [ + 102, + 563, + 249, + 588 + ], + "score": 1.0, + "content": "where the main IPM objective with", + "type": "text" + }, + { + "bbox": [ + 250, + 570, + 260, + 580 + ], + "score": 0.81, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 563, + 298, + 588 + ], + "score": 1.0, + "content": "samples:", + "type": "text" + }, + { + "bbox": [ + 299, + 566, + 502, + 586 + ], + "score": 0.87, + "content": "\\begin{array} { r } { \\hat { \\mathcal { E } } ( f , g _ { \\theta } ) = \\frac { 1 } { N } \\left( \\sum _ { x \\in \\mathrm { u n l } } f ( x ) - \\sum _ { z \\sim p _ { z } } f ( g _ { \\theta } ( z ) ) \\right) . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 504, + 612 + ], + "lines": [ + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 338, + 602 + ], + "score": 1.0, + "content": "Following (Mroueh & Sercu, 2017) we use the following “", + "type": "text" + }, + { + "bbox": [ + 339, + 590, + 364, + 601 + ], + "score": 0.87, + "content": "K + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 589, + 505, + 602 + ], + "score": 1.0, + "content": "parametrization” for the critic (See", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 599, + 152, + 615 + ], + "spans": [ + { + "bbox": [ + 104, + 599, + 152, + 615 + ], + "score": 1.0, + "content": "Figure 5) :", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 610, + 399, + 663 + ], + "lines": [ + { + "bbox": [ + 212, + 610, + 399, + 663 + ], + "spans": [ + { + "bbox": [ + 212, + 610, + 399, + 663 + ], + "score": 0.93, + "content": "f ( x ) = \\underbrace { \\sum _ { y = 1 } ^ { K } p ( y | x ) \\left. S _ { y } , \\Phi _ { \\omega } ( x ) \\right. } _ { f _ { + } : \\mathrm { \\normalfont ~ { \\mathrm { \\fontfamily { ~ \\ddots ~ } \\selectfont ~ { \\ c r i t i c } } } } } - \\underbrace { \\left. v , \\Phi _ { \\omega } ( x ) \\right. } _ { f _ { - } : \\mathrm { \\normalfont ~ { \\cdot \\mathrm { \\sc ~ { \\ c r i t i c } } } } }", + "type": "interline_equation", + "image_path": "d42fbe727de6f14478c28b1bd7f1f5b76b3d1f0e3ed080794746d2e0b574d849.jpg" + } + ] + } + ], + "index": 40.5, + "virtual_lines": [ + { + "bbox": [ + 212, + 610, + 399, + 623.25 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 212, + 623.25, + 399, + 636.5 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 212, + 636.5, + 399, + 649.75 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 212, + 649.75, + 399, + 663.0 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 146, + 678 + ], + "score": 1.0, + "content": "Note that", + "type": "text" + }, + { + "bbox": [ + 146, + 665, + 280, + 678 + ], + "score": 0.91, + "content": "p ( y | x ) = \\mathrm { S o f t m a x } ( \\langle \\mathrm { S } , \\Phi _ { \\omega } ( \\mathrm { x } ) \\rangle ) _ { \\mathrm { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "appears both in the critic formulation and in the Cross-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 361, + 689 + ], + "score": 1.0, + "content": "Entropy term in Equation (11). Intuitively this critic uses the", + "type": "text" + }, + { + "bbox": [ + 362, + 677, + 372, + 687 + ], + "score": 0.81, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "class directions of the classifier", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 107, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 107, + 688, + 118, + 700 + ], + "score": 0.88, + "content": "S _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 687, + 358, + 700 + ], + "score": 1.0, + "content": "to define the “real” direction, which competes with another", + "type": "text" + }, + { + "bbox": [ + 358, + 687, + 384, + 698 + ], + "score": 0.89, + "content": "\\mathrm { K } { + } 1 ^ { \\mathrm { t h } }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 687, + 422, + 700 + ], + "score": 1.0, + "content": "direction", + "type": "text" + }, + { + "bbox": [ + 423, + 689, + 429, + 698 + ], + "score": 0.7, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "that indicates fake", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "samples. This parametrization adapts the idea of (Salimans et al., 2016), which was formulated", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "specifically for the classic KL / JSD based GANs, to IPM-based GANs. We saw consistently better", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 720, + 504, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 172, + 732 + ], + "score": 1.0, + "content": "results with the", + "type": "text" + }, + { + "bbox": [ + 173, + 721, + 202, + 731 + ], + "score": 0.9, + "content": "K + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 720, + 496, + 732 + ], + "score": 1.0, + "content": "formulation over the regular formulation where the classification layer", + "type": "text" + }, + { + "bbox": [ + 496, + 721, + 504, + 730 + ], + "score": 0.78, + "content": "S", + "type": "inline_equation" + } + ], + "index": 48 + } + ], + "index": 45.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 209, + 80, + 393, + 203 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 209, + 80, + 393, + 203 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 209, + 80, + 393, + 203 + ], + "spans": [ + { + "bbox": [ + 209, + 80, + 393, + 203 + ], + "score": 0.967, + "type": "image", + "image_path": "2cad69ff4d412b18994156d6951f045e5d5629da2e40f46cfb2e8bb9373125ba.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 209, + 80, + 393, + 93.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 209, + 93.66666666666667, + 393, + 107.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 209, + 107.33333333333334, + 393, + 121.00000000000001 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 209, + 121.00000000000001, + 393, + 134.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 209, + 134.66666666666669, + 393, + 148.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 209, + 148.33333333333334, + 393, + 162.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 209, + 162.0, + 393, + 175.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 209, + 175.66666666666666, + 393, + 189.33333333333331 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 209, + 189.33333333333331, + 393, + 202.99999999999997 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 214, + 506, + 314 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 214, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 444, + 228 + ], + "score": 1.0, + "content": "Figure 4: Fisher GAN with different architectures for critics: (a-c) We see that for", + "type": "text" + }, + { + "bbox": [ + 445, + 217, + 486, + 226 + ], + "score": 0.89, + "content": "\\mu = \\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 214, + 506, + 228 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 225, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 131, + 236 + ], + "score": 0.7, + "content": "G =", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 225, + 506, + 239 + ], + "score": 1.0, + "content": "Resnet for various critic architectures, Fisher GAN fails at the task of text generation. We", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "notice small improvements for RNN critics (b-c) due to the conditioning and factoring of the dis-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 246, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 104, + 246, + 506, + 262 + ], + "score": 1.0, + "content": "tribution. (d) Fisher GAN with recurrent generator and critic, trained on a curriculum conditioning", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 258, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 197, + 272 + ], + "score": 1.0, + "content": "for increasing lengths", + "type": "text" + }, + { + "bbox": [ + 197, + 259, + 203, + 269 + ], + "score": 0.59, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 258, + 505, + 272 + ], + "score": 1.0, + "content": ", increments indicated by gridlines. In this curriculum conditioning setup,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 269, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 506, + 282 + ], + "score": 1.0, + "content": "with recurrent critics and generators, the training of Fisher GAN succeeds and reaches similar levels", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 280, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 506, + 293 + ], + "score": 1.0, + "content": "of Sobolev GAN (and WGAN-GP). It is important to note that by doing this explicit curriculum", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 291, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 506, + 304 + ], + "score": 1.0, + "content": "conditioning for Fisher GAN, we highlight the implicit conditioning induced by Sobolev GAN, via", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 302, + 203, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 203, + 316 + ], + "score": 1.0, + "content": "the gradient regularizer.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13 + } + ], + "index": 8.5 + }, + { + "type": "title", + "bbox": [ + 107, + 334, + 354, + 345 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 355, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 355, + 346 + ], + "score": 1.0, + "content": "6.2 SEMI-SUPERVISED LEARNING WITH SOBOLEV GAN", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 354, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 354, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 506, + 366 + ], + "score": 1.0, + "content": "A proper and promising framework for evaluating GANs consists in using it as a regularizer in the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 365, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 505, + 378 + ], + "score": 1.0, + "content": "semi-supervised learning setting (Salimans et al., 2016; Dumoulin et al., 2017; Kumar et al., 2017).", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 377, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 505, + 388 + ], + "score": 1.0, + "content": "As mentioned before, the Sobolev norm as a regularizer for the Sobolev IPM draws connections with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 387, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 505, + 399 + ], + "score": 1.0, + "content": "the Laplacian regularization in manifold learning (Belkin et al., 2006). In the Laplacian framework", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 398, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 505, + 411 + ], + "score": 1.0, + "content": "of semi-supervised learning, the classifier satisfies a smoothness constraint imposed by controlling", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 409, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 104, + 410, + 179, + 424 + ], + "score": 1.0, + "content": "its Sobolev norm:", + "type": "text" + }, + { + "bbox": [ + 180, + 409, + 277, + 424 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\int _ { \\mathcal { X } } \\left\\| \\nabla _ { x } \\bar { f } ( x ) \\right\\| ^ { 2 } \\mu ^ { 2 } ( x ) d x } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 410, + 506, + 424 + ], + "score": 1.0, + "content": "(Alaoui et al., 2016). In this Section, we present a variant", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "Xof Sobolev GAN that achieves competitive performance in semi-supervised learning on the CIFAR-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 432, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 505, + 446 + ], + "score": 1.0, + "content": "10 dataset Krizhevsky & Hinton (2009) without using any internal activation normalization in the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 444, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 506, + 456 + ], + "score": 1.0, + "content": "critic, such as batch normalization (BN) (Ioffe & Szegedy, 2015), layer normalization (LN) (Ba", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 455, + 374, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 374, + 467 + ], + "score": 1.0, + "content": "et al., 2016), or weight normalization (Salimans & Kingma, 2016).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 23.5, + "bbox_fs": [ + 104, + 354, + 506, + 467 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 471, + 505, + 505 + ], + "lines": [ + { + "bbox": [ + 104, + 470, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 104, + 470, + 294, + 486 + ], + "score": 1.0, + "content": "In this setting, a convolutional neural network", + "type": "text" + }, + { + "bbox": [ + 294, + 472, + 358, + 483 + ], + "score": 0.9, + "content": "\\Phi _ { \\omega } : \\mathcal { X } \\mathbb { R } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 470, + 505, + 486 + ], + "score": 1.0, + "content": "is shared between the cross entropy", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 480, + 507, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 181, + 496 + ], + "score": 1.0, + "content": "(CE) training of a", + "type": "text" + }, + { + "bbox": [ + 181, + 483, + 191, + 493 + ], + "score": 0.81, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 480, + 256, + 496 + ], + "score": 1.0, + "content": "-class classifier", + "type": "text" + }, + { + "bbox": [ + 256, + 482, + 308, + 493 + ], + "score": 0.89, + "content": "( S \\in \\mathbb { R } ^ { K \\times m } )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 480, + 507, + 496 + ], + "score": 1.0, + "content": ") and the critic of GAN (See Figure 5). We have", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 494, + 412, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 290, + 506 + ], + "score": 1.0, + "content": "the following training equations for the (critic", + "type": "text" + }, + { + "bbox": [ + 291, + 495, + 299, + 504 + ], + "score": 0.77, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 494, + 412, + 506 + ], + "score": 1.0, + "content": "classifer) and the generator:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 104, + 470, + 507, + 506 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 147, + 510, + 464, + 539 + ], + "lines": [ + { + "bbox": [ + 147, + 510, + 464, + 539 + ], + "spans": [ + { + "bbox": [ + 147, + 510, + 464, + 539 + ], + "score": 0.87, + "content": "{ \\mathrm { C r i t i c } } + { \\mathrm { C l a s s i f i e r } } ; \\quad \\operatorname* { m a x } _ { S , \\Phi _ { \\omega } , f } \\mathcal { L } _ { D } = \\mathcal { L } _ { \\mathrm { a l m } } ^ { \\mathrm { G A N } } ( f , g _ { \\theta } ) - \\lambda _ { C E } \\sum _ { ( x , y ) \\in \\mathrm { l a b } } C E ( p ( y | x ) , y )", + "type": "interline_equation", + "image_path": "73a48d9b2d0b771c267d552ceb29b802d35dabab0224cb66b7f31be6684d17f0.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 147, + 510, + 464, + 519.6666666666666 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 147, + 519.6666666666666, + 464, + 529.3333333333333 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 147, + 529.3333333333333, + 464, + 538.9999999999999 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 543, + 372, + 563 + ], + "lines": [ + { + "bbox": [ + 239, + 543, + 372, + 563 + ], + "spans": [ + { + "bbox": [ + 239, + 543, + 372, + 563 + ], + "score": 0.82, + "content": "\\mathrm { G e n e r a t o r : \\ m a x } { \\mathcal { L } } _ { G } = { \\hat { \\mathcal { E } } } ( f , g _ { \\theta } )", + "type": "interline_equation", + "image_path": "ded3d8d7b9bfb1e91382d83e938938173d7ca784cd5c705701bdfb7b402c6e8f.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 239, + 543, + 372, + 563 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 566, + 503, + 585 + ], + "lines": [ + { + "bbox": [ + 102, + 563, + 502, + 588 + ], + "spans": [ + { + "bbox": [ + 102, + 563, + 249, + 588 + ], + "score": 1.0, + "content": "where the main IPM objective with", + "type": "text" + }, + { + "bbox": [ + 250, + 570, + 260, + 580 + ], + "score": 0.81, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 563, + 298, + 588 + ], + "score": 1.0, + "content": "samples:", + "type": "text" + }, + { + "bbox": [ + 299, + 566, + 502, + 586 + ], + "score": 0.87, + "content": "\\begin{array} { r } { \\hat { \\mathcal { E } } ( f , g _ { \\theta } ) = \\frac { 1 } { N } \\left( \\sum _ { x \\in \\mathrm { u n l } } f ( x ) - \\sum _ { z \\sim p _ { z } } f ( g _ { \\theta } ( z ) ) \\right) . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 102, + 563, + 502, + 588 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 504, + 612 + ], + "lines": [ + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 338, + 602 + ], + "score": 1.0, + "content": "Following (Mroueh & Sercu, 2017) we use the following “", + "type": "text" + }, + { + "bbox": [ + 339, + 590, + 364, + 601 + ], + "score": 0.87, + "content": "K + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 589, + 505, + 602 + ], + "score": 1.0, + "content": "parametrization” for the critic (See", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 599, + 152, + 615 + ], + "spans": [ + { + "bbox": [ + 104, + 599, + 152, + 615 + ], + "score": 1.0, + "content": "Figure 5) :", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 104, + 589, + 505, + 615 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 610, + 399, + 663 + ], + "lines": [ + { + "bbox": [ + 212, + 610, + 399, + 663 + ], + "spans": [ + { + "bbox": [ + 212, + 610, + 399, + 663 + ], + "score": 0.93, + "content": "f ( x ) = \\underbrace { \\sum _ { y = 1 } ^ { K } p ( y | x ) \\left. S _ { y } , \\Phi _ { \\omega } ( x ) \\right. } _ { f _ { + } : \\mathrm { \\normalfont ~ { \\mathrm { \\fontfamily { ~ \\ddots ~ } \\selectfont ~ { \\ c r i t i c } } } } } - \\underbrace { \\left. v , \\Phi _ { \\omega } ( x ) \\right. } _ { f _ { - } : \\mathrm { \\normalfont ~ { \\cdot \\mathrm { \\sc ~ { \\ c r i t i c } } } } }", + "type": "interline_equation", + "image_path": "d42fbe727de6f14478c28b1bd7f1f5b76b3d1f0e3ed080794746d2e0b574d849.jpg" + } + ] + } + ], + "index": 40.5, + "virtual_lines": [ + { + "bbox": [ + 212, + 610, + 399, + 623.25 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 212, + 623.25, + 399, + 636.5 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 212, + 636.5, + 399, + 649.75 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 212, + 649.75, + 399, + 663.0 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 146, + 678 + ], + "score": 1.0, + "content": "Note that", + "type": "text" + }, + { + "bbox": [ + 146, + 665, + 280, + 678 + ], + "score": 0.91, + "content": "p ( y | x ) = \\mathrm { S o f t m a x } ( \\langle \\mathrm { S } , \\Phi _ { \\omega } ( \\mathrm { x } ) \\rangle ) _ { \\mathrm { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "appears both in the critic formulation and in the Cross-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 361, + 689 + ], + "score": 1.0, + "content": "Entropy term in Equation (11). Intuitively this critic uses the", + "type": "text" + }, + { + "bbox": [ + 362, + 677, + 372, + 687 + ], + "score": 0.81, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "class directions of the classifier", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 107, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 107, + 688, + 118, + 700 + ], + "score": 0.88, + "content": "S _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 687, + 358, + 700 + ], + "score": 1.0, + "content": "to define the “real” direction, which competes with another", + "type": "text" + }, + { + "bbox": [ + 358, + 687, + 384, + 698 + ], + "score": 0.89, + "content": "\\mathrm { K } { + } 1 ^ { \\mathrm { t h } }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 687, + 422, + 700 + ], + "score": 1.0, + "content": "direction", + "type": "text" + }, + { + "bbox": [ + 423, + 689, + 429, + 698 + ], + "score": 0.7, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "that indicates fake", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "samples. This parametrization adapts the idea of (Salimans et al., 2016), which was formulated", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "specifically for the classic KL / JSD based GANs, to IPM-based GANs. We saw consistently better", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 720, + 504, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 172, + 732 + ], + "score": 1.0, + "content": "results with the", + "type": "text" + }, + { + "bbox": [ + 173, + 721, + 202, + 731 + ], + "score": 0.9, + "content": "K + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 720, + 496, + 732 + ], + "score": 1.0, + "content": "formulation over the regular formulation where the classification layer", + "type": "text" + }, + { + "bbox": [ + 496, + 721, + 504, + 730 + ], + "score": 0.78, + "content": "S", + "type": "inline_equation" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 264, + 95 + ], + "score": 1.0, + "content": "doesn’t interact with the critic direction", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 265, + 84, + 271, + 92 + ], + "score": 0.71, + "content": "v", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 272, + 82, + 506, + 95 + ], + "score": 1.0, + "content": ". We also note that when applying a gradient penalty based", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 347, + 107 + ], + "score": 1.0, + "content": "constraint (either WGAN-GP or Sobolev) on the full critic", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 348, + 94, + 406, + 105 + ], + "score": 0.92, + "content": "f = f _ { + } - f _ { - }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 406, + 93, + 506, + 107 + ], + "score": 1.0, + "content": ", it is impossible for the", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "network to fit even the small labeled training set (underfitting), causing bad SSL performance. This", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 436, + 128 + ], + "score": 1.0, + "content": "leads us to the formulation below, where we apply the Sobolev constraint only on", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 436, + 115, + 450, + 127 + ], + "score": 0.88, + "content": "f _ { - }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 451, + 115, + 505, + 128 + ], + "score": 1.0, + "content": ". Throughout", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 124, + 231, + 142 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 183, + 142 + ], + "score": 1.0, + "content": "this Section we fix", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 183, + 126, + 229, + 141 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mu = { \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } } \\end{array}", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 230, + 124, + 231, + 142 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 665, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 141 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 264, + 95 + ], + "score": 1.0, + "content": "doesn’t interact with the critic direction", + "type": "text" + }, + { + "bbox": [ + 265, + 84, + 271, + 92 + ], + "score": 0.71, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 82, + 506, + 95 + ], + "score": 1.0, + "content": ". We also note that when applying a gradient penalty based", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 347, + 107 + ], + "score": 1.0, + "content": "constraint (either WGAN-GP or Sobolev) on the full critic", + "type": "text" + }, + { + "bbox": [ + 348, + 94, + 406, + 105 + ], + "score": 0.92, + "content": "f = f _ { + } - f _ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 93, + 506, + 107 + ], + "score": 1.0, + "content": ", it is impossible for the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "network to fit even the small labeled training set (underfitting), causing bad SSL performance. This", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 436, + 128 + ], + "score": 1.0, + "content": "leads us to the formulation below, where we apply the Sobolev constraint only on", + "type": "text" + }, + { + "bbox": [ + 436, + 115, + 450, + 127 + ], + "score": 0.88, + "content": "f _ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 115, + 505, + 128 + ], + "score": 1.0, + "content": ". Throughout", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 124, + 231, + 142 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 183, + 142 + ], + "score": 1.0, + "content": "this Section we fix", + "type": "text" + }, + { + "bbox": [ + 183, + 126, + 229, + 141 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mu = { \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 124, + 231, + 142 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 104, + 144, + 488, + 158 + ], + "lines": [ + { + "bbox": [ + 106, + 144, + 489, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 345, + 159 + ], + "score": 1.0, + "content": "We propose the following two schemes for constraining the", + "type": "text" + }, + { + "bbox": [ + 346, + 145, + 365, + 156 + ], + "score": 0.82, + "content": "\\mathrm { K } { + } 1", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 144, + 389, + 159 + ], + "score": 1.0, + "content": "critic", + "type": "text" + }, + { + "bbox": [ + 389, + 145, + 485, + 158 + ], + "score": 0.92, + "content": "f ( x ) = f _ { + } ( x ) - f _ { - } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 144, + 489, + 159 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 108, + 162, + 415, + 174 + ], + "lines": [ + { + "bbox": [ + 106, + 160, + 415, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 415, + 176 + ], + "score": 1.0, + "content": "1) Fisher constraint on the critic: We restrict the critic to the following set:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 141, + 178, + 469, + 213 + ], + "lines": [ + { + "bbox": [ + 141, + 178, + 469, + 213 + ], + "spans": [ + { + "bbox": [ + 141, + 178, + 469, + 213 + ], + "score": 0.93, + "content": "f \\in \\left\\{ f = f _ { + } - f _ { - } , \\hat { \\Omega } _ { F } ( f , g _ { \\theta } ) = \\frac { 1 } { 2 N } \\left( \\sum _ { x \\in \\mathrm { u n l } } f ^ { 2 } ( x ) + \\sum _ { z \\sim p _ { z } } f ^ { 2 } ( g _ { \\theta } ( z ) ) \\right) = 1 \\right\\} .", + "type": "interline_equation", + "image_path": "ba655097f9eca7cf00e54d65d928b1ad1bc7942b96ee356e74325e253b584a03.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 141, + 178, + 469, + 189.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 141, + 189.66666666666666, + 469, + 201.33333333333331 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 141, + 201.33333333333331, + 469, + 212.99999999999997 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 218, + 408, + 230 + ], + "lines": [ + { + "bbox": [ + 105, + 217, + 408, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 408, + 232 + ], + "score": 1.0, + "content": "This constraint translates to the following ALM objective in Equation (11):", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 235, + 449, + 257 + ], + "lines": [ + { + "bbox": [ + 160, + 235, + 449, + 257 + ], + "spans": [ + { + "bbox": [ + 160, + 235, + 449, + 257 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { \\mathrm { a l m } } ^ { \\mathrm { G A N } } ( f , g _ { \\theta } ) = \\hat { \\mathcal { E } } ( f , g _ { \\theta } ) + \\lambda _ { F } ( 1 - \\hat { \\Omega } _ { F } ( f , g _ { \\theta } ) ) - \\frac { \\rho _ { F } } { 2 } ( \\hat { \\Omega } _ { F } ( f , g _ { \\theta } ) - 1 ) ^ { 2 } ,", + "type": "interline_equation", + "image_path": "c640866f97c81f3857c0afefb94f83c0bd3ab85c11ca2aa12f63240707343398.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 160, + 235, + 449, + 257 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 262, + 504, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 260, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 505, + 275 + ], + "score": 1.0, + "content": "where the Fisher constraint ensures the stability of the training through an implicit whitened mean", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 272, + 249, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 249, + 285 + ], + "score": 1.0, + "content": "matching (Mroueh & Sercu, 2017).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 289, + 503, + 302 + ], + "lines": [ + { + "bbox": [ + 105, + 287, + 504, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 144, + 304 + ], + "score": 1.0, + "content": "2) Fisher", + "type": "text" + }, + { + "bbox": [ + 145, + 291, + 150, + 299 + ], + "score": 0.31, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 287, + 424, + 304 + ], + "score": 1.0, + "content": "Sobolev constraint: We impose 2 constraints on the critic: Fisher on", + "type": "text" + }, + { + "bbox": [ + 424, + 290, + 432, + 302 + ], + "score": 0.82, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 287, + 489, + 304 + ], + "score": 1.0, + "content": "& Sobolev on", + "type": "text" + }, + { + "bbox": [ + 489, + 290, + 504, + 302 + ], + "score": 0.85, + "content": "f _ { - }", + "type": "inline_equation" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 134, + 308, + 428, + 354 + ], + "lines": [ + { + "bbox": [ + 144, + 308, + 428, + 354 + ], + "spans": [ + { + "bbox": [ + 144, + 308, + 428, + 354 + ], + "score": 0.76, + "content": "\\begin{array} { r } { f \\in \\left\\{ f = f _ { + } - f _ { - } , \\hat { \\Omega } _ { F } ( \\pmb { f } , g _ { \\theta } ) = 1 \\mathrm { a n d } \\hat { \\Omega } _ { S } ( \\pmb { f } _ { - } , g _ { \\theta } ) = 1 \\right\\} , } \\\\ { \\mathrm { } _ { \\mathrm { } s } ( \\pmb { f } _ { - } , g _ { \\theta } ) = \\frac { 1 } { 2 N } \\left( \\sum _ { x \\in \\mathrm { u n l } } \\left. \\nabla _ { x } \\pmb { f } _ { - } ( x ) \\right. ^ { 2 } + \\sum _ { z \\sim p _ { z } } \\left. \\nabla _ { x } \\pmb { f } _ { - } ( g _ { \\theta } ( z ) ) \\right. ^ { 2 } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "518d285100f9352d64f4d9dfeac82967c4a18bfbdb61cc20687f425469c45f86.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 134, + 308, + 428, + 323.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 134, + 323.3333333333333, + 428, + 338.66666666666663 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 134, + 338.66666666666663, + 428, + 353.99999999999994 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 356, + 369, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 354, + 370, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 370, + 371 + ], + "score": 1.0, + "content": "This constraint translates to the following ALM in Equation (11):", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 373, + 450, + 415 + ], + "lines": [ + { + "bbox": [ + 161, + 373, + 450, + 415 + ], + "spans": [ + { + "bbox": [ + 161, + 373, + 450, + 415 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathcal { L } _ { \\mathrm { a l m } } ^ { \\mathrm { G A N } } ( f , g _ { \\theta } ) = \\hat { \\mathcal { E } } ( f , g _ { \\theta } ) + \\lambda _ { F } ( 1 - \\hat { \\Omega } _ { F } ( \\pmb { f } , g _ { \\theta } ) ) + \\lambda _ { S } ( 1 - \\hat { \\Omega } _ { S } ( f _ { - } , g _ { \\theta } ) ) } \\\\ & { \\quad \\quad \\quad \\quad - \\frac { \\rho _ { F } } { 2 } ( \\hat { \\Omega } _ { F } ( \\pmb { f } , g _ { \\theta } ) - 1 ) ^ { 2 } - \\frac { \\rho _ { S } } { 2 } ( \\hat { \\Omega } _ { S } ( f _ { - } , g _ { \\theta } ) - 1 ) ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "6b013d885a1d46e57f85b45777e15fe96d4358fccc7b6980bdd8253a82bf5f2f.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 161, + 373, + 450, + 387.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 161, + 387.0, + 450, + 401.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 161, + 401.0, + 450, + 415.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 417, + 506, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 417, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 240, + 429 + ], + "score": 1.0, + "content": "Note that the fisher constraint on", + "type": "text" + }, + { + "bbox": [ + 240, + 418, + 248, + 429 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 417, + 505, + 429 + ], + "score": 1.0, + "content": "ensures the stability of the training, and the Sobolev constraints", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 187, + 440 + ], + "score": 1.0, + "content": "on the “fake” critic", + "type": "text" + }, + { + "bbox": [ + 187, + 429, + 201, + 440 + ], + "score": 0.88, + "content": "f _ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 428, + 473, + 440 + ], + "score": 1.0, + "content": "enforces smoothness of the “fake” critic and thus the shared CNN", + "type": "text" + }, + { + "bbox": [ + 474, + 428, + 501, + 441 + ], + "score": 0.92, + "content": "\\Phi _ { \\omega } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 428, + 505, + 440 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "This is related to the classic Laplacian regularization in semi-supervised learning (Belkin et al.,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 448, + 136, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 448, + 136, + 464 + ], + "score": 1.0, + "content": "2006).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 466, + 506, + 567 + ], + "lines": [ + { + "bbox": [ + 106, + 468, + 506, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 506, + 479 + ], + "score": 1.0, + "content": "Table 2 shows results of SSL on CIFAR-10 comparing the two proposed formulations. Similar to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "the standard procedure in other GAN papers, we do hyperparameter and model selection on the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 490, + 504, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 504, + 500 + ], + "score": 1.0, + "content": "validation set. We present baselines with a similar model architecture and leave out results with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 498, + 504, + 514 + ], + "spans": [ + { + "bbox": [ + 104, + 498, + 489, + 514 + ], + "score": 1.0, + "content": "significantly larger convnets. G and D architectures and hyperparameters are in Appendix D.", + "type": "text" + }, + { + "bbox": [ + 489, + 500, + 504, + 512 + ], + "score": 0.87, + "content": "\\Phi _ { \\omega }", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 509, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 104, + 509, + 506, + 524 + ], + "score": 1.0, + "content": "is similar to (Salimans et al., 2016; Dumoulin et al., 2017; Mroueh & Sercu, 2017) in architecture,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "but note that we do not use any batch, layer, or weight normalization yet obtain strong competitive", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 533, + 504, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 504, + 544 + ], + "score": 1.0, + "content": "accuracies. We hypothesize that we don’t need any normalization in the critic, because of the implicit", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 543, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 506, + 557 + ], + "score": 1.0, + "content": "whitening of the feature maps introduced by the Fisher and Sobolev constraints as explained in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 554, + 209, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 209, + 567 + ], + "score": 1.0, + "content": "(Mroueh & Sercu, 2017).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30 + }, + { + "type": "image", + "bbox": [ + 155, + 586, + 454, + 707 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 155, + 586, + 454, + 707 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 155, + 586, + 454, + 707 + ], + "spans": [ + { + "bbox": [ + 155, + 586, + 454, + 707 + ], + "score": 0.969, + "type": "image", + "image_path": "ea25635919fa3c5b32ae620a1e74c601b9df2ff8ade1012e0ef7eddf0195cd9e.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 155, + 586, + 454, + 626.3333333333334 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 155, + 626.3333333333334, + 454, + 666.6666666666667 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 155, + 666.6666666666667, + 454, + 707.0000000000001 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 155, + 718, + 455, + 730 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 153, + 714, + 457, + 734 + ], + "spans": [ + { + "bbox": [ + 153, + 714, + 196, + 734 + ], + "score": 1.0, + "content": "Figure 5:", + "type": "text" + }, + { + "bbox": [ + 197, + 718, + 220, + 729 + ], + "score": 0.7, + "content": "\\mathrm { \\ddot { \\Delta K } } + 1 \\mathrm { \\ ' }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 714, + 457, + 734 + ], + "score": 1.0, + "content": "” parametrization of the critic for semi-supervised learning.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + } + ], + "index": 37.0 + } + ], + "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, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 141 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 105, + 82, + 506, + 142 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 104, + 144, + 488, + 158 + ], + "lines": [ + { + "bbox": [ + 106, + 144, + 489, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 345, + 159 + ], + "score": 1.0, + "content": "We propose the following two schemes for constraining the", + "type": "text" + }, + { + "bbox": [ + 346, + 145, + 365, + 156 + ], + "score": 0.82, + "content": "\\mathrm { K } { + } 1", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 144, + 389, + 159 + ], + "score": 1.0, + "content": "critic", + "type": "text" + }, + { + "bbox": [ + 389, + 145, + 485, + 158 + ], + "score": 0.92, + "content": "f ( x ) = f _ { + } ( x ) - f _ { - } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 144, + 489, + 159 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 144, + 489, + 159 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 162, + 415, + 174 + ], + "lines": [ + { + "bbox": [ + 106, + 160, + 415, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 415, + 176 + ], + "score": 1.0, + "content": "1) Fisher constraint on the critic: We restrict the critic to the following set:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 160, + 415, + 176 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 141, + 178, + 469, + 213 + ], + "lines": [ + { + "bbox": [ + 141, + 178, + 469, + 213 + ], + "spans": [ + { + "bbox": [ + 141, + 178, + 469, + 213 + ], + "score": 0.93, + "content": "f \\in \\left\\{ f = f _ { + } - f _ { - } , \\hat { \\Omega } _ { F } ( f , g _ { \\theta } ) = \\frac { 1 } { 2 N } \\left( \\sum _ { x \\in \\mathrm { u n l } } f ^ { 2 } ( x ) + \\sum _ { z \\sim p _ { z } } f ^ { 2 } ( g _ { \\theta } ( z ) ) \\right) = 1 \\right\\} .", + "type": "interline_equation", + "image_path": "ba655097f9eca7cf00e54d65d928b1ad1bc7942b96ee356e74325e253b584a03.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 141, + 178, + 469, + 189.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 141, + 189.66666666666666, + 469, + 201.33333333333331 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 141, + 201.33333333333331, + 469, + 212.99999999999997 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 218, + 408, + 230 + ], + "lines": [ + { + "bbox": [ + 105, + 217, + 408, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 408, + 232 + ], + "score": 1.0, + "content": "This constraint translates to the following ALM objective in Equation (11):", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 217, + 408, + 232 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 235, + 449, + 257 + ], + "lines": [ + { + "bbox": [ + 160, + 235, + 449, + 257 + ], + "spans": [ + { + "bbox": [ + 160, + 235, + 449, + 257 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { \\mathrm { a l m } } ^ { \\mathrm { G A N } } ( f , g _ { \\theta } ) = \\hat { \\mathcal { E } } ( f , g _ { \\theta } ) + \\lambda _ { F } ( 1 - \\hat { \\Omega } _ { F } ( f , g _ { \\theta } ) ) - \\frac { \\rho _ { F } } { 2 } ( \\hat { \\Omega } _ { F } ( f , g _ { \\theta } ) - 1 ) ^ { 2 } ,", + "type": "interline_equation", + "image_path": "c640866f97c81f3857c0afefb94f83c0bd3ab85c11ca2aa12f63240707343398.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 160, + 235, + 449, + 257 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 262, + 504, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 260, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 505, + 275 + ], + "score": 1.0, + "content": "where the Fisher constraint ensures the stability of the training through an implicit whitened mean", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 272, + 249, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 249, + 285 + ], + "score": 1.0, + "content": "matching (Mroueh & Sercu, 2017).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 260, + 505, + 285 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 289, + 503, + 302 + ], + "lines": [ + { + "bbox": [ + 105, + 287, + 504, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 144, + 304 + ], + "score": 1.0, + "content": "2) Fisher", + "type": "text" + }, + { + "bbox": [ + 145, + 291, + 150, + 299 + ], + "score": 0.31, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 287, + 424, + 304 + ], + "score": 1.0, + "content": "Sobolev constraint: We impose 2 constraints on the critic: Fisher on", + "type": "text" + }, + { + "bbox": [ + 424, + 290, + 432, + 302 + ], + "score": 0.82, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 287, + 489, + 304 + ], + "score": 1.0, + "content": "& Sobolev on", + "type": "text" + }, + { + "bbox": [ + 489, + 290, + 504, + 302 + ], + "score": 0.85, + "content": "f _ { - }", + "type": "inline_equation" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 287, + 504, + 304 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 134, + 308, + 428, + 354 + ], + "lines": [ + { + "bbox": [ + 144, + 308, + 428, + 354 + ], + "spans": [ + { + "bbox": [ + 144, + 308, + 428, + 354 + ], + "score": 0.76, + "content": "\\begin{array} { r } { f \\in \\left\\{ f = f _ { + } - f _ { - } , \\hat { \\Omega } _ { F } ( \\pmb { f } , g _ { \\theta } ) = 1 \\mathrm { a n d } \\hat { \\Omega } _ { S } ( \\pmb { f } _ { - } , g _ { \\theta } ) = 1 \\right\\} , } \\\\ { \\mathrm { } _ { \\mathrm { } s } ( \\pmb { f } _ { - } , g _ { \\theta } ) = \\frac { 1 } { 2 N } \\left( \\sum _ { x \\in \\mathrm { u n l } } \\left. \\nabla _ { x } \\pmb { f } _ { - } ( x ) \\right. ^ { 2 } + \\sum _ { z \\sim p _ { z } } \\left. \\nabla _ { x } \\pmb { f } _ { - } ( g _ { \\theta } ( z ) ) \\right. ^ { 2 } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "518d285100f9352d64f4d9dfeac82967c4a18bfbdb61cc20687f425469c45f86.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 134, + 308, + 428, + 323.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 134, + 323.3333333333333, + 428, + 338.66666666666663 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 134, + 338.66666666666663, + 428, + 353.99999999999994 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 356, + 369, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 354, + 370, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 370, + 371 + ], + "score": 1.0, + "content": "This constraint translates to the following ALM in Equation (11):", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 354, + 370, + 371 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 373, + 450, + 415 + ], + "lines": [ + { + "bbox": [ + 161, + 373, + 450, + 415 + ], + "spans": [ + { + "bbox": [ + 161, + 373, + 450, + 415 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathcal { L } _ { \\mathrm { a l m } } ^ { \\mathrm { G A N } } ( f , g _ { \\theta } ) = \\hat { \\mathcal { E } } ( f , g _ { \\theta } ) + \\lambda _ { F } ( 1 - \\hat { \\Omega } _ { F } ( \\pmb { f } , g _ { \\theta } ) ) + \\lambda _ { S } ( 1 - \\hat { \\Omega } _ { S } ( f _ { - } , g _ { \\theta } ) ) } \\\\ & { \\quad \\quad \\quad \\quad - \\frac { \\rho _ { F } } { 2 } ( \\hat { \\Omega } _ { F } ( \\pmb { f } , g _ { \\theta } ) - 1 ) ^ { 2 } - \\frac { \\rho _ { S } } { 2 } ( \\hat { \\Omega } _ { S } ( f _ { - } , g _ { \\theta } ) - 1 ) ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "6b013d885a1d46e57f85b45777e15fe96d4358fccc7b6980bdd8253a82bf5f2f.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 161, + 373, + 450, + 387.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 161, + 387.0, + 450, + 401.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 161, + 401.0, + 450, + 415.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 417, + 506, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 417, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 240, + 429 + ], + "score": 1.0, + "content": "Note that the fisher constraint on", + "type": "text" + }, + { + "bbox": [ + 240, + 418, + 248, + 429 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 417, + 505, + 429 + ], + "score": 1.0, + "content": "ensures the stability of the training, and the Sobolev constraints", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 187, + 440 + ], + "score": 1.0, + "content": "on the “fake” critic", + "type": "text" + }, + { + "bbox": [ + 187, + 429, + 201, + 440 + ], + "score": 0.88, + "content": "f _ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 428, + 473, + 440 + ], + "score": 1.0, + "content": "enforces smoothness of the “fake” critic and thus the shared CNN", + "type": "text" + }, + { + "bbox": [ + 474, + 428, + 501, + 441 + ], + "score": 0.92, + "content": "\\Phi _ { \\omega } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 428, + 505, + 440 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "This is related to the classic Laplacian regularization in semi-supervised learning (Belkin et al.,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 448, + 136, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 448, + 136, + 464 + ], + "score": 1.0, + "content": "2006).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 104, + 417, + 505, + 464 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 466, + 506, + 567 + ], + "lines": [ + { + "bbox": [ + 106, + 468, + 506, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 506, + 479 + ], + "score": 1.0, + "content": "Table 2 shows results of SSL on CIFAR-10 comparing the two proposed formulations. Similar to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "the standard procedure in other GAN papers, we do hyperparameter and model selection on the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 490, + 504, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 504, + 500 + ], + "score": 1.0, + "content": "validation set. We present baselines with a similar model architecture and leave out results with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 498, + 504, + 514 + ], + "spans": [ + { + "bbox": [ + 104, + 498, + 489, + 514 + ], + "score": 1.0, + "content": "significantly larger convnets. G and D architectures and hyperparameters are in Appendix D.", + "type": "text" + }, + { + "bbox": [ + 489, + 500, + 504, + 512 + ], + "score": 0.87, + "content": "\\Phi _ { \\omega }", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 509, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 104, + 509, + 506, + 524 + ], + "score": 1.0, + "content": "is similar to (Salimans et al., 2016; Dumoulin et al., 2017; Mroueh & Sercu, 2017) in architecture,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "but note that we do not use any batch, layer, or weight normalization yet obtain strong competitive", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 533, + 504, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 504, + 544 + ], + "score": 1.0, + "content": "accuracies. We hypothesize that we don’t need any normalization in the critic, because of the implicit", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 543, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 506, + 557 + ], + "score": 1.0, + "content": "whitening of the feature maps introduced by the Fisher and Sobolev constraints as explained in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 554, + 209, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 209, + 567 + ], + "score": 1.0, + "content": "(Mroueh & Sercu, 2017).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30, + "bbox_fs": [ + 104, + 468, + 506, + 567 + ] + }, + { + "type": "image", + "bbox": [ + 155, + 586, + 454, + 707 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 155, + 586, + 454, + 707 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 155, + 586, + 454, + 707 + ], + "spans": [ + { + "bbox": [ + 155, + 586, + 454, + 707 + ], + "score": 0.969, + "type": "image", + "image_path": "ea25635919fa3c5b32ae620a1e74c601b9df2ff8ade1012e0ef7eddf0195cd9e.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 155, + 586, + 454, + 626.3333333333334 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 155, + 626.3333333333334, + 454, + 666.6666666666667 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 155, + 666.6666666666667, + 454, + 707.0000000000001 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 155, + 718, + 455, + 730 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 153, + 714, + 457, + 734 + ], + "spans": [ + { + "bbox": [ + 153, + 714, + 196, + 734 + ], + "score": 1.0, + "content": "Figure 5:", + "type": "text" + }, + { + "bbox": [ + 197, + 718, + 220, + 729 + ], + "score": 0.7, + "content": "\\mathrm { \\ddot { \\Delta K } } + 1 \\mathrm { \\ ' }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 714, + 457, + 734 + ], + "score": 1.0, + "content": "” parametrization of the critic for semi-supervised learning.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + } + ], + "index": 37.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 168, + 504, + 344 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 79, + 505, + 168 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 79, + 505, + 92 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 505, + 92 + ], + "score": 1.0, + "content": "Table 2: CIFAR-10 error rates for varying number of labeled samples in the training set. Mean and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 91, + 505, + 102 + ], + "spans": [ + { + "bbox": [ + 106, + 91, + 338, + 102 + ], + "score": 1.0, + "content": "standard deviation computed over 5 runs. We only use the", + "type": "text" + }, + { + "bbox": [ + 338, + 91, + 365, + 101 + ], + "score": 0.91, + "content": "K + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 91, + 505, + 102 + ], + "score": 1.0, + "content": "formulation of the critic. Note that", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 505, + 114 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 505, + 114 + ], + "score": 1.0, + "content": "we achieve strong SSL performance without any additional tricks, and even though the critic does", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 113, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 505, + 125 + ], + "score": 1.0, + "content": "not have any batch, layer or weight normalization. Baselines with * use either additional models", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "like PixelCNN, or do data augmentation (translations and flips), or use a much larger model, either", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 135, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 384, + 147 + ], + "score": 1.0, + "content": "of which gives an advantage over our plain simple training method.", + "type": "text" + }, + { + "bbox": [ + 384, + 135, + 391, + 146 + ], + "score": 0.81, + "content": "\\dagger", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 135, + 505, + 147 + ], + "score": 1.0, + "content": "is the result we achieved in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 146, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 356, + 158 + ], + "score": 1.0, + "content": "our experimental setup under the same conditions but without", + "type": "text" + }, + { + "bbox": [ + 356, + 146, + 382, + 156 + ], + "score": 0.74, + "content": "\\mathrm { \\ddot { \\Delta K } } + 1 \\mathrm { \\ ' }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 146, + 505, + 158 + ], + "score": 1.0, + "content": "critic (see Appendix D), since", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 157, + 308, + 169 + ], + "spans": [ + { + "bbox": [ + 107, + 157, + 308, + 169 + ], + "score": 1.0, + "content": "(Gulrajani et al., 2017) does not have SSL results.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "table_body", + "bbox": [ + 107, + 168, + 504, + 344 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 168, + 504, + 344 + ], + "spans": [ + { + "bbox": [ + 107, + 168, + 504, + 344 + ], + "score": 0.983, + "html": "
Number of labeled examples Model100020004000 Misclassification rate8000
CatGAN (Springenberg, 2015) FM (Salimans et al., 2016) ALI (Dumoulin et al., 2017)21.83 ± 2.0119.61 ± 2.0919.58 18.63 ± 2.3217.72 ± 1.82
Tangents Reg (Kumar et al., 2017)19.98 ± 0.3 20.06 ± 0.519.09 ± 0.1517.99 ± 0.54 16.78 ± 0.617.05 ± 0.50
II-model (Laine & Aila, 2016) *16.55 ± 0.29
VAT (Miyato et al., 2017)14.87
Bad Gan (Dai et al., 2017) *14.41 ± 0.30
VAT+EntMin+Large (Miyato et al., 2017) *13.15
Sajadi (Sajjadi et al., 2016) *11.29
WGAN-GP (Gulrajani et al., 2017) t44.85 ± 0.2837.62 ± 0.5632.66 ± 0.4830.38± 0.22
Fisher,layer norm (Mroueh & Sercu,2017)19.74± 0.2117.87 ± 0.3816.13 ± 0.5314.81 ± 0.16
Fisher, no norm (Mroueh & Sercu, 2017)21.49 ± 0.1819.20 ± 0.4617.30 ± 0.3015.57 ± 0.33
Sobolev + Fisher, no norm (This Work)20.14 ± 0.2117.38 ± 0.1015.77 ± 0.1914.20± 0.08
", + "type": "table", + "image_path": "030d4a44b15f080cce2bc3e0e6994331ffe397d02b0b7427f447afbeb200ae37.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 107, + 168, + 504, + 226.66666666666666 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 107, + 226.66666666666666, + 504, + 285.3333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 107, + 285.3333333333333, + 504, + 344.0 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 6.25 + }, + { + "type": "title", + "bbox": [ + 108, + 363, + 195, + 376 + ], + "lines": [ + { + "bbox": [ + 104, + 361, + 197, + 379 + ], + "spans": [ + { + "bbox": [ + 104, + 361, + 197, + 379 + ], + "score": 1.0, + "content": "7 CONCLUSION", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 388, + 505, + 509 + ], + "lines": [ + { + "bbox": [ + 106, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "We introduced the Sobolev IPM and showed that it amounts to a comparison between weighted", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 399, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 411 + ], + "score": 1.0, + "content": "(coordinate-wise) CDFs. We presented an ALM algorithm for training Sobolev GAN. The intrinsic", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 505, + 423 + ], + "score": 1.0, + "content": "conditioning implied by the Sobolev IPM explains the success of gradient regularization in Sobolev", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 420, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 434 + ], + "score": 1.0, + "content": "GAN and WGAN-GP on discrete sequence data, and particularly in text generation. We highlighted", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 432, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 446 + ], + "score": 1.0, + "content": "the important tradeoffs between the implicit conditioning introduced by the gradient regularizer in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "Sobolev IPM, and the explicit conditioning of Fisher IPM via recurrent critics and generators in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 455, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 467 + ], + "score": 1.0, + "content": "conjunction with the curriculum conditioning. Both approaches succeed in text generation. We", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "showed that Sobolev GAN achieves competitive semi-supervised learning results without the need", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "of any normalization, thanks to the smoothness induced by the gradient regularizer. We think the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "Sobolev IPM point of view will open the door for designing new regularizers that induce different", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 499, + 438, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 438, + 511 + ], + "score": 1.0, + "content": "types of conditioning for general structured/discrete/graph data beyond sequences.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 108, + 527, + 175, + 538 + ], + "lines": [ + { + "bbox": [ + 106, + 526, + 176, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 176, + 540 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 105, + 545, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "score": 1.0, + "content": "Ahmed El Alaoui, Xiang Cheng, Aaditya Ramdas, Martin J. Wainwright, and Michael I. Jordan.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 556, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 116, + 556, + 506, + 570 + ], + "score": 1.0, + "content": "Asymptotic behavior of p-based laplacian regularization in semi-supervised learning. CoRR,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 568, + 209, + 580 + ], + "spans": [ + { + "bbox": [ + 116, + 568, + 209, + 580 + ], + "score": 1.0, + "content": "abs/1603.00564, 2016.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 586, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 506, + 601 + ], + "score": 1.0, + "content": "Martin Arjovsky and Leon Bottou. Towards principled methods for training generative adversarial ´", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 599, + 221, + 610 + ], + "spans": [ + { + "bbox": [ + 116, + 599, + 221, + 610 + ], + "score": 1.0, + "content": "networks. In ICLR, 2017.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 617, + 450, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 450, + 632 + ], + "score": 1.0, + "content": "Martin Arjovsky, Soumith Chintala, and Leon Bottou. Wasserstein gan. ´ ICML, 2017.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 636, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 104, + 636, + 505, + 651 + ], + "score": 1.0, + "content": "Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv:1607.06450,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 648, + 142, + 661 + ], + "spans": [ + { + "bbox": [ + 115, + 648, + 142, + 661 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 667, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 681 + ], + "score": 1.0, + "content": "Mikhail Belkin, Partha Niyogi, and Vikas Sindhwani. Manifold regularization: A geometric frame-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 679, + 397, + 692 + ], + "spans": [ + { + "bbox": [ + 116, + 679, + 397, + 692 + ], + "score": 1.0, + "content": "work for learning from labeled and unlabeled examples. JMLR, 2006.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 698, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 713 + ], + "score": 1.0, + "content": "Marc G. Bellemare, Ivo Danihelka, Will Dabney, Shakir Mohamed, Balaji Lakshminarayanan,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "Stephan Hoyer, and Remi Munos. The cramer distance as a solution to biased wasserstein gradi- ´", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 721, + 265, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 265, + 733 + ], + "score": 1.0, + "content": "ents. CoRR, abs/1705.10743, 2017a.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 30 + } + ], + "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 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 168, + 504, + 344 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 79, + 505, + 168 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 79, + 505, + 92 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 505, + 92 + ], + "score": 1.0, + "content": "Table 2: CIFAR-10 error rates for varying number of labeled samples in the training set. Mean and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 91, + 505, + 102 + ], + "spans": [ + { + "bbox": [ + 106, + 91, + 338, + 102 + ], + "score": 1.0, + "content": "standard deviation computed over 5 runs. We only use the", + "type": "text" + }, + { + "bbox": [ + 338, + 91, + 365, + 101 + ], + "score": 0.91, + "content": "K + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 91, + 505, + 102 + ], + "score": 1.0, + "content": "formulation of the critic. Note that", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 505, + 114 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 505, + 114 + ], + "score": 1.0, + "content": "we achieve strong SSL performance without any additional tricks, and even though the critic does", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 113, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 505, + 125 + ], + "score": 1.0, + "content": "not have any batch, layer or weight normalization. Baselines with * use either additional models", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "like PixelCNN, or do data augmentation (translations and flips), or use a much larger model, either", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 135, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 384, + 147 + ], + "score": 1.0, + "content": "of which gives an advantage over our plain simple training method.", + "type": "text" + }, + { + "bbox": [ + 384, + 135, + 391, + 146 + ], + "score": 0.81, + "content": "\\dagger", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 135, + 505, + 147 + ], + "score": 1.0, + "content": "is the result we achieved in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 146, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 356, + 158 + ], + "score": 1.0, + "content": "our experimental setup under the same conditions but without", + "type": "text" + }, + { + "bbox": [ + 356, + 146, + 382, + 156 + ], + "score": 0.74, + "content": "\\mathrm { \\ddot { \\Delta K } } + 1 \\mathrm { \\ ' }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 146, + 505, + 158 + ], + "score": 1.0, + "content": "critic (see Appendix D), since", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 157, + 308, + 169 + ], + "spans": [ + { + "bbox": [ + 107, + 157, + 308, + 169 + ], + "score": 1.0, + "content": "(Gulrajani et al., 2017) does not have SSL results.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "table_body", + "bbox": [ + 107, + 168, + 504, + 344 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 168, + 504, + 344 + ], + "spans": [ + { + "bbox": [ + 107, + 168, + 504, + 344 + ], + "score": 0.983, + "html": "
Number of labeled examples Model100020004000 Misclassification rate8000
CatGAN (Springenberg, 2015) FM (Salimans et al., 2016) ALI (Dumoulin et al., 2017)21.83 ± 2.0119.61 ± 2.0919.58 18.63 ± 2.3217.72 ± 1.82
Tangents Reg (Kumar et al., 2017)19.98 ± 0.3 20.06 ± 0.519.09 ± 0.1517.99 ± 0.54 16.78 ± 0.617.05 ± 0.50
II-model (Laine & Aila, 2016) *16.55 ± 0.29
VAT (Miyato et al., 2017)14.87
Bad Gan (Dai et al., 2017) *14.41 ± 0.30
VAT+EntMin+Large (Miyato et al., 2017) *13.15
Sajadi (Sajjadi et al., 2016) *11.29
WGAN-GP (Gulrajani et al., 2017) t44.85 ± 0.2837.62 ± 0.5632.66 ± 0.4830.38± 0.22
Fisher,layer norm (Mroueh & Sercu,2017)19.74± 0.2117.87 ± 0.3816.13 ± 0.5314.81 ± 0.16
Fisher, no norm (Mroueh & Sercu, 2017)21.49 ± 0.1819.20 ± 0.4617.30 ± 0.3015.57 ± 0.33
Sobolev + Fisher, no norm (This Work)20.14 ± 0.2117.38 ± 0.1015.77 ± 0.1914.20± 0.08
", + "type": "table", + "image_path": "030d4a44b15f080cce2bc3e0e6994331ffe397d02b0b7427f447afbeb200ae37.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 107, + 168, + 504, + 226.66666666666666 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 107, + 226.66666666666666, + 504, + 285.3333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 107, + 285.3333333333333, + 504, + 344.0 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 6.25 + }, + { + "type": "title", + "bbox": [ + 108, + 363, + 195, + 376 + ], + "lines": [ + { + "bbox": [ + 104, + 361, + 197, + 379 + ], + "spans": [ + { + "bbox": [ + 104, + 361, + 197, + 379 + ], + "score": 1.0, + "content": "7 CONCLUSION", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 388, + 505, + 509 + ], + "lines": [ + { + "bbox": [ + 106, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "We introduced the Sobolev IPM and showed that it amounts to a comparison between weighted", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 399, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 411 + ], + "score": 1.0, + "content": "(coordinate-wise) CDFs. We presented an ALM algorithm for training Sobolev GAN. The intrinsic", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 505, + 423 + ], + "score": 1.0, + "content": "conditioning implied by the Sobolev IPM explains the success of gradient regularization in Sobolev", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 420, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 434 + ], + "score": 1.0, + "content": "GAN and WGAN-GP on discrete sequence data, and particularly in text generation. We highlighted", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 432, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 446 + ], + "score": 1.0, + "content": "the important tradeoffs between the implicit conditioning introduced by the gradient regularizer in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "Sobolev IPM, and the explicit conditioning of Fisher IPM via recurrent critics and generators in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 455, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 467 + ], + "score": 1.0, + "content": "conjunction with the curriculum conditioning. Both approaches succeed in text generation. We", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "showed that Sobolev GAN achieves competitive semi-supervised learning results without the need", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "of any normalization, thanks to the smoothness induced by the gradient regularizer. We think the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "Sobolev IPM point of view will open the door for designing new regularizers that induce different", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 499, + 438, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 438, + 511 + ], + "score": 1.0, + "content": "types of conditioning for general structured/discrete/graph data beyond sequences.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 388, + 506, + 511 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 527, + 175, + 538 + ], + "lines": [ + { + "bbox": [ + 106, + 526, + 176, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 176, + 540 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "list", + "bbox": [ + 105, + 545, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "score": 1.0, + "content": "Ahmed El Alaoui, Xiang Cheng, Aaditya Ramdas, Martin J. Wainwright, and Michael I. Jordan.", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 556, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 116, + 556, + 506, + 570 + ], + "score": 1.0, + "content": "Asymptotic behavior of p-based laplacian regularization in semi-supervised learning. CoRR,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 568, + 209, + 580 + ], + "spans": [ + { + "bbox": [ + 116, + 568, + 209, + 580 + ], + "score": 1.0, + "content": "abs/1603.00564, 2016.", + "type": "text" + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 586, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 506, + 601 + ], + "score": 1.0, + "content": "Martin Arjovsky and Leon Bottou. Towards principled methods for training generative adversarial ´", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 599, + 221, + 610 + ], + "spans": [ + { + "bbox": [ + 116, + 599, + 221, + 610 + ], + "score": 1.0, + "content": "networks. In ICLR, 2017.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 617, + 450, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 450, + 632 + ], + "score": 1.0, + "content": "Martin Arjovsky, Soumith Chintala, and Leon Bottou. Wasserstein gan. ´ ICML, 2017.", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 636, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 104, + 636, + 505, + 651 + ], + "score": 1.0, + "content": "Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv:1607.06450,", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 648, + 142, + 661 + ], + "spans": [ + { + "bbox": [ + 115, + 648, + 142, + 661 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 667, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 681 + ], + "score": 1.0, + "content": "Mikhail Belkin, Partha Niyogi, and Vikas Sindhwani. Manifold regularization: A geometric frame-", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 679, + 397, + 692 + ], + "spans": [ + { + "bbox": [ + 116, + 679, + 397, + 692 + ], + "score": 1.0, + "content": "work for learning from labeled and unlabeled examples. JMLR, 2006.", + "type": "text" + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 698, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 713 + ], + "score": 1.0, + "content": "Marc G. Bellemare, Ivo Danihelka, Will Dabney, Shakir Mohamed, Balaji Lakshminarayanan,", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "Stephan Hoyer, and Remi Munos. The cramer distance as a solution to biased wasserstein gradi- ´", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 721, + 265, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 265, + 733 + ], + "score": 1.0, + "content": "ents. CoRR, abs/1705.10743, 2017a.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "Marc G Bellemare, Ivo Danihelka, Will Dabney, Shakir Mohamed, Balaji Lakshminarayanan,", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 91, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 91, + 505, + 108 + ], + "score": 1.0, + "content": "Stephan Hoyer, and Remi Munos. The cramer distance as a solution to biased wasserstein gradi- ´", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 114, + 104, + 248, + 117 + ], + "spans": [ + { + "bbox": [ + 114, + 104, + 248, + 117 + ], + "score": 1.0, + "content": "ents. arXiv:1705.10743, 2017b.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 123, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 506, + 137 + ], + "score": 1.0, + "content": "Tong Che, Yanran Li, Ruixiang Zhang, Devon R Hjelm, Wenjie Li, Yangqiu Song, and", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 135, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 505, + 149 + ], + "score": 1.0, + "content": "Yoshua Bengio. Maximum-likelihood augmented discrete generative adversarial networks.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 145, + 221, + 159 + ], + "spans": [ + { + "bbox": [ + 115, + 145, + 221, + 159 + ], + "score": 1.0, + "content": "arXiv:1702.07983, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 163, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 506, + 178 + ], + "score": 1.0, + "content": "Kacper Chwialkowski, Heiko Strathmann, and Arthur Gretton. A kernel test of goodness of fit. In", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 176, + 193, + 188 + ], + "spans": [ + { + "bbox": [ + 115, + 176, + 193, + 188 + ], + "score": 1.0, + "content": "ICML 2016, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 195, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 505, + 209 + ], + "score": 1.0, + "content": "Zihang Dai, Zhilin Yang, Fan Yang, William W Cohen, and Ruslan Salakhutdinov. Good semi-", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 206, + 397, + 220 + ], + "spans": [ + { + "bbox": [ + 114, + 206, + 397, + 220 + ], + "score": 1.0, + "content": "supervised learning that requires a bad gan. arXiv:1705.09783, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 224, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 505, + 239 + ], + "score": 1.0, + "content": "Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Alex Lamb, Martin Arjovsky, Olivier Mastropi-", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 237, + 408, + 249 + ], + "spans": [ + { + "bbox": [ + 115, + 237, + 408, + 249 + ], + "score": 1.0, + "content": "etro, and Aaron Courville. Adversarially learned inference. ICLR, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 254, + 507, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 507, + 271 + ], + "score": 1.0, + "content": "Gintare Karolina Dziugaite, Daniel M. Roy, and Zoubin Ghahramani. Training generative neural", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 267, + 401, + 281 + ], + "spans": [ + { + "bbox": [ + 114, + 267, + 401, + 281 + ], + "score": 1.0, + "content": "networks via maximum mean discrepancy optimization. In UAI, 2015.", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 285, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 297 + ], + "score": 1.0, + "content": "I. Ekeland and T. Turnbull. Infinite-dimensional Optimization and Convexity. The University of", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 297, + 204, + 311 + ], + "spans": [ + { + "bbox": [ + 114, + 297, + 204, + 311 + ], + "score": 1.0, + "content": "Chicago Press, 1983.", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 315, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 104, + 315, + 506, + 331 + ], + "score": 1.0, + "content": "A. Genevay, G. Peyre, and M. Cuturi. Learning generative models with sinkhorn divergences. ´", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 327, + 476, + 341 + ], + "spans": [ + { + "bbox": [ + 115, + 327, + 476, + 341 + ], + "score": 1.0, + "content": "Preprint 1706.00292, Arxiv, 2017. URL https://arxiv.org/abs/1706.00292.", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 345, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 104, + 345, + 505, + 360 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 358, + 445, + 370 + ], + "spans": [ + { + "bbox": [ + 115, + 358, + 445, + 370 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In NIPS, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 377, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 505, + 389 + ], + "score": 1.0, + "content": "Jackson Gorham and Lester W. Mackey. Measuring sample quality with stein’s method. In NIPS,", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 388, + 196, + 400 + ], + "spans": [ + { + "bbox": [ + 113, + 388, + 196, + 400 + ], + "score": 1.0, + "content": "pp. 226–234, 2015.", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "Arthur Gretton, Karsten M Borgwardt, Malte J Rasch, Bernhard Scholkopf, and Alexander Smola. ¨", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 419, + 277, + 430 + ], + "spans": [ + { + "bbox": [ + 115, + 419, + 277, + 430 + ], + "score": 1.0, + "content": "A kernel two-sample test. JMLR, 2012.", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 436, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 104, + 436, + 505, + 451 + ], + "score": 1.0, + "content": "Ishaan Gulrajani, Faruk Ahmed, Martin Arjovsky, Vincent Dumoulin, and Aaron Courville. Im-", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 448, + 366, + 462 + ], + "spans": [ + { + "bbox": [ + 113, + 448, + 366, + 462 + ], + "score": 1.0, + "content": "proved training of wasserstein gans. arXiv:1704.00028, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 464, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 104, + 464, + 506, + 483 + ], + "score": 1.0, + "content": "R. Devon Hjelm, Athul Paul Jacob, Tong Che, Kyunghyun Cho, and Yoshua Bengio. Boundary-", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 478, + 386, + 492 + ], + "spans": [ + { + "bbox": [ + 113, + 478, + 386, + 492 + ], + "score": 1.0, + "content": "seeking generative adversarial networks. arXiv:1702.08431, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 496, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 513 + ], + "score": 1.0, + "content": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 509, + 327, + 521 + ], + "spans": [ + { + "bbox": [ + 115, + 509, + 327, + 521 + ], + "score": 1.0, + "content": "reducing internal covariate shift. Proc. ICML, 2015.", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "Casper Kaae Sønderby, Jose Caballero, Lucas Theis, Wenzhe Shi, and Ferenc Huszar. Amortised ´", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 538, + 340, + 552 + ], + "spans": [ + { + "bbox": [ + 114, + 538, + 340, + 552 + ], + "score": 1.0, + "content": "map inference for image super-resolution. ICLR, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 557, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 104, + 557, + 506, + 572 + ], + "score": 1.0, + "content": "A. Krizhevsky and G. Hinton. Learning multiple layers of features from tiny images. Master’s", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 570, + 169, + 582 + ], + "spans": [ + { + "bbox": [ + 115, + 570, + 169, + 582 + ], + "score": 1.0, + "content": "thesis, 2009.", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 586, + 507, + 604 + ], + "spans": [ + { + "bbox": [ + 104, + 586, + 507, + 604 + ], + "score": 1.0, + "content": "Abhishek Kumar, Prasanna Sattigeri, and P Thomas Fletcher. Improved semi-supervised learning", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 600, + 322, + 612 + ], + "spans": [ + { + "bbox": [ + 115, + 600, + 322, + 612 + ], + "score": 1.0, + "content": "with gans using manifold invariances. NIPS, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 617, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 104, + 617, + 506, + 632 + ], + "score": 1.0, + "content": "Matt J. Kusner and Jose Miguel Hern ´ andez-Lobato. Gans for sequences of discrete elements with ´", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 629, + 354, + 642 + ], + "spans": [ + { + "bbox": [ + 113, + 629, + 354, + 642 + ], + "score": 1.0, + "content": "the gumbel-softmax distribution. arXiv:1611.04051, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 648, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 256, + 663 + ], + "score": 1.0, + "content": "Samuli Laine and Timo Aila.", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 268, + 648, + 505, + 663 + ], + "score": 1.0, + "content": "Temporal ensembling for semi-supervised learning.", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 660, + 221, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 221, + 672 + ], + "score": 1.0, + "content": "arXiv:1610.02242, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 677, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 506, + 694 + ], + "score": 1.0, + "content": "Chun-Liang Li, Wei-Cheng Chang, Yu Cheng, Yiming Yang, and Barnabas P ´ oczos. MMD GAN: ´", + "type": "text", + "cross_page": true + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 689, + 483, + 704 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 483, + 704 + ], + "score": 1.0, + "content": "towards deeper understanding of moment matching network. NIPS, abs/1705.08584, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "Yujia Li, Kevin Swersky, and Richard Zemel. Generative moment matching networks. In ICML,", + "type": "text", + "cross_page": true + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 719, + 144, + 734 + ], + "spans": [ + { + "bbox": [ + 114, + 719, + 144, + 734 + ], + "score": 1.0, + "content": "2015.", + "type": "text", + "cross_page": true + } + ], + "index": 43, + "is_list_end_line": true + } + ], + "index": 30, + "bbox_fs": [ + 104, + 546, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 55, + 506, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "Marc G Bellemare, Ivo Danihelka, Will Dabney, Shakir Mohamed, Balaji Lakshminarayanan,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 91, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 91, + 505, + 108 + ], + "score": 1.0, + "content": "Stephan Hoyer, and Remi Munos. The cramer distance as a solution to biased wasserstein gradi- ´", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 114, + 104, + 248, + 117 + ], + "spans": [ + { + "bbox": [ + 114, + 104, + 248, + 117 + ], + "score": 1.0, + "content": "ents. arXiv:1705.10743, 2017b.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 123, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 506, + 137 + ], + "score": 1.0, + "content": "Tong Che, Yanran Li, Ruixiang Zhang, Devon R Hjelm, Wenjie Li, Yangqiu Song, and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 505, + 149 + ], + "score": 1.0, + "content": "Yoshua Bengio. Maximum-likelihood augmented discrete generative adversarial networks.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 145, + 221, + 159 + ], + "spans": [ + { + "bbox": [ + 115, + 145, + 221, + 159 + ], + "score": 1.0, + "content": "arXiv:1702.07983, 2017.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 163, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 506, + 178 + ], + "score": 1.0, + "content": "Kacper Chwialkowski, Heiko Strathmann, and Arthur Gretton. A kernel test of goodness of fit. In", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 176, + 193, + 188 + ], + "spans": [ + { + "bbox": [ + 115, + 176, + 193, + 188 + ], + "score": 1.0, + "content": "ICML 2016, 2016.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 195, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 505, + 209 + ], + "score": 1.0, + "content": "Zihang Dai, Zhilin Yang, Fan Yang, William W Cohen, and Ruslan Salakhutdinov. Good semi-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 206, + 397, + 220 + ], + "spans": [ + { + "bbox": [ + 114, + 206, + 397, + 220 + ], + "score": 1.0, + "content": "supervised learning that requires a bad gan. arXiv:1705.09783, 2017.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 224, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 505, + 239 + ], + "score": 1.0, + "content": "Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Alex Lamb, Martin Arjovsky, Olivier Mastropi-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 237, + 408, + 249 + ], + "spans": [ + { + "bbox": [ + 115, + 237, + 408, + 249 + ], + "score": 1.0, + "content": "etro, and Aaron Courville. Adversarially learned inference. ICLR, 2017.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 254, + 507, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 507, + 271 + ], + "score": 1.0, + "content": "Gintare Karolina Dziugaite, Daniel M. Roy, and Zoubin Ghahramani. Training generative neural", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 114, + 267, + 401, + 281 + ], + "spans": [ + { + "bbox": [ + 114, + 267, + 401, + 281 + ], + "score": 1.0, + "content": "networks via maximum mean discrepancy optimization. In UAI, 2015.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 285, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 297 + ], + "score": 1.0, + "content": "I. Ekeland and T. Turnbull. Infinite-dimensional Optimization and Convexity. The University of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 114, + 297, + 204, + 311 + ], + "spans": [ + { + "bbox": [ + 114, + 297, + 204, + 311 + ], + "score": 1.0, + "content": "Chicago Press, 1983.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 315, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 104, + 315, + 506, + 331 + ], + "score": 1.0, + "content": "A. Genevay, G. Peyre, and M. Cuturi. Learning generative models with sinkhorn divergences. ´", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 327, + 476, + 341 + ], + "spans": [ + { + "bbox": [ + 115, + 327, + 476, + 341 + ], + "score": 1.0, + "content": "Preprint 1706.00292, Arxiv, 2017. URL https://arxiv.org/abs/1706.00292.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 345, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 104, + 345, + 505, + 360 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 358, + 445, + 370 + ], + "spans": [ + { + "bbox": [ + 115, + 358, + 445, + 370 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In NIPS, 2014.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 377, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 505, + 389 + ], + "score": 1.0, + "content": "Jackson Gorham and Lester W. Mackey. Measuring sample quality with stein’s method. In NIPS,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 113, + 388, + 196, + 400 + ], + "spans": [ + { + "bbox": [ + 113, + 388, + 196, + 400 + ], + "score": 1.0, + "content": "pp. 226–234, 2015.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "Arthur Gretton, Karsten M Borgwardt, Malte J Rasch, Bernhard Scholkopf, and Alexander Smola. ¨", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 419, + 277, + 430 + ], + "spans": [ + { + "bbox": [ + 115, + 419, + 277, + 430 + ], + "score": 1.0, + "content": "A kernel two-sample test. JMLR, 2012.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 436, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 104, + 436, + 505, + 451 + ], + "score": 1.0, + "content": "Ishaan Gulrajani, Faruk Ahmed, Martin Arjovsky, Vincent Dumoulin, and Aaron Courville. Im-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 113, + 448, + 366, + 462 + ], + "spans": [ + { + "bbox": [ + 113, + 448, + 366, + 462 + ], + "score": 1.0, + "content": "proved training of wasserstein gans. arXiv:1704.00028, 2017.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 464, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 104, + 464, + 506, + 483 + ], + "score": 1.0, + "content": "R. Devon Hjelm, Athul Paul Jacob, Tong Che, Kyunghyun Cho, and Yoshua Bengio. Boundary-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 113, + 478, + 386, + 492 + ], + "spans": [ + { + "bbox": [ + 113, + 478, + 386, + 492 + ], + "score": 1.0, + "content": "seeking generative adversarial networks. arXiv:1702.08431, 2017.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 496, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 513 + ], + "score": 1.0, + "content": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 509, + 327, + 521 + ], + "spans": [ + { + "bbox": [ + 115, + 509, + 327, + 521 + ], + "score": 1.0, + "content": "reducing internal covariate shift. Proc. ICML, 2015.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "Casper Kaae Sønderby, Jose Caballero, Lucas Theis, Wenzhe Shi, and Ferenc Huszar. Amortised ´", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 114, + 538, + 340, + 552 + ], + "spans": [ + { + "bbox": [ + 114, + 538, + 340, + 552 + ], + "score": 1.0, + "content": "map inference for image super-resolution. ICLR, 2017.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 557, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 104, + 557, + 506, + 572 + ], + "score": 1.0, + "content": "A. Krizhevsky and G. Hinton. Learning multiple layers of features from tiny images. Master’s", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 570, + 169, + 582 + ], + "spans": [ + { + "bbox": [ + 115, + 570, + 169, + 582 + ], + "score": 1.0, + "content": "thesis, 2009.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 586, + 507, + 604 + ], + "spans": [ + { + "bbox": [ + 104, + 586, + 507, + 604 + ], + "score": 1.0, + "content": "Abhishek Kumar, Prasanna Sattigeri, and P Thomas Fletcher. Improved semi-supervised learning", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 600, + 322, + 612 + ], + "spans": [ + { + "bbox": [ + 115, + 600, + 322, + 612 + ], + "score": 1.0, + "content": "with gans using manifold invariances. NIPS, 2017.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 617, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 104, + 617, + 506, + 632 + ], + "score": 1.0, + "content": "Matt J. Kusner and Jose Miguel Hern ´ andez-Lobato. Gans for sequences of discrete elements with ´", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 113, + 629, + 354, + 642 + ], + "spans": [ + { + "bbox": [ + 113, + 629, + 354, + 642 + ], + "score": 1.0, + "content": "the gumbel-softmax distribution. arXiv:1611.04051, 2016.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 648, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 256, + 663 + ], + "score": 1.0, + "content": "Samuli Laine and Timo Aila.", + "type": "text" + }, + { + "bbox": [ + 268, + 648, + 505, + 663 + ], + "score": 1.0, + "content": "Temporal ensembling for semi-supervised learning.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 660, + 221, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 221, + 672 + ], + "score": 1.0, + "content": "arXiv:1610.02242, 2016.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 677, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 506, + 694 + ], + "score": 1.0, + "content": "Chun-Liang Li, Wei-Cheng Chang, Yu Cheng, Yiming Yang, and Barnabas P ´ oczos. MMD GAN: ´", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 689, + 483, + 704 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 483, + 704 + ], + "score": 1.0, + "content": "towards deeper understanding of moment matching network. NIPS, abs/1705.08584, 2017.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "Yujia Li, Kevin Swersky, and Richard Zemel. Generative moment matching networks. In ICML,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 114, + 719, + 144, + 734 + ], + "spans": [ + { + "bbox": [ + 114, + 719, + 144, + 734 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 21.5 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 55, + 506, + 733 + ], + "lines": [], + "index": 21.5, + "bbox_fs": [ + 104, + 82, + 507, + 734 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 379, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 380, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 380, + 95 + ], + "score": 1.0, + "content": "Qiang Liu. Stein variational descent as a gradient flow. NIPS, 2017.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 101, + 504, + 124 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 115 + ], + "score": 1.0, + "content": "Qiang Liu and Dilin Wang. Stein variational gradient descent: A general purpose bayesian inference", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 112, + 424, + 125 + ], + "spans": [ + { + "bbox": [ + 115, + 112, + 424, + 125 + ], + "score": 1.0, + "content": "algorithm. In Advances in Neural Information Processing Systems 29. 2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 109, + 130, + 503, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 130, + 506, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 130, + 506, + 144 + ], + "score": 1.0, + "content": "Qiang Liu, Jason D. Lee, and Michael I. Jordan. A kernelized stein discrepancy for goodness-of-fit", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 142, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 116, + 142, + 505, + 155 + ], + "score": 1.0, + "content": "tests. In Proceedings of the 33nd International Conference on Machine Learning, ICML 2016,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 153, + 316, + 165 + ], + "spans": [ + { + "bbox": [ + 116, + 153, + 316, + 165 + ], + "score": 1.0, + "content": "New York City, NY, USA, June 19-24, 2016, 2016.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 171, + 504, + 195 + ], + "lines": [ + { + "bbox": [ + 105, + 171, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 185 + ], + "score": 1.0, + "content": "Xudong Mao, Qing Li, Haoran Xie, Raymond YK Lau, and Zhen Wang. Least squares generative", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 182, + 333, + 194 + ], + "spans": [ + { + "bbox": [ + 116, + 182, + 333, + 194 + ], + "score": 1.0, + "content": "adversarial networks. arXiv:1611.04076 ICCV, 2017.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 200, + 504, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 199, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 506, + 215 + ], + "score": 1.0, + "content": "Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial training: a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 213, + 492, + 225 + ], + "spans": [ + { + "bbox": [ + 115, + 213, + 492, + 225 + ], + "score": 1.0, + "content": "regularization method for supervised and semi-supervised learning. arXiv:1704.03976, 2017.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 108, + 230, + 504, + 254 + ], + "lines": [ + { + "bbox": [ + 106, + 231, + 504, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 504, + 244 + ], + "score": 1.0, + "content": "Hossein Mobahi and John W. Fisher III. A Theoretical Analysis of Optimization by Gaussian Con-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 242, + 406, + 255 + ], + "spans": [ + { + "bbox": [ + 115, + 242, + 406, + 255 + ], + "score": 1.0, + "content": "tinuation. In Proc. of 29th Conf. Artificial Intelligence (AAAI’15), 2015.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 259, + 417, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 260, + 415, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 415, + 273 + ], + "score": 1.0, + "content": "Youssef Mroueh and Tom Sercu. Fisher gan. arXiv:1705.09675 NIPS, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 108, + 279, + 504, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 277, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 506, + 293 + ], + "score": 1.0, + "content": "Youssef Mroueh, Tom Sercu, and Vaibhava Goel. Mcgan: Mean and covariance feature matching", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 290, + 266, + 303 + ], + "spans": [ + { + "bbox": [ + 115, + 290, + 266, + 303 + ], + "score": 1.0, + "content": "gan. arXiv:1702.08398 ICML, 2017.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 308, + 504, + 332 + ], + "lines": [ + { + "bbox": [ + 106, + 309, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 506, + 322 + ], + "score": 1.0, + "content": "Alfred Muller. Integral probability metrics and their generating classes of functions. ¨ Advances in", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 320, + 225, + 332 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 225, + 332 + ], + "score": 1.0, + "content": "Applied Probability, 1997.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 504, + 362 + ], + "lines": [ + { + "bbox": [ + 106, + 338, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 505, + 351 + ], + "score": 1.0, + "content": "Sebastian Nowozin, Botond Cseke, and Ryota Tomioka. f-gan: Training generative neural samplers", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 350, + 352, + 362 + ], + "spans": [ + { + "bbox": [ + 116, + 350, + 352, + 362 + ], + "score": 1.0, + "content": "using variational divergence minimization. In NIPS, 2016.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 368, + 503, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 369, + 504, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 504, + 381 + ], + "score": 1.0, + "content": "Chris J. Oates, Mark Girolami, and Nicolas Chopin. Control functionals for monte carlo integration.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 379, + 445, + 392 + ], + "spans": [ + { + "bbox": [ + 115, + 379, + 445, + 392 + ], + "score": 1.0, + "content": "Journal of the Royal Statistical Society: Series B (Statistical Methodology), 2017.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 503, + 421 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 504, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 504, + 411 + ], + "score": 1.0, + "content": "Ofir Press, Amir Bar, Ben Bogin, Jonathan Berant, and Lior Wolf. Language generation with recur-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 410, + 452, + 421 + ], + "spans": [ + { + "bbox": [ + 115, + 410, + 452, + 421 + ], + "score": 1.0, + "content": "rent generative adversarial networks without pre-training. arXiv:1706.01399, 2017.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 105, + 428, + 503, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 442 + ], + "score": 1.0, + "content": "Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 439, + 408, + 451 + ], + "spans": [ + { + "bbox": [ + 115, + 439, + 408, + 451 + ], + "score": 1.0, + "content": "convolutional generative adversarial networks. arXiv:1511.06434, 2015.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 105, + 457, + 502, + 481 + ], + "lines": [ + { + "bbox": [ + 106, + 457, + 503, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 503, + 470 + ], + "score": 1.0, + "content": "Sai Rajeswar, Sandeep Subramanian, Francis Dutil, Christopher Pal, and Aaron Courville. Adver-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 468, + 371, + 481 + ], + "spans": [ + { + "bbox": [ + 116, + 468, + 371, + 481 + ], + "score": 1.0, + "content": "sarial generation of natural language. arXiv:1705.10929, 2017.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 108, + 487, + 504, + 521 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 500 + ], + "score": 1.0, + "content": "Scott E Reed, Zeynep Akata, Santosh Mohan, Samuel Tenka, Bernt Schiele, and Honglak Lee.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 497, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 115, + 497, + 505, + 512 + ], + "score": 1.0, + "content": "Learning what and where to draw. In Advances In Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 509, + 181, + 521 + ], + "spans": [ + { + "bbox": [ + 115, + 509, + 181, + 521 + ], + "score": 1.0, + "content": "217–225, 2016.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 527, + 504, + 562 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 504, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 504, + 540 + ], + "score": 1.0, + "content": "Mehdi Sajjadi, Mehran Javanmardi, and Tolga Tasdizen. Regularization with stochastic transfor-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 117, + 540, + 504, + 551 + ], + "spans": [ + { + "bbox": [ + 117, + 540, + 504, + 551 + ], + "score": 1.0, + "content": "mations and perturbations for deep semi-supervised learning. In Advances in Neural Information", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 550, + 289, + 562 + ], + "spans": [ + { + "bbox": [ + 116, + 550, + 289, + 562 + ], + "score": 1.0, + "content": "Processing Systems, pp. 1163–1171, 2016.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 568, + 504, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 505, + 582 + ], + "score": 1.0, + "content": "Tim Salimans and Diederik P Kingma. Weight normalization: A simple reparameterization to accel-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 580, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 115, + 580, + 506, + 592 + ], + "score": 1.0, + "content": "erate training of deep neural networks. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 591, + 196, + 603 + ], + "spans": [ + { + "bbox": [ + 115, + 591, + 196, + 603 + ], + "score": 1.0, + "content": "pp. 901–901, 2016.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 503, + 632 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 620, + 325, + 633 + ], + "spans": [ + { + "bbox": [ + 116, + 620, + 325, + 633 + ], + "score": 1.0, + "content": "Improved techniques for training gans. NIPS, 2016.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 108, + 639, + 502, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 504, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 504, + 653 + ], + "score": 1.0, + "content": "Pannagadatta K. Shivaswamy and Tony Jebara. Maximum relative margin and data-dependent reg-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 650, + 504, + 662 + ], + "spans": [ + { + "bbox": [ + 116, + 650, + 504, + 662 + ], + "score": 1.0, + "content": "ularization. Journal of Machine Learning Research, 11:747–788, 2010. doi: 10.1145/1756006.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 117, + 660, + 436, + 674 + ], + "spans": [ + { + "bbox": [ + 117, + 660, + 436, + 674 + ], + "score": 1.0, + "content": "1756031. URL http://doi.acm.org/10.1145/1756006.1756031.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 679, + 502, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 679, + 504, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 504, + 693 + ], + "score": 1.0, + "content": "Jost Tobias Springenberg. Unsupervised and semi-supervised learning with categorical generative", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 691, + 307, + 703 + ], + "spans": [ + { + "bbox": [ + 116, + 691, + 307, + 703 + ], + "score": 1.0, + "content": "adversarial networks. arXiv:1511.06390, 2015.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 503, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 503, + 722 + ], + "score": 1.0, + "content": "Bharath K. Sriperumbudur, Kenji Fukumizu, Arthur Gretton, Bernhard Scholkopf, and Gert R. G.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 721, + 474, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 289, + 732 + ], + "score": 1.0, + "content": "Lanckriet. On integral probability metrics,", + "type": "text" + }, + { + "bbox": [ + 289, + 722, + 296, + 732 + ], + "score": 0.88, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 721, + 474, + 732 + ], + "score": 1.0, + "content": "-divergences and binary classification. 2009.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "page_idx": 16, + "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": "17", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 379, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 380, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 380, + 95 + ], + "score": 1.0, + "content": "Qiang Liu. Stein variational descent as a gradient flow. NIPS, 2017.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 82, + 380, + 95 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 101, + 504, + 124 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 115 + ], + "score": 1.0, + "content": "Qiang Liu and Dilin Wang. Stein variational gradient descent: A general purpose bayesian inference", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 112, + 424, + 125 + ], + "spans": [ + { + "bbox": [ + 115, + 112, + 424, + 125 + ], + "score": 1.0, + "content": "algorithm. In Advances in Neural Information Processing Systems 29. 2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 100, + 505, + 125 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 130, + 503, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 130, + 506, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 130, + 506, + 144 + ], + "score": 1.0, + "content": "Qiang Liu, Jason D. Lee, and Michael I. Jordan. A kernelized stein discrepancy for goodness-of-fit", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 142, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 116, + 142, + 505, + 155 + ], + "score": 1.0, + "content": "tests. In Proceedings of the 33nd International Conference on Machine Learning, ICML 2016,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 153, + 316, + 165 + ], + "spans": [ + { + "bbox": [ + 116, + 153, + 316, + 165 + ], + "score": 1.0, + "content": "New York City, NY, USA, June 19-24, 2016, 2016.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 130, + 506, + 165 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 171, + 504, + 195 + ], + "lines": [ + { + "bbox": [ + 105, + 171, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 185 + ], + "score": 1.0, + "content": "Xudong Mao, Qing Li, Haoran Xie, Raymond YK Lau, and Zhen Wang. Least squares generative", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 182, + 333, + 194 + ], + "spans": [ + { + "bbox": [ + 116, + 182, + 333, + 194 + ], + "score": 1.0, + "content": "adversarial networks. arXiv:1611.04076 ICCV, 2017.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 171, + 505, + 194 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 200, + 504, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 199, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 506, + 215 + ], + "score": 1.0, + "content": "Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial training: a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 213, + 492, + 225 + ], + "spans": [ + { + "bbox": [ + 115, + 213, + 492, + 225 + ], + "score": 1.0, + "content": "regularization method for supervised and semi-supervised learning. arXiv:1704.03976, 2017.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 199, + 506, + 225 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 230, + 504, + 254 + ], + "lines": [ + { + "bbox": [ + 106, + 231, + 504, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 504, + 244 + ], + "score": 1.0, + "content": "Hossein Mobahi and John W. Fisher III. A Theoretical Analysis of Optimization by Gaussian Con-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 242, + 406, + 255 + ], + "spans": [ + { + "bbox": [ + 115, + 242, + 406, + 255 + ], + "score": 1.0, + "content": "tinuation. In Proc. of 29th Conf. Artificial Intelligence (AAAI’15), 2015.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 231, + 504, + 255 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 259, + 417, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 260, + 415, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 415, + 273 + ], + "score": 1.0, + "content": "Youssef Mroueh and Tom Sercu. Fisher gan. arXiv:1705.09675 NIPS, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 260, + 415, + 273 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 279, + 504, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 277, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 506, + 293 + ], + "score": 1.0, + "content": "Youssef Mroueh, Tom Sercu, and Vaibhava Goel. Mcgan: Mean and covariance feature matching", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 290, + 266, + 303 + ], + "spans": [ + { + "bbox": [ + 115, + 290, + 266, + 303 + ], + "score": 1.0, + "content": "gan. arXiv:1702.08398 ICML, 2017.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 277, + 506, + 303 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 308, + 504, + 332 + ], + "lines": [ + { + "bbox": [ + 106, + 309, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 506, + 322 + ], + "score": 1.0, + "content": "Alfred Muller. Integral probability metrics and their generating classes of functions. ¨ Advances in", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 320, + 225, + 332 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 225, + 332 + ], + "score": 1.0, + "content": "Applied Probability, 1997.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 106, + 309, + 506, + 332 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 504, + 362 + ], + "lines": [ + { + "bbox": [ + 106, + 338, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 505, + 351 + ], + "score": 1.0, + "content": "Sebastian Nowozin, Botond Cseke, and Ryota Tomioka. f-gan: Training generative neural samplers", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 350, + 352, + 362 + ], + "spans": [ + { + "bbox": [ + 116, + 350, + 352, + 362 + ], + "score": 1.0, + "content": "using variational divergence minimization. In NIPS, 2016.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 106, + 338, + 505, + 362 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 368, + 503, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 369, + 504, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 504, + 381 + ], + "score": 1.0, + "content": "Chris J. Oates, Mark Girolami, and Nicolas Chopin. Control functionals for monte carlo integration.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 379, + 445, + 392 + ], + "spans": [ + { + "bbox": [ + 115, + 379, + 445, + 392 + ], + "score": 1.0, + "content": "Journal of the Royal Statistical Society: Series B (Statistical Methodology), 2017.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 369, + 504, + 392 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 503, + 421 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 504, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 504, + 411 + ], + "score": 1.0, + "content": "Ofir Press, Amir Bar, Ben Bogin, Jonathan Berant, and Lior Wolf. Language generation with recur-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 410, + 452, + 421 + ], + "spans": [ + { + "bbox": [ + 115, + 410, + 452, + 421 + ], + "score": 1.0, + "content": "rent generative adversarial networks without pre-training. arXiv:1706.01399, 2017.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 398, + 504, + 421 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 428, + 503, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 442 + ], + "score": 1.0, + "content": "Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 439, + 408, + 451 + ], + "spans": [ + { + "bbox": [ + 115, + 439, + 408, + 451 + ], + "score": 1.0, + "content": "convolutional generative adversarial networks. arXiv:1511.06434, 2015.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 426, + 505, + 451 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 457, + 502, + 481 + ], + "lines": [ + { + "bbox": [ + 106, + 457, + 503, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 503, + 470 + ], + "score": 1.0, + "content": "Sai Rajeswar, Sandeep Subramanian, Francis Dutil, Christopher Pal, and Aaron Courville. Adver-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 468, + 371, + 481 + ], + "spans": [ + { + "bbox": [ + 116, + 468, + 371, + 481 + ], + "score": 1.0, + "content": "sarial generation of natural language. arXiv:1705.10929, 2017.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 457, + 503, + 481 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 487, + 504, + 521 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 500 + ], + "score": 1.0, + "content": "Scott E Reed, Zeynep Akata, Santosh Mohan, Samuel Tenka, Bernt Schiele, and Honglak Lee.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 497, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 115, + 497, + 505, + 512 + ], + "score": 1.0, + "content": "Learning what and where to draw. In Advances In Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 509, + 181, + 521 + ], + "spans": [ + { + "bbox": [ + 115, + 509, + 181, + 521 + ], + "score": 1.0, + "content": "217–225, 2016.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 486, + 505, + 521 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 527, + 504, + 562 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 504, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 504, + 540 + ], + "score": 1.0, + "content": "Mehdi Sajjadi, Mehran Javanmardi, and Tolga Tasdizen. Regularization with stochastic transfor-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 117, + 540, + 504, + 551 + ], + "spans": [ + { + "bbox": [ + 117, + 540, + 504, + 551 + ], + "score": 1.0, + "content": "mations and perturbations for deep semi-supervised learning. In Advances in Neural Information", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 550, + 289, + 562 + ], + "spans": [ + { + "bbox": [ + 116, + 550, + 289, + 562 + ], + "score": 1.0, + "content": "Processing Systems, pp. 1163–1171, 2016.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 528, + 504, + 562 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 568, + 504, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 505, + 582 + ], + "score": 1.0, + "content": "Tim Salimans and Diederik P Kingma. Weight normalization: A simple reparameterization to accel-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 580, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 115, + 580, + 506, + 592 + ], + "score": 1.0, + "content": "erate training of deep neural networks. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 591, + 196, + 603 + ], + "spans": [ + { + "bbox": [ + 115, + 591, + 196, + 603 + ], + "score": 1.0, + "content": "pp. 901–901, 2016.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 106, + 568, + 506, + 603 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 503, + 632 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 620, + 325, + 633 + ], + "spans": [ + { + "bbox": [ + 116, + 620, + 325, + 633 + ], + "score": 1.0, + "content": "Improved techniques for training gans. NIPS, 2016.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 609, + 505, + 633 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 639, + 502, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 504, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 504, + 653 + ], + "score": 1.0, + "content": "Pannagadatta K. Shivaswamy and Tony Jebara. Maximum relative margin and data-dependent reg-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 650, + 504, + 662 + ], + "spans": [ + { + "bbox": [ + 116, + 650, + 504, + 662 + ], + "score": 1.0, + "content": "ularization. Journal of Machine Learning Research, 11:747–788, 2010. doi: 10.1145/1756006.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 117, + 660, + 436, + 674 + ], + "spans": [ + { + "bbox": [ + 117, + 660, + 436, + 674 + ], + "score": 1.0, + "content": "1756031. URL http://doi.acm.org/10.1145/1756006.1756031.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 637, + 504, + 674 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 679, + 502, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 679, + 504, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 504, + 693 + ], + "score": 1.0, + "content": "Jost Tobias Springenberg. Unsupervised and semi-supervised learning with categorical generative", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 691, + 307, + 703 + ], + "spans": [ + { + "bbox": [ + 116, + 691, + 307, + 703 + ], + "score": 1.0, + "content": "adversarial networks. arXiv:1511.06390, 2015.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 679, + 504, + 703 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 503, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 503, + 722 + ], + "score": 1.0, + "content": "Bharath K. Sriperumbudur, Kenji Fukumizu, Arthur Gretton, Bernhard Scholkopf, and Gert R. G.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 721, + 474, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 289, + 732 + ], + "score": 1.0, + "content": "Lanckriet. On integral probability metrics,", + "type": "text" + }, + { + "bbox": [ + 289, + 722, + 296, + 732 + ], + "score": 0.88, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 721, + 474, + 732 + ], + "score": 1.0, + "content": "-divergences and binary classification. 2009.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 106, + 709, + 503, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 506, + 206 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "Bharath K. Sriperumbudur, Kenji Fukumizu, Arthur Gretton, Bernhard Scholkopf, and Gert R. G. ¨", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 506, + 108 + ], + "score": 1.0, + "content": "Lanckriet. On the empirical estimation of integral probability metrics. Electronic Journal of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 117, + 105, + 181, + 117 + ], + "spans": [ + { + "bbox": [ + 117, + 105, + 181, + 117 + ], + "score": 1.0, + "content": "Statistics, 2012.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 122, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 138 + ], + "score": 1.0, + "content": "Dilin Wang and Qiang Liu. Learning to draw samples: With application to amortized MLE for", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 367, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 367, + 147 + ], + "score": 1.0, + "content": "generative adversarial learning. CoRR, abs/1611.01722, 2016.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 153, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 104, + 153, + 506, + 168 + ], + "score": 1.0, + "content": "Lantao Yu, Weinan Zhang, Jun Wang, and Yong Yu. Seqgan: Sequence generative adversarial nets", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 117, + 165, + 325, + 177 + ], + "spans": [ + { + "bbox": [ + 117, + 165, + 325, + 177 + ], + "score": 1.0, + "content": "with policy gradient. CoRR, abs/1609.05473, 2016.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 183, + 504, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 504, + 197 + ], + "score": 1.0, + "content": "Junbo Jake Zhao, Yoon Kim, Kelly Zhang, Alexander M. Rush, and Yann LeCun. Adversarially", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 195, + 410, + 208 + ], + "spans": [ + { + "bbox": [ + 115, + 195, + 410, + 208 + ], + "score": 1.0, + "content": "regularized autoencoders for generating discrete structures. CoRR, 2017.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 106, + 82, + 506, + 206 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "Bharath K. Sriperumbudur, Kenji Fukumizu, Arthur Gretton, Bernhard Scholkopf, and Gert R. G. ¨", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 94, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 506, + 108 + ], + "score": 1.0, + "content": "Lanckriet. On the empirical estimation of integral probability metrics. Electronic Journal of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 117, + 105, + 181, + 117 + ], + "spans": [ + { + "bbox": [ + 117, + 105, + 181, + 117 + ], + "score": 1.0, + "content": "Statistics, 2012.", + "type": "text" + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 122, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 138 + ], + "score": 1.0, + "content": "Dilin Wang and Qiang Liu. Learning to draw samples: With application to amortized MLE for", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 135, + 367, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 367, + 147 + ], + "score": 1.0, + "content": "generative adversarial learning. CoRR, abs/1611.01722, 2016.", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 153, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 104, + 153, + 506, + 168 + ], + "score": 1.0, + "content": "Lantao Yu, Weinan Zhang, Jun Wang, and Yong Yu. Seqgan: Sequence generative adversarial nets", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 117, + 165, + 325, + 177 + ], + "spans": [ + { + "bbox": [ + 117, + 165, + 325, + 177 + ], + "score": 1.0, + "content": "with policy gradient. CoRR, abs/1609.05473, 2016.", + "type": "text" + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 183, + 504, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 504, + 197 + ], + "score": 1.0, + "content": "Junbo Jake Zhao, Yoon Kim, Kelly Zhang, Alexander M. Rush, and Yann LeCun. Adversarially", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 195, + 410, + 208 + ], + "spans": [ + { + "bbox": [ + 115, + 195, + 410, + 208 + ], + "score": 1.0, + "content": "regularized autoencoders for generating discrete structures. CoRR, 2017.", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + } + ], + "index": 4, + "bbox_fs": [ + 104, + 83, + 506, + 208 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 447, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 449, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 449, + 95 + ], + "score": 1.0, + "content": "A THEORY: APPROXIMATION AND TRANSPORT INTERPRETATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 504, + 128 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "In this Section we present the theoretical properties of Sobolev IPM and how it relates to distributions", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 116, + 471, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 471, + 129 + ], + "score": 1.0, + "content": "transport theory and other known metrics between distributions, notably the Stein distance.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "title", + "bbox": [ + 107, + 140, + 393, + 153 + ], + "lines": [ + { + "bbox": [ + 106, + 140, + 394, + 153 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 394, + 153 + ], + "score": 1.0, + "content": "A.1 DISTRIBUTION TRANSPORT PERSPECTIVE ON SOBOLEV IPM", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 160, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 160, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 506, + 173 + ], + "score": 1.0, + "content": "In this Section, we characterize the optimal critic of the Sobolev IPM as a solution of a non linear", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 172, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 506, + 184 + ], + "score": 1.0, + "content": "PDE. The solution of the variational problem of the Sobolev IPM satisfies a non linear PDE that can", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 182, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 196 + ], + "score": 1.0, + "content": "be derived using standard tools from calculus of variations (Ekeland & Turnbull, 1983; Alaoui et al.,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 192, + 136, + 207 + ], + "spans": [ + { + "bbox": [ + 104, + 192, + 136, + 207 + ], + "score": 1.0, + "content": "2016).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 207, + 505, + 230 + ], + "lines": [ + { + "bbox": [ + 105, + 207, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 457, + 221 + ], + "score": 1.0, + "content": "Theorem 3 (PDE satisfied by the Sobolev Critic). The optimal critic of Sobolev IPM", + "type": "text" + }, + { + "bbox": [ + 458, + 208, + 469, + 219 + ], + "score": 0.87, + "content": "f ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 207, + 505, + 221 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 218, + 187, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 161, + 231 + ], + "score": 1.0, + "content": "the following", + "type": "text" + }, + { + "bbox": [ + 161, + 219, + 182, + 229 + ], + "score": 0.29, + "content": "P D E", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 218, + 187, + 231 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 231, + 425, + 259 + ], + "lines": [ + { + "bbox": [ + 186, + 231, + 425, + 259 + ], + "spans": [ + { + "bbox": [ + 186, + 231, + 425, + 259 + ], + "score": 0.93, + "content": "\\Delta f ^ { * } ( x ) + \\left. \\nabla _ { x } \\log \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. + \\frac { \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) } { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\mu ( x ) } = 0 .", + "type": "interline_equation", + "image_path": "11a1a882d27c217eb8c6f794348747448fe25025ec5b8fdb311f21b816fa8589.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 186, + 231, + 425, + 245.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 186, + 245.0, + 425, + 259.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 271, + 504, + 300 + ], + "lines": [ + { + "bbox": [ + 102, + 266, + 508, + 293 + ], + "spans": [ + { + "bbox": [ + 102, + 266, + 213, + 293 + ], + "score": 1.0, + "content": "Define the Stein Operator:", + "type": "text" + }, + { + "bbox": [ + 213, + 270, + 423, + 290 + ], + "score": 0.89, + "content": "\\begin{array} { r } { T ( \\mu ) \\vec { g } ( x ) = \\frac { 1 } { 2 } \\Big ( \\langle \\nabla _ { x } \\log ( \\mu ( x ) ) , \\vec { g } ( x ) \\rangle + d i v ( \\vec { g } ( x ) ) \\Big ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 266, + 508, + 293 + ], + "score": 1.0, + "content": ". Hence we have the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 286, + 271, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 237, + 303 + ], + "score": 1.0, + "content": "following Transport Equation of", + "type": "text" + }, + { + "bbox": [ + 238, + 289, + 245, + 299 + ], + "score": 0.83, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 286, + 256, + 303 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 257, + 289, + 266, + 300 + ], + "score": 0.83, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 286, + 271, + 303 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 302, + 399, + 316 + ], + "lines": [ + { + "bbox": [ + 209, + 302, + 399, + 316 + ], + "spans": [ + { + "bbox": [ + 209, + 302, + 399, + 316 + ], + "score": 0.82, + "content": "\\mathbb { Q } ( x ) = \\mathbb { P } ( x ) + 2 S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\mu ( x ) T ( \\mu ) \\nabla _ { x } f ^ { * } ( x ) .", + "type": "interline_equation", + "image_path": "1e8e1ddb948c1f5c091710119ff5cfe0e18fe54c83f125800249ff258b965310.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 209, + 302, + 399, + 316 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 317, + 280, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 316, + 281, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 281, + 331 + ], + "score": 1.0, + "content": "Recall the definition of Stein Discrepancy :", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 330, + 404, + 353 + ], + "lines": [ + { + "bbox": [ + 205, + 330, + 404, + 353 + ], + "spans": [ + { + "bbox": [ + 205, + 330, + 404, + 353 + ], + "score": 0.88, + "content": "\\mathbb { S } ( \\mathbb { Q } , \\mu ) = \\operatorname* { s u p } _ { \\vec { g } } | \\mathbb { E } _ { x \\sim \\mathbb { Q } } [ T ( \\mu ) \\vec { g } ( x ) ] | , \\vec { g } : \\mathcal { X } \\mathbb { R } ^ { d } .", + "type": "interline_equation", + "image_path": "2877884eb1971d1d3f73c91b22dfd55168fc0436ac4b2c417bab1a06eeda727c.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 205, + 330, + 404, + 353 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 444, + 366 + ], + "lines": [ + { + "bbox": [ + 105, + 352, + 446, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 446, + 369 + ], + "score": 1.0, + "content": "Theorem 4 (Sobolev and Stein Discrepanices). The following inequality holds true:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 367, + 450, + 395 + ], + "lines": [ + { + "bbox": [ + 156, + 367, + 450, + 395 + ], + "spans": [ + { + "bbox": [ + 156, + 367, + 450, + 395 + ], + "score": 0.87, + "content": "\\bigg | \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mathbb { Q } } \\left[ \\frac { \\mathbb { Q } ( \\boldsymbol { x } ) - \\mathbb { P } ( \\boldsymbol { x } ) } { \\mu ( \\boldsymbol { x } ) } \\right] \\bigg | \\leq 2 \\qquad \\underbrace { \\mathbb { S } ( \\mathbb { Q } , \\mu ) } _ { \\mathrm { S } ( \\mathbb { Q } , \\mu ) } \\qquad \\underbrace { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } _ { \\mathrm { S } _ { \\boldsymbol { \\mu } } ( \\mathbb { Q } ) }", + "type": "interline_equation", + "image_path": "eeb5ec94fe21ee822359870e030f1434ca8ac52a226b712de209aa416c3f67fb.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 156, + 367, + 450, + 376.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 156, + 376.3333333333333, + 450, + 385.66666666666663 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 156, + 385.66666666666663, + 450, + 394.99999999999994 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 413, + 506, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 413, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 196, + 426 + ], + "score": 1.0, + "content": "Consider for example", + "type": "text" + }, + { + "bbox": [ + 196, + 415, + 224, + 425 + ], + "score": 0.91, + "content": "\\mu = \\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 413, + 284, + 426 + ], + "score": 1.0, + "content": ", and sequence", + "type": "text" + }, + { + "bbox": [ + 285, + 415, + 299, + 425 + ], + "score": 0.9, + "content": "\\mathbb { Q } _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 413, + 420, + 426 + ], + "score": 1.0, + "content": ". If the Sobolev distance goes", + "type": "text" + }, + { + "bbox": [ + 421, + 414, + 486, + 426 + ], + "score": 0.93, + "content": "S _ { \\mathbb { P } } ( \\mathbb { P } , \\mathbb { Q } _ { n } ) 0", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 413, + 506, + 426 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 423, + 507, + 444 + ], + "spans": [ + { + "bbox": [ + 104, + 425, + 128, + 440 + ], + "score": 1.0, + "content": "ratio", + "type": "text" + }, + { + "bbox": [ + 128, + 425, + 192, + 443 + ], + "score": 0.94, + "content": "\\begin{array} { r } { r _ { n } ( x ) = \\frac { \\mathbb { Q } _ { n } ( x ) } { \\mathbb { P } ( x ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 423, + 507, + 444 + ], + "score": 1.0, + "content": "Qn(x)P(x) converges in expectation (w.r.t to Q) to 1. The speed of the convergence is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 441, + 275, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 232, + 454 + ], + "score": 1.0, + "content": "given by the Stein Discrepancy", + "type": "text" + }, + { + "bbox": [ + 233, + 441, + 271, + 453 + ], + "score": 0.93, + "content": "\\mathbb { S } ( \\mathbb { Q } _ { n } , \\mathbb { P } )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 441, + 275, + 454 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 464, + 502, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 463, + 504, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 504, + 476 + ], + "score": 1.0, + "content": "Relation to Fokker-Planck Diffusion Equation and Particles dynamics. Note that PDE", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 475, + 432, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 432, + 488 + ], + "score": 1.0, + "content": "satisifed by the Sobolev critic given in Equation (13) can be equivalently written:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 488, + 377, + 515 + ], + "lines": [ + { + "bbox": [ + 234, + 488, + 377, + 515 + ], + "spans": [ + { + "bbox": [ + 234, + 488, + 377, + 515 + ], + "score": 0.94, + "content": "\\frac { \\mathbb { P } - \\mathbb { Q } } { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } = - \\mathrm { d i v } ( \\mu ( x ) \\nabla _ { x } f ^ { * } ( x ) ) ,", + "type": "interline_equation", + "image_path": "6c0c12a2a6be6aa27f7a455544535d1930265afa23d226fdc15e72c20e552f62.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 234, + 488, + 377, + 501.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 234, + 501.5, + 377, + 515.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 516, + 505, + 550 + ], + "lines": [ + { + "bbox": [ + 106, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "written in this form, we draw a connection with the Fokker-Planck Equation for the evolution of a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 526, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 174, + 540 + ], + "score": 1.0, + "content": "density function", + "type": "text" + }, + { + "bbox": [ + 175, + 529, + 183, + 538 + ], + "score": 0.82, + "content": "q _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 526, + 308, + 540 + ], + "score": 1.0, + "content": "that is the density of particles", + "type": "text" + }, + { + "bbox": [ + 309, + 527, + 348, + 538 + ], + "score": 0.93, + "content": "X _ { t } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 526, + 505, + 540 + ], + "score": 1.0, + "content": "evolving with a drift (a velocity field)", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 537, + 221, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 216, + 550 + ], + "score": 0.89, + "content": "V ( x , i ) : \\mathcal { X } \\times [ 0 , \\infty [ \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 537, + 221, + 550 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 160, + 551, + 449, + 564 + ], + "lines": [ + { + "bbox": [ + 163, + 550, + 449, + 567 + ], + "spans": [ + { + "bbox": [ + 163, + 552, + 239, + 564 + ], + "score": 0.9, + "content": "d X _ { t } = V ( X _ { t } , t ) d t", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 550, + 325, + 567 + ], + "score": 1.0, + "content": ", where the density of", + "type": "text" + }, + { + "bbox": [ + 326, + 553, + 339, + 564 + ], + "score": 0.89, + "content": "X _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 550, + 387, + 567 + ], + "score": 1.0, + "content": "is given by", + "type": "text" + }, + { + "bbox": [ + 387, + 552, + 444, + 565 + ], + "score": 0.93, + "content": "q _ { 0 } ( x ) = \\mathbb { Q } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 550, + 449, + 567 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 130, + 566, + 457, + 578 + ], + "lines": [ + { + "bbox": [ + 128, + 565, + 459, + 579 + ], + "spans": [ + { + "bbox": [ + 128, + 565, + 413, + 579 + ], + "score": 1.0, + "content": "Fokker-Planck Equation states that the evolution of the particles density", + "type": "text" + }, + { + "bbox": [ + 413, + 568, + 422, + 578 + ], + "score": 0.85, + "content": "q _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 565, + 459, + 579 + ], + "score": 1.0, + "content": "satisfies:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 579, + 367, + 603 + ], + "lines": [ + { + "bbox": [ + 244, + 579, + 367, + 603 + ], + "spans": [ + { + "bbox": [ + 244, + 579, + 367, + 603 + ], + "score": 0.95, + "content": "\\frac { d \\boldsymbol { q } _ { t } } { d t } ( \\boldsymbol { x } ) = - \\mathrm { d i v } ( \\boldsymbol { q } _ { t } ( \\boldsymbol { x } ) V ( \\boldsymbol { x } , t ) )", + "type": "interline_equation", + "image_path": "775fdf072fd235807b3bfb8f331579429df6aef60d2b70b5948031e0ed865845.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 244, + 579, + 367, + 603 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 106, + 604, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 506, + 617 + ], + "score": 1.0, + "content": "Comparing Equation (15) and Equation (16), we identify then the gradient of Sobolev critic as a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 614, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 628 + ], + "score": 1.0, + "content": "drift. This suggests that one can define “Sobolev descent” as the evolution of particles along the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 626, + 165, + 639 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 165, + 639 + ], + "score": 1.0, + "content": "gradient flow:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 158, + 640, + 452, + 653 + ], + "lines": [ + { + "bbox": [ + 159, + 639, + 452, + 655 + ], + "spans": [ + { + "bbox": [ + 159, + 640, + 243, + 653 + ], + "score": 0.92, + "content": "d X _ { t } = \\nabla _ { x } f _ { t } ^ { * } ( X _ { t } ) d t", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 639, + 329, + 655 + ], + "score": 1.0, + "content": ", where the density of", + "type": "text" + }, + { + "bbox": [ + 330, + 641, + 343, + 652 + ], + "score": 0.89, + "content": "X _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 639, + 390, + 655 + ], + "score": 1.0, + "content": "is given by", + "type": "text" + }, + { + "bbox": [ + 390, + 640, + 448, + 653 + ], + "score": 0.93, + "content": "q _ { 0 } ( x ) = \\mathbb { Q } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 639, + 452, + 655 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 134, + 667 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 655, + 146, + 667 + ], + "score": 0.89, + "content": "f _ { t } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 655, + 269, + 667 + ], + "score": 1.0, + "content": "is the Sobolev critic between", + "type": "text" + }, + { + "bbox": [ + 270, + 657, + 279, + 666 + ], + "score": 0.83, + "content": "q _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 655, + 298, + 667 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 298, + 655, + 306, + 665 + ], + "score": 0.79, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 655, + 505, + 667 + ], + "score": 1.0, + "content": ". One can show that the limit distribution of the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 664, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 153, + 679 + ], + "score": 1.0, + "content": "particles is", + "type": "text" + }, + { + "bbox": [ + 154, + 666, + 161, + 676 + ], + "score": 0.75, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 664, + 505, + 679 + ], + "score": 1.0, + "content": ". The analysis of “Sobolev descent” and its relation to Stein Descent (Liu & Wang,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "2016; Liu, 2017) is beyond the scope of this paper and will be studied in a separate work. Hence", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "we see that the gradient of the Sobolev critic defines a transportation plan to move particles whose", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 164, + 711 + ], + "score": 1.0, + "content": "distribution is", + "type": "text" + }, + { + "bbox": [ + 164, + 699, + 174, + 710 + ], + "score": 0.86, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 698, + 308, + 711 + ], + "score": 1.0, + "content": "to particles whose distribution is", + "type": "text" + }, + { + "bbox": [ + 309, + 699, + 317, + 709 + ], + "score": 0.76, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "(See Figure 2). This highlights the role of the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "gradient of the critic in the context of GAN training in term of transporting the distribution of the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 720, + 240, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 240, + 732 + ], + "score": 1.0, + "content": "generator to the real distribution.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41 + } + ], + "page_idx": 18, + "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 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "19", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 447, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 449, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 449, + 95 + ], + "score": 1.0, + "content": "A THEORY: APPROXIMATION AND TRANSPORT INTERPRETATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 504, + 128 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "In this Section we present the theoretical properties of Sobolev IPM and how it relates to distributions", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 116, + 471, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 471, + 129 + ], + "score": 1.0, + "content": "transport theory and other known metrics between distributions, notably the Stein distance.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 105, + 505, + 129 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 140, + 393, + 153 + ], + "lines": [ + { + "bbox": [ + 106, + 140, + 394, + 153 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 394, + 153 + ], + "score": 1.0, + "content": "A.1 DISTRIBUTION TRANSPORT PERSPECTIVE ON SOBOLEV IPM", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 160, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 160, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 506, + 173 + ], + "score": 1.0, + "content": "In this Section, we characterize the optimal critic of the Sobolev IPM as a solution of a non linear", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 172, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 506, + 184 + ], + "score": 1.0, + "content": "PDE. The solution of the variational problem of the Sobolev IPM satisfies a non linear PDE that can", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 182, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 196 + ], + "score": 1.0, + "content": "be derived using standard tools from calculus of variations (Ekeland & Turnbull, 1983; Alaoui et al.,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 192, + 136, + 207 + ], + "spans": [ + { + "bbox": [ + 104, + 192, + 136, + 207 + ], + "score": 1.0, + "content": "2016).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 104, + 160, + 506, + 207 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 207, + 505, + 230 + ], + "lines": [ + { + "bbox": [ + 105, + 207, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 457, + 221 + ], + "score": 1.0, + "content": "Theorem 3 (PDE satisfied by the Sobolev Critic). The optimal critic of Sobolev IPM", + "type": "text" + }, + { + "bbox": [ + 458, + 208, + 469, + 219 + ], + "score": 0.87, + "content": "f ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 207, + 505, + 221 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 218, + 187, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 161, + 231 + ], + "score": 1.0, + "content": "the following", + "type": "text" + }, + { + "bbox": [ + 161, + 219, + 182, + 229 + ], + "score": 0.29, + "content": "P D E", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 218, + 187, + 231 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 207, + 505, + 231 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 231, + 425, + 259 + ], + "lines": [ + { + "bbox": [ + 186, + 231, + 425, + 259 + ], + "spans": [ + { + "bbox": [ + 186, + 231, + 425, + 259 + ], + "score": 0.93, + "content": "\\Delta f ^ { * } ( x ) + \\left. \\nabla _ { x } \\log \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. + \\frac { \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) } { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\mu ( x ) } = 0 .", + "type": "interline_equation", + "image_path": "11a1a882d27c217eb8c6f794348747448fe25025ec5b8fdb311f21b816fa8589.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 186, + 231, + 425, + 245.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 186, + 245.0, + 425, + 259.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 271, + 504, + 300 + ], + "lines": [ + { + "bbox": [ + 102, + 266, + 508, + 293 + ], + "spans": [ + { + "bbox": [ + 102, + 266, + 213, + 293 + ], + "score": 1.0, + "content": "Define the Stein Operator:", + "type": "text" + }, + { + "bbox": [ + 213, + 270, + 423, + 290 + ], + "score": 0.89, + "content": "\\begin{array} { r } { T ( \\mu ) \\vec { g } ( x ) = \\frac { 1 } { 2 } \\Big ( \\langle \\nabla _ { x } \\log ( \\mu ( x ) ) , \\vec { g } ( x ) \\rangle + d i v ( \\vec { g } ( x ) ) \\Big ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 266, + 508, + 293 + ], + "score": 1.0, + "content": ". Hence we have the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 286, + 271, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 237, + 303 + ], + "score": 1.0, + "content": "following Transport Equation of", + "type": "text" + }, + { + "bbox": [ + 238, + 289, + 245, + 299 + ], + "score": 0.83, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 286, + 256, + 303 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 257, + 289, + 266, + 300 + ], + "score": 0.83, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 286, + 271, + 303 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 102, + 266, + 508, + 303 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 302, + 399, + 316 + ], + "lines": [ + { + "bbox": [ + 209, + 302, + 399, + 316 + ], + "spans": [ + { + "bbox": [ + 209, + 302, + 399, + 316 + ], + "score": 0.82, + "content": "\\mathbb { Q } ( x ) = \\mathbb { P } ( x ) + 2 S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\mu ( x ) T ( \\mu ) \\nabla _ { x } f ^ { * } ( x ) .", + "type": "interline_equation", + "image_path": "1e8e1ddb948c1f5c091710119ff5cfe0e18fe54c83f125800249ff258b965310.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 209, + 302, + 399, + 316 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 317, + 280, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 316, + 281, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 281, + 331 + ], + "score": 1.0, + "content": "Recall the definition of Stein Discrepancy :", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 316, + 281, + 331 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 330, + 404, + 353 + ], + "lines": [ + { + "bbox": [ + 205, + 330, + 404, + 353 + ], + "spans": [ + { + "bbox": [ + 205, + 330, + 404, + 353 + ], + "score": 0.88, + "content": "\\mathbb { S } ( \\mathbb { Q } , \\mu ) = \\operatorname* { s u p } _ { \\vec { g } } | \\mathbb { E } _ { x \\sim \\mathbb { Q } } [ T ( \\mu ) \\vec { g } ( x ) ] | , \\vec { g } : \\mathcal { X } \\mathbb { R } ^ { d } .", + "type": "interline_equation", + "image_path": "2877884eb1971d1d3f73c91b22dfd55168fc0436ac4b2c417bab1a06eeda727c.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 205, + 330, + 404, + 353 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 444, + 366 + ], + "lines": [ + { + "bbox": [ + 105, + 352, + 446, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 446, + 369 + ], + "score": 1.0, + "content": "Theorem 4 (Sobolev and Stein Discrepanices). The following inequality holds true:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 352, + 446, + 369 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 367, + 450, + 395 + ], + "lines": [ + { + "bbox": [ + 156, + 367, + 450, + 395 + ], + "spans": [ + { + "bbox": [ + 156, + 367, + 450, + 395 + ], + "score": 0.87, + "content": "\\bigg | \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mathbb { Q } } \\left[ \\frac { \\mathbb { Q } ( \\boldsymbol { x } ) - \\mathbb { P } ( \\boldsymbol { x } ) } { \\mu ( \\boldsymbol { x } ) } \\right] \\bigg | \\leq 2 \\qquad \\underbrace { \\mathbb { S } ( \\mathbb { Q } , \\mu ) } _ { \\mathrm { S } ( \\mathbb { Q } , \\mu ) } \\qquad \\underbrace { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } _ { \\mathrm { S } _ { \\boldsymbol { \\mu } } ( \\mathbb { Q } ) }", + "type": "interline_equation", + "image_path": "eeb5ec94fe21ee822359870e030f1434ca8ac52a226b712de209aa416c3f67fb.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 156, + 367, + 450, + 376.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 156, + 376.3333333333333, + 450, + 385.66666666666663 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 156, + 385.66666666666663, + 450, + 394.99999999999994 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 413, + 506, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 413, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 196, + 426 + ], + "score": 1.0, + "content": "Consider for example", + "type": "text" + }, + { + "bbox": [ + 196, + 415, + 224, + 425 + ], + "score": 0.91, + "content": "\\mu = \\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 413, + 284, + 426 + ], + "score": 1.0, + "content": ", and sequence", + "type": "text" + }, + { + "bbox": [ + 285, + 415, + 299, + 425 + ], + "score": 0.9, + "content": "\\mathbb { Q } _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 413, + 420, + 426 + ], + "score": 1.0, + "content": ". If the Sobolev distance goes", + "type": "text" + }, + { + "bbox": [ + 421, + 414, + 486, + 426 + ], + "score": 0.93, + "content": "S _ { \\mathbb { P } } ( \\mathbb { P } , \\mathbb { Q } _ { n } ) 0", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 413, + 506, + 426 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 423, + 507, + 444 + ], + "spans": [ + { + "bbox": [ + 104, + 425, + 128, + 440 + ], + "score": 1.0, + "content": "ratio", + "type": "text" + }, + { + "bbox": [ + 128, + 425, + 192, + 443 + ], + "score": 0.94, + "content": "\\begin{array} { r } { r _ { n } ( x ) = \\frac { \\mathbb { Q } _ { n } ( x ) } { \\mathbb { P } ( x ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 423, + 507, + 444 + ], + "score": 1.0, + "content": "Qn(x)P(x) converges in expectation (w.r.t to Q) to 1. The speed of the convergence is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 441, + 275, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 232, + 454 + ], + "score": 1.0, + "content": "given by the Stein Discrepancy", + "type": "text" + }, + { + "bbox": [ + 233, + 441, + 271, + 453 + ], + "score": 0.93, + "content": "\\mathbb { S } ( \\mathbb { Q } _ { n } , \\mathbb { P } )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 441, + 275, + 454 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 104, + 413, + 507, + 454 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 464, + 502, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 463, + 504, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 504, + 476 + ], + "score": 1.0, + "content": "Relation to Fokker-Planck Diffusion Equation and Particles dynamics. Note that PDE", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 475, + 432, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 432, + 488 + ], + "score": 1.0, + "content": "satisifed by the Sobolev critic given in Equation (13) can be equivalently written:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 106, + 463, + 504, + 488 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 488, + 377, + 515 + ], + "lines": [ + { + "bbox": [ + 234, + 488, + 377, + 515 + ], + "spans": [ + { + "bbox": [ + 234, + 488, + 377, + 515 + ], + "score": 0.94, + "content": "\\frac { \\mathbb { P } - \\mathbb { Q } } { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } = - \\mathrm { d i v } ( \\mu ( x ) \\nabla _ { x } f ^ { * } ( x ) ) ,", + "type": "interline_equation", + "image_path": "6c0c12a2a6be6aa27f7a455544535d1930265afa23d226fdc15e72c20e552f62.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 234, + 488, + 377, + 501.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 234, + 501.5, + 377, + 515.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 516, + 505, + 550 + ], + "lines": [ + { + "bbox": [ + 106, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "written in this form, we draw a connection with the Fokker-Planck Equation for the evolution of a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 526, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 174, + 540 + ], + "score": 1.0, + "content": "density function", + "type": "text" + }, + { + "bbox": [ + 175, + 529, + 183, + 538 + ], + "score": 0.82, + "content": "q _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 526, + 308, + 540 + ], + "score": 1.0, + "content": "that is the density of particles", + "type": "text" + }, + { + "bbox": [ + 309, + 527, + 348, + 538 + ], + "score": 0.93, + "content": "X _ { t } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 526, + 505, + 540 + ], + "score": 1.0, + "content": "evolving with a drift (a velocity field)", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 537, + 221, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 216, + 550 + ], + "score": 0.89, + "content": "V ( x , i ) : \\mathcal { X } \\times [ 0 , \\infty [ \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 537, + 221, + 550 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 106, + 515, + 505, + 550 + ] + }, + { + "type": "text", + "bbox": [ + 160, + 551, + 449, + 564 + ], + "lines": [ + { + "bbox": [ + 163, + 550, + 449, + 567 + ], + "spans": [ + { + "bbox": [ + 163, + 552, + 239, + 564 + ], + "score": 0.9, + "content": "d X _ { t } = V ( X _ { t } , t ) d t", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 550, + 325, + 567 + ], + "score": 1.0, + "content": ", where the density of", + "type": "text" + }, + { + "bbox": [ + 326, + 553, + 339, + 564 + ], + "score": 0.89, + "content": "X _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 550, + 387, + 567 + ], + "score": 1.0, + "content": "is given by", + "type": "text" + }, + { + "bbox": [ + 387, + 552, + 444, + 565 + ], + "score": 0.93, + "content": "q _ { 0 } ( x ) = \\mathbb { Q } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 550, + 449, + 567 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 163, + 550, + 449, + 567 + ] + }, + { + "type": "text", + "bbox": [ + 130, + 566, + 457, + 578 + ], + "lines": [ + { + "bbox": [ + 128, + 565, + 459, + 579 + ], + "spans": [ + { + "bbox": [ + 128, + 565, + 413, + 579 + ], + "score": 1.0, + "content": "Fokker-Planck Equation states that the evolution of the particles density", + "type": "text" + }, + { + "bbox": [ + 413, + 568, + 422, + 578 + ], + "score": 0.85, + "content": "q _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 565, + 459, + 579 + ], + "score": 1.0, + "content": "satisfies:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32, + "bbox_fs": [ + 128, + 565, + 459, + 579 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 579, + 367, + 603 + ], + "lines": [ + { + "bbox": [ + 244, + 579, + 367, + 603 + ], + "spans": [ + { + "bbox": [ + 244, + 579, + 367, + 603 + ], + "score": 0.95, + "content": "\\frac { d \\boldsymbol { q } _ { t } } { d t } ( \\boldsymbol { x } ) = - \\mathrm { d i v } ( \\boldsymbol { q } _ { t } ( \\boldsymbol { x } ) V ( \\boldsymbol { x } , t ) )", + "type": "interline_equation", + "image_path": "775fdf072fd235807b3bfb8f331579429df6aef60d2b70b5948031e0ed865845.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 244, + 579, + 367, + 603 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 106, + 604, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 506, + 617 + ], + "score": 1.0, + "content": "Comparing Equation (15) and Equation (16), we identify then the gradient of Sobolev critic as a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 614, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 628 + ], + "score": 1.0, + "content": "drift. This suggests that one can define “Sobolev descent” as the evolution of particles along the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 626, + 165, + 639 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 165, + 639 + ], + "score": 1.0, + "content": "gradient flow:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 104, + 604, + 506, + 639 + ] + }, + { + "type": "text", + "bbox": [ + 158, + 640, + 452, + 653 + ], + "lines": [ + { + "bbox": [ + 159, + 639, + 452, + 655 + ], + "spans": [ + { + "bbox": [ + 159, + 640, + 243, + 653 + ], + "score": 0.92, + "content": "d X _ { t } = \\nabla _ { x } f _ { t } ^ { * } ( X _ { t } ) d t", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 639, + 329, + 655 + ], + "score": 1.0, + "content": ", where the density of", + "type": "text" + }, + { + "bbox": [ + 330, + 641, + 343, + 652 + ], + "score": 0.89, + "content": "X _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 639, + 390, + 655 + ], + "score": 1.0, + "content": "is given by", + "type": "text" + }, + { + "bbox": [ + 390, + 640, + 448, + 653 + ], + "score": 0.93, + "content": "q _ { 0 } ( x ) = \\mathbb { Q } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 639, + 452, + 655 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 134, + 667 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 655, + 146, + 667 + ], + "score": 0.89, + "content": "f _ { t } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 655, + 269, + 667 + ], + "score": 1.0, + "content": "is the Sobolev critic between", + "type": "text" + }, + { + "bbox": [ + 270, + 657, + 279, + 666 + ], + "score": 0.83, + "content": "q _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 655, + 298, + 667 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 298, + 655, + 306, + 665 + ], + "score": 0.79, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 655, + 505, + 667 + ], + "score": 1.0, + "content": ". One can show that the limit distribution of the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 664, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 153, + 679 + ], + "score": 1.0, + "content": "particles is", + "type": "text" + }, + { + "bbox": [ + 154, + 666, + 161, + 676 + ], + "score": 0.75, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 664, + 505, + 679 + ], + "score": 1.0, + "content": ". The analysis of “Sobolev descent” and its relation to Stein Descent (Liu & Wang,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "2016; Liu, 2017) is beyond the scope of this paper and will be studied in a separate work. Hence", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "we see that the gradient of the Sobolev critic defines a transportation plan to move particles whose", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 164, + 711 + ], + "score": 1.0, + "content": "distribution is", + "type": "text" + }, + { + "bbox": [ + 164, + 699, + 174, + 710 + ], + "score": 0.86, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 698, + 308, + 711 + ], + "score": 1.0, + "content": "to particles whose distribution is", + "type": "text" + }, + { + "bbox": [ + 309, + 699, + 317, + 709 + ], + "score": 0.76, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "(See Figure 2). This highlights the role of the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "gradient of the critic in the context of GAN training in term of transporting the distribution of the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 720, + 240, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 240, + 732 + ], + "score": 1.0, + "content": "generator to the real distribution.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 37, + "bbox_fs": [ + 159, + 639, + 452, + 655 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [], + "index": 41, + "bbox_fs": [ + 105, + 655, + 505, + 732 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 169, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 171, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 171, + 96 + ], + "score": 1.0, + "content": "B PROOFS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 504, + 134 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 208, + 124 + ], + "score": 1.0, + "content": "Proof of Theorem 2. Let", + "type": "text" + }, + { + "bbox": [ + 208, + 111, + 221, + 122 + ], + "score": 0.89, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 109, + 240, + 124 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 240, + 111, + 254, + 123 + ], + "score": 0.89, + "content": "F _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 109, + 435, + 124 + ], + "score": 1.0, + "content": ", be the cumulative distribution functions of", + "type": "text" + }, + { + "bbox": [ + 435, + 111, + 443, + 121 + ], + "score": 0.82, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 109, + 462, + 124 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 463, + 111, + 472, + 122 + ], + "score": 0.85, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 109, + 505, + 124 + ], + "score": 1.0, + "content": "respec-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 120, + 173, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 173, + 135 + ], + "score": 1.0, + "content": "tively. We have:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 248, + 142, + 361, + 170 + ], + "lines": [ + { + "bbox": [ + 248, + 142, + 361, + 170 + ], + "spans": [ + { + "bbox": [ + 248, + 142, + 361, + 170 + ], + "score": 0.94, + "content": "\\mathbb { P } ( x ) = \\frac { \\partial ^ { d } } { \\partial x _ { 1 } \\hdots \\partial x _ { d } } F _ { \\mathbb { P } } ( x ) ,", + "type": "interline_equation", + "image_path": "f778a10ee1bb50edd324b16fe3e9d3835192f46f20e176ca6e82987269cea599.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 248, + 142, + 361, + 170 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 182, + 403, + 201 + ], + "lines": [ + { + "bbox": [ + 106, + 181, + 404, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 141, + 201 + ], + "score": 1.0, + "content": "We note", + "type": "text" + }, + { + "bbox": [ + 142, + 183, + 200, + 200 + ], + "score": 0.95, + "content": "\\begin{array} { r } { D = \\frac { \\partial ^ { d } } { \\partial x _ { 1 } \\ldots \\partial x _ { d } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 185, + 245, + 198 + ], + "score": 1.0, + "content": "and D−i", + "type": "text" + }, + { + "bbox": [ + 201, + 181, + 203, + 201 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 221, + 183, + 339, + 201 + ], + "score": 0.93, + "content": "\\begin{array} { r } { D ^ { - i } = \\frac { \\partial ^ { d - 1 } } { \\partial x _ { 1 } \\dots \\partial x _ { i - 1 } \\partial x _ { i + 1 } \\dots \\partial x _ { d } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 186, + 357, + 203 + ], + "score": 1.0, + "content": ", for", + "type": "text" + }, + { + "bbox": [ + 357, + 186, + 400, + 197 + ], + "score": 0.84, + "content": "i = 1 \\ldots d", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 186, + 404, + 203 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 213, + 379, + 225 + ], + "lines": [ + { + "bbox": [ + 106, + 212, + 376, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 126, + 224 + ], + "score": 0.9, + "content": "D ^ { - i }", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 212, + 182, + 227 + ], + "score": 1.0, + "content": "computes the", + "type": "text" + }, + { + "bbox": [ + 182, + 214, + 206, + 225 + ], + "score": 0.87, + "content": "d - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 212, + 367, + 227 + ], + "score": 1.0, + "content": "partial derivative excluding the variable", + "type": "text" + }, + { + "bbox": [ + 367, + 215, + 372, + 224 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 212, + 376, + 227 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 226, + 505, + 249 + ], + "lines": [ + { + "bbox": [ + 105, + 223, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 237, + 239 + ], + "score": 1.0, + "content": "In the following we assume that", + "type": "text" + }, + { + "bbox": [ + 237, + 225, + 250, + 236 + ], + "score": 0.89, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 223, + 271, + 239 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 271, + 225, + 285, + 237 + ], + "score": 0.9, + "content": "F _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 223, + 315, + 239 + ], + "score": 1.0, + "content": "and its", + "type": "text" + }, + { + "bbox": [ + 315, + 225, + 322, + 235 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 223, + 505, + 239 + ], + "score": 1.0, + "content": "derivatives exist and are continuous meaning", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 235, + 474, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 124, + 250 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 124, + 237, + 136, + 248 + ], + "score": 0.89, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 235, + 154, + 250 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 155, + 236, + 209, + 249 + ], + "score": 0.95, + "content": "F _ { \\mathbb { Q } } \\in C ^ { d } ( \\mathcal { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 235, + 474, + 250 + ], + "score": 1.0, + "content": ". The objective function in Equation (3) can be written as follows:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 261, + 429, + 358 + ], + "lines": [ + { + "bbox": [ + 165, + 261, + 429, + 358 + ], + "spans": [ + { + "bbox": [ + 165, + 261, + 429, + 358 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) = \\displaystyle \\int _ { \\mathcal { X } } f ( x ) D \\Big ( F _ { \\mathbb { P } } ( x ) - F _ { \\mathbb { Q } } ( x ) \\Big ) d x } \\\\ & { \\quad \\quad \\quad \\quad \\quad = \\displaystyle \\int _ { \\mathcal { X } } f ( x ) \\frac { \\partial } { \\partial x _ { i } } D ^ { - i } ( F _ { \\mathbb { P } } ( x ) - F _ { \\mathbb { Q } } ( x ) ) d x } \\\\ & { \\quad \\quad \\quad \\quad \\quad \\mathrm { ( f o r ~ a n y ~ } i , \\mathrm { s i n c e ~ } F _ { \\mathbb { P } } \\mathrm { ~ a n d ~ } F _ { \\mathbb { Q } } \\in C ^ { d } ( \\mathcal { X } ) ) } \\\\ & { \\quad \\quad \\quad \\quad = - \\displaystyle \\int _ { \\mathcal { X } } \\frac { \\partial f } { \\partial x _ { i } } D ^ { - i } ( F _ { \\mathbb { P } } ( x ) - F _ { \\mathbb { Q } } ( x ) ) d x } \\end{array}", + "type": "interline_equation", + "image_path": "a5f3ef5002ea81558675e55bb133816c714f037eb108959ad66ab1af72273a1c.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 165, + 261, + 429, + 293.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 165, + 293.3333333333333, + 429, + 325.66666666666663 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 165, + 325.66666666666663, + 429, + 357.99999999999994 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 386, + 282, + 399 + ], + "lines": [ + { + "bbox": [ + 104, + 383, + 283, + 402 + ], + "spans": [ + { + "bbox": [ + 104, + 383, + 122, + 402 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 387, + 220, + 399 + ], + "score": 0.93, + "content": "D ^ { - } = ( D ^ { - 1 } , \\ldots , D ^ { - d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 383, + 283, + 402 + ], + "score": 1.0, + "content": "it follows that:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 412, + 457, + 475 + ], + "lines": [ + { + "bbox": [ + 152, + 412, + 457, + 475 + ], + "spans": [ + { + "bbox": [ + 152, + 412, + 457, + 475 + ], + "score": 0.94, + "content": "\\begin{array} { r c l } { \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) } & { = } & { \\displaystyle \\frac { 1 } { d } \\sum _ { i = 1 } ^ { d } \\int _ { \\chi } \\frac { \\partial f } { \\partial x _ { i } } D ^ { - i } ( F _ { \\mathbb { Q } } ( x ) - F _ { \\mathbb { P } } ( x ) ) d x } \\\\ & { = } & { \\displaystyle \\frac { 1 } { d } \\int _ { \\chi } \\left. \\nabla _ { x } f ( x ) , D ^ { - } ( F _ { \\mathbb { Q } } ( x ) - F _ { \\mathbb { P } } ( x ) ) \\right. _ { \\mathbb { R } ^ { d } } d x } \\end{array}", + "type": "interline_equation", + "image_path": "b5ceaa7c1995a14f8d2d1cbfd29b3a19b1b4ba405f4fda5e2cf411f381364131.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 152, + 412, + 457, + 433.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 152, + 433.0, + 457, + 454.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 152, + 454.0, + 457, + 475.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 491, + 504, + 515 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 167, + 505 + ], + "score": 1.0, + "content": "Let us define", + "type": "text" + }, + { + "bbox": [ + 167, + 492, + 220, + 505 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 491, + 397, + 505 + ], + "score": 1.0, + "content": "the space of measurable functions from", + "type": "text" + }, + { + "bbox": [ + 398, + 492, + 443, + 502 + ], + "score": 0.91, + "content": "\\mathcal X ~ ~ \\mathbb R ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 491, + 474, + 505 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 474, + 493, + 505, + 505 + ], + "score": 0.85, + "content": "g , h \\in", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 502, + 310, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 159, + 516 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 502, + 310, + 516 + ], + "score": 1.0, + "content": "the dot product is defined as follows:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 527, + 398, + 554 + ], + "lines": [ + { + "bbox": [ + 212, + 527, + 398, + 554 + ], + "spans": [ + { + "bbox": [ + 212, + 527, + 398, + 554 + ], + "score": 0.94, + "content": "\\langle g , h \\rangle _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } } = \\int _ { \\mathcal { X } } \\langle g ( x ) , h ( x ) \\rangle _ { \\mathbb { R } ^ { d } } \\mu ( x ) d x", + "type": "interline_equation", + "image_path": "ff87f31353f9898c7f2bbf29ab57a1bb4118c4fb13ecb3191d07e8140275131d.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 212, + 527, + 398, + 554 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 566, + 199, + 578 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 200, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 200, + 578 + ], + "score": 1.0, + "content": "and the norm is given :", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 232, + 586, + 378, + 613 + ], + "lines": [ + { + "bbox": [ + 232, + 586, + 378, + 613 + ], + "spans": [ + { + "bbox": [ + 232, + 586, + 378, + 613 + ], + "score": 0.94, + "content": "\\| g \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } } = \\int _ { X } \\| g \\| _ { \\mathbb { R } ^ { d } } ^ { 2 } \\mu ( x ) d x .", + "type": "interline_equation", + "image_path": "5f64fccbbf2a9e795760a7de33f747b99bf60130b2d97b7d8b093dfcc1567b13.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 232, + 586, + 378, + 613 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 103, + 626, + 457, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 458, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 397, + 641 + ], + "score": 1.0, + "content": "We can write the objective in Equation (18) in term of the dot product in", + "type": "text" + }, + { + "bbox": [ + 397, + 626, + 451, + 639 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 624, + 458, + 641 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 651, + 439, + 681 + ], + "lines": [ + { + "bbox": [ + 172, + 651, + 439, + 681 + ], + "spans": [ + { + "bbox": [ + 172, + 651, + 439, + 681 + ], + "score": 0.94, + "content": "\\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) = \\frac { 1 } { d } \\left. \\nabla _ { x } f , \\frac { D ^ { - } ( F _ { \\mathbb { Q } } - F _ { \\mathbb { P } } ) } { \\mu } \\right. _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } } .", + "type": "interline_equation", + "image_path": "7719e18f2f858292d82f2903671b0aa608a4b3cd4a510f662d0d485f621360a4.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 172, + 651, + 439, + 681 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 694, + 505, + 707 + ], + "lines": [ + { + "bbox": [ + 105, + 692, + 505, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 448, + 708 + ], + "score": 1.0, + "content": "On the other hand the constraint in Equation (3) can be written in terms of the norm in", + "type": "text" + }, + { + "bbox": [ + 448, + 694, + 501, + 707 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 692, + 505, + 708 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 719, + 376, + 735 + ], + "lines": [ + { + "bbox": [ + 236, + 719, + 376, + 735 + ], + "spans": [ + { + "bbox": [ + 236, + 719, + 376, + 735 + ], + "score": 0.92, + "content": "\\| f \\| _ { W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) } = \\| \\nabla _ { x } f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } }", + "type": "interline_equation", + "image_path": "a2717f1a2dd74db0025a8c09ce269305bd1bf18898a3c09957b249f7f8b5c19b.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 236, + 719, + 376, + 735 + ], + "spans": [], + "index": 23 + } + ] + } + ], + "page_idx": 19, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 297, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 297, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "20", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 169, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 171, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 171, + 96 + ], + "score": 1.0, + "content": "B PROOFS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 504, + 134 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 208, + 124 + ], + "score": 1.0, + "content": "Proof of Theorem 2. Let", + "type": "text" + }, + { + "bbox": [ + 208, + 111, + 221, + 122 + ], + "score": 0.89, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 109, + 240, + 124 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 240, + 111, + 254, + 123 + ], + "score": 0.89, + "content": "F _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 109, + 435, + 124 + ], + "score": 1.0, + "content": ", be the cumulative distribution functions of", + "type": "text" + }, + { + "bbox": [ + 435, + 111, + 443, + 121 + ], + "score": 0.82, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 109, + 462, + 124 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 463, + 111, + 472, + 122 + ], + "score": 0.85, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 109, + 505, + 124 + ], + "score": 1.0, + "content": "respec-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 120, + 173, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 173, + 135 + ], + "score": 1.0, + "content": "tively. We have:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 109, + 505, + 135 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 248, + 142, + 361, + 170 + ], + "lines": [ + { + "bbox": [ + 248, + 142, + 361, + 170 + ], + "spans": [ + { + "bbox": [ + 248, + 142, + 361, + 170 + ], + "score": 0.94, + "content": "\\mathbb { P } ( x ) = \\frac { \\partial ^ { d } } { \\partial x _ { 1 } \\hdots \\partial x _ { d } } F _ { \\mathbb { P } } ( x ) ,", + "type": "interline_equation", + "image_path": "f778a10ee1bb50edd324b16fe3e9d3835192f46f20e176ca6e82987269cea599.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 248, + 142, + 361, + 170 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 182, + 403, + 201 + ], + "lines": [ + { + "bbox": [ + 106, + 181, + 404, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 141, + 201 + ], + "score": 1.0, + "content": "We note", + "type": "text" + }, + { + "bbox": [ + 142, + 183, + 200, + 200 + ], + "score": 0.95, + "content": "\\begin{array} { r } { D = \\frac { \\partial ^ { d } } { \\partial x _ { 1 } \\ldots \\partial x _ { d } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 185, + 245, + 198 + ], + "score": 1.0, + "content": "and D−i", + "type": "text" + }, + { + "bbox": [ + 201, + 181, + 203, + 201 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 221, + 183, + 339, + 201 + ], + "score": 0.93, + "content": "\\begin{array} { r } { D ^ { - i } = \\frac { \\partial ^ { d - 1 } } { \\partial x _ { 1 } \\dots \\partial x _ { i - 1 } \\partial x _ { i + 1 } \\dots \\partial x _ { d } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 186, + 357, + 203 + ], + "score": 1.0, + "content": ", for", + "type": "text" + }, + { + "bbox": [ + 357, + 186, + 400, + 197 + ], + "score": 0.84, + "content": "i = 1 \\ldots d", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 186, + 404, + 203 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 181, + 404, + 203 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 213, + 379, + 225 + ], + "lines": [ + { + "bbox": [ + 106, + 212, + 376, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 126, + 224 + ], + "score": 0.9, + "content": "D ^ { - i }", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 212, + 182, + 227 + ], + "score": 1.0, + "content": "computes the", + "type": "text" + }, + { + "bbox": [ + 182, + 214, + 206, + 225 + ], + "score": 0.87, + "content": "d - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 212, + 367, + 227 + ], + "score": 1.0, + "content": "partial derivative excluding the variable", + "type": "text" + }, + { + "bbox": [ + 367, + 215, + 372, + 224 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 212, + 376, + 227 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 212, + 376, + 227 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 226, + 505, + 249 + ], + "lines": [ + { + "bbox": [ + 105, + 223, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 237, + 239 + ], + "score": 1.0, + "content": "In the following we assume that", + "type": "text" + }, + { + "bbox": [ + 237, + 225, + 250, + 236 + ], + "score": 0.89, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 223, + 271, + 239 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 271, + 225, + 285, + 237 + ], + "score": 0.9, + "content": "F _ { \\mathbb { Q } }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 223, + 315, + 239 + ], + "score": 1.0, + "content": "and its", + "type": "text" + }, + { + "bbox": [ + 315, + 225, + 322, + 235 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 223, + 505, + 239 + ], + "score": 1.0, + "content": "derivatives exist and are continuous meaning", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 235, + 474, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 124, + 250 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 124, + 237, + 136, + 248 + ], + "score": 0.89, + "content": "F _ { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 235, + 154, + 250 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 155, + 236, + 209, + 249 + ], + "score": 0.95, + "content": "F _ { \\mathbb { Q } } \\in C ^ { d } ( \\mathcal { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 235, + 474, + 250 + ], + "score": 1.0, + "content": ". The objective function in Equation (3) can be written as follows:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 223, + 505, + 250 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 261, + 429, + 358 + ], + "lines": [ + { + "bbox": [ + 165, + 261, + 429, + 358 + ], + "spans": [ + { + "bbox": [ + 165, + 261, + 429, + 358 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) = \\displaystyle \\int _ { \\mathcal { X } } f ( x ) D \\Big ( F _ { \\mathbb { P } } ( x ) - F _ { \\mathbb { Q } } ( x ) \\Big ) d x } \\\\ & { \\quad \\quad \\quad \\quad \\quad = \\displaystyle \\int _ { \\mathcal { X } } f ( x ) \\frac { \\partial } { \\partial x _ { i } } D ^ { - i } ( F _ { \\mathbb { P } } ( x ) - F _ { \\mathbb { Q } } ( x ) ) d x } \\\\ & { \\quad \\quad \\quad \\quad \\quad \\mathrm { ( f o r ~ a n y ~ } i , \\mathrm { s i n c e ~ } F _ { \\mathbb { P } } \\mathrm { ~ a n d ~ } F _ { \\mathbb { Q } } \\in C ^ { d } ( \\mathcal { X } ) ) } \\\\ & { \\quad \\quad \\quad \\quad = - \\displaystyle \\int _ { \\mathcal { X } } \\frac { \\partial f } { \\partial x _ { i } } D ^ { - i } ( F _ { \\mathbb { P } } ( x ) - F _ { \\mathbb { Q } } ( x ) ) d x } \\end{array}", + "type": "interline_equation", + "image_path": "a5f3ef5002ea81558675e55bb133816c714f037eb108959ad66ab1af72273a1c.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 165, + 261, + 429, + 293.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 165, + 293.3333333333333, + 429, + 325.66666666666663 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 165, + 325.66666666666663, + 429, + 357.99999999999994 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 386, + 282, + 399 + ], + "lines": [ + { + "bbox": [ + 104, + 383, + 283, + 402 + ], + "spans": [ + { + "bbox": [ + 104, + 383, + 122, + 402 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 387, + 220, + 399 + ], + "score": 0.93, + "content": "D ^ { - } = ( D ^ { - 1 } , \\ldots , D ^ { - d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 383, + 283, + 402 + ], + "score": 1.0, + "content": "it follows that:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 104, + 383, + 283, + 402 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 412, + 457, + 475 + ], + "lines": [ + { + "bbox": [ + 152, + 412, + 457, + 475 + ], + "spans": [ + { + "bbox": [ + 152, + 412, + 457, + 475 + ], + "score": 0.94, + "content": "\\begin{array} { r c l } { \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) } & { = } & { \\displaystyle \\frac { 1 } { d } \\sum _ { i = 1 } ^ { d } \\int _ { \\chi } \\frac { \\partial f } { \\partial x _ { i } } D ^ { - i } ( F _ { \\mathbb { Q } } ( x ) - F _ { \\mathbb { P } } ( x ) ) d x } \\\\ & { = } & { \\displaystyle \\frac { 1 } { d } \\int _ { \\chi } \\left. \\nabla _ { x } f ( x ) , D ^ { - } ( F _ { \\mathbb { Q } } ( x ) - F _ { \\mathbb { P } } ( x ) ) \\right. _ { \\mathbb { R } ^ { d } } d x } \\end{array}", + "type": "interline_equation", + "image_path": "b5ceaa7c1995a14f8d2d1cbfd29b3a19b1b4ba405f4fda5e2cf411f381364131.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 152, + 412, + 457, + 433.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 152, + 433.0, + 457, + 454.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 152, + 454.0, + 457, + 475.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 491, + 504, + 515 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 167, + 505 + ], + "score": 1.0, + "content": "Let us define", + "type": "text" + }, + { + "bbox": [ + 167, + 492, + 220, + 505 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 491, + 397, + 505 + ], + "score": 1.0, + "content": "the space of measurable functions from", + "type": "text" + }, + { + "bbox": [ + 398, + 492, + 443, + 502 + ], + "score": 0.91, + "content": "\\mathcal X ~ ~ \\mathbb R ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 491, + 474, + 505 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 474, + 493, + 505, + 505 + ], + "score": 0.85, + "content": "g , h \\in", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 502, + 310, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 159, + 516 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 502, + 310, + 516 + ], + "score": 1.0, + "content": "the dot product is defined as follows:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 491, + 505, + 516 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 527, + 398, + 554 + ], + "lines": [ + { + "bbox": [ + 212, + 527, + 398, + 554 + ], + "spans": [ + { + "bbox": [ + 212, + 527, + 398, + 554 + ], + "score": 0.94, + "content": "\\langle g , h \\rangle _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } } = \\int _ { \\mathcal { X } } \\langle g ( x ) , h ( x ) \\rangle _ { \\mathbb { R } ^ { d } } \\mu ( x ) d x", + "type": "interline_equation", + "image_path": "ff87f31353f9898c7f2bbf29ab57a1bb4118c4fb13ecb3191d07e8140275131d.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 212, + 527, + 398, + 554 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 566, + 199, + 578 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 200, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 200, + 578 + ], + "score": 1.0, + "content": "and the norm is given :", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 106, + 565, + 200, + 578 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 232, + 586, + 378, + 613 + ], + "lines": [ + { + "bbox": [ + 232, + 586, + 378, + 613 + ], + "spans": [ + { + "bbox": [ + 232, + 586, + 378, + 613 + ], + "score": 0.94, + "content": "\\| g \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } } = \\int _ { X } \\| g \\| _ { \\mathbb { R } ^ { d } } ^ { 2 } \\mu ( x ) d x .", + "type": "interline_equation", + "image_path": "5f64fccbbf2a9e795760a7de33f747b99bf60130b2d97b7d8b093dfcc1567b13.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 232, + 586, + 378, + 613 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 103, + 626, + 457, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 458, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 397, + 641 + ], + "score": 1.0, + "content": "We can write the objective in Equation (18) in term of the dot product in", + "type": "text" + }, + { + "bbox": [ + 397, + 626, + 451, + 639 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 624, + 458, + 641 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 624, + 458, + 641 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 651, + 439, + 681 + ], + "lines": [ + { + "bbox": [ + 172, + 651, + 439, + 681 + ], + "spans": [ + { + "bbox": [ + 172, + 651, + 439, + 681 + ], + "score": 0.94, + "content": "\\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) = \\frac { 1 } { d } \\left. \\nabla _ { x } f , \\frac { D ^ { - } ( F _ { \\mathbb { Q } } - F _ { \\mathbb { P } } ) } { \\mu } \\right. _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } } .", + "type": "interline_equation", + "image_path": "7719e18f2f858292d82f2903671b0aa608a4b3cd4a510f662d0d485f621360a4.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 172, + 651, + 439, + 681 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 694, + 505, + 707 + ], + "lines": [ + { + "bbox": [ + 105, + 692, + 505, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 448, + 708 + ], + "score": 1.0, + "content": "On the other hand the constraint in Equation (3) can be written in terms of the norm in", + "type": "text" + }, + { + "bbox": [ + 448, + 694, + 501, + 707 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 692, + 505, + 708 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 692, + 505, + 708 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 719, + 376, + 735 + ], + "lines": [ + { + "bbox": [ + 236, + 719, + 376, + 735 + ], + "spans": [ + { + "bbox": [ + 236, + 719, + 376, + 735 + ], + "score": 0.92, + "content": "\\| f \\| _ { W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) } = \\| \\nabla _ { x } f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } }", + "type": "interline_equation", + "image_path": "a2717f1a2dd74db0025a8c09ce269305bd1bf18898a3c09957b249f7f8b5c19b.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 236, + 719, + 376, + 735 + ], + "spans": [], + "index": 23 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 502, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 502, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 502, + 96 + ], + "score": 1.0, + "content": "Replacing the objective and constraint given in Equations (19) and (20) in Equation (3), we obtain:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 96, + 507, + 274 + ], + "lines": [ + { + "bbox": [ + 111, + 96, + 507, + 274 + ], + "spans": [ + { + "bbox": [ + 111, + 96, + 507, + 274 + ], + "score": 0.87, + "content": "\\begin{array} { r l } & { \\mathfrak { H } ( \\mathbb { P } , \\mathfrak { G } ) = \\frac { 1 } { d } _ { f , \\vert \\mathcal { C } _ { 2 } , \\vert \\mathcal { C } _ { 2 } , \\alpha , \\beta , 0 ; 0 } \\le \\mathfrak { C } _ { \\ge } f , \\frac { D ^ { - } ( F _ { \\mathfrak { g } } - F _ { \\mathfrak { g } } \\vert \\mathfrak { F } ) } { \\mu } \\Bigr \\rangle _ { \\mathcal { B } ( \\mathfrak { x } , \\mu ) \\le \\mathfrak { c } } } \\\\ & { \\ = \\frac { 1 } { d } _ { g \\le \\mathcal { G } _ { 2 } ( x , \\beta ) \\le \\mathfrak { c } , \\vert \\mathfrak { H } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { x } , \\mu } ) \\le \\mathfrak { c } } \\Big \\langle g , \\frac { D ^ { - } ( F _ { \\mathfrak { g } } - F _ { \\mathfrak { g } } ) } { \\mu } \\Big \\rangle _ { \\mathcal { B } _ { \\ge } ( x , \\mu ) \\ge \\mathfrak { c } } } \\\\ & { \\ = \\frac { 1 } { d } \\bigg \\Vert \\frac { D ^ { - } ( F _ { \\mathfrak { g } } - F _ { \\mathfrak { g } } ) } { \\mu } \\bigg \\Vert _ { \\mathcal { B } _ { \\ge } ( x , \\mu ) \\le \\mathfrak { c } } } \\\\ & { \\ \\left( \\mathtt { B y ~ d e n i n i o n ~ o f ~ } \\Vert \\cdot \\Vert _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) \\le \\mathfrak { c } } , g ^ { - } = \\frac { D ^ { - } F _ { \\mathfrak { g } } ( \\mathfrak { x } ) - D ^ { - } F _ { \\mathfrak { g } } ( \\mathfrak { x } ) } { \\mu ( \\mathfrak { x } ) } \\frac { 1 } { \\left. \\frac { D ^ { - } ( F _ { \\mathfrak { g } } - F _ { \\mathfrak { g } } ) } { \\mu } \\right. _ { \\mathcal { B } _ { \\ge } ( \\mathcal { X } , \\mu ) \\le \\mathfrak { c } } } \\right) } \\\\ & \\ = \\frac { 1 } { d } \\sqrt { \\int _ { x } \\frac { \\Vert D ^ { - } F _ { \\mathfrak { g } } ( \\mathfrak { x } ) - D ^ { - } F _ { \\mathfrak { g } } ( \\mathfrak { x } ) \\Vert _ { \\mathcal { A } ( \\mathcal { X } , \\mu ) } ^ { 2 } } { \\mu ( \\mathfrak { x } ) } d \\mathfrak { x } . } \\end{array}", + "type": "interline_equation", + "image_path": "97b0a5f9eab2359015dacdd9aac8c371e326ca18071ef98d8578c2a27cdeec4e.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 111, + 96, + 507, + 155.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 111, + 155.33333333333334, + 507, + 214.66666666666669 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 111, + 214.66666666666669, + 507, + 274.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 275, + 323, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 323, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 273, + 288 + ], + "score": 1.0, + "content": "Hence we find also that the optimal critic", + "type": "text" + }, + { + "bbox": [ + 273, + 275, + 285, + 286 + ], + "score": 0.89, + "content": "f ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 273, + 323, + 288 + ], + "score": 1.0, + "content": "satisfies:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 288, + 421, + 326 + ], + "lines": [ + { + "bbox": [ + 170, + 288, + 421, + 326 + ], + "spans": [ + { + "bbox": [ + 170, + 288, + 421, + 326 + ], + "score": 0.94, + "content": "\\nabla _ { x } f ^ { * } ( x ) = \\frac { D ^ { - } F _ { \\mathbb { Q } } ( x ) - D ^ { - } F _ { \\mathbb { P } } ( x ) } { \\mu ( x ) } \\frac { 1 } { \\Big \\| \\frac { D ^ { - } ( F _ { \\mathbb { Q } } - F _ { \\mathbb { P } } ) } { \\mu } \\Big \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } } } .", + "type": "interline_equation", + "image_path": "e2a8405da9d66cf04b46a09981465e33ed699ddef6794bf122d29007c27d98f4.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 170, + 288, + 421, + 300.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 170, + 300.6666666666667, + 421, + 313.33333333333337 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 170, + 313.33333333333337, + 421, + 326.00000000000006 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 352, + 182, + 363 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 183, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 173, + 365 + ], + "score": 1.0, + "content": "Proof of Lemma", + "type": "text" + }, + { + "bbox": [ + 174, + 353, + 179, + 362 + ], + "score": 0.53, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 351, + 183, + 365 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 125, + 366, + 487, + 466 + ], + "lines": [ + { + "bbox": [ + 125, + 366, + 487, + 466 + ], + "spans": [ + { + "bbox": [ + 125, + 366, + 487, + 466 + ], + "score": 0.95, + "content": "\\begin{array} { r c l } { \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) } & { = } & { \\displaystyle \\frac { 1 } { d } \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) , D ^ { - } ( F _ { \\mathbb { Q } } ( x ) - F _ { \\mathbb { P } } ( x ) ) \\right. _ { \\mathbb { R } ^ { d } } d x } \\\\ & { = } & { \\displaystyle S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) , \\frac { D ^ { - } ( F _ { \\mathbb { Q } } ( x ) - F _ { \\mathbb { P } } ( x ) ) } { \\mu ( x ) d S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } \\right. _ { \\mathbb { R } ^ { d } } \\mu ( x ) d x } \\\\ & { = } & { \\displaystyle S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. \\mu ( x ) d x } \\\\ & { = } & { \\displaystyle S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\left. f , f ^ { * } \\right. _ { W _ { 0 } ^ { 1 , 2 } } } \\end{array}", + "type": "interline_equation", + "image_path": "0611e104c0c0ee07559606e0f2c96ba20e8c410008e3997a61e6623b0731c165.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 125, + 366, + 487, + 399.3333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 125, + 399.3333333333333, + 487, + 432.66666666666663 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 125, + 432.66666666666663, + 487, + 465.99999999999994 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 466, + 171, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 173, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 173, + 479 + ], + "score": 1.0, + "content": "Hence we have:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 139, + 480, + 470, + 507 + ], + "lines": [ + { + "bbox": [ + 139, + 480, + 470, + 507 + ], + "spans": [ + { + "bbox": [ + 139, + 480, + 470, + 507 + ], + "score": 0.89, + "content": "\\operatorname* { s u p } _ { f \\in \\mathcal { M } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } } \\leq 1 } \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) = S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\operatorname* { s u p } _ { f \\in \\mathcal { M } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } } \\leq 1 } \\langle f , f ^ { * } \\rangle _ { W _ { 0 } ^ { 1 , 2 } } ,", + "type": "interline_equation", + "image_path": "22fb9c98448596c9e95e9dea3a007cdce4c4dcc55ba8d44c667739f3e4943ab5.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 139, + 480, + 470, + 507 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 205, + 521 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 206, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 206, + 522 + ], + "score": 1.0, + "content": "It follows therefore that:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 523, + 409, + 550 + ], + "lines": [ + { + "bbox": [ + 200, + 523, + 409, + 550 + ], + "spans": [ + { + "bbox": [ + 200, + 523, + 409, + 550 + ], + "score": 0.91, + "content": "\\mathcal { S } _ { \\mathcal { H } } ( \\mathbb { P } , \\mathbb { Q } ) = S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\operatorname* { s u p } _ { f \\in \\mathcal { H } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } } \\leq 1 } \\langle f , f ^ { * } \\rangle _ { W _ { 0 } ^ { 1 , 2 } }", + "type": "interline_equation", + "image_path": "4a1fe5d02a45604832f0c2d765a821ad936cac8baa7aad2cafc27a21eacf0ab5.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 200, + 523, + 409, + 550 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 646 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 590 + ], + "score": 1.0, + "content": "We conclude that the Sobolev IPM can be approximated in arbitrary space as long as it has enough", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 588, + 504, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 504, + 599 + ], + "score": 1.0, + "content": "capacity to approximate the optimal critic. Interestingly the approximation error is measured now", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 597, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 612 + ], + "score": 1.0, + "content": "with the Sobolev semi-norm, while in Fisher it was measured with the Lebesgue norm. Approx-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 608, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 623 + ], + "score": 1.0, + "content": "imations with Sobolev Semi-norms are stronger then Lebesgue norms as given by the Poincare", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 620, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 149, + 635 + ], + "score": 1.0, + "content": "inequality", + "type": "text" + }, + { + "bbox": [ + 149, + 620, + 242, + 635 + ], + "score": 0.9, + "content": "( \\vert \\vert f \\vert \\vert _ { \\mathcal { L } _ { 2 } } \\le C \\left. f \\right. _ { W _ { 0 } ^ { 1 , 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 620, + 506, + 635 + ], + "score": 1.0, + "content": ", meaning if the error goes to zero in Sobolev sense it also goes to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 633, + 332, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 332, + 646 + ], + "score": 1.0, + "content": "zero in the Lebesgue sense , but the converse is not true.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 105, + 656, + 504, + 680 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 505, + 669 + ], + "score": 1.0, + "content": "Proof of Theorem 3. The proof follows similar arguments in the proofs of the analysis of Laplacian", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 668, + 405, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 405, + 680 + ], + "score": 1.0, + "content": "regularization in semi-supervised learning studied by (Alaoui et al., 2016).", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 697, + 417, + 735 + ], + "lines": [ + { + "bbox": [ + 183, + 697, + 417, + 735 + ], + "spans": [ + { + "bbox": [ + 183, + 697, + 417, + 735 + ], + "score": 0.91, + "content": "\\begin{array} { r l } { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } & { { } = \\operatorname* { s u p } _ { f \\in W _ { 0 } ^ { 1 , 2 } } \\Big \\{ \\mathbb { E } _ { x \\sim \\mathbb { P } } \\left[ f ( x ) \\right] - \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ f ( x ) \\right] \\Big \\} } \\\\ { s . t . } & { { } \\quad \\mathbb { E } _ { x \\sim \\mu } \\| \\nabla f ( x ) \\| _ { 2 } ^ { 2 } \\leq 1 , } \\end{array}", + "type": "interline_equation", + "image_path": "16204a8fe673ff37deede84c74672bcba84a9389a4840469eb842215b7d60971.jpg" + } + ] + } + ], + "index": 24.5, + "virtual_lines": [ + { + "bbox": [ + 183, + 697, + 417, + 716.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 183, + 716.0, + 417, + 735.0 + ], + "spans": [], + "index": 25 + } + ] + } + ], + "page_idx": 20, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 328, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 496, + 330, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 496, + 330, + 505, + 340 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 553, + 505, + 564 + ], + "lines": [ + { + "bbox": [ + 495, + 555, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 495, + 555, + 505, + 564 + ], + "score": 0.999, + "content": "□", + "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": "text", + "bbox": [ + 105, + 81, + 502, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 502, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 502, + 96 + ], + "score": 1.0, + "content": "Replacing the objective and constraint given in Equations (19) and (20) in Equation (3), we obtain:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 81, + 502, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 96, + 507, + 274 + ], + "lines": [ + { + "bbox": [ + 111, + 96, + 507, + 274 + ], + "spans": [ + { + "bbox": [ + 111, + 96, + 507, + 274 + ], + "score": 0.87, + "content": "\\begin{array} { r l } & { \\mathfrak { H } ( \\mathbb { P } , \\mathfrak { G } ) = \\frac { 1 } { d } _ { f , \\vert \\mathcal { C } _ { 2 } , \\vert \\mathcal { C } _ { 2 } , \\alpha , \\beta , 0 ; 0 } \\le \\mathfrak { C } _ { \\ge } f , \\frac { D ^ { - } ( F _ { \\mathfrak { g } } - F _ { \\mathfrak { g } } \\vert \\mathfrak { F } ) } { \\mu } \\Bigr \\rangle _ { \\mathcal { B } ( \\mathfrak { x } , \\mu ) \\le \\mathfrak { c } } } \\\\ & { \\ = \\frac { 1 } { d } _ { g \\le \\mathcal { G } _ { 2 } ( x , \\beta ) \\le \\mathfrak { c } , \\vert \\mathfrak { H } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { x } , \\mu } ) \\le \\mathfrak { c } } \\Big \\langle g , \\frac { D ^ { - } ( F _ { \\mathfrak { g } } - F _ { \\mathfrak { g } } ) } { \\mu } \\Big \\rangle _ { \\mathcal { B } _ { \\ge } ( x , \\mu ) \\ge \\mathfrak { c } } } \\\\ & { \\ = \\frac { 1 } { d } \\bigg \\Vert \\frac { D ^ { - } ( F _ { \\mathfrak { g } } - F _ { \\mathfrak { g } } ) } { \\mu } \\bigg \\Vert _ { \\mathcal { B } _ { \\ge } ( x , \\mu ) \\le \\mathfrak { c } } } \\\\ & { \\ \\left( \\mathtt { B y ~ d e n i n i o n ~ o f ~ } \\Vert \\cdot \\Vert _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) \\le \\mathfrak { c } } , g ^ { - } = \\frac { D ^ { - } F _ { \\mathfrak { g } } ( \\mathfrak { x } ) - D ^ { - } F _ { \\mathfrak { g } } ( \\mathfrak { x } ) } { \\mu ( \\mathfrak { x } ) } \\frac { 1 } { \\left. \\frac { D ^ { - } ( F _ { \\mathfrak { g } } - F _ { \\mathfrak { g } } ) } { \\mu } \\right. _ { \\mathcal { B } _ { \\ge } ( \\mathcal { X } , \\mu ) \\le \\mathfrak { c } } } \\right) } \\\\ & \\ = \\frac { 1 } { d } \\sqrt { \\int _ { x } \\frac { \\Vert D ^ { - } F _ { \\mathfrak { g } } ( \\mathfrak { x } ) - D ^ { - } F _ { \\mathfrak { g } } ( \\mathfrak { x } ) \\Vert _ { \\mathcal { A } ( \\mathcal { X } , \\mu ) } ^ { 2 } } { \\mu ( \\mathfrak { x } ) } d \\mathfrak { x } . } \\end{array}", + "type": "interline_equation", + "image_path": "97b0a5f9eab2359015dacdd9aac8c371e326ca18071ef98d8578c2a27cdeec4e.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 111, + 96, + 507, + 155.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 111, + 155.33333333333334, + 507, + 214.66666666666669 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 111, + 214.66666666666669, + 507, + 274.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 275, + 323, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 323, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 273, + 288 + ], + "score": 1.0, + "content": "Hence we find also that the optimal critic", + "type": "text" + }, + { + "bbox": [ + 273, + 275, + 285, + 286 + ], + "score": 0.89, + "content": "f ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 273, + 323, + 288 + ], + "score": 1.0, + "content": "satisfies:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 273, + 323, + 288 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 288, + 421, + 326 + ], + "lines": [ + { + "bbox": [ + 170, + 288, + 421, + 326 + ], + "spans": [ + { + "bbox": [ + 170, + 288, + 421, + 326 + ], + "score": 0.94, + "content": "\\nabla _ { x } f ^ { * } ( x ) = \\frac { D ^ { - } F _ { \\mathbb { Q } } ( x ) - D ^ { - } F _ { \\mathbb { P } } ( x ) } { \\mu ( x ) } \\frac { 1 } { \\Big \\| \\frac { D ^ { - } ( F _ { \\mathbb { Q } } - F _ { \\mathbb { P } } ) } { \\mu } \\Big \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } } } .", + "type": "interline_equation", + "image_path": "e2a8405da9d66cf04b46a09981465e33ed699ddef6794bf122d29007c27d98f4.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 170, + 288, + 421, + 300.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 170, + 300.6666666666667, + 421, + 313.33333333333337 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 170, + 313.33333333333337, + 421, + 326.00000000000006 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 352, + 182, + 363 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 183, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 173, + 365 + ], + "score": 1.0, + "content": "Proof of Lemma", + "type": "text" + }, + { + "bbox": [ + 174, + 353, + 179, + 362 + ], + "score": 0.53, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 351, + 183, + 365 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 351, + 183, + 365 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 125, + 366, + 487, + 466 + ], + "lines": [ + { + "bbox": [ + 125, + 366, + 487, + 466 + ], + "spans": [ + { + "bbox": [ + 125, + 366, + 487, + 466 + ], + "score": 0.95, + "content": "\\begin{array} { r c l } { \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) } & { = } & { \\displaystyle \\frac { 1 } { d } \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) , D ^ { - } ( F _ { \\mathbb { Q } } ( x ) - F _ { \\mathbb { P } } ( x ) ) \\right. _ { \\mathbb { R } ^ { d } } d x } \\\\ & { = } & { \\displaystyle S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) , \\frac { D ^ { - } ( F _ { \\mathbb { Q } } ( x ) - F _ { \\mathbb { P } } ( x ) ) } { \\mu ( x ) d S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } \\right. _ { \\mathbb { R } ^ { d } } \\mu ( x ) d x } \\\\ & { = } & { \\displaystyle S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. \\mu ( x ) d x } \\\\ & { = } & { \\displaystyle S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\left. f , f ^ { * } \\right. _ { W _ { 0 } ^ { 1 , 2 } } } \\end{array}", + "type": "interline_equation", + "image_path": "0611e104c0c0ee07559606e0f2c96ba20e8c410008e3997a61e6623b0731c165.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 125, + 366, + 487, + 399.3333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 125, + 399.3333333333333, + 487, + 432.66666666666663 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 125, + 432.66666666666663, + 487, + 465.99999999999994 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 466, + 171, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 173, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 173, + 479 + ], + "score": 1.0, + "content": "Hence we have:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 465, + 173, + 479 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 139, + 480, + 470, + 507 + ], + "lines": [ + { + "bbox": [ + 139, + 480, + 470, + 507 + ], + "spans": [ + { + "bbox": [ + 139, + 480, + 470, + 507 + ], + "score": 0.89, + "content": "\\operatorname* { s u p } _ { f \\in \\mathcal { M } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } } \\leq 1 } \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) = S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\operatorname* { s u p } _ { f \\in \\mathcal { M } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } } \\leq 1 } \\langle f , f ^ { * } \\rangle _ { W _ { 0 } ^ { 1 , 2 } } ,", + "type": "interline_equation", + "image_path": "22fb9c98448596c9e95e9dea3a007cdce4c4dcc55ba8d44c667739f3e4943ab5.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 139, + 480, + 470, + 507 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 205, + 521 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 206, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 206, + 522 + ], + "score": 1.0, + "content": "It follows therefore that:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 509, + 206, + 522 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 523, + 409, + 550 + ], + "lines": [ + { + "bbox": [ + 200, + 523, + 409, + 550 + ], + "spans": [ + { + "bbox": [ + 200, + 523, + 409, + 550 + ], + "score": 0.91, + "content": "\\mathcal { S } _ { \\mathcal { H } } ( \\mathbb { P } , \\mathbb { Q } ) = S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\operatorname* { s u p } _ { f \\in \\mathcal { H } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } } \\leq 1 } \\langle f , f ^ { * } \\rangle _ { W _ { 0 } ^ { 1 , 2 } }", + "type": "interline_equation", + "image_path": "4a1fe5d02a45604832f0c2d765a821ad936cac8baa7aad2cafc27a21eacf0ab5.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 200, + 523, + 409, + 550 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 646 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 590 + ], + "score": 1.0, + "content": "We conclude that the Sobolev IPM can be approximated in arbitrary space as long as it has enough", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 588, + 504, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 504, + 599 + ], + "score": 1.0, + "content": "capacity to approximate the optimal critic. Interestingly the approximation error is measured now", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 597, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 612 + ], + "score": 1.0, + "content": "with the Sobolev semi-norm, while in Fisher it was measured with the Lebesgue norm. Approx-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 608, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 623 + ], + "score": 1.0, + "content": "imations with Sobolev Semi-norms are stronger then Lebesgue norms as given by the Poincare", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 620, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 149, + 635 + ], + "score": 1.0, + "content": "inequality", + "type": "text" + }, + { + "bbox": [ + 149, + 620, + 242, + 635 + ], + "score": 0.9, + "content": "( \\vert \\vert f \\vert \\vert _ { \\mathcal { L } _ { 2 } } \\le C \\left. f \\right. _ { W _ { 0 } ^ { 1 , 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 620, + 506, + 635 + ], + "score": 1.0, + "content": ", meaning if the error goes to zero in Sobolev sense it also goes to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 633, + 332, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 332, + 646 + ], + "score": 1.0, + "content": "zero in the Lebesgue sense , but the converse is not true.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 576, + 506, + 646 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 656, + 504, + 680 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 505, + 669 + ], + "score": 1.0, + "content": "Proof of Theorem 3. The proof follows similar arguments in the proofs of the analysis of Laplacian", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 668, + 405, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 405, + 680 + ], + "score": 1.0, + "content": "regularization in semi-supervised learning studied by (Alaoui et al., 2016).", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 657, + 505, + 680 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 697, + 417, + 735 + ], + "lines": [ + { + "bbox": [ + 183, + 697, + 417, + 735 + ], + "spans": [ + { + "bbox": [ + 183, + 697, + 417, + 735 + ], + "score": 0.91, + "content": "\\begin{array} { r l } { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } & { { } = \\operatorname* { s u p } _ { f \\in W _ { 0 } ^ { 1 , 2 } } \\Big \\{ \\mathbb { E } _ { x \\sim \\mathbb { P } } \\left[ f ( x ) \\right] - \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ f ( x ) \\right] \\Big \\} } \\\\ { s . t . } & { { } \\quad \\mathbb { E } _ { x \\sim \\mu } \\| \\nabla f ( x ) \\| _ { 2 } ^ { 2 } \\leq 1 , } \\end{array}", + "type": "interline_equation", + "image_path": "16204a8fe673ff37deede84c74672bcba84a9389a4840469eb842215b7d60971.jpg" + } + ] + } + ], + "index": 24.5, + "virtual_lines": [ + { + "bbox": [ + 183, + 697, + 417, + 716.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 183, + 716.0, + 417, + 735.0 + ], + "spans": [], + "index": 25 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 258, + 95 + ], + "score": 1.0, + "content": "Note that this problem is convex in", + "type": "text" + }, + { + "bbox": [ + 258, + 83, + 266, + 94 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "(Ekeland & Turnbull, 1983). Writing the lagrangian for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 197, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 197, + 106 + ], + "score": 1.0, + "content": "equation (21) we get :", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 110, + 455, + 190 + ], + "lines": [ + { + "bbox": [ + 155, + 110, + 455, + 190 + ], + "spans": [ + { + "bbox": [ + 155, + 110, + 455, + 190 + ], + "score": 0.96, + "content": "\\begin{array} { l } { \\displaystyle { L ( f , \\lambda ) = \\mathbb { E } _ { x \\sim \\mathbb { P } } \\left[ f ( x ) \\right] - \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ f ( x ) \\right] + \\frac { \\lambda } { 2 } \\Big ( 1 - \\mathbb { E } _ { x \\sim \\mu } \\| \\nabla _ { x } f ( x ) \\| _ { 2 } ^ { 2 } \\Big ) } } \\\\ { \\displaystyle { \\quad = \\int _ { \\mathcal { X } } f ( x ) \\left( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) \\right) d x + \\frac { \\lambda } { 2 } \\Big ( 1 - \\int _ { \\mathcal { X } } \\| \\nabla _ { x } f ( x ) \\| _ { 2 } ^ { 2 } \\mu ( x ) d x \\Big ) } } \\\\ { \\displaystyle { \\quad = \\int _ { \\mathcal { X } } f ( x ) \\mu _ { 1 } ( x ) d x + \\frac { \\lambda } { 2 } \\Big ( 1 - \\int _ { \\mathcal { X } } \\| \\nabla _ { x } f ( x ) \\| _ { 2 } ^ { 2 } \\mu ( x ) d x \\Big ) } } \\end{array}", + "type": "interline_equation", + "image_path": "7d9b8b9ea978265c7c127c64cefd89d6075ac919a190d929993f3be1900b4710.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 155, + 110, + 455, + 136.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 155, + 136.66666666666666, + 455, + 163.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 155, + 163.33333333333331, + 455, + 189.99999999999997 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 194, + 504, + 218 + ], + "lines": [ + { + "bbox": [ + 105, + 193, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 152, + 209 + ], + "score": 1.0, + "content": "We denote", + "type": "text" + }, + { + "bbox": [ + 152, + 194, + 214, + 208 + ], + "score": 0.91, + "content": "\\left( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 193, + 227, + 209 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 227, + 195, + 252, + 208 + ], + "score": 0.91, + "content": "\\mu _ { 1 } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 193, + 329, + 209 + ], + "score": 1.0, + "content": ".To get the optimal", + "type": "text" + }, + { + "bbox": [ + 329, + 196, + 336, + 207 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 193, + 506, + 209 + ], + "score": 1.0, + "content": ", we need to apply KKT conditions on the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 205, + 173, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 173, + 220 + ], + "score": 1.0, + "content": "above equation.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 171, + 223, + 439, + 250 + ], + "lines": [ + { + "bbox": [ + 171, + 223, + 439, + 250 + ], + "spans": [ + { + "bbox": [ + 171, + 223, + 439, + 250 + ], + "score": 0.92, + "content": "L ( f , \\lambda ) = \\int _ { \\mathcal { X } } f ( x ) \\mu _ { 1 } ( x ) d x + { \\frac { \\lambda } { 2 } } { \\Big ( } 1 - \\int _ { \\mathcal { X } } \\| \\nabla _ { x } f ( x ) \\| _ { 2 } ^ { 2 } \\ \\mu ( x ) d x { \\Big ) }", + "type": "interline_equation", + "image_path": "4b3acba07029e2f916f9fafefde867c118b2f61a87a2ee021db7672ffdae327e.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 171, + 223, + 439, + 250 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 255, + 235, + 267 + ], + "lines": [ + { + "bbox": [ + 106, + 255, + 235, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 235, + 267 + ], + "score": 1.0, + "content": "From the calculus of variations:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 271, + 514, + 433 + ], + "lines": [ + { + "bbox": [ + 111, + 271, + 514, + 433 + ], + "spans": [ + { + "bbox": [ + 111, + 271, + 514, + 433 + ], + "score": 0.93, + "content": "\\begin{array} { l } { \\displaystyle \\sum _ { k = 1 } ^ { \\infty } ( f + \\epsilon h , \\lambda ) = \\int _ { x } ( f + \\epsilon h ) ( x ) \\mu _ { 1 } ( x ) d x + \\frac { \\lambda } { 2 } \\Bigl ( 1 - \\int _ { x } \\| \\nabla _ { x } ( f + \\epsilon h ) ( x ) \\| _ { 2 } ^ { 2 } \\mu ( x ) d x \\Bigr ) } \\\\ { \\displaystyle = \\int _ { x } ( f ( x ) + \\epsilon h ( x ) ) \\mu _ { 1 } ( x ) d x + \\frac { \\lambda } { 2 } \\Bigl ( 1 - \\int _ { x } \\left. \\nabla _ { z } \\left( f + \\epsilon h \\right) ( x ) , \\nabla _ { z } \\left( f + \\epsilon h \\right) ( x ) \\right. \\mu ( x ) } \\\\ { \\displaystyle = \\int _ { x } ( f ( x ) + \\epsilon h ( x ) ) \\mu _ { 1 } ( x ) d x } \\\\ { \\displaystyle + \\frac { \\lambda } { 2 } \\Bigl ( 1 - \\int _ { x } \\left. \\| \\nabla _ { z } f ( x ) \\| _ { 2 } ^ { 2 } + 2 \\epsilon \\langle \\nabla _ { x } f ( x ) , \\nabla _ { x } h ( x ) \\rangle + \\mathcal { O } ( \\epsilon ^ { 2 } ) \\right. \\mu ( x ) d x \\Bigr ) } \\\\ { \\displaystyle = L ( f , \\lambda ) + \\epsilon \\int _ { x } h ( x ) \\mu _ { 1 } ( x ) d x - \\lambda \\epsilon \\int _ { x } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } h ( x ) \\right. \\mu ( x ) d x + \\mathcal { O } ( \\epsilon ^ { 2 } ) } \\\\ { \\displaystyle = L ( f , \\lambda ) + \\epsilon \\Bigl [ \\int _ { x } h ( x ) \\mu _ { 1 } ( x ) d x - \\lambda \\int _ { x } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } h ( x ) \\right. \\mu ( x ) d x \\Bigr ] + \\mathcal { O } ( \\epsilon ^ { 2 } ) } \\end{array}", + "type": "interline_equation", + "image_path": "0426c250e67dbe790cf5f8af4a301ba42faf5f66c436f04cc92e35c3010ee208.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 111, + 271, + 514, + 325.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 111, + 325.0, + 514, + 379.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 111, + 379.0, + 514, + 433.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 441, + 506, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 441, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 276, + 455 + ], + "score": 1.0, + "content": "Now we apply integration by part and set", + "type": "text" + }, + { + "bbox": [ + 277, + 443, + 284, + 452 + ], + "score": 0.84, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 441, + 506, + 455 + ], + "score": 1.0, + "content": "to be zero at boundary as in (Alaoui et al., 2016). We", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 453, + 128, + 466 + ], + "spans": [ + { + "bbox": [ + 104, + 453, + 128, + 466 + ], + "score": 1.0, + "content": "get :", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 484, + 514, + 574 + ], + "lines": [ + { + "bbox": [ + 111, + 484, + 514, + 574 + ], + "spans": [ + { + "bbox": [ + 111, + 484, + 514, + 574 + ], + "score": 0.92, + "content": "\\begin{array} { l } { \\displaystyle \\int _ { \\mathcal X } \\langle \\nabla _ { x } f ( x ) , \\nabla _ { x } h ( x ) \\rangle \\mu ( x ) d x = \\int _ { \\mathcal X } \\langle \\nabla _ { x } f ( x ) \\mu ( x ) , \\nabla _ { x } h ( x ) \\rangle d x } \\\\ { = \\displaystyle \\oint h ( x ) \\mu ( x ) \\nabla _ { x } f ( x ) . n ( x ) d S ( x ) - \\int _ { \\mathcal X } d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) h ( x ) d x } \\\\ { = - \\displaystyle \\int _ { \\mathcal X } d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) h ( x ) d x } \\end{array}", + "type": "interline_equation", + "image_path": "7044b2b25edcff7a49e8b371559477ca589d2e81cbd9fe38756961647bc84d2d.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 111, + 484, + 514, + 514.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 111, + 514.0, + 514, + 544.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 111, + 544.0, + 514, + 574.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 136, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 138, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 138, + 596 + ], + "score": 1.0, + "content": "Hence,", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 599, + 497, + 654 + ], + "lines": [ + { + "bbox": [ + 115, + 599, + 497, + 654 + ], + "spans": [ + { + "bbox": [ + 115, + 599, + 497, + 654 + ], + "score": 0.94, + "content": "\\begin{array} { l } { { \\displaystyle { \\cal L } \\big ( f + \\epsilon h , \\lambda \\big ) = { \\cal L } \\big ( f , \\lambda \\big ) + \\epsilon \\bigg [ \\int _ { \\mathcal { X } } \\mu _ { 1 } ( x ) h ( x ) d x + \\lambda \\int _ { \\mathcal { X } } d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) h ( x ) d x \\bigg ] + { \\mathcal O } ( \\epsilon ^ { 2 } ) } } \\\\ { { \\displaystyle ~ = { \\cal L } \\big ( f , \\lambda \\big ) + \\epsilon \\int _ { \\mathcal { X } } \\bigg ( \\mu _ { 1 } ( x ) + \\lambda ~ d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) \\bigg ) h ( x ) d x + { \\mathcal O } ( \\epsilon ^ { 2 } ) } } \\end{array}", + "type": "interline_equation", + "image_path": "a9dd9b5d58684c4191e6db47e6dbcaf76d18e8ead39b57b378423481914d9421.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 115, + 599, + 497, + 617.3333333333334 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 115, + 617.3333333333334, + 497, + 635.6666666666667 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 115, + 635.6666666666667, + 497, + 654.0000000000001 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 663, + 452, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 661, + 453, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 219, + 679 + ], + "score": 1.0, + "content": "The functional derivative of", + "type": "text" + }, + { + "bbox": [ + 220, + 664, + 251, + 676 + ], + "score": 0.93, + "content": "L ( f , \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 661, + 333, + 679 + ], + "score": 1.0, + "content": ", at any test function", + "type": "text" + }, + { + "bbox": [ + 334, + 665, + 340, + 674 + ], + "score": 0.84, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 661, + 453, + 679 + ], + "score": 1.0, + "content": "vanishing on the boundary:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 681, + 462, + 737 + ], + "lines": [ + { + "bbox": [ + 149, + 681, + 462, + 737 + ], + "spans": [ + { + "bbox": [ + 149, + 681, + 462, + 737 + ], + "score": 0.93, + "content": "\\begin{array} { r c l } { \\displaystyle \\int _ { \\mathcal { X } } \\frac { \\partial L ( f , \\lambda ) } { \\partial f } ( x ) h ( x ) d x } & { = } & { \\displaystyle \\operatorname* { l i m } _ { \\epsilon \\to 0 } \\frac { L ( f + \\epsilon h , \\lambda ) - L ( f , \\lambda ) } { \\epsilon } } \\\\ & { = } & { \\displaystyle \\int _ { \\mathcal { X } } \\left( \\mu _ { 1 } ( x ) + \\lambda \\ d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) \\right) h ( x ) d x } \\end{array}", + "type": "interline_equation", + "image_path": "81c93e07c6b99398e043e25687dda7c763e16ed9766d7005b83e61eb6c834a60.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 149, + 681, + 462, + 699.6666666666666 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 149, + 699.6666666666666, + 462, + 718.3333333333333 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 149, + 718.3333333333333, + 462, + 736.9999999999999 + ], + "spans": [], + "index": 24 + } + ] + } + ], + "page_idx": 21, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "22", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 258, + 95 + ], + "score": 1.0, + "content": "Note that this problem is convex in", + "type": "text" + }, + { + "bbox": [ + 258, + 83, + 266, + 94 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "(Ekeland & Turnbull, 1983). Writing the lagrangian for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 197, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 197, + 106 + ], + "score": 1.0, + "content": "equation (21) we get :", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 110, + 455, + 190 + ], + "lines": [ + { + "bbox": [ + 155, + 110, + 455, + 190 + ], + "spans": [ + { + "bbox": [ + 155, + 110, + 455, + 190 + ], + "score": 0.96, + "content": "\\begin{array} { l } { \\displaystyle { L ( f , \\lambda ) = \\mathbb { E } _ { x \\sim \\mathbb { P } } \\left[ f ( x ) \\right] - \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ f ( x ) \\right] + \\frac { \\lambda } { 2 } \\Big ( 1 - \\mathbb { E } _ { x \\sim \\mu } \\| \\nabla _ { x } f ( x ) \\| _ { 2 } ^ { 2 } \\Big ) } } \\\\ { \\displaystyle { \\quad = \\int _ { \\mathcal { X } } f ( x ) \\left( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) \\right) d x + \\frac { \\lambda } { 2 } \\Big ( 1 - \\int _ { \\mathcal { X } } \\| \\nabla _ { x } f ( x ) \\| _ { 2 } ^ { 2 } \\mu ( x ) d x \\Big ) } } \\\\ { \\displaystyle { \\quad = \\int _ { \\mathcal { X } } f ( x ) \\mu _ { 1 } ( x ) d x + \\frac { \\lambda } { 2 } \\Big ( 1 - \\int _ { \\mathcal { X } } \\| \\nabla _ { x } f ( x ) \\| _ { 2 } ^ { 2 } \\mu ( x ) d x \\Big ) } } \\end{array}", + "type": "interline_equation", + "image_path": "7d9b8b9ea978265c7c127c64cefd89d6075ac919a190d929993f3be1900b4710.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 155, + 110, + 455, + 136.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 155, + 136.66666666666666, + 455, + 163.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 155, + 163.33333333333331, + 455, + 189.99999999999997 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 194, + 504, + 218 + ], + "lines": [ + { + "bbox": [ + 105, + 193, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 152, + 209 + ], + "score": 1.0, + "content": "We denote", + "type": "text" + }, + { + "bbox": [ + 152, + 194, + 214, + 208 + ], + "score": 0.91, + "content": "\\left( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 193, + 227, + 209 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 227, + 195, + 252, + 208 + ], + "score": 0.91, + "content": "\\mu _ { 1 } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 193, + 329, + 209 + ], + "score": 1.0, + "content": ".To get the optimal", + "type": "text" + }, + { + "bbox": [ + 329, + 196, + 336, + 207 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 193, + 506, + 209 + ], + "score": 1.0, + "content": ", we need to apply KKT conditions on the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 205, + 173, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 173, + 220 + ], + "score": 1.0, + "content": "above equation.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 193, + 506, + 220 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 171, + 223, + 439, + 250 + ], + "lines": [ + { + "bbox": [ + 171, + 223, + 439, + 250 + ], + "spans": [ + { + "bbox": [ + 171, + 223, + 439, + 250 + ], + "score": 0.92, + "content": "L ( f , \\lambda ) = \\int _ { \\mathcal { X } } f ( x ) \\mu _ { 1 } ( x ) d x + { \\frac { \\lambda } { 2 } } { \\Big ( } 1 - \\int _ { \\mathcal { X } } \\| \\nabla _ { x } f ( x ) \\| _ { 2 } ^ { 2 } \\ \\mu ( x ) d x { \\Big ) }", + "type": "interline_equation", + "image_path": "4b3acba07029e2f916f9fafefde867c118b2f61a87a2ee021db7672ffdae327e.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 171, + 223, + 439, + 250 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 255, + 235, + 267 + ], + "lines": [ + { + "bbox": [ + 106, + 255, + 235, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 235, + 267 + ], + "score": 1.0, + "content": "From the calculus of variations:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 255, + 235, + 267 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 271, + 514, + 433 + ], + "lines": [ + { + "bbox": [ + 111, + 271, + 514, + 433 + ], + "spans": [ + { + "bbox": [ + 111, + 271, + 514, + 433 + ], + "score": 0.93, + "content": "\\begin{array} { l } { \\displaystyle \\sum _ { k = 1 } ^ { \\infty } ( f + \\epsilon h , \\lambda ) = \\int _ { x } ( f + \\epsilon h ) ( x ) \\mu _ { 1 } ( x ) d x + \\frac { \\lambda } { 2 } \\Bigl ( 1 - \\int _ { x } \\| \\nabla _ { x } ( f + \\epsilon h ) ( x ) \\| _ { 2 } ^ { 2 } \\mu ( x ) d x \\Bigr ) } \\\\ { \\displaystyle = \\int _ { x } ( f ( x ) + \\epsilon h ( x ) ) \\mu _ { 1 } ( x ) d x + \\frac { \\lambda } { 2 } \\Bigl ( 1 - \\int _ { x } \\left. \\nabla _ { z } \\left( f + \\epsilon h \\right) ( x ) , \\nabla _ { z } \\left( f + \\epsilon h \\right) ( x ) \\right. \\mu ( x ) } \\\\ { \\displaystyle = \\int _ { x } ( f ( x ) + \\epsilon h ( x ) ) \\mu _ { 1 } ( x ) d x } \\\\ { \\displaystyle + \\frac { \\lambda } { 2 } \\Bigl ( 1 - \\int _ { x } \\left. \\| \\nabla _ { z } f ( x ) \\| _ { 2 } ^ { 2 } + 2 \\epsilon \\langle \\nabla _ { x } f ( x ) , \\nabla _ { x } h ( x ) \\rangle + \\mathcal { O } ( \\epsilon ^ { 2 } ) \\right. \\mu ( x ) d x \\Bigr ) } \\\\ { \\displaystyle = L ( f , \\lambda ) + \\epsilon \\int _ { x } h ( x ) \\mu _ { 1 } ( x ) d x - \\lambda \\epsilon \\int _ { x } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } h ( x ) \\right. \\mu ( x ) d x + \\mathcal { O } ( \\epsilon ^ { 2 } ) } \\\\ { \\displaystyle = L ( f , \\lambda ) + \\epsilon \\Bigl [ \\int _ { x } h ( x ) \\mu _ { 1 } ( x ) d x - \\lambda \\int _ { x } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } h ( x ) \\right. \\mu ( x ) d x \\Bigr ] + \\mathcal { O } ( \\epsilon ^ { 2 } ) } \\end{array}", + "type": "interline_equation", + "image_path": "0426c250e67dbe790cf5f8af4a301ba42faf5f66c436f04cc92e35c3010ee208.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 111, + 271, + 514, + 325.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 111, + 325.0, + 514, + 379.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 111, + 379.0, + 514, + 433.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 441, + 506, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 441, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 276, + 455 + ], + "score": 1.0, + "content": "Now we apply integration by part and set", + "type": "text" + }, + { + "bbox": [ + 277, + 443, + 284, + 452 + ], + "score": 0.84, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 441, + 506, + 455 + ], + "score": 1.0, + "content": "to be zero at boundary as in (Alaoui et al., 2016). We", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 453, + 128, + 466 + ], + "spans": [ + { + "bbox": [ + 104, + 453, + 128, + 466 + ], + "score": 1.0, + "content": "get :", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 104, + 441, + 506, + 466 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 484, + 514, + 574 + ], + "lines": [ + { + "bbox": [ + 111, + 484, + 514, + 574 + ], + "spans": [ + { + "bbox": [ + 111, + 484, + 514, + 574 + ], + "score": 0.92, + "content": "\\begin{array} { l } { \\displaystyle \\int _ { \\mathcal X } \\langle \\nabla _ { x } f ( x ) , \\nabla _ { x } h ( x ) \\rangle \\mu ( x ) d x = \\int _ { \\mathcal X } \\langle \\nabla _ { x } f ( x ) \\mu ( x ) , \\nabla _ { x } h ( x ) \\rangle d x } \\\\ { = \\displaystyle \\oint h ( x ) \\mu ( x ) \\nabla _ { x } f ( x ) . n ( x ) d S ( x ) - \\int _ { \\mathcal X } d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) h ( x ) d x } \\\\ { = - \\displaystyle \\int _ { \\mathcal X } d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) h ( x ) d x } \\end{array}", + "type": "interline_equation", + "image_path": "7044b2b25edcff7a49e8b371559477ca589d2e81cbd9fe38756961647bc84d2d.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 111, + 484, + 514, + 514.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 111, + 514.0, + 514, + 544.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 111, + 544.0, + 514, + 574.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 136, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 138, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 138, + 596 + ], + "score": 1.0, + "content": "Hence,", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 582, + 138, + 596 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 599, + 497, + 654 + ], + "lines": [ + { + "bbox": [ + 115, + 599, + 497, + 654 + ], + "spans": [ + { + "bbox": [ + 115, + 599, + 497, + 654 + ], + "score": 0.94, + "content": "\\begin{array} { l } { { \\displaystyle { \\cal L } \\big ( f + \\epsilon h , \\lambda \\big ) = { \\cal L } \\big ( f , \\lambda \\big ) + \\epsilon \\bigg [ \\int _ { \\mathcal { X } } \\mu _ { 1 } ( x ) h ( x ) d x + \\lambda \\int _ { \\mathcal { X } } d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) h ( x ) d x \\bigg ] + { \\mathcal O } ( \\epsilon ^ { 2 } ) } } \\\\ { { \\displaystyle ~ = { \\cal L } \\big ( f , \\lambda \\big ) + \\epsilon \\int _ { \\mathcal { X } } \\bigg ( \\mu _ { 1 } ( x ) + \\lambda ~ d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) \\bigg ) h ( x ) d x + { \\mathcal O } ( \\epsilon ^ { 2 } ) } } \\end{array}", + "type": "interline_equation", + "image_path": "a9dd9b5d58684c4191e6db47e6dbcaf76d18e8ead39b57b378423481914d9421.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 115, + 599, + 497, + 617.3333333333334 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 115, + 617.3333333333334, + 497, + 635.6666666666667 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 115, + 635.6666666666667, + 497, + 654.0000000000001 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 663, + 452, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 661, + 453, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 219, + 679 + ], + "score": 1.0, + "content": "The functional derivative of", + "type": "text" + }, + { + "bbox": [ + 220, + 664, + 251, + 676 + ], + "score": 0.93, + "content": "L ( f , \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 661, + 333, + 679 + ], + "score": 1.0, + "content": ", at any test function", + "type": "text" + }, + { + "bbox": [ + 334, + 665, + 340, + 674 + ], + "score": 0.84, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 661, + 453, + 679 + ], + "score": 1.0, + "content": "vanishing on the boundary:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 661, + 453, + 679 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 681, + 462, + 737 + ], + "lines": [ + { + "bbox": [ + 149, + 681, + 462, + 737 + ], + "spans": [ + { + "bbox": [ + 149, + 681, + 462, + 737 + ], + "score": 0.93, + "content": "\\begin{array} { r c l } { \\displaystyle \\int _ { \\mathcal { X } } \\frac { \\partial L ( f , \\lambda ) } { \\partial f } ( x ) h ( x ) d x } & { = } & { \\displaystyle \\operatorname* { l i m } _ { \\epsilon \\to 0 } \\frac { L ( f + \\epsilon h , \\lambda ) - L ( f , \\lambda ) } { \\epsilon } } \\\\ & { = } & { \\displaystyle \\int _ { \\mathcal { X } } \\left( \\mu _ { 1 } ( x ) + \\lambda \\ d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) \\right) h ( x ) d x } \\end{array}", + "type": "interline_equation", + "image_path": "81c93e07c6b99398e043e25687dda7c763e16ed9766d7005b83e61eb6c834a60.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 149, + 681, + 462, + 699.6666666666666 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 149, + 699.6666666666666, + 462, + 718.3333333333333 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 149, + 718.3333333333333, + 462, + 736.9999999999999 + ], + "spans": [], + "index": 24 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 171, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 173, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 173, + 95 + ], + "score": 1.0, + "content": "Hence we have:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 90, + 400, + 117 + ], + "lines": [ + { + "bbox": [ + 210, + 90, + 400, + 117 + ], + "spans": [ + { + "bbox": [ + 210, + 90, + 400, + 117 + ], + "score": 0.94, + "content": "\\frac { \\partial L ( f , \\lambda ) } { \\partial f } ( x ) = \\mu _ { 1 } ( x ) + \\lambda ~ d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big )", + "type": "interline_equation", + "image_path": "c1523d2ee180d7ec6b5b83dfd878acebcb06f1da3767177b82e284234ce682b1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 210, + 90, + 400, + 117 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 117, + 360, + 129 + ], + "lines": [ + { + "bbox": [ + 105, + 116, + 361, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 170, + 131 + ], + "score": 1.0, + "content": "For the optimal", + "type": "text" + }, + { + "bbox": [ + 171, + 118, + 196, + 129 + ], + "score": 0.92, + "content": "f ^ { * } , \\lambda ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 116, + 361, + 131 + ], + "score": 1.0, + "content": "first order optimality condition gives us:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 229, + 131, + 382, + 146 + ], + "lines": [ + { + "bbox": [ + 229, + 131, + 382, + 146 + ], + "spans": [ + { + "bbox": [ + 229, + 131, + 382, + 146 + ], + "score": 0.91, + "content": "\\mu _ { 1 } ( x ) + \\lambda ^ { * } \\ d i v \\big ( \\mu ( x ) \\nabla _ { x } f ^ { * } ( x ) \\big ) = 0", + "type": "interline_equation", + "image_path": "cd4ce404d32cd6a9068826b7d6cb1688987f49294c15cd76d147d0c29859e519.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 229, + 131, + 382, + 146 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 149, + 124, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 149, + 123, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 123, + 160 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 161, + 355, + 188 + ], + "lines": [ + { + "bbox": [ + 235, + 161, + 355, + 188 + ], + "spans": [ + { + "bbox": [ + 235, + 161, + 355, + 188 + ], + "score": 0.94, + "content": "\\int _ { \\chi } \\left\\| \\nabla _ { x } f ^ { * } ( x ) \\right\\| ^ { 2 } \\mu ( x ) d x = 1", + "type": "interline_equation", + "image_path": "2a459cb4b29ba9ae1585c3ca41574b629dfa4958eb92e5bb5b99c8003c3abd72.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 235, + 161, + 355, + 188 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 190, + 307, + 202 + ], + "lines": [ + { + "bbox": [ + 106, + 189, + 308, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 308, + 203 + ], + "score": 1.0, + "content": "Note that (See for example (Alaoui et al., 2016)) :", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 204, + 429, + 219 + ], + "lines": [ + { + "bbox": [ + 181, + 204, + 429, + 219 + ], + "spans": [ + { + "bbox": [ + 181, + 204, + 429, + 219 + ], + "score": 0.89, + "content": "\\begin{array} { r } { d i v \\big ( \\mu ( x ) \\nabla _ { x } f ^ { * } ( x ) \\big ) = \\mu ( x ) \\Delta _ { 2 } f ^ { * } ( x ) + \\langle \\nabla _ { x } \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\rangle , } \\end{array}", + "type": "interline_equation", + "image_path": "b1bef5a7b6eed9ea60d574973bfdbcfd15bb6c6be883f59d037b727efff13616.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 181, + 204, + 429, + 219 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 222, + 350, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 350, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 129, + 237 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 130, + 222, + 239, + 235 + ], + "score": 0.92, + "content": "d i v ( \\nabla _ { x } f ^ { * } ( x ) ) = \\Delta _ { 2 } f ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 221, + 350, + 237 + ], + "score": 1.0, + "content": ". Hence from equation (22)", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 179, + 238, + 427, + 341 + ], + "lines": [ + { + "bbox": [ + 179, + 238, + 427, + 341 + ], + "spans": [ + { + "bbox": [ + 179, + 238, + 427, + 341 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad \\mu _ { 1 } ( x ) + \\lambda ^ { * } \\ : d i v \\ : \\left( \\mu ( x ) \\nabla _ { x } f ^ { * } ( x ) \\right) = 0 } \\\\ & { \\Rightarrow \\mu _ { 1 } ( x ) + \\lambda ^ { * } \\ : \\left( \\mu ( x ) \\Delta _ { 2 } f ^ { * } ( x ) + \\left. \\nabla _ { x } \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. \\right) = 0 } \\\\ & { \\Rightarrow \\mu _ { 1 } ( x ) + \\lambda ^ { * } \\ : \\mu ( x ) \\Delta _ { 2 } f ^ { * } ( x ) + \\lambda ^ { * } \\langle \\nabla _ { x } \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\rangle = 0 } \\\\ & { \\Rightarrow \\Delta _ { 2 } f ^ { * } ( x ) + \\left. \\frac { \\nabla _ { x } \\mu ( x ) } { \\mu ( x ) } , \\nabla _ { x } f ^ { * } ( x ) \\right. + \\frac { \\mu _ { 1 } ( x ) } { \\lambda ^ { * } \\mu ( x ) } = 0 } \\\\ & { \\Rightarrow \\Delta _ { 2 } f ^ { * } ( x ) + \\left. \\nabla _ { x } \\log \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. + \\frac { \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) } { \\lambda ^ { * } \\mu ( x ) } = 0 } \\end{array}", + "type": "interline_equation", + "image_path": "beeec075d5361465cef2a89020514bc6d424e95834e7833c291d2c7832b2bd2d.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 179, + 238, + 427, + 272.3333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 179, + 272.3333333333333, + 427, + 306.66666666666663 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 179, + 306.66666666666663, + 427, + 340.99999999999994 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 362, + 201, + 374 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 203, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 134, + 376 + ], + "score": 1.0, + "content": "Hence", + "type": "text" + }, + { + "bbox": [ + 135, + 363, + 161, + 375 + ], + "score": 0.92, + "content": "f ^ { * } , \\lambda ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 362, + 203, + 376 + ], + "score": 1.0, + "content": "satisfies :", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 378, + 424, + 404 + ], + "lines": [ + { + "bbox": [ + 187, + 378, + 424, + 404 + ], + "spans": [ + { + "bbox": [ + 187, + 378, + 424, + 404 + ], + "score": 0.89, + "content": "\\Delta _ { 2 } f ^ { * } ( x ) + \\langle \\nabla _ { x } \\log \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\rangle + \\frac { \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) } { \\lambda ^ { * } \\mu ( x ) } = 0", + "type": "interline_equation", + "image_path": "10dd53780e566aea6ffbd65f50fa596604613800d58ad75d9aadcfe5ab19643d.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 187, + 378, + 424, + 404 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 408, + 124, + 418 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 124, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 124, + 419 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 415, + 367, + 441 + ], + "lines": [ + { + "bbox": [ + 245, + 415, + 367, + 441 + ], + "spans": [ + { + "bbox": [ + 245, + 415, + 367, + 441 + ], + "score": 0.93, + "content": "\\int _ { \\mathcal { X } } \\left\\| \\nabla _ { x } f ^ { * } ( x ) \\right\\| ^ { 2 } \\mu ( x ) d x = 1 .", + "type": "interline_equation", + "image_path": "cca5768b101dcd5a1b17d65ddab7e431bafb05a06387687c1c4c28707fdb121b.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 245, + 415, + 367, + 441 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 441, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 440, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 505, + 454 + ], + "score": 1.0, + "content": "Let us verify that the optimal critic as found in the geometric definition (Theorem 2) of Sobolev IPM", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 452, + 161, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 161, + 464 + ], + "score": 1.0, + "content": "that satisfies:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 465, + 429, + 492 + ], + "lines": [ + { + "bbox": [ + 181, + 465, + 429, + 492 + ], + "spans": [ + { + "bbox": [ + 181, + 465, + 429, + 492 + ], + "score": 0.94, + "content": "\\nabla _ { i } f ^ { * } ( x ) = \\frac { \\partial f ^ { * } ( X ) } { \\partial x _ { i } } = \\frac { D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) } { \\lambda ^ { * } d ~ \\mu ( x ) } ~ \\forall ~ i \\in [ d ] ,", + "type": "interline_equation", + "image_path": "a385e01f2a089778c02d72b0eb70db6f2299d5d8798cac41695c7826794c564f.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 181, + 465, + 429, + 492 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 207, + 507 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 208, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 208, + 507 + ], + "score": 1.0, + "content": "satisfies indeed the PDE.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 335, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 507, + 332, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 272, + 531 + ], + "score": 1.0, + "content": "From equation (27), we want to compute", + "type": "text" + }, + { + "bbox": [ + 273, + 510, + 299, + 529 + ], + "score": 0.93, + "content": "\\frac { \\partial ^ { 2 } f ( \\boldsymbol { x } ) } { \\partial \\boldsymbol { x } _ { i } ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 507, + 327, + 531 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 327, + 515, + 332, + 523 + ], + "score": 0.71, + "content": "i", + "type": "inline_equation" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 114, + 531, + 496, + 628 + ], + "lines": [ + { + "bbox": [ + 114, + 531, + 496, + 628 + ], + "spans": [ + { + "bbox": [ + 114, + 531, + 496, + 628 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\frac { \\partial ^ { 2 } f ( x ) } { \\partial x _ { i } ^ { 2 } } = \\frac { 1 } { \\lambda ^ { * } d } \\Bigg [ \\frac { \\mu ( x ) \\left[ \\frac { \\partial } { \\partial x _ { i } } ( D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) ) \\right] - \\left[ D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) \\right] \\nabla _ { i } \\mu ( X ) } { \\mu ^ { 2 } ( x ) } \\Bigg ] } \\\\ & { \\quad \\quad \\quad = \\frac { 1 } { \\lambda ^ { * } d } \\Bigg [ \\frac { \\mu ( x ) \\left[ \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) \\right] - \\left[ D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) \\right] \\nabla _ { i } \\mu ( X ) } { \\mu ^ { 2 } ( x ) } \\Bigg ] } \\\\ & { \\quad \\quad \\quad = \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\lambda ^ { * } d \\mu ( x ) } - \\frac { \\nabla _ { i } \\mu ( x ) } { \\mu ( x ) } \\nabla _ { i } f ^ { * } ( x ) } \\end{array}", + "type": "interline_equation", + "image_path": "0b45fb9b896e9bd7757e9e66019989a5525ac7167f8f974dcd6b262eeadd8230.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 114, + 531, + 496, + 563.3333333333334 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 114, + 563.3333333333334, + 496, + 595.6666666666667 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 114, + 595.6666666666667, + 496, + 628.0000000000001 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 629, + 136, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 628, + 138, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 138, + 642 + ], + "score": 1.0, + "content": "Hence,", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 643, + 408, + 672 + ], + "lines": [ + { + "bbox": [ + 202, + 643, + 408, + 672 + ], + "spans": [ + { + "bbox": [ + 202, + 643, + 408, + 672 + ], + "score": 0.91, + "content": "{ \\frac { \\partial ^ { 2 } f ( x ) } { \\partial x _ { i } ^ { 2 } } } + { \\frac { \\nabla _ { i } \\mu ( x ) } { \\mu ( x ) } } \\nabla _ { i } f ( x ) + { \\frac { \\left( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) \\right) } { \\lambda ^ { * } d \\ \\mu ( x ) } } = 0", + "type": "interline_equation", + "image_path": "262116e0058415058c1dd78947f9663e7b7be4922baa2f2fa447f9872c3ef805.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 202, + 643, + 408, + 657.5 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 202, + 657.5, + 408, + 672.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 681, + 285, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 680, + 286, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 221, + 694 + ], + "score": 1.0, + "content": "Adding equation (28) for all", + "type": "text" + }, + { + "bbox": [ + 222, + 681, + 249, + 693 + ], + "score": 0.91, + "content": "i \\in [ d ]", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 680, + 286, + 694 + ], + "score": 1.0, + "content": ", we get :", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 696, + 424, + 731 + ], + "lines": [ + { + "bbox": [ + 186, + 696, + 424, + 731 + ], + "spans": [ + { + "bbox": [ + 186, + 696, + 424, + 731 + ], + "score": 0.93, + "content": "\\sum _ { i = 1 } ^ { d } \\left( \\frac { \\partial ^ { 2 } f ( x ) } { \\partial x _ { i } ^ { 2 } } + \\frac { \\nabla _ { i } \\mu ( x ) } { \\mu ( x ) } \\nabla _ { i } f ( x ) + \\frac { \\left( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) \\right) } { \\lambda ^ { * } d ~ \\mu ( x ) } \\right) = 0", + "type": "interline_equation", + "image_path": "3d53af26ce2d5382ee8ad3292746822cbb63110945a572ecdf223f3332304700.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 186, + 696, + 424, + 713.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 186, + 713.5, + 424, + 731.0 + ], + "spans": [], + "index": 29 + } + ] + } + ], + "page_idx": 22, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 171, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 173, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 173, + 95 + ], + "score": 1.0, + "content": "Hence we have:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 81, + 173, + 95 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 90, + 400, + 117 + ], + "lines": [ + { + "bbox": [ + 210, + 90, + 400, + 117 + ], + "spans": [ + { + "bbox": [ + 210, + 90, + 400, + 117 + ], + "score": 0.94, + "content": "\\frac { \\partial L ( f , \\lambda ) } { \\partial f } ( x ) = \\mu _ { 1 } ( x ) + \\lambda ~ d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big )", + "type": "interline_equation", + "image_path": "c1523d2ee180d7ec6b5b83dfd878acebcb06f1da3767177b82e284234ce682b1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 210, + 90, + 400, + 117 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 117, + 360, + 129 + ], + "lines": [ + { + "bbox": [ + 105, + 116, + 361, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 170, + 131 + ], + "score": 1.0, + "content": "For the optimal", + "type": "text" + }, + { + "bbox": [ + 171, + 118, + 196, + 129 + ], + "score": 0.92, + "content": "f ^ { * } , \\lambda ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 116, + 361, + 131 + ], + "score": 1.0, + "content": "first order optimality condition gives us:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 116, + 361, + 131 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 229, + 131, + 382, + 146 + ], + "lines": [ + { + "bbox": [ + 229, + 131, + 382, + 146 + ], + "spans": [ + { + "bbox": [ + 229, + 131, + 382, + 146 + ], + "score": 0.91, + "content": "\\mu _ { 1 } ( x ) + \\lambda ^ { * } \\ d i v \\big ( \\mu ( x ) \\nabla _ { x } f ^ { * } ( x ) \\big ) = 0", + "type": "interline_equation", + "image_path": "cd4ce404d32cd6a9068826b7d6cb1688987f49294c15cd76d147d0c29859e519.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 229, + 131, + 382, + 146 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 149, + 124, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 149, + 123, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 123, + 160 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 149, + 123, + 160 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 161, + 355, + 188 + ], + "lines": [ + { + "bbox": [ + 235, + 161, + 355, + 188 + ], + "spans": [ + { + "bbox": [ + 235, + 161, + 355, + 188 + ], + "score": 0.94, + "content": "\\int _ { \\chi } \\left\\| \\nabla _ { x } f ^ { * } ( x ) \\right\\| ^ { 2 } \\mu ( x ) d x = 1", + "type": "interline_equation", + "image_path": "2a459cb4b29ba9ae1585c3ca41574b629dfa4958eb92e5bb5b99c8003c3abd72.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 235, + 161, + 355, + 188 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 190, + 307, + 202 + ], + "lines": [ + { + "bbox": [ + 106, + 189, + 308, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 308, + 203 + ], + "score": 1.0, + "content": "Note that (See for example (Alaoui et al., 2016)) :", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 189, + 308, + 203 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 204, + 429, + 219 + ], + "lines": [ + { + "bbox": [ + 181, + 204, + 429, + 219 + ], + "spans": [ + { + "bbox": [ + 181, + 204, + 429, + 219 + ], + "score": 0.89, + "content": "\\begin{array} { r } { d i v \\big ( \\mu ( x ) \\nabla _ { x } f ^ { * } ( x ) \\big ) = \\mu ( x ) \\Delta _ { 2 } f ^ { * } ( x ) + \\langle \\nabla _ { x } \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\rangle , } \\end{array}", + "type": "interline_equation", + "image_path": "b1bef5a7b6eed9ea60d574973bfdbcfd15bb6c6be883f59d037b727efff13616.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 181, + 204, + 429, + 219 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 222, + 350, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 350, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 129, + 237 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 130, + 222, + 239, + 235 + ], + "score": 0.92, + "content": "d i v ( \\nabla _ { x } f ^ { * } ( x ) ) = \\Delta _ { 2 } f ^ { * } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 221, + 350, + 237 + ], + "score": 1.0, + "content": ". Hence from equation (22)", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 221, + 350, + 237 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 179, + 238, + 427, + 341 + ], + "lines": [ + { + "bbox": [ + 179, + 238, + 427, + 341 + ], + "spans": [ + { + "bbox": [ + 179, + 238, + 427, + 341 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad \\mu _ { 1 } ( x ) + \\lambda ^ { * } \\ : d i v \\ : \\left( \\mu ( x ) \\nabla _ { x } f ^ { * } ( x ) \\right) = 0 } \\\\ & { \\Rightarrow \\mu _ { 1 } ( x ) + \\lambda ^ { * } \\ : \\left( \\mu ( x ) \\Delta _ { 2 } f ^ { * } ( x ) + \\left. \\nabla _ { x } \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. \\right) = 0 } \\\\ & { \\Rightarrow \\mu _ { 1 } ( x ) + \\lambda ^ { * } \\ : \\mu ( x ) \\Delta _ { 2 } f ^ { * } ( x ) + \\lambda ^ { * } \\langle \\nabla _ { x } \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\rangle = 0 } \\\\ & { \\Rightarrow \\Delta _ { 2 } f ^ { * } ( x ) + \\left. \\frac { \\nabla _ { x } \\mu ( x ) } { \\mu ( x ) } , \\nabla _ { x } f ^ { * } ( x ) \\right. + \\frac { \\mu _ { 1 } ( x ) } { \\lambda ^ { * } \\mu ( x ) } = 0 } \\\\ & { \\Rightarrow \\Delta _ { 2 } f ^ { * } ( x ) + \\left. \\nabla _ { x } \\log \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. + \\frac { \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) } { \\lambda ^ { * } \\mu ( x ) } = 0 } \\end{array}", + "type": "interline_equation", + "image_path": "beeec075d5361465cef2a89020514bc6d424e95834e7833c291d2c7832b2bd2d.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 179, + 238, + 427, + 272.3333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 179, + 272.3333333333333, + 427, + 306.66666666666663 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 179, + 306.66666666666663, + 427, + 340.99999999999994 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 362, + 201, + 374 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 203, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 134, + 376 + ], + "score": 1.0, + "content": "Hence", + "type": "text" + }, + { + "bbox": [ + 135, + 363, + 161, + 375 + ], + "score": 0.92, + "content": "f ^ { * } , \\lambda ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 362, + 203, + 376 + ], + "score": 1.0, + "content": "satisfies :", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 362, + 203, + 376 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 378, + 424, + 404 + ], + "lines": [ + { + "bbox": [ + 187, + 378, + 424, + 404 + ], + "spans": [ + { + "bbox": [ + 187, + 378, + 424, + 404 + ], + "score": 0.89, + "content": "\\Delta _ { 2 } f ^ { * } ( x ) + \\langle \\nabla _ { x } \\log \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\rangle + \\frac { \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) } { \\lambda ^ { * } \\mu ( x ) } = 0", + "type": "interline_equation", + "image_path": "10dd53780e566aea6ffbd65f50fa596604613800d58ad75d9aadcfe5ab19643d.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 187, + 378, + 424, + 404 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 408, + 124, + 418 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 124, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 124, + 419 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 407, + 124, + 419 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 415, + 367, + 441 + ], + "lines": [ + { + "bbox": [ + 245, + 415, + 367, + 441 + ], + "spans": [ + { + "bbox": [ + 245, + 415, + 367, + 441 + ], + "score": 0.93, + "content": "\\int _ { \\mathcal { X } } \\left\\| \\nabla _ { x } f ^ { * } ( x ) \\right\\| ^ { 2 } \\mu ( x ) d x = 1 .", + "type": "interline_equation", + "image_path": "cca5768b101dcd5a1b17d65ddab7e431bafb05a06387687c1c4c28707fdb121b.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 245, + 415, + 367, + 441 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 441, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 440, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 505, + 454 + ], + "score": 1.0, + "content": "Let us verify that the optimal critic as found in the geometric definition (Theorem 2) of Sobolev IPM", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 452, + 161, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 161, + 464 + ], + "score": 1.0, + "content": "that satisfies:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 440, + 505, + 464 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 465, + 429, + 492 + ], + "lines": [ + { + "bbox": [ + 181, + 465, + 429, + 492 + ], + "spans": [ + { + "bbox": [ + 181, + 465, + 429, + 492 + ], + "score": 0.94, + "content": "\\nabla _ { i } f ^ { * } ( x ) = \\frac { \\partial f ^ { * } ( X ) } { \\partial x _ { i } } = \\frac { D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) } { \\lambda ^ { * } d ~ \\mu ( x ) } ~ \\forall ~ i \\in [ d ] ,", + "type": "interline_equation", + "image_path": "a385e01f2a089778c02d72b0eb70db6f2299d5d8798cac41695c7826794c564f.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 181, + 465, + 429, + 492 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 207, + 507 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 208, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 208, + 507 + ], + "score": 1.0, + "content": "satisfies indeed the PDE.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 106, + 495, + 208, + 507 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 335, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 507, + 332, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 272, + 531 + ], + "score": 1.0, + "content": "From equation (27), we want to compute", + "type": "text" + }, + { + "bbox": [ + 273, + 510, + 299, + 529 + ], + "score": 0.93, + "content": "\\frac { \\partial ^ { 2 } f ( \\boldsymbol { x } ) } { \\partial \\boldsymbol { x } _ { i } ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 507, + 327, + 531 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 327, + 515, + 332, + 523 + ], + "score": 0.71, + "content": "i", + "type": "inline_equation" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 507, + 332, + 531 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 114, + 531, + 496, + 628 + ], + "lines": [ + { + "bbox": [ + 114, + 531, + 496, + 628 + ], + "spans": [ + { + "bbox": [ + 114, + 531, + 496, + 628 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\frac { \\partial ^ { 2 } f ( x ) } { \\partial x _ { i } ^ { 2 } } = \\frac { 1 } { \\lambda ^ { * } d } \\Bigg [ \\frac { \\mu ( x ) \\left[ \\frac { \\partial } { \\partial x _ { i } } ( D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) ) \\right] - \\left[ D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) \\right] \\nabla _ { i } \\mu ( X ) } { \\mu ^ { 2 } ( x ) } \\Bigg ] } \\\\ & { \\quad \\quad \\quad = \\frac { 1 } { \\lambda ^ { * } d } \\Bigg [ \\frac { \\mu ( x ) \\left[ \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) \\right] - \\left[ D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) \\right] \\nabla _ { i } \\mu ( X ) } { \\mu ^ { 2 } ( x ) } \\Bigg ] } \\\\ & { \\quad \\quad \\quad = \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\lambda ^ { * } d \\mu ( x ) } - \\frac { \\nabla _ { i } \\mu ( x ) } { \\mu ( x ) } \\nabla _ { i } f ^ { * } ( x ) } \\end{array}", + "type": "interline_equation", + "image_path": "0b45fb9b896e9bd7757e9e66019989a5525ac7167f8f974dcd6b262eeadd8230.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 114, + 531, + 496, + 563.3333333333334 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 114, + 563.3333333333334, + 496, + 595.6666666666667 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 114, + 595.6666666666667, + 496, + 628.0000000000001 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 629, + 136, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 628, + 138, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 138, + 642 + ], + "score": 1.0, + "content": "Hence,", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 628, + 138, + 642 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 643, + 408, + 672 + ], + "lines": [ + { + "bbox": [ + 202, + 643, + 408, + 672 + ], + "spans": [ + { + "bbox": [ + 202, + 643, + 408, + 672 + ], + "score": 0.91, + "content": "{ \\frac { \\partial ^ { 2 } f ( x ) } { \\partial x _ { i } ^ { 2 } } } + { \\frac { \\nabla _ { i } \\mu ( x ) } { \\mu ( x ) } } \\nabla _ { i } f ( x ) + { \\frac { \\left( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) \\right) } { \\lambda ^ { * } d \\ \\mu ( x ) } } = 0", + "type": "interline_equation", + "image_path": "262116e0058415058c1dd78947f9663e7b7be4922baa2f2fa447f9872c3ef805.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 202, + 643, + 408, + 657.5 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 202, + 657.5, + 408, + 672.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 681, + 285, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 680, + 286, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 221, + 694 + ], + "score": 1.0, + "content": "Adding equation (28) for all", + "type": "text" + }, + { + "bbox": [ + 222, + 681, + 249, + 693 + ], + "score": 0.91, + "content": "i \\in [ d ]", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 680, + 286, + 694 + ], + "score": 1.0, + "content": ", we get :", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 680, + 286, + 694 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 696, + 424, + 731 + ], + "lines": [ + { + "bbox": [ + 186, + 696, + 424, + 731 + ], + "spans": [ + { + "bbox": [ + 186, + 696, + 424, + 731 + ], + "score": 0.93, + "content": "\\sum _ { i = 1 } ^ { d } \\left( \\frac { \\partial ^ { 2 } f ( x ) } { \\partial x _ { i } ^ { 2 } } + \\frac { \\nabla _ { i } \\mu ( x ) } { \\mu ( x ) } \\nabla _ { i } f ( x ) + \\frac { \\left( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) \\right) } { \\lambda ^ { * } d ~ \\mu ( x ) } \\right) = 0", + "type": "interline_equation", + "image_path": "3d53af26ce2d5382ee8ad3292746822cbb63110945a572ecdf223f3332304700.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 186, + 696, + 424, + 713.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 186, + 713.5, + 424, + 731.0 + ], + "spans": [], + "index": 29 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 104 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 207, + 96 + ], + "score": 1.0, + "content": "As a result, the solution", + "type": "text" + }, + { + "bbox": [ + 208, + 83, + 219, + 94 + ], + "score": 0.89, + "content": "f ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "of the partial differential equation given in equation (25) satisfies the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 154, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 154, + 108 + ], + "score": 1.0, + "content": "following :", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 102, + 402, + 131 + ], + "lines": [ + { + "bbox": [ + 209, + 102, + 402, + 131 + ], + "spans": [ + { + "bbox": [ + 209, + 102, + 402, + 131 + ], + "score": 0.94, + "content": "\\frac { \\partial f ^ { * } ( x ) } { \\partial x _ { i } } = \\frac { D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) } { \\lambda ^ { * } d ~ \\mu ( x ) } ~ \\forall i \\in [ d ]", + "type": "interline_equation", + "image_path": "44dbea6a536cb925ecc8309bbfa451d1a5e906fefef60ca00d84d9aed3904417.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 209, + 102, + 402, + 116.5 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 209, + 116.5, + 402, + 131.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 138, + 331, + 150 + ], + "lines": [ + { + "bbox": [ + 106, + 138, + 331, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 313, + 151 + ], + "score": 1.0, + "content": "Using the constraint in (26) we can get the value of", + "type": "text" + }, + { + "bbox": [ + 313, + 139, + 325, + 149 + ], + "score": 0.87, + "content": "\\lambda ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 138, + 331, + 151 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 171, + 155, + 437, + 257 + ], + "lines": [ + { + "bbox": [ + 171, + 155, + 437, + 257 + ], + "spans": [ + { + "bbox": [ + 171, + 155, + 437, + 257 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad \\displaystyle \\int \\| \\nabla f ^ { * } ( \\boldsymbol { x } ) \\| ^ { 2 } \\mu ( \\boldsymbol { x } ) d \\boldsymbol { x } = 1 } \\\\ & { \\Rightarrow \\displaystyle \\int \\sum _ { i = 1 } ^ { d } \\left( \\frac { \\partial f ^ { * } ( \\boldsymbol { x } ) } { \\partial x _ { i } } \\right) ^ { 2 } \\mu ( \\boldsymbol { x } ) d \\boldsymbol { x } = 1 } \\\\ & { \\Rightarrow \\lambda ^ { * } = \\displaystyle \\frac { 1 } { d } \\sqrt { \\displaystyle \\sum _ { i = 1 } ^ { d } \\int \\frac { \\left( D ^ { - i } F _ { \\mathbb { Q } } ( \\boldsymbol { x } ) - D ^ { - i } F _ { \\mathbb { P } } ( \\boldsymbol { x } ) \\right) ^ { 2 } } { \\mu ( \\boldsymbol { x } ) } d \\boldsymbol { x } } = S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "c823ecf201c6656506826bf064a968d261c6cd69c715fcf224521bb05e3a3655.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 171, + 155, + 437, + 189.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 171, + 189.0, + 437, + 223.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 171, + 223.0, + 437, + 257.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 289, + 375, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 289, + 374, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 374, + 302 + ], + "score": 1.0, + "content": "Proof of Theorem 4. Define the Stein operator (Oates et al., 2017):", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 306, + 441, + 356 + ], + "lines": [ + { + "bbox": [ + 168, + 306, + 441, + 356 + ], + "spans": [ + { + "bbox": [ + 168, + 306, + 441, + 356 + ], + "score": 0.94, + "content": "\\begin{array} { l l l } { { T ( \\mu ) [ \\nabla _ { x } f ( x ) ] } } & { { = } } & { { \\displaystyle \\frac { 1 } { 2 } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } \\log \\mu ( x ) \\right. + \\displaystyle \\frac { 1 } { 2 } \\left. \\nabla _ { x } , \\nabla _ { x } f ( x ) \\right. } } \\\\ { { } } & { { = } } & { { \\displaystyle \\frac { 1 } { 2 } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } \\log \\mu ( x ) \\right. + \\displaystyle \\frac { 1 } { 2 } \\Delta _ { 2 } f ( x ) . } } \\end{array}", + "type": "interline_equation", + "image_path": "6d3416316aee793bd2d6dc18e1f1704ec9b17d4ddc80d99466a1814424dc821d.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 168, + 306, + 441, + 322.6666666666667 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 168, + 322.6666666666667, + 441, + 339.33333333333337 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 168, + 339.33333333333337, + 441, + 356.00000000000006 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 357, + 504, + 380 + ], + "lines": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "This operator was later used in defining the Stein discrepancy (Gorham & Mackey, 2015; Liu et al.,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 368, + 288, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 288, + 381 + ], + "score": 1.0, + "content": "2016; Chwialkowski et al., 2016; Liu, 2017).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 386, + 504, + 408 + ], + "lines": [ + { + "bbox": [ + 105, + 384, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 506, + 399 + ], + "score": 1.0, + "content": "Recall that Barbour generator theory provides us a way of constructing such operators that produce", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 397, + 317, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 211, + 408 + ], + "score": 1.0, + "content": "mean zero function under", + "type": "text" + }, + { + "bbox": [ + 211, + 398, + 218, + 408 + ], + "score": 0.79, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 397, + 317, + 408 + ], + "score": 1.0, + "content": ". It is easy to verify that:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "interline_equation", + "bbox": [ + 255, + 413, + 356, + 427 + ], + "lines": [ + { + "bbox": [ + 255, + 413, + 356, + 427 + ], + "spans": [ + { + "bbox": [ + 255, + 413, + 356, + 427 + ], + "score": 0.91, + "content": "\\mathbb { E } _ { x \\sim \\mu } T ( \\mu ) \\nabla _ { x } f ( x ) = 0 .", + "type": "interline_equation", + "image_path": "f8c347b195c8c08fb3d2aa3ef252e2e9c2891841e85998a89e67c1105cece808.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 255, + 413, + 356, + 427 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 437, + 505, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "score": 1.0, + "content": "Recall that this operator arises from the overdamped Langevin diffusion, defined by the stochastic", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 447, + 192, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 192, + 461 + ], + "score": 1.0, + "content": "differential equation:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 458, + 365, + 482 + ], + "lines": [ + { + "bbox": [ + 245, + 458, + 365, + 482 + ], + "spans": [ + { + "bbox": [ + 245, + 458, + 365, + 482 + ], + "score": 0.94, + "content": "d x _ { t } = \\frac { 1 } { 2 } \\nabla _ { x } \\log \\mu ( x _ { t } ) + d W _ { t }", + "type": "interline_equation", + "image_path": "9a775c228f7a2803176a2f73ae2d6c0b7dd4ab179b80e48268df058f76dd8724.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 245, + 458, + 365, + 482 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 506, + 507 + ], + "lines": [ + { + "bbox": [ + 105, + 482, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 135, + 498 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 136, + 484, + 171, + 496 + ], + "score": 0.92, + "content": "( W _ { t } ) _ { t \\geq 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 482, + 505, + 498 + ], + "score": 1.0, + "content": "is a Wiener process. This is related to plug and play networks for generating", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 495, + 420, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 420, + 507 + ], + "score": 1.0, + "content": "samples if the distribution is known, using the stochastic differential equation.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 504, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 521, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 385, + 536 + ], + "score": 1.0, + "content": "From Theorem 3, it is easy to see that the PDE the Sobolev Critic", + "type": "text" + }, + { + "bbox": [ + 385, + 523, + 473, + 536 + ], + "score": 0.92, + "content": "( f ^ { * } , \\lambda ^ { * } = { \\cal S } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 521, + 505, + 536 + ], + "score": 1.0, + "content": "can be", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 534, + 285, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 285, + 547 + ], + "score": 1.0, + "content": "written in term of Stein Operator as follows:", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 229, + 550, + 382, + 577 + ], + "lines": [ + { + "bbox": [ + 229, + 550, + 382, + 577 + ], + "spans": [ + { + "bbox": [ + 229, + 550, + 382, + 577 + ], + "score": 0.93, + "content": "T ( \\mu ) [ \\nabla _ { x } f ^ { * } ] ( x ) = \\frac { 1 } { 2 \\lambda ^ { * } } \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\mu ( x ) }", + "type": "interline_equation", + "image_path": "13a63ed56bfbc92d7850451825a15da185431897b980e264e1a4742e8525a7e6.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 229, + 550, + 382, + 577 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 581, + 353, + 593 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 354, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 340, + 596 + ], + "score": 1.0, + "content": "Taking absolute values and the expectation with respect to", + "type": "text" + }, + { + "bbox": [ + 341, + 582, + 350, + 593 + ], + "score": 0.85, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 579, + 354, + 596 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 597, + 434, + 626 + ], + "lines": [ + { + "bbox": [ + 178, + 597, + 434, + 626 + ], + "spans": [ + { + "bbox": [ + 178, + 597, + 434, + 626 + ], + "score": 0.94, + "content": "\\left| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ T ( \\mu ) \\nabla _ { x } f ^ { * } ( x ) \\right] \\right| = { \\frac { 1 } { 2 S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } } \\left| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ { \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\mu ( x ) } } \\right] \\right|", + "type": "interline_equation", + "image_path": "3fd5d739cc15b4036ab687140a42ca69ddf4b38c4231467557e8a98af40f2ed6.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 178, + 597, + 434, + 606.6666666666666 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 178, + 606.6666666666666, + 434, + 616.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 178, + 616.3333333333333, + 434, + 625.9999999999999 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 298, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 299, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 299, + 650 + ], + "score": 1.0, + "content": "Recall that the definition of Stein Discrepancy :", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 652, + 393, + 675 + ], + "lines": [ + { + "bbox": [ + 218, + 652, + 393, + 675 + ], + "spans": [ + { + "bbox": [ + 218, + 652, + 393, + 675 + ], + "score": 0.93, + "content": "{ \\mathbb S } ( \\mathbb Q , \\mu ) = \\operatorname* { s u p } _ { \\vec { g } \\in \\mathcal L _ { 2 } ( \\mathcal X , \\mu ) ^ { \\otimes d } } \\left| \\mathbb E _ { \\boldsymbol { x } \\sim \\mathbb Q } \\left[ T ( \\mu ) \\vec { g } ( \\boldsymbol { x } ) \\right] \\right|", + "type": "interline_equation", + "image_path": "831616c30044b22fdf8bee49a8388a5f44daad6efb93275abce91af2a02ed63b.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 218, + 652, + 393, + 675 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 685, + 279, + 697 + ], + "lines": [ + { + "bbox": [ + 105, + 684, + 280, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 280, + 698 + ], + "score": 1.0, + "content": "It follows that Sobolev IPM critic satisfies:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 702, + 376, + 716 + ], + "lines": [ + { + "bbox": [ + 234, + 702, + 376, + 716 + ], + "spans": [ + { + "bbox": [ + 234, + 702, + 376, + 716 + ], + "score": 0.89, + "content": "| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ T ( \\mu ) \\nabla _ { x } f ^ { * } ( x ) \\right] | \\leq \\mathbb { S } ( \\mathbb { Q } , \\mu ) ,", + "type": "interline_equation", + "image_path": "a190696d8767374228628efbf39585e8252f102eb0821ad165a16738f674c1e2.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 234, + 702, + 376, + 716 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 720, + 270, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 718, + 270, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 270, + 734 + ], + "score": 1.0, + "content": "Hence we have the following inequality:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + } + ], + "page_idx": 23, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 16, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 266, + 505, + 277 + ], + "lines": [ + { + "bbox": [ + 495, + 267, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 495, + 267, + 505, + 278 + ], + "score": 0.996, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 104 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 207, + 96 + ], + "score": 1.0, + "content": "As a result, the solution", + "type": "text" + }, + { + "bbox": [ + 208, + 83, + 219, + 94 + ], + "score": 0.89, + "content": "f ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "of the partial differential equation given in equation (25) satisfies the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 154, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 154, + 108 + ], + "score": 1.0, + "content": "following :", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 108 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 102, + 402, + 131 + ], + "lines": [ + { + "bbox": [ + 209, + 102, + 402, + 131 + ], + "spans": [ + { + "bbox": [ + 209, + 102, + 402, + 131 + ], + "score": 0.94, + "content": "\\frac { \\partial f ^ { * } ( x ) } { \\partial x _ { i } } = \\frac { D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) } { \\lambda ^ { * } d ~ \\mu ( x ) } ~ \\forall i \\in [ d ]", + "type": "interline_equation", + "image_path": "44dbea6a536cb925ecc8309bbfa451d1a5e906fefef60ca00d84d9aed3904417.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 209, + 102, + 402, + 116.5 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 209, + 116.5, + 402, + 131.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 138, + 331, + 150 + ], + "lines": [ + { + "bbox": [ + 106, + 138, + 331, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 313, + 151 + ], + "score": 1.0, + "content": "Using the constraint in (26) we can get the value of", + "type": "text" + }, + { + "bbox": [ + 313, + 139, + 325, + 149 + ], + "score": 0.87, + "content": "\\lambda ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 138, + 331, + 151 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 138, + 331, + 151 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 171, + 155, + 437, + 257 + ], + "lines": [ + { + "bbox": [ + 171, + 155, + 437, + 257 + ], + "spans": [ + { + "bbox": [ + 171, + 155, + 437, + 257 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad \\displaystyle \\int \\| \\nabla f ^ { * } ( \\boldsymbol { x } ) \\| ^ { 2 } \\mu ( \\boldsymbol { x } ) d \\boldsymbol { x } = 1 } \\\\ & { \\Rightarrow \\displaystyle \\int \\sum _ { i = 1 } ^ { d } \\left( \\frac { \\partial f ^ { * } ( \\boldsymbol { x } ) } { \\partial x _ { i } } \\right) ^ { 2 } \\mu ( \\boldsymbol { x } ) d \\boldsymbol { x } = 1 } \\\\ & { \\Rightarrow \\lambda ^ { * } = \\displaystyle \\frac { 1 } { d } \\sqrt { \\displaystyle \\sum _ { i = 1 } ^ { d } \\int \\frac { \\left( D ^ { - i } F _ { \\mathbb { Q } } ( \\boldsymbol { x } ) - D ^ { - i } F _ { \\mathbb { P } } ( \\boldsymbol { x } ) \\right) ^ { 2 } } { \\mu ( \\boldsymbol { x } ) } d \\boldsymbol { x } } = S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "c823ecf201c6656506826bf064a968d261c6cd69c715fcf224521bb05e3a3655.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 171, + 155, + 437, + 189.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 171, + 189.0, + 437, + 223.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 171, + 223.0, + 437, + 257.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 289, + 375, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 289, + 374, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 374, + 302 + ], + "score": 1.0, + "content": "Proof of Theorem 4. Define the Stein operator (Oates et al., 2017):", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 289, + 374, + 302 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 306, + 441, + 356 + ], + "lines": [ + { + "bbox": [ + 168, + 306, + 441, + 356 + ], + "spans": [ + { + "bbox": [ + 168, + 306, + 441, + 356 + ], + "score": 0.94, + "content": "\\begin{array} { l l l } { { T ( \\mu ) [ \\nabla _ { x } f ( x ) ] } } & { { = } } & { { \\displaystyle \\frac { 1 } { 2 } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } \\log \\mu ( x ) \\right. + \\displaystyle \\frac { 1 } { 2 } \\left. \\nabla _ { x } , \\nabla _ { x } f ( x ) \\right. } } \\\\ { { } } & { { = } } & { { \\displaystyle \\frac { 1 } { 2 } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } \\log \\mu ( x ) \\right. + \\displaystyle \\frac { 1 } { 2 } \\Delta _ { 2 } f ( x ) . } } \\end{array}", + "type": "interline_equation", + "image_path": "6d3416316aee793bd2d6dc18e1f1704ec9b17d4ddc80d99466a1814424dc821d.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 168, + 306, + 441, + 322.6666666666667 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 168, + 322.6666666666667, + 441, + 339.33333333333337 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 168, + 339.33333333333337, + 441, + 356.00000000000006 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 357, + 504, + 380 + ], + "lines": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "This operator was later used in defining the Stein discrepancy (Gorham & Mackey, 2015; Liu et al.,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 368, + 288, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 288, + 381 + ], + "score": 1.0, + "content": "2016; Chwialkowski et al., 2016; Liu, 2017).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 357, + 505, + 381 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 386, + 504, + 408 + ], + "lines": [ + { + "bbox": [ + 105, + 384, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 506, + 399 + ], + "score": 1.0, + "content": "Recall that Barbour generator theory provides us a way of constructing such operators that produce", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 397, + 317, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 211, + 408 + ], + "score": 1.0, + "content": "mean zero function under", + "type": "text" + }, + { + "bbox": [ + 211, + 398, + 218, + 408 + ], + "score": 0.79, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 397, + 317, + 408 + ], + "score": 1.0, + "content": ". It is easy to verify that:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 384, + 506, + 408 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 255, + 413, + 356, + 427 + ], + "lines": [ + { + "bbox": [ + 255, + 413, + 356, + 427 + ], + "spans": [ + { + "bbox": [ + 255, + 413, + 356, + 427 + ], + "score": 0.91, + "content": "\\mathbb { E } _ { x \\sim \\mu } T ( \\mu ) \\nabla _ { x } f ( x ) = 0 .", + "type": "interline_equation", + "image_path": "f8c347b195c8c08fb3d2aa3ef252e2e9c2891841e85998a89e67c1105cece808.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 255, + 413, + 356, + 427 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 437, + 505, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "score": 1.0, + "content": "Recall that this operator arises from the overdamped Langevin diffusion, defined by the stochastic", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 447, + 192, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 192, + 461 + ], + "score": 1.0, + "content": "differential equation:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 437, + 505, + 461 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 458, + 365, + 482 + ], + "lines": [ + { + "bbox": [ + 245, + 458, + 365, + 482 + ], + "spans": [ + { + "bbox": [ + 245, + 458, + 365, + 482 + ], + "score": 0.94, + "content": "d x _ { t } = \\frac { 1 } { 2 } \\nabla _ { x } \\log \\mu ( x _ { t } ) + d W _ { t }", + "type": "interline_equation", + "image_path": "9a775c228f7a2803176a2f73ae2d6c0b7dd4ab179b80e48268df058f76dd8724.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 245, + 458, + 365, + 482 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 506, + 507 + ], + "lines": [ + { + "bbox": [ + 105, + 482, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 135, + 498 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 136, + 484, + 171, + 496 + ], + "score": 0.92, + "content": "( W _ { t } ) _ { t \\geq 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 482, + 505, + 498 + ], + "score": 1.0, + "content": "is a Wiener process. This is related to plug and play networks for generating", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 495, + 420, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 420, + 507 + ], + "score": 1.0, + "content": "samples if the distribution is known, using the stochastic differential equation.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 482, + 505, + 507 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 504, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 521, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 385, + 536 + ], + "score": 1.0, + "content": "From Theorem 3, it is easy to see that the PDE the Sobolev Critic", + "type": "text" + }, + { + "bbox": [ + 385, + 523, + 473, + 536 + ], + "score": 0.92, + "content": "( f ^ { * } , \\lambda ^ { * } = { \\cal S } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 521, + 505, + 536 + ], + "score": 1.0, + "content": "can be", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 534, + 285, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 285, + 547 + ], + "score": 1.0, + "content": "written in term of Stein Operator as follows:", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 521, + 505, + 547 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 229, + 550, + 382, + 577 + ], + "lines": [ + { + "bbox": [ + 229, + 550, + 382, + 577 + ], + "spans": [ + { + "bbox": [ + 229, + 550, + 382, + 577 + ], + "score": 0.93, + "content": "T ( \\mu ) [ \\nabla _ { x } f ^ { * } ] ( x ) = \\frac { 1 } { 2 \\lambda ^ { * } } \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\mu ( x ) }", + "type": "interline_equation", + "image_path": "13a63ed56bfbc92d7850451825a15da185431897b980e264e1a4742e8525a7e6.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 229, + 550, + 382, + 577 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 581, + 353, + 593 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 354, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 340, + 596 + ], + "score": 1.0, + "content": "Taking absolute values and the expectation with respect to", + "type": "text" + }, + { + "bbox": [ + 341, + 582, + 350, + 593 + ], + "score": 0.85, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 579, + 354, + 596 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 579, + 354, + 596 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 597, + 434, + 626 + ], + "lines": [ + { + "bbox": [ + 178, + 597, + 434, + 626 + ], + "spans": [ + { + "bbox": [ + 178, + 597, + 434, + 626 + ], + "score": 0.94, + "content": "\\left| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ T ( \\mu ) \\nabla _ { x } f ^ { * } ( x ) \\right] \\right| = { \\frac { 1 } { 2 S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } } \\left| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ { \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\mu ( x ) } } \\right] \\right|", + "type": "interline_equation", + "image_path": "3fd5d739cc15b4036ab687140a42ca69ddf4b38c4231467557e8a98af40f2ed6.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 178, + 597, + 434, + 606.6666666666666 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 178, + 606.6666666666666, + 434, + 616.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 178, + 616.3333333333333, + 434, + 625.9999999999999 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 298, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 299, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 299, + 650 + ], + "score": 1.0, + "content": "Recall that the definition of Stein Discrepancy :", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 633, + 299, + 650 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 652, + 393, + 675 + ], + "lines": [ + { + "bbox": [ + 218, + 652, + 393, + 675 + ], + "spans": [ + { + "bbox": [ + 218, + 652, + 393, + 675 + ], + "score": 0.93, + "content": "{ \\mathbb S } ( \\mathbb Q , \\mu ) = \\operatorname* { s u p } _ { \\vec { g } \\in \\mathcal L _ { 2 } ( \\mathcal X , \\mu ) ^ { \\otimes d } } \\left| \\mathbb E _ { \\boldsymbol { x } \\sim \\mathbb Q } \\left[ T ( \\mu ) \\vec { g } ( \\boldsymbol { x } ) \\right] \\right|", + "type": "interline_equation", + "image_path": "831616c30044b22fdf8bee49a8388a5f44daad6efb93275abce91af2a02ed63b.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 218, + 652, + 393, + 675 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 685, + 279, + 697 + ], + "lines": [ + { + "bbox": [ + 105, + 684, + 280, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 280, + 698 + ], + "score": 1.0, + "content": "It follows that Sobolev IPM critic satisfies:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 684, + 280, + 698 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 702, + 376, + 716 + ], + "lines": [ + { + "bbox": [ + 234, + 702, + 376, + 716 + ], + "spans": [ + { + "bbox": [ + 234, + 702, + 376, + 716 + ], + "score": 0.89, + "content": "| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ T ( \\mu ) \\nabla _ { x } f ^ { * } ( x ) \\right] | \\leq \\mathbb { S } ( \\mathbb { Q } , \\mu ) ,", + "type": "interline_equation", + "image_path": "a190696d8767374228628efbf39585e8252f102eb0821ad165a16738f674c1e2.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 234, + 702, + 376, + 716 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 720, + 270, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 718, + 270, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 270, + 734 + ], + "score": 1.0, + "content": "Hence we have the following inequality:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 718, + 270, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 210, + 94, + 402, + 122 + ], + "lines": [ + { + "bbox": [ + 210, + 94, + 402, + 122 + ], + "spans": [ + { + "bbox": [ + 210, + 94, + 402, + 122 + ], + "score": 0.91, + "content": "\\frac { 1 } { 2 S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } \\left| \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mathbb { Q } } \\left[ \\frac { \\mathbb { Q } ( \\boldsymbol { x } ) - \\mathbb { P } ( \\boldsymbol { x } ) } { \\mu ( \\boldsymbol { x } ) } \\right] \\right| \\leq \\mathbb { S } ( \\mathbb { Q } , \\mu )", + "type": "interline_equation", + "image_path": "9cc512735ea0762daf1b551fd65435bd573c1723f1adfe4a1105d23ea41cc7a5.jpg" + } + ] + } + ], + "index": 0, + "virtual_lines": [ + { + "bbox": [ + 210, + 94, + 402, + 122 + ], + "spans": [], + "index": 0 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 127, + 191, + 139 + ], + "lines": [ + { + "bbox": [ + 105, + 126, + 193, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 193, + 140 + ], + "score": 1.0, + "content": "This is equivalent to:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 154, + 146, + 450, + 175 + ], + "lines": [ + { + "bbox": [ + 154, + 146, + 450, + 175 + ], + "spans": [ + { + "bbox": [ + 154, + 146, + 450, + 175 + ], + "score": 0.82, + "content": "\\left| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ { \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\mu ( x ) } } \\right] \\right| \\leq 2 \\qquad { \\underset { \\Delta \\in { \\mathbb { Q } } , \\mu } { \\underbrace { \\mathbb { S } ( \\mathbb { Q } , \\mu ) } } } \\qquad { \\underset { \\Delta \\in { \\mathbb { P } } } { \\underbrace { { \\mathcal { S } } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } } }", + "type": "interline_equation", + "image_path": "97c900eaf9b2de3c35f5d3e37769a081bce9215000b150e7a7c095b7fbee1211.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 154, + 146, + 450, + 155.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 154, + 155.66666666666666, + 450, + 165.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 154, + 165.33333333333331, + 450, + 174.99999999999997 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 190, + 189, + 202 + ], + "lines": [ + { + "bbox": [ + 106, + 189, + 191, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 191, + 203 + ], + "score": 1.0, + "content": "Similarly we obtain:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 210, + 437, + 238 + ], + "lines": [ + { + "bbox": [ + 170, + 210, + 437, + 238 + ], + "spans": [ + { + "bbox": [ + 170, + 210, + 437, + 238 + ], + "score": 0.86, + "content": "\\left| \\mathbb { E } _ { x \\sim \\mathbb { P } } \\left[ { \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\mu ( x ) } } \\right] \\right| \\leq 2 \\qquad \\underbrace { { \\mathbb { S } } ( \\mathbb { P } , \\mu ) } _ { \\in { \\mathcal { S } } } \\qquad \\underbrace { { \\mathcal { S } } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } _ { \\in { \\mathcal { S } } }", + "type": "interline_equation", + "image_path": "42bbfe8f5bb6cfe693c611d66a286804d28581cfbe8ba2c7a8ae2257f5bfe235.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 170, + 210, + 437, + 238 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 260, + 300, + 272 + ], + "lines": [ + { + "bbox": [ + 106, + 259, + 300, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 194, + 273 + ], + "score": 1.0, + "content": "For instance consider", + "type": "text" + }, + { + "bbox": [ + 194, + 261, + 221, + 272 + ], + "score": 0.92, + "content": "\\mu = \\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 259, + 300, + 273 + ], + "score": 1.0, + "content": ", we have therefore:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 279, + 395, + 307 + ], + "lines": [ + { + "bbox": [ + 216, + 279, + 395, + 307 + ], + "spans": [ + { + "bbox": [ + 216, + 279, + 395, + 307 + ], + "score": 0.93, + "content": "{ \\frac { 1 } { 2 } } \\left| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ { \\frac { \\mathbb { Q } ( x ) } { \\mathbb { P } ( x ) } } \\right] - 1 \\right| \\leq \\mathbb { S } ( \\mathbb { Q } , \\mathbb { P } ) S _ { \\mathbb { P } } ( \\mathbb { P } , \\mathbb { Q } ) .", + "type": "interline_equation", + "image_path": "51ead85e6389951586621f04237342e0df5fc9c07e81281e20e78e0ac065053c.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 216, + 279, + 395, + 307 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 320, + 421, + 332 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 420, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 420, + 333 + ], + "score": 1.0, + "content": "Note that the left hand side of the inequality is not the total variation distance.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 338, + 505, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 334, + 504, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 197, + 355 + ], + "score": 1.0, + "content": "Hence for a sequence", + "type": "text" + }, + { + "bbox": [ + 197, + 340, + 212, + 351 + ], + "score": 0.9, + "content": "\\mathbb { Q } _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 334, + 331, + 355 + ], + "score": 1.0, + "content": "if the Sobolev distance goes", + "type": "text" + }, + { + "bbox": [ + 331, + 339, + 398, + 352 + ], + "score": 0.93, + "content": "S _ { \\mathbb { P } } ( \\mathbb { P } , \\mathbb { Q } _ { n } ) 0", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 334, + 440, + 355 + ], + "score": 1.0, + "content": ", the ratio", + "type": "text" + }, + { + "bbox": [ + 440, + 337, + 504, + 354 + ], + "score": 0.92, + "content": "\\begin{array} { r } { r _ { n } ( x ) = \\frac { \\mathbb Q _ { n } ( x ) } { \\mathbb P ( x ) } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 352, + 506, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 247, + 365 + ], + "score": 1.0, + "content": "converges in expectation (w.r.t to", + "type": "text" + }, + { + "bbox": [ + 247, + 353, + 257, + 364 + ], + "score": 0.78, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 352, + 506, + 365 + ], + "score": 1.0, + "content": ") to 1. The speed of the convergence is given by the Stein", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 363, + 201, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 158, + 376 + ], + "score": 1.0, + "content": "Discrepancy", + "type": "text" + }, + { + "bbox": [ + 159, + 363, + 196, + 376 + ], + "score": 0.93, + "content": "\\mathbb { S } ( \\mathbb { Q } _ { n } , \\mathbb { P } )", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 363, + 201, + 376 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 380, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 380, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 506, + 393 + ], + "score": 1.0, + "content": "One important observation here is that convergence of PDF ratio is weaker than the conditional", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 390, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 506, + 405 + ], + "score": 1.0, + "content": "CDF as given by the Sobolev distance and of the good fitness of score function as given by Stein", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 401, + 159, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 159, + 417 + ], + "score": 1.0, + "content": "discrepancy.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 106, + 449, + 343, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 448, + 343, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 343, + 464 + ], + "score": 1.0, + "content": "C TEXT EXPERIMENTS: ADDITIONAL PLOTS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 106, + 476, + 445, + 488 + ], + "lines": [ + { + "bbox": [ + 106, + 476, + 446, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 360, + 490 + ], + "score": 1.0, + "content": "Comparison of annealed versus non annealed smoothing of", + "type": "text" + }, + { + "bbox": [ + 360, + 479, + 371, + 488 + ], + "score": 0.83, + "content": "\\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 476, + 446, + 490 + ], + "score": 1.0, + "content": "in Sobolev GAN.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "image", + "bbox": [ + 225, + 511, + 376, + 608 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 225, + 511, + 376, + 608 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 225, + 511, + 376, + 608 + ], + "spans": [ + { + "bbox": [ + 225, + 511, + 376, + 608 + ], + "score": 0.965, + "type": "image", + "image_path": "9bc07e8ad8977d3d3e0990973f1d012506b6beae1acd22e818815329398759c9.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 225, + 511, + 376, + 559.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 225, + 559.5, + 376, + 608.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 621, + 504, + 644 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 620, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 388, + 634 + ], + "score": 1.0, + "content": "Figure 6: Comparison of annealed versus non annealed smoothing of", + "type": "text" + }, + { + "bbox": [ + 388, + 622, + 399, + 632 + ], + "score": 0.89, + "content": "\\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 620, + 505, + 634 + ], + "score": 1.0, + "content": "in Sobolev GAN. We see", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 632, + 425, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 425, + 644 + ], + "score": 1.0, + "content": "that annealed smoothing outperforms the non annealed smoothing experiments.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "Sobolev GAN versus WGAN-GP with RNN. We fix the generator architecture to Resnets. The", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "experiments of using RNN (GRU) as the critic architecture for WGAN-GP and Sobolev is shown", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 686, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 104, + 686, + 217, + 701 + ], + "score": 1.0, + "content": "in Figure 7 where we used", + "type": "text" + }, + { + "bbox": [ + 218, + 689, + 259, + 699 + ], + "score": 0.89, + "content": "\\mu = \\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 686, + 505, + 701 + ], + "score": 1.0, + "content": "for both cases. We only apply gradient clipping to stabilize", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "the performance without other tricks. We can observe that using RNN degrades the performance.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "We think that this is due to an optimization issue and a difficulty in training RNN under the GAN", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 720, + 310, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 310, + 734 + ], + "score": 1.0, + "content": "objective without any pre-training or conditioning.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5 + } + ], + "page_idx": 24, + "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": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 419, + 505, + 430 + ], + "lines": [ + { + "bbox": [ + 495, + 421, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 495, + 421, + 505, + 431 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 210, + 94, + 402, + 122 + ], + "lines": [ + { + "bbox": [ + 210, + 94, + 402, + 122 + ], + "spans": [ + { + "bbox": [ + 210, + 94, + 402, + 122 + ], + "score": 0.91, + "content": "\\frac { 1 } { 2 S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } \\left| \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mathbb { Q } } \\left[ \\frac { \\mathbb { Q } ( \\boldsymbol { x } ) - \\mathbb { P } ( \\boldsymbol { x } ) } { \\mu ( \\boldsymbol { x } ) } \\right] \\right| \\leq \\mathbb { S } ( \\mathbb { Q } , \\mu )", + "type": "interline_equation", + "image_path": "9cc512735ea0762daf1b551fd65435bd573c1723f1adfe4a1105d23ea41cc7a5.jpg" + } + ] + } + ], + "index": 0, + "virtual_lines": [ + { + "bbox": [ + 210, + 94, + 402, + 122 + ], + "spans": [], + "index": 0 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 127, + 191, + 139 + ], + "lines": [ + { + "bbox": [ + 105, + 126, + 193, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 193, + 140 + ], + "score": 1.0, + "content": "This is equivalent to:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 126, + 193, + 140 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 154, + 146, + 450, + 175 + ], + "lines": [ + { + "bbox": [ + 154, + 146, + 450, + 175 + ], + "spans": [ + { + "bbox": [ + 154, + 146, + 450, + 175 + ], + "score": 0.82, + "content": "\\left| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ { \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\mu ( x ) } } \\right] \\right| \\leq 2 \\qquad { \\underset { \\Delta \\in { \\mathbb { Q } } , \\mu } { \\underbrace { \\mathbb { S } ( \\mathbb { Q } , \\mu ) } } } \\qquad { \\underset { \\Delta \\in { \\mathbb { P } } } { \\underbrace { { \\mathcal { S } } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } } }", + "type": "interline_equation", + "image_path": "97c900eaf9b2de3c35f5d3e37769a081bce9215000b150e7a7c095b7fbee1211.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 154, + 146, + 450, + 155.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 154, + 155.66666666666666, + 450, + 165.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 154, + 165.33333333333331, + 450, + 174.99999999999997 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 190, + 189, + 202 + ], + "lines": [ + { + "bbox": [ + 106, + 189, + 191, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 191, + 203 + ], + "score": 1.0, + "content": "Similarly we obtain:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 189, + 191, + 203 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 210, + 437, + 238 + ], + "lines": [ + { + "bbox": [ + 170, + 210, + 437, + 238 + ], + "spans": [ + { + "bbox": [ + 170, + 210, + 437, + 238 + ], + "score": 0.86, + "content": "\\left| \\mathbb { E } _ { x \\sim \\mathbb { P } } \\left[ { \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\mu ( x ) } } \\right] \\right| \\leq 2 \\qquad \\underbrace { { \\mathbb { S } } ( \\mathbb { P } , \\mu ) } _ { \\in { \\mathcal { S } } } \\qquad \\underbrace { { \\mathcal { S } } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } _ { \\in { \\mathcal { S } } }", + "type": "interline_equation", + "image_path": "42bbfe8f5bb6cfe693c611d66a286804d28581cfbe8ba2c7a8ae2257f5bfe235.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 170, + 210, + 437, + 238 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 260, + 300, + 272 + ], + "lines": [ + { + "bbox": [ + 106, + 259, + 300, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 194, + 273 + ], + "score": 1.0, + "content": "For instance consider", + "type": "text" + }, + { + "bbox": [ + 194, + 261, + 221, + 272 + ], + "score": 0.92, + "content": "\\mu = \\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 259, + 300, + 273 + ], + "score": 1.0, + "content": ", we have therefore:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 259, + 300, + 273 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 279, + 395, + 307 + ], + "lines": [ + { + "bbox": [ + 216, + 279, + 395, + 307 + ], + "spans": [ + { + "bbox": [ + 216, + 279, + 395, + 307 + ], + "score": 0.93, + "content": "{ \\frac { 1 } { 2 } } \\left| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ { \\frac { \\mathbb { Q } ( x ) } { \\mathbb { P } ( x ) } } \\right] - 1 \\right| \\leq \\mathbb { S } ( \\mathbb { Q } , \\mathbb { P } ) S _ { \\mathbb { P } } ( \\mathbb { P } , \\mathbb { Q } ) .", + "type": "interline_equation", + "image_path": "51ead85e6389951586621f04237342e0df5fc9c07e81281e20e78e0ac065053c.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 216, + 279, + 395, + 307 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 320, + 421, + 332 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 420, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 420, + 333 + ], + "score": 1.0, + "content": "Note that the left hand side of the inequality is not the total variation distance.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 320, + 420, + 333 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 338, + 505, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 334, + 504, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 197, + 355 + ], + "score": 1.0, + "content": "Hence for a sequence", + "type": "text" + }, + { + "bbox": [ + 197, + 340, + 212, + 351 + ], + "score": 0.9, + "content": "\\mathbb { Q } _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 334, + 331, + 355 + ], + "score": 1.0, + "content": "if the Sobolev distance goes", + "type": "text" + }, + { + "bbox": [ + 331, + 339, + 398, + 352 + ], + "score": 0.93, + "content": "S _ { \\mathbb { P } } ( \\mathbb { P } , \\mathbb { Q } _ { n } ) 0", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 334, + 440, + 355 + ], + "score": 1.0, + "content": ", the ratio", + "type": "text" + }, + { + "bbox": [ + 440, + 337, + 504, + 354 + ], + "score": 0.92, + "content": "\\begin{array} { r } { r _ { n } ( x ) = \\frac { \\mathbb Q _ { n } ( x ) } { \\mathbb P ( x ) } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 352, + 506, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 247, + 365 + ], + "score": 1.0, + "content": "converges in expectation (w.r.t to", + "type": "text" + }, + { + "bbox": [ + 247, + 353, + 257, + 364 + ], + "score": 0.78, + "content": "\\mathbb { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 352, + 506, + 365 + ], + "score": 1.0, + "content": ") to 1. The speed of the convergence is given by the Stein", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 363, + 201, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 158, + 376 + ], + "score": 1.0, + "content": "Discrepancy", + "type": "text" + }, + { + "bbox": [ + 159, + 363, + 196, + 376 + ], + "score": 0.93, + "content": "\\mathbb { S } ( \\mathbb { Q } _ { n } , \\mathbb { P } )", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 363, + 201, + 376 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 334, + 506, + 376 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 380, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 380, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 506, + 393 + ], + "score": 1.0, + "content": "One important observation here is that convergence of PDF ratio is weaker than the conditional", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 390, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 506, + 405 + ], + "score": 1.0, + "content": "CDF as given by the Sobolev distance and of the good fitness of score function as given by Stein", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 401, + 159, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 159, + 417 + ], + "score": 1.0, + "content": "discrepancy.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 380, + 506, + 417 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 449, + 343, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 448, + 343, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 343, + 464 + ], + "score": 1.0, + "content": "C TEXT EXPERIMENTS: ADDITIONAL PLOTS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 106, + 476, + 445, + 488 + ], + "lines": [ + { + "bbox": [ + 106, + 476, + 446, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 360, + 490 + ], + "score": 1.0, + "content": "Comparison of annealed versus non annealed smoothing of", + "type": "text" + }, + { + "bbox": [ + 360, + 479, + 371, + 488 + ], + "score": 0.83, + "content": "\\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 476, + 446, + 490 + ], + "score": 1.0, + "content": "in Sobolev GAN.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "image", + "bbox": [ + 225, + 511, + 376, + 608 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 225, + 511, + 376, + 608 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 225, + 511, + 376, + 608 + ], + "spans": [ + { + "bbox": [ + 225, + 511, + 376, + 608 + ], + "score": 0.965, + "type": "image", + "image_path": "9bc07e8ad8977d3d3e0990973f1d012506b6beae1acd22e818815329398759c9.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 225, + 511, + 376, + 559.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 225, + 559.5, + 376, + 608.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 621, + 504, + 644 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 620, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 388, + 634 + ], + "score": 1.0, + "content": "Figure 6: Comparison of annealed versus non annealed smoothing of", + "type": "text" + }, + { + "bbox": [ + 388, + 622, + 399, + 632 + ], + "score": 0.89, + "content": "\\mathbb { P } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 620, + 505, + 634 + ], + "score": 1.0, + "content": "in Sobolev GAN. We see", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 632, + 425, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 425, + 644 + ], + "score": 1.0, + "content": "that annealed smoothing outperforms the non annealed smoothing experiments.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "Sobolev GAN versus WGAN-GP with RNN. We fix the generator architecture to Resnets. The", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "experiments of using RNN (GRU) as the critic architecture for WGAN-GP and Sobolev is shown", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 686, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 104, + 686, + 217, + 701 + ], + "score": 1.0, + "content": "in Figure 7 where we used", + "type": "text" + }, + { + "bbox": [ + 218, + 689, + 259, + 699 + ], + "score": 0.89, + "content": "\\mu = \\mu _ { G P }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 686, + 505, + 701 + ], + "score": 1.0, + "content": "for both cases. We only apply gradient clipping to stabilize", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "the performance without other tricks. We can observe that using RNN degrades the performance.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "We think that this is due to an optimization issue and a difficulty in training RNN under the GAN", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 720, + 310, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 310, + 734 + ], + "score": 1.0, + "content": "objective without any pre-training or conditioning.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5, + "bbox_fs": [ + 104, + 666, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 147, + 91, + 456, + 205 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 147, + 91, + 456, + 205 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 147, + 91, + 456, + 205 + ], + "spans": [ + { + "bbox": [ + 147, + 91, + 456, + 205 + ], + "score": 0.959, + "type": "image", + "image_path": "b33296dfeec538aff71afa249d3c78cee91fb6d6002cb89df8dd5f0cad50bf6f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 147, + 91, + 456, + 129.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 147, + 129.0, + 456, + 167.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 147, + 167.0, + 456, + 205.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 191, + 218, + 419, + 230 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 190, + 217, + 420, + 231 + ], + "spans": [ + { + "bbox": [ + 190, + 217, + 420, + 231 + ], + "score": 1.0, + "content": "Figure 7: Result of WGAN-GP and Sobolev with RNNs.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 225, + 249, + 376, + 430 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 225, + 249, + 376, + 430 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 225, + 249, + 376, + 430 + ], + "spans": [ + { + "bbox": [ + 225, + 249, + 376, + 430 + ], + "score": 0.963, + "type": "image", + "image_path": "22b283fdcd36a259ef1de1da1ae8a6d80587aa0ad141b9ca955c8082e7f17492.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 225, + 249, + 376, + 339.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 225, + 339.5, + 376, + 430.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 168, + 443, + 442, + 454 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 167, + 441, + 443, + 457 + ], + "spans": [ + { + "bbox": [ + 167, + 441, + 443, + 457 + ], + "score": 1.0, + "content": "Figure 8: Text samples from various GANs considered in this paper.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + } + ], + "index": 5.25 + }, + { + "type": "title", + "bbox": [ + 106, + 477, + 369, + 489 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 371, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 371, + 492 + ], + "score": 1.0, + "content": "D SSL: HYPERPARAMETERS AND ARCHITECTURE", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 502, + 505, + 635 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 504, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 411, + 515 + ], + "score": 1.0, + "content": "For our SSL experiments on CIFAR-10, we use Adam with learning rate", + "type": "text" + }, + { + "bbox": [ + 411, + 503, + 457, + 514 + ], + "score": 0.77, + "content": "\\eta = 2 \\mathrm { { e } - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 502, + 462, + 515 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 462, + 503, + 504, + 514 + ], + "score": 0.78, + "content": "\\beta _ { 1 } ~ = ~ 0 . 5", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 512, + 504, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 123, + 526 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 514, + 172, + 525 + ], + "score": 0.91, + "content": "\\beta _ { 2 } = 0 . 9 9 9", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 512, + 234, + 526 + ], + "score": 1.0, + "content": ", both for critic", + "type": "text" + }, + { + "bbox": [ + 235, + 514, + 242, + 525 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 512, + 456, + 526 + ], + "score": 1.0, + "content": "(without BN) and Generator (with BN). We selected", + "type": "text" + }, + { + "bbox": [ + 457, + 514, + 504, + 525 + ], + "score": 0.88, + "content": "\\lambda _ { C E } = 1 . 5", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "from [0.8, 1.5, 3.0, 5.0]. We train all models for 350 epochs. We used some L2 weight decay: 1e−6", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 535, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 119, + 547 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 120, + 536, + 139, + 547 + ], + "score": 0.89, + "content": "\\omega , S", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 535, + 418, + 547 + ], + "score": 1.0, + "content": "(i.e. all layers except last) and 1e 3 weight decay on the last layer", + "type": "text" + }, + { + "bbox": [ + 418, + 537, + 424, + 545 + ], + "score": 0.65, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 535, + 506, + 547 + ], + "score": 1.0, + "content": ". For formulation 1", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 198, + 560 + ], + "score": 1.0, + "content": "(Fisher only) we have", + "type": "text" + }, + { + "bbox": [ + 199, + 547, + 249, + 558 + ], + "score": 0.9, + "content": "\\rho _ { F } = 1 \\mathrm { e } { - 7 }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 546, + 370, + 560 + ], + "score": 1.0, + "content": ", modified critic learning rate", + "type": "text" + }, + { + "bbox": [ + 370, + 547, + 421, + 558 + ], + "score": 0.9, + "content": "\\eta _ { D } = 1 \\mathrm { e } { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 546, + 469, + 560 + ], + "score": 1.0, + "content": ", critic iters", + "type": "text" + }, + { + "bbox": [ + 469, + 547, + 501, + 558 + ], + "score": 0.9, + "content": "n _ { c } = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 546, + 506, + 560 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 556, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 104, + 556, + 217, + 570 + ], + "score": 1.0, + "content": "For formulation 2 (Sobolev", + "type": "text" + }, + { + "bbox": [ + 218, + 559, + 226, + 567 + ], + "score": 0.77, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 556, + 292, + 570 + ], + "score": 1.0, + "content": "Fisher) we have", + "type": "text" + }, + { + "bbox": [ + 293, + 558, + 341, + 569 + ], + "score": 0.85, + "content": "\\rho _ { F } = 5 \\mathrm { e } - 8", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 556, + 345, + 570 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 345, + 558, + 393, + 569 + ], + "score": 0.85, + "content": "\\rho _ { S } = 2 \\mathrm { e } - 8", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 556, + 439, + 570 + ], + "score": 1.0, + "content": ", critic iters", + "type": "text" + }, + { + "bbox": [ + 439, + 558, + 469, + 568 + ], + "score": 0.91, + "content": "n _ { c } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 556, + 506, + 570 + ], + "score": 1.0, + "content": ". For the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "score": 1.0, + "content": "WGAN-GP (Gulrajani et al., 2017) baseline SSL experiment we followed the original paper with", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 578, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 150, + 592 + ], + "score": 1.0, + "content": "critic iters", + "type": "text" + }, + { + "bbox": [ + 150, + 580, + 182, + 590 + ], + "score": 0.89, + "content": "n _ { c } = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 578, + 186, + 592 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 186, + 580, + 264, + 591 + ], + "score": 0.88, + "content": "\\eta _ { G } = \\eta _ { D } = 1 \\mathrm { e } { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 578, + 295, + 592 + ], + "score": 1.0, + "content": ", Adam", + "type": "text" + }, + { + "bbox": [ + 295, + 579, + 325, + 591 + ], + "score": 0.92, + "content": "\\beta _ { 2 } { = } 0 . 9", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 578, + 390, + 592 + ], + "score": 1.0, + "content": "and GP weight", + "type": "text" + }, + { + "bbox": [ + 390, + 579, + 443, + 590 + ], + "score": 0.9, + "content": "\\lambda _ { G P } = 1 0 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 578, + 506, + 592 + ], + "score": 1.0, + "content": ". Architectures", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 590, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 224, + 602 + ], + "score": 1.0, + "content": "are as below. We determined", + "type": "text" + }, + { + "bbox": [ + 225, + 591, + 271, + 601 + ], + "score": 0.9, + "content": "\\lambda _ { C E } = 0 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 590, + 349, + 602 + ], + "score": 1.0, + "content": "to be optimal from", + "type": "text" + }, + { + "bbox": [ + 350, + 590, + 441, + 602 + ], + "score": 0.43, + "content": "[ 0 . 0 3 , 0 . 1 , 0 . 3 , 1 . 0 , 3 . 0 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 590, + 505, + 602 + ], + "score": 1.0, + "content": ". As mentioned", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 183, + 614 + ], + "score": 1.0, + "content": "in Section 6.2, the", + "type": "text" + }, + { + "bbox": [ + 183, + 601, + 203, + 612 + ], + "score": 0.79, + "content": "\\mathrm { K } { + } 1", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 600, + 505, + 614 + ], + "score": 1.0, + "content": "critic formulation is not able to fit the training set with the GP constraint,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 355, + 624 + ], + "score": 1.0, + "content": "so we fall back to the plain critic formulation where the critic", + "type": "text" + }, + { + "bbox": [ + 355, + 612, + 399, + 624 + ], + "score": 0.93, + "content": "\\langle v , \\Phi _ { \\omega } ( \\bar { x } ) \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "does not interact with the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 621, + 195, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 145, + 637 + ], + "score": 1.0, + "content": "classifier", + "type": "text" + }, + { + "bbox": [ + 145, + 623, + 190, + 635 + ], + "score": 0.94, + "content": "\\langle S , \\Phi _ { \\omega } ( x ) \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 621, + 195, + 637 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 107, + 640, + 160, + 651 + ], + "lines": [ + { + "bbox": [ + 106, + 640, + 161, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 161, + 652 + ], + "score": 1.0, + "content": "Architecture:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + } + ], + "page_idx": 25, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 660, + 453, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 660, + 300, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 300, + 669 + ], + "score": 1.0, + "content": "### CIFAR-10: 32x32. G is dcgan with G_extra_layers=2.", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 667, + 291, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 291, + 676 + ], + "score": 1.0, + "content": "### D is in the flavor of OpenAI Improved GAN, ALI.", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 675, + 120, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 120, + 683 + ], + "score": 1.0, + "content": "G (", + "type": "text" + } + ] + }, + { + "bbox": [ + 113, + 682, + 187, + 690 + ], + "spans": [ + { + "bbox": [ + 113, + 682, + 187, + 690 + ], + "score": 1.0, + "content": "(main): Sequential (", + "type": "text" + } + ] + }, + { + "bbox": [ + 117, + 689, + 395, + 697 + ], + "spans": [ + { + "bbox": [ + 117, + 689, + 268, + 697 + ], + "score": 1.0, + "content": "(0): ConvTranspose2d(100, 256, kernel_size", + "type": "text" + }, + { + "bbox": [ + 268, + 690, + 273, + 695 + ], + "score": 0.37, + "content": ": =", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 689, + 322, + 697 + ], + "score": 1.0, + "content": "(4, 4), stride", + "type": "text" + }, + { + "bbox": [ + 322, + 690, + 327, + 695 + ], + "score": 0.44, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 689, + 395, + 697 + ], + "score": 1.0, + "content": "(1, 1), bias=False)", + "type": "text" + } + ] + }, + { + "bbox": [ + 117, + 695, + 331, + 704 + ], + "spans": [ + { + "bbox": [ + 117, + 695, + 331, + 704 + ], + "score": 1.0, + "content": "(1): BatchNorm2d(256, eps=1e-05, momentum=0.1, affine=True)", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 703, + 187, + 711 + ], + "spans": [ + { + "bbox": [ + 118, + 703, + 187, + 711 + ], + "score": 1.0, + "content": "(2): ReLU (inplace)", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 709, + 452, + 718 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 452, + 718 + ], + "score": 1.0, + "content": "(3): ConvTranspose2d(256, 128, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)", + "type": "text" + } + ] + }, + { + "bbox": [ + 117, + 716, + 330, + 725 + ], + "spans": [ + { + "bbox": [ + 117, + 716, + 330, + 725 + ], + "score": 1.0, + "content": "(4): BatchNorm2d(128, eps=1e-05, momentum=0.1, affine=True)", + "type": "text" + } + ] + }, + { + "bbox": [ + 117, + 723, + 187, + 732 + ], + "spans": [ + { + "bbox": [ + 117, + 723, + 187, + 732 + ], + "score": 1.0, + "content": "(5): ReLU (inplace)", + "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 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 752, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 13, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 147, + 91, + 456, + 205 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 147, + 91, + 456, + 205 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 147, + 91, + 456, + 205 + ], + "spans": [ + { + "bbox": [ + 147, + 91, + 456, + 205 + ], + "score": 0.959, + "type": "image", + "image_path": "b33296dfeec538aff71afa249d3c78cee91fb6d6002cb89df8dd5f0cad50bf6f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 147, + 91, + 456, + 129.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 147, + 129.0, + 456, + 167.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 147, + 167.0, + 456, + 205.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 191, + 218, + 419, + 230 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 190, + 217, + 420, + 231 + ], + "spans": [ + { + "bbox": [ + 190, + 217, + 420, + 231 + ], + "score": 1.0, + "content": "Figure 7: Result of WGAN-GP and Sobolev with RNNs.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 225, + 249, + 376, + 430 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 225, + 249, + 376, + 430 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 225, + 249, + 376, + 430 + ], + "spans": [ + { + "bbox": [ + 225, + 249, + 376, + 430 + ], + "score": 0.963, + "type": "image", + "image_path": "22b283fdcd36a259ef1de1da1ae8a6d80587aa0ad141b9ca955c8082e7f17492.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 225, + 249, + 376, + 339.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 225, + 339.5, + 376, + 430.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 168, + 443, + 442, + 454 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 167, + 441, + 443, + 457 + ], + "spans": [ + { + "bbox": [ + 167, + 441, + 443, + 457 + ], + "score": 1.0, + "content": "Figure 8: Text samples from various GANs considered in this paper.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + } + ], + "index": 5.25 + }, + { + "type": "title", + "bbox": [ + 106, + 477, + 369, + 489 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 371, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 371, + 492 + ], + "score": 1.0, + "content": "D SSL: HYPERPARAMETERS AND ARCHITECTURE", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 502, + 505, + 635 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 504, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 411, + 515 + ], + "score": 1.0, + "content": "For our SSL experiments on CIFAR-10, we use Adam with learning rate", + "type": "text" + }, + { + "bbox": [ + 411, + 503, + 457, + 514 + ], + "score": 0.77, + "content": "\\eta = 2 \\mathrm { { e } - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 502, + 462, + 515 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 462, + 503, + 504, + 514 + ], + "score": 0.78, + "content": "\\beta _ { 1 } ~ = ~ 0 . 5", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 512, + 504, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 123, + 526 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 514, + 172, + 525 + ], + "score": 0.91, + "content": "\\beta _ { 2 } = 0 . 9 9 9", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 512, + 234, + 526 + ], + "score": 1.0, + "content": ", both for critic", + "type": "text" + }, + { + "bbox": [ + 235, + 514, + 242, + 525 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 512, + 456, + 526 + ], + "score": 1.0, + "content": "(without BN) and Generator (with BN). We selected", + "type": "text" + }, + { + "bbox": [ + 457, + 514, + 504, + 525 + ], + "score": 0.88, + "content": "\\lambda _ { C E } = 1 . 5", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "from [0.8, 1.5, 3.0, 5.0]. We train all models for 350 epochs. We used some L2 weight decay: 1e−6", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 535, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 119, + 547 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 120, + 536, + 139, + 547 + ], + "score": 0.89, + "content": "\\omega , S", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 535, + 418, + 547 + ], + "score": 1.0, + "content": "(i.e. all layers except last) and 1e 3 weight decay on the last layer", + "type": "text" + }, + { + "bbox": [ + 418, + 537, + 424, + 545 + ], + "score": 0.65, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 535, + 506, + 547 + ], + "score": 1.0, + "content": ". For formulation 1", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 198, + 560 + ], + "score": 1.0, + "content": "(Fisher only) we have", + "type": "text" + }, + { + "bbox": [ + 199, + 547, + 249, + 558 + ], + "score": 0.9, + "content": "\\rho _ { F } = 1 \\mathrm { e } { - 7 }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 546, + 370, + 560 + ], + "score": 1.0, + "content": ", modified critic learning rate", + "type": "text" + }, + { + "bbox": [ + 370, + 547, + 421, + 558 + ], + "score": 0.9, + "content": "\\eta _ { D } = 1 \\mathrm { e } { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 546, + 469, + 560 + ], + "score": 1.0, + "content": ", critic iters", + "type": "text" + }, + { + "bbox": [ + 469, + 547, + 501, + 558 + ], + "score": 0.9, + "content": "n _ { c } = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 546, + 506, + 560 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 556, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 104, + 556, + 217, + 570 + ], + "score": 1.0, + "content": "For formulation 2 (Sobolev", + "type": "text" + }, + { + "bbox": [ + 218, + 559, + 226, + 567 + ], + "score": 0.77, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 556, + 292, + 570 + ], + "score": 1.0, + "content": "Fisher) we have", + "type": "text" + }, + { + "bbox": [ + 293, + 558, + 341, + 569 + ], + "score": 0.85, + "content": "\\rho _ { F } = 5 \\mathrm { e } - 8", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 556, + 345, + 570 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 345, + 558, + 393, + 569 + ], + "score": 0.85, + "content": "\\rho _ { S } = 2 \\mathrm { e } - 8", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 556, + 439, + 570 + ], + "score": 1.0, + "content": ", critic iters", + "type": "text" + }, + { + "bbox": [ + 439, + 558, + 469, + 568 + ], + "score": 0.91, + "content": "n _ { c } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 556, + 506, + 570 + ], + "score": 1.0, + "content": ". For the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "score": 1.0, + "content": "WGAN-GP (Gulrajani et al., 2017) baseline SSL experiment we followed the original paper with", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 578, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 150, + 592 + ], + "score": 1.0, + "content": "critic iters", + "type": "text" + }, + { + "bbox": [ + 150, + 580, + 182, + 590 + ], + "score": 0.89, + "content": "n _ { c } = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 578, + 186, + 592 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 186, + 580, + 264, + 591 + ], + "score": 0.88, + "content": "\\eta _ { G } = \\eta _ { D } = 1 \\mathrm { e } { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 578, + 295, + 592 + ], + "score": 1.0, + "content": ", Adam", + "type": "text" + }, + { + "bbox": [ + 295, + 579, + 325, + 591 + ], + "score": 0.92, + "content": "\\beta _ { 2 } { = } 0 . 9", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 578, + 390, + 592 + ], + "score": 1.0, + "content": "and GP weight", + "type": "text" + }, + { + "bbox": [ + 390, + 579, + 443, + 590 + ], + "score": 0.9, + "content": "\\lambda _ { G P } = 1 0 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 578, + 506, + 592 + ], + "score": 1.0, + "content": ". Architectures", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 590, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 224, + 602 + ], + "score": 1.0, + "content": "are as below. We determined", + "type": "text" + }, + { + "bbox": [ + 225, + 591, + 271, + 601 + ], + "score": 0.9, + "content": "\\lambda _ { C E } = 0 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 590, + 349, + 602 + ], + "score": 1.0, + "content": "to be optimal from", + "type": "text" + }, + { + "bbox": [ + 350, + 590, + 441, + 602 + ], + "score": 0.43, + "content": "[ 0 . 0 3 , 0 . 1 , 0 . 3 , 1 . 0 , 3 . 0 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 590, + 505, + 602 + ], + "score": 1.0, + "content": ". As mentioned", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 183, + 614 + ], + "score": 1.0, + "content": "in Section 6.2, the", + "type": "text" + }, + { + "bbox": [ + 183, + 601, + 203, + 612 + ], + "score": 0.79, + "content": "\\mathrm { K } { + } 1", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 600, + 505, + 614 + ], + "score": 1.0, + "content": "critic formulation is not able to fit the training set with the GP constraint,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 355, + 624 + ], + "score": 1.0, + "content": "so we fall back to the plain critic formulation where the critic", + "type": "text" + }, + { + "bbox": [ + 355, + 612, + 399, + 624 + ], + "score": 0.93, + "content": "\\langle v , \\Phi _ { \\omega } ( \\bar { x } ) \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "does not interact with the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 621, + 195, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 145, + 637 + ], + "score": 1.0, + "content": "classifier", + "type": "text" + }, + { + "bbox": [ + 145, + 623, + 190, + 635 + ], + "score": 0.94, + "content": "\\langle S , \\Phi _ { \\omega } ( x ) \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 621, + 195, + 637 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 13.5, + "bbox_fs": [ + 104, + 502, + 506, + 637 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 640, + 160, + 651 + ], + "lines": [ + { + "bbox": [ + 106, + 640, + 161, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 161, + 652 + ], + "score": 1.0, + "content": "Architecture:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 86, + 446, + 389 + ], + "lines": [ + { + "bbox": [ + 118, + 86, + 448, + 93 + ], + "spans": [ + { + "bbox": [ + 118, + 86, + 448, + 93 + ], + "score": 1.0, + "content": "(6): ConvTranspose2d(128, 64, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 117, + 92, + 327, + 101 + ], + "spans": [ + { + "bbox": [ + 117, + 92, + 327, + 101 + ], + "score": 1.0, + "content": "(7): BatchNorm2d(64, eps=1e-05, momentum=0.1, affine=True)", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 117, + 99, + 188, + 108 + ], + "spans": [ + { + "bbox": [ + 117, + 99, + 188, + 108 + ], + "score": 1.0, + "content": "(8): ReLU (inplace)", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 117, + 106, + 412, + 115 + ], + "spans": [ + { + "bbox": [ + 117, + 106, + 228, + 115 + ], + "score": 1.0, + "content": "(9): Conv2d(64, 64, kernel_siz", + "type": "text" + }, + { + "bbox": [ + 228, + 108, + 234, + 113 + ], + "score": 0.28, + "content": "\\div =", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 106, + 412, + 115 + ], + "score": 1.0, + "content": "(3, 3), stride=(1, 1), padding=(1, 1), bias=False)", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 117, + 113, + 331, + 123 + ], + "spans": [ + { + "bbox": [ + 117, + 113, + 331, + 123 + ], + "score": 1.0, + "content": "(10): BatchNorm2d(64, eps=1e-05, momentum=0.1, affine=True)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 118, + 121, + 191, + 128 + ], + "spans": [ + { + "bbox": [ + 118, + 121, + 191, + 128 + ], + "score": 1.0, + "content": "(11): ReLU (inplace)", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 117, + 127, + 416, + 136 + ], + "spans": [ + { + "bbox": [ + 117, + 127, + 232, + 136 + ], + "score": 1.0, + "content": "(12): Conv2d(64, 64, kernel_size", + "type": "text" + }, + { + "bbox": [ + 232, + 128, + 237, + 134 + ], + "score": 0.5, + "content": ": =", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 127, + 285, + 136 + ], + "score": 1.0, + "content": "(3, 3), strid", + "type": "text" + }, + { + "bbox": [ + 286, + 128, + 291, + 134 + ], + "score": 0.51, + "content": "\\div =", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 127, + 343, + 136 + ], + "score": 1.0, + "content": "(1, 1), padding", + "type": "text" + }, + { + "bbox": [ + 344, + 128, + 349, + 134 + ], + "score": 0.31, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 127, + 416, + 136 + ], + "score": 1.0, + "content": "(1, 1), bias=False)", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 118, + 134, + 330, + 143 + ], + "spans": [ + { + "bbox": [ + 118, + 134, + 330, + 143 + ], + "score": 1.0, + "content": "(13): BatchNorm2d(64, eps=1e-05, momentum=0.1, affine=True)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 117, + 141, + 190, + 150 + ], + "spans": [ + { + "bbox": [ + 117, + 141, + 190, + 150 + ], + "score": 1.0, + "content": "(14): ReLU (inplace)", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 118, + 148, + 444, + 157 + ], + "spans": [ + { + "bbox": [ + 118, + 148, + 261, + 157 + ], + "score": 1.0, + "content": "(15): ConvTranspose2d(64, 3, kernel_size", + "type": "text" + }, + { + "bbox": [ + 261, + 150, + 266, + 155 + ], + "score": 0.37, + "content": ": =", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 148, + 314, + 157 + ], + "score": 1.0, + "content": "(4, 4), strid", + "type": "text" + }, + { + "bbox": [ + 315, + 149, + 320, + 155 + ], + "score": 0.42, + "content": ": =", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 148, + 372, + 157 + ], + "score": 1.0, + "content": "(2, 2), padding", + "type": "text" + }, + { + "bbox": [ + 372, + 150, + 377, + 155 + ], + "score": 0.34, + "content": "^ { \\ast = }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 148, + 444, + 157 + ], + "score": 1.0, + "content": "(1, 1), bias=False)", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 118, + 155, + 165, + 164 + ], + "spans": [ + { + "bbox": [ + 118, + 155, + 165, + 164 + ], + "score": 1.0, + "content": "(16): Tanh ()", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 113, + 165, + 116, + 168 + ], + "spans": [ + { + "bbox": [ + 113, + 165, + 116, + 168 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 171, + 111, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 111, + 177 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 177, + 118, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 113, + 183 + ], + "score": 1.0, + "content": "D", + "type": "text" + }, + { + "bbox": [ + 115, + 179, + 118, + 182 + ], + "score": 1.0, + "content": "(", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 113, + 183, + 187, + 191 + ], + "spans": [ + { + "bbox": [ + 113, + 183, + 187, + 191 + ], + "score": 1.0, + "content": "(main): Sequential (", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 118, + 190, + 198, + 199 + ], + "spans": [ + { + "bbox": [ + 118, + 190, + 167, + 199 + ], + "score": 1.0, + "content": "(0): Dropout", + "type": "text" + }, + { + "bbox": [ + 167, + 191, + 195, + 198 + ], + "score": 0.75, + "content": "\\mathrm { ~ \\bf ~ p ~ } = \\mathrm { ~ \\bf ~ 0 ~ } . 2 \\mathrm { ~ \\bf ~ }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 190, + 198, + 199 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 118, + 196, + 366, + 206 + ], + "spans": [ + { + "bbox": [ + 118, + 196, + 366, + 206 + ], + "score": 1.0, + "content": "(1): Conv2d(3, 96, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1))", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 118, + 204, + 222, + 212 + ], + "spans": [ + { + "bbox": [ + 118, + 204, + 222, + 212 + ], + "score": 1.0, + "content": "(2): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 118, + 211, + 412, + 220 + ], + "spans": [ + { + "bbox": [ + 118, + 211, + 228, + 220 + ], + "score": 1.0, + "content": "(3): Conv2d(96, 96, kernel_siz", + "type": "text" + }, + { + "bbox": [ + 228, + 212, + 234, + 218 + ], + "score": 0.39, + "content": "\\div =", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 211, + 282, + 220 + ], + "score": 1.0, + "content": "(3, 3), stride", + "type": "text" + }, + { + "bbox": [ + 282, + 212, + 288, + 218 + ], + "score": 0.5, + "content": "\\div =", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 211, + 412, + 220 + ], + "score": 1.0, + "content": "(1, 1), padding=(1, 1), bias=False)", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 118, + 218, + 222, + 226 + ], + "spans": [ + { + "bbox": [ + 118, + 218, + 222, + 226 + ], + "score": 1.0, + "content": "(5): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 118, + 225, + 412, + 234 + ], + "spans": [ + { + "bbox": [ + 118, + 225, + 412, + 234 + ], + "score": 1.0, + "content": "(6): Conv2d(96, 96, kernel_size=(3, 3), stride=(2, 2), padding=(1, 1), bias=False)", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 118, + 232, + 223, + 241 + ], + "spans": [ + { + "bbox": [ + 118, + 232, + 223, + 241 + ], + "score": 1.0, + "content": "(8): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 118, + 239, + 195, + 247 + ], + "spans": [ + { + "bbox": [ + 118, + 239, + 166, + 247 + ], + "score": 1.0, + "content": "(9): Dropout", + "type": "text" + }, + { + "bbox": [ + 167, + 240, + 195, + 246 + ], + "score": 0.63, + "content": "( \\mathrm { p } ~ = ~ 0 . 5 )", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 118, + 246, + 419, + 254 + ], + "spans": [ + { + "bbox": [ + 118, + 246, + 236, + 254 + ], + "score": 1.0, + "content": "(10): Conv2d(96, 192, kernel_size", + "type": "text" + }, + { + "bbox": [ + 236, + 247, + 241, + 253 + ], + "score": 0.31, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 246, + 290, + 254 + ], + "score": 1.0, + "content": "(3, 3), stride", + "type": "text" + }, + { + "bbox": [ + 290, + 247, + 295, + 253 + ], + "score": 0.51, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 246, + 347, + 254 + ], + "score": 1.0, + "content": "(1, 1), padding", + "type": "text" + }, + { + "bbox": [ + 347, + 247, + 352, + 253 + ], + "score": 0.57, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 246, + 419, + 254 + ], + "score": 1.0, + "content": "(1, 1), bias=False)", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 117, + 253, + 226, + 262 + ], + "spans": [ + { + "bbox": [ + 117, + 253, + 226, + 262 + ], + "score": 1.0, + "content": "(12): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 117, + 259, + 423, + 269 + ], + "spans": [ + { + "bbox": [ + 117, + 259, + 239, + 269 + ], + "score": 1.0, + "content": "(13): Conv2d(192, 192, kernel_size", + "type": "text" + }, + { + "bbox": [ + 240, + 261, + 245, + 266 + ], + "score": 0.45, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 259, + 293, + 269 + ], + "score": 1.0, + "content": "(3, 3), stride", + "type": "text" + }, + { + "bbox": [ + 293, + 261, + 298, + 266 + ], + "score": 0.64, + "content": ": =", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 259, + 351, + 269 + ], + "score": 1.0, + "content": "(1, 1), padding", + "type": "text" + }, + { + "bbox": [ + 351, + 261, + 356, + 266 + ], + "score": 0.47, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 259, + 397, + 269 + ], + "score": 1.0, + "content": "(1, 1), bias", + "type": "text" + }, + { + "bbox": [ + 397, + 261, + 405, + 267 + ], + "score": 0.29, + "content": "\\scriptstyle = \\mathbf { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 259, + 423, + 269 + ], + "score": 1.0, + "content": "alse)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 117, + 267, + 226, + 276 + ], + "spans": [ + { + "bbox": [ + 117, + 267, + 226, + 276 + ], + "score": 1.0, + "content": "(15): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 118, + 273, + 423, + 282 + ], + "spans": [ + { + "bbox": [ + 118, + 273, + 239, + 282 + ], + "score": 1.0, + "content": "(16): Conv2d(192, 192, kernel_size", + "type": "text" + }, + { + "bbox": [ + 239, + 275, + 244, + 280 + ], + "score": 0.37, + "content": ": =", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 273, + 293, + 282 + ], + "score": 1.0, + "content": "(3, 3), stride", + "type": "text" + }, + { + "bbox": [ + 293, + 275, + 298, + 280 + ], + "score": 0.48, + "content": ": =", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 273, + 351, + 282 + ], + "score": 1.0, + "content": "(2, 2), padding", + "type": "text" + }, + { + "bbox": [ + 351, + 275, + 356, + 280 + ], + "score": 0.39, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 273, + 423, + 282 + ], + "score": 1.0, + "content": "(1, 1), bias=False)", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 118, + 281, + 226, + 289 + ], + "spans": [ + { + "bbox": [ + 118, + 281, + 226, + 289 + ], + "score": 1.0, + "content": "(18): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 117, + 288, + 199, + 297 + ], + "spans": [ + { + "bbox": [ + 117, + 288, + 171, + 297 + ], + "score": 1.0, + "content": "(19): Dropout (", + "type": "text" + }, + { + "bbox": [ + 171, + 289, + 199, + 295 + ], + "score": 0.67, + "content": "\\mathrm { ~ \\cdot ~ p ~ } = \\mathrm { ~ 0 ~ . ~ 5 ~ }", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 118, + 294, + 366, + 303 + ], + "spans": [ + { + "bbox": [ + 118, + 294, + 239, + 303 + ], + "score": 1.0, + "content": "(20): Conv2d(192, 384, kernel_size", + "type": "text" + }, + { + "bbox": [ + 239, + 296, + 245, + 301 + ], + "score": 0.46, + "content": ": =", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 294, + 293, + 303 + ], + "score": 1.0, + "content": "(3, 3), stride", + "type": "text" + }, + { + "bbox": [ + 294, + 296, + 299, + 301 + ], + "score": 0.6, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 294, + 366, + 303 + ], + "score": 1.0, + "content": "(1, 1), bias=False)", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 117, + 302, + 226, + 311 + ], + "spans": [ + { + "bbox": [ + 117, + 302, + 226, + 311 + ], + "score": 1.0, + "content": "(22): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 117, + 308, + 201, + 317 + ], + "spans": [ + { + "bbox": [ + 117, + 308, + 201, + 317 + ], + "score": 1.0, + "content": "(23): Dropout (p = 0.5)", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 118, + 315, + 366, + 324 + ], + "spans": [ + { + "bbox": [ + 118, + 315, + 239, + 324 + ], + "score": 1.0, + "content": "(24): Conv2d(384, 384, kernel_size", + "type": "text" + }, + { + "bbox": [ + 240, + 317, + 244, + 322 + ], + "score": 0.45, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 315, + 293, + 324 + ], + "score": 1.0, + "content": "(3, 3), stride", + "type": "text" + }, + { + "bbox": [ + 294, + 317, + 298, + 322 + ], + "score": 0.53, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 315, + 366, + 324 + ], + "score": 1.0, + "content": "(1, 1), bias=False)", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 117, + 322, + 226, + 331 + ], + "spans": [ + { + "bbox": [ + 117, + 322, + 226, + 331 + ], + "score": 1.0, + "content": "(26): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 118, + 330, + 199, + 338 + ], + "spans": [ + { + "bbox": [ + 118, + 330, + 170, + 338 + ], + "score": 1.0, + "content": "(27): Dropout", + "type": "text" + }, + { + "bbox": [ + 170, + 330, + 199, + 337 + ], + "score": 0.47, + "content": "( \\mathrm { p } ~ = ~ 0 . 5 )", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 117, + 336, + 366, + 345 + ], + "spans": [ + { + "bbox": [ + 117, + 336, + 366, + 345 + ], + "score": 1.0, + "content": "(28): Conv2d(384, 384, kernel_size=(1, 1), stride=(1, 1), bias=False)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 117, + 343, + 226, + 352 + ], + "spans": [ + { + "bbox": [ + 117, + 343, + 226, + 352 + ], + "score": 1.0, + "content": "(30): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 117, + 351, + 201, + 359 + ], + "spans": [ + { + "bbox": [ + 117, + 351, + 169, + 359 + ], + "score": 1.0, + "content": "(31): Dropout", + "type": "text" + }, + { + "bbox": [ + 169, + 351, + 199, + 358 + ], + "score": 0.55, + "content": "( \\mathrm { p } ~ = ~ 0 . 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 351, + 201, + 359 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 113, + 360, + 116, + 364 + ], + "spans": [ + { + "bbox": [ + 113, + 360, + 116, + 364 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 112, + 365, + 197, + 373 + ], + "spans": [ + { + "bbox": [ + 112, + 365, + 197, + 373 + ], + "score": 1.0, + "content": "(V): Linear (6144 -> 1)", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 112, + 371, + 200, + 380 + ], + "spans": [ + { + "bbox": [ + 112, + 371, + 200, + 380 + ], + "score": 1.0, + "content": "(S): Linear (6144 -> 10)", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 379, + 112, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 112, + 386 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 21 + } + ], + "page_idx": 26, + "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": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 86, + 446, + 389 + ], + "lines": [ + { + "bbox": [ + 118, + 86, + 448, + 93 + ], + "spans": [ + { + "bbox": [ + 118, + 86, + 448, + 93 + ], + "score": 1.0, + "content": "(6): ConvTranspose2d(128, 64, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 117, + 92, + 327, + 101 + ], + "spans": [ + { + "bbox": [ + 117, + 92, + 327, + 101 + ], + "score": 1.0, + "content": "(7): BatchNorm2d(64, eps=1e-05, momentum=0.1, affine=True)", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 117, + 99, + 188, + 108 + ], + "spans": [ + { + "bbox": [ + 117, + 99, + 188, + 108 + ], + "score": 1.0, + "content": "(8): ReLU (inplace)", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 117, + 106, + 412, + 115 + ], + "spans": [ + { + "bbox": [ + 117, + 106, + 228, + 115 + ], + "score": 1.0, + "content": "(9): Conv2d(64, 64, kernel_siz", + "type": "text" + }, + { + "bbox": [ + 228, + 108, + 234, + 113 + ], + "score": 0.28, + "content": "\\div =", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 106, + 412, + 115 + ], + "score": 1.0, + "content": "(3, 3), stride=(1, 1), padding=(1, 1), bias=False)", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 117, + 113, + 331, + 123 + ], + "spans": [ + { + "bbox": [ + 117, + 113, + 331, + 123 + ], + "score": 1.0, + "content": "(10): BatchNorm2d(64, eps=1e-05, momentum=0.1, affine=True)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 118, + 121, + 191, + 128 + ], + "spans": [ + { + "bbox": [ + 118, + 121, + 191, + 128 + ], + "score": 1.0, + "content": "(11): ReLU (inplace)", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 117, + 127, + 416, + 136 + ], + "spans": [ + { + "bbox": [ + 117, + 127, + 232, + 136 + ], + "score": 1.0, + "content": "(12): Conv2d(64, 64, kernel_size", + "type": "text" + }, + { + "bbox": [ + 232, + 128, + 237, + 134 + ], + "score": 0.5, + "content": ": =", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 127, + 285, + 136 + ], + "score": 1.0, + "content": "(3, 3), strid", + "type": "text" + }, + { + "bbox": [ + 286, + 128, + 291, + 134 + ], + "score": 0.51, + "content": "\\div =", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 127, + 343, + 136 + ], + "score": 1.0, + "content": "(1, 1), padding", + "type": "text" + }, + { + "bbox": [ + 344, + 128, + 349, + 134 + ], + "score": 0.31, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 127, + 416, + 136 + ], + "score": 1.0, + "content": "(1, 1), bias=False)", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 118, + 134, + 330, + 143 + ], + "spans": [ + { + "bbox": [ + 118, + 134, + 330, + 143 + ], + "score": 1.0, + "content": "(13): BatchNorm2d(64, eps=1e-05, momentum=0.1, affine=True)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 117, + 141, + 190, + 150 + ], + "spans": [ + { + "bbox": [ + 117, + 141, + 190, + 150 + ], + "score": 1.0, + "content": "(14): ReLU (inplace)", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 118, + 148, + 444, + 157 + ], + "spans": [ + { + "bbox": [ + 118, + 148, + 261, + 157 + ], + "score": 1.0, + "content": "(15): ConvTranspose2d(64, 3, kernel_size", + "type": "text" + }, + { + "bbox": [ + 261, + 150, + 266, + 155 + ], + "score": 0.37, + "content": ": =", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 148, + 314, + 157 + ], + "score": 1.0, + "content": "(4, 4), strid", + "type": "text" + }, + { + "bbox": [ + 315, + 149, + 320, + 155 + ], + "score": 0.42, + "content": ": =", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 148, + 372, + 157 + ], + "score": 1.0, + "content": "(2, 2), padding", + "type": "text" + }, + { + "bbox": [ + 372, + 150, + 377, + 155 + ], + "score": 0.34, + "content": "^ { \\ast = }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 148, + 444, + 157 + ], + "score": 1.0, + "content": "(1, 1), bias=False)", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 118, + 155, + 165, + 164 + ], + "spans": [ + { + "bbox": [ + 118, + 155, + 165, + 164 + ], + "score": 1.0, + "content": "(16): Tanh ()", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 113, + 165, + 116, + 168 + ], + "spans": [ + { + "bbox": [ + 113, + 165, + 116, + 168 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 171, + 111, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 111, + 177 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 177, + 118, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 113, + 183 + ], + "score": 1.0, + "content": "D", + "type": "text" + }, + { + "bbox": [ + 115, + 179, + 118, + 182 + ], + "score": 1.0, + "content": "(", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 113, + 183, + 187, + 191 + ], + "spans": [ + { + "bbox": [ + 113, + 183, + 187, + 191 + ], + "score": 1.0, + "content": "(main): Sequential (", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 118, + 190, + 198, + 199 + ], + "spans": [ + { + "bbox": [ + 118, + 190, + 167, + 199 + ], + "score": 1.0, + "content": "(0): Dropout", + "type": "text" + }, + { + "bbox": [ + 167, + 191, + 195, + 198 + ], + "score": 0.75, + "content": "\\mathrm { ~ \\bf ~ p ~ } = \\mathrm { ~ \\bf ~ 0 ~ } . 2 \\mathrm { ~ \\bf ~ }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 190, + 198, + 199 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 118, + 196, + 366, + 206 + ], + "spans": [ + { + "bbox": [ + 118, + 196, + 366, + 206 + ], + "score": 1.0, + "content": "(1): Conv2d(3, 96, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1))", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 118, + 204, + 222, + 212 + ], + "spans": [ + { + "bbox": [ + 118, + 204, + 222, + 212 + ], + "score": 1.0, + "content": "(2): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 118, + 211, + 412, + 220 + ], + "spans": [ + { + "bbox": [ + 118, + 211, + 228, + 220 + ], + "score": 1.0, + "content": "(3): Conv2d(96, 96, kernel_siz", + "type": "text" + }, + { + "bbox": [ + 228, + 212, + 234, + 218 + ], + "score": 0.39, + "content": "\\div =", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 211, + 282, + 220 + ], + "score": 1.0, + "content": "(3, 3), stride", + "type": "text" + }, + { + "bbox": [ + 282, + 212, + 288, + 218 + ], + "score": 0.5, + "content": "\\div =", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 211, + 412, + 220 + ], + "score": 1.0, + "content": "(1, 1), padding=(1, 1), bias=False)", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 118, + 218, + 222, + 226 + ], + "spans": [ + { + "bbox": [ + 118, + 218, + 222, + 226 + ], + "score": 1.0, + "content": "(5): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 118, + 225, + 412, + 234 + ], + "spans": [ + { + "bbox": [ + 118, + 225, + 412, + 234 + ], + "score": 1.0, + "content": "(6): Conv2d(96, 96, kernel_size=(3, 3), stride=(2, 2), padding=(1, 1), bias=False)", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 118, + 232, + 223, + 241 + ], + "spans": [ + { + "bbox": [ + 118, + 232, + 223, + 241 + ], + "score": 1.0, + "content": "(8): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 118, + 239, + 195, + 247 + ], + "spans": [ + { + "bbox": [ + 118, + 239, + 166, + 247 + ], + "score": 1.0, + "content": "(9): Dropout", + "type": "text" + }, + { + "bbox": [ + 167, + 240, + 195, + 246 + ], + "score": 0.63, + "content": "( \\mathrm { p } ~ = ~ 0 . 5 )", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 118, + 246, + 419, + 254 + ], + "spans": [ + { + "bbox": [ + 118, + 246, + 236, + 254 + ], + "score": 1.0, + "content": "(10): Conv2d(96, 192, kernel_size", + "type": "text" + }, + { + "bbox": [ + 236, + 247, + 241, + 253 + ], + "score": 0.31, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 246, + 290, + 254 + ], + "score": 1.0, + "content": "(3, 3), stride", + "type": "text" + }, + { + "bbox": [ + 290, + 247, + 295, + 253 + ], + "score": 0.51, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 246, + 347, + 254 + ], + "score": 1.0, + "content": "(1, 1), padding", + "type": "text" + }, + { + "bbox": [ + 347, + 247, + 352, + 253 + ], + "score": 0.57, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 246, + 419, + 254 + ], + "score": 1.0, + "content": "(1, 1), bias=False)", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 117, + 253, + 226, + 262 + ], + "spans": [ + { + "bbox": [ + 117, + 253, + 226, + 262 + ], + "score": 1.0, + "content": "(12): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 117, + 259, + 423, + 269 + ], + "spans": [ + { + "bbox": [ + 117, + 259, + 239, + 269 + ], + "score": 1.0, + "content": "(13): Conv2d(192, 192, kernel_size", + "type": "text" + }, + { + "bbox": [ + 240, + 261, + 245, + 266 + ], + "score": 0.45, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 259, + 293, + 269 + ], + "score": 1.0, + "content": "(3, 3), stride", + "type": "text" + }, + { + "bbox": [ + 293, + 261, + 298, + 266 + ], + "score": 0.64, + "content": ": =", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 259, + 351, + 269 + ], + "score": 1.0, + "content": "(1, 1), padding", + "type": "text" + }, + { + "bbox": [ + 351, + 261, + 356, + 266 + ], + "score": 0.47, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 259, + 397, + 269 + ], + "score": 1.0, + "content": "(1, 1), bias", + "type": "text" + }, + { + "bbox": [ + 397, + 261, + 405, + 267 + ], + "score": 0.29, + "content": "\\scriptstyle = \\mathbf { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 259, + 423, + 269 + ], + "score": 1.0, + "content": "alse)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 117, + 267, + 226, + 276 + ], + "spans": [ + { + "bbox": [ + 117, + 267, + 226, + 276 + ], + "score": 1.0, + "content": "(15): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 118, + 273, + 423, + 282 + ], + "spans": [ + { + "bbox": [ + 118, + 273, + 239, + 282 + ], + "score": 1.0, + "content": "(16): Conv2d(192, 192, kernel_size", + "type": "text" + }, + { + "bbox": [ + 239, + 275, + 244, + 280 + ], + "score": 0.37, + "content": ": =", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 273, + 293, + 282 + ], + "score": 1.0, + "content": "(3, 3), stride", + "type": "text" + }, + { + "bbox": [ + 293, + 275, + 298, + 280 + ], + "score": 0.48, + "content": ": =", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 273, + 351, + 282 + ], + "score": 1.0, + "content": "(2, 2), padding", + "type": "text" + }, + { + "bbox": [ + 351, + 275, + 356, + 280 + ], + "score": 0.39, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 273, + 423, + 282 + ], + "score": 1.0, + "content": "(1, 1), bias=False)", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 118, + 281, + 226, + 289 + ], + "spans": [ + { + "bbox": [ + 118, + 281, + 226, + 289 + ], + "score": 1.0, + "content": "(18): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 117, + 288, + 199, + 297 + ], + "spans": [ + { + "bbox": [ + 117, + 288, + 171, + 297 + ], + "score": 1.0, + "content": "(19): Dropout (", + "type": "text" + }, + { + "bbox": [ + 171, + 289, + 199, + 295 + ], + "score": 0.67, + "content": "\\mathrm { ~ \\cdot ~ p ~ } = \\mathrm { ~ 0 ~ . ~ 5 ~ }", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 118, + 294, + 366, + 303 + ], + "spans": [ + { + "bbox": [ + 118, + 294, + 239, + 303 + ], + "score": 1.0, + "content": "(20): Conv2d(192, 384, kernel_size", + "type": "text" + }, + { + "bbox": [ + 239, + 296, + 245, + 301 + ], + "score": 0.46, + "content": ": =", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 294, + 293, + 303 + ], + "score": 1.0, + "content": "(3, 3), stride", + "type": "text" + }, + { + "bbox": [ + 294, + 296, + 299, + 301 + ], + "score": 0.6, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 294, + 366, + 303 + ], + "score": 1.0, + "content": "(1, 1), bias=False)", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 117, + 302, + 226, + 311 + ], + "spans": [ + { + "bbox": [ + 117, + 302, + 226, + 311 + ], + "score": 1.0, + "content": "(22): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 117, + 308, + 201, + 317 + ], + "spans": [ + { + "bbox": [ + 117, + 308, + 201, + 317 + ], + "score": 1.0, + "content": "(23): Dropout (p = 0.5)", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 118, + 315, + 366, + 324 + ], + "spans": [ + { + "bbox": [ + 118, + 315, + 239, + 324 + ], + "score": 1.0, + "content": "(24): Conv2d(384, 384, kernel_size", + "type": "text" + }, + { + "bbox": [ + 240, + 317, + 244, + 322 + ], + "score": 0.45, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 315, + 293, + 324 + ], + "score": 1.0, + "content": "(3, 3), stride", + "type": "text" + }, + { + "bbox": [ + 294, + 317, + 298, + 322 + ], + "score": 0.53, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 315, + 366, + 324 + ], + "score": 1.0, + "content": "(1, 1), bias=False)", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 117, + 322, + 226, + 331 + ], + "spans": [ + { + "bbox": [ + 117, + 322, + 226, + 331 + ], + "score": 1.0, + "content": "(26): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 118, + 330, + 199, + 338 + ], + "spans": [ + { + "bbox": [ + 118, + 330, + 170, + 338 + ], + "score": 1.0, + "content": "(27): Dropout", + "type": "text" + }, + { + "bbox": [ + 170, + 330, + 199, + 337 + ], + "score": 0.47, + "content": "( \\mathrm { p } ~ = ~ 0 . 5 )", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 117, + 336, + 366, + 345 + ], + "spans": [ + { + "bbox": [ + 117, + 336, + 366, + 345 + ], + "score": 1.0, + "content": "(28): Conv2d(384, 384, kernel_size=(1, 1), stride=(1, 1), bias=False)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 117, + 343, + 226, + 352 + ], + "spans": [ + { + "bbox": [ + 117, + 343, + 226, + 352 + ], + "score": 1.0, + "content": "(30): LeakyReLU (0.2, inplace)", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 117, + 351, + 201, + 359 + ], + "spans": [ + { + "bbox": [ + 117, + 351, + 169, + 359 + ], + "score": 1.0, + "content": "(31): Dropout", + "type": "text" + }, + { + "bbox": [ + 169, + 351, + 199, + 358 + ], + "score": 0.55, + "content": "( \\mathrm { p } ~ = ~ 0 . 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 351, + 201, + 359 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 113, + 360, + 116, + 364 + ], + "spans": [ + { + "bbox": [ + 113, + 360, + 116, + 364 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 112, + 365, + 197, + 373 + ], + "spans": [ + { + "bbox": [ + 112, + 365, + 197, + 373 + ], + "score": 1.0, + "content": "(V): Linear (6144 -> 1)", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 112, + 371, + 200, + 380 + ], + "spans": [ + { + "bbox": [ + 112, + 371, + 200, + 380 + ], + "score": 1.0, + "content": "(S): Linear (6144 -> 10)", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 379, + 112, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 112, + 386 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 86, + 448, + 386 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/SJA7xfb0b/SJA7xfb0b_model.json b/parse/train/SJA7xfb0b/SJA7xfb0b_model.json new file mode 100644 index 0000000000000000000000000000000000000000..1ba9451fb010953e59f0aeacd1130718f3a31a50 --- /dev/null +++ b/parse/train/SJA7xfb0b/SJA7xfb0b_model.json @@ -0,0 +1,40401 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 689, + 1301, + 689, + 1301, + 1115, + 398, + 1115 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1486, + 1403, + 1486, + 1403, + 1944, + 298, + 1944 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1257, + 1403, + 1257, + 1403, + 1471, + 299, + 1471 + ], + "score": 0.975 + }, + { + "category_id": 2, + "poly": [ + 304, + 1977, + 1402, + 1977, + 1402, + 2032, + 304, + 2032 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 315, + 355, + 1121, + 355, + 1121, + 535, + 315, + 535 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 302, + 219, + 619, + 219, + 619, + 268, + 302, + 268 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 302, + 1184, + 573, + 1184, + 573, + 1219, + 302, + 1219 + ], + "score": 0.883 + }, + { + "category_id": 0, + "poly": [ + 773, + 616, + 927, + 616, + 927, + 649, + 773, + 649 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 104, + 299, + 104 + ], + "score": 0.858 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 857, + 2088, + 857, + 2112, + 841, + 2112 + ], + "score": 0.726 + }, + { + "category_id": 1, + "poly": [ + 314, + 319, + 1245, + 319, + 1245, + 353, + 314, + 353 + ], + "score": 0.491 + }, + { + "category_id": 0, + "poly": [ + 314, + 319, + 1245, + 319, + 1245, + 353, + 314, + 353 + ], + "score": 0.395 + }, + { + "category_id": 13, + "poly": [ + 609, + 785, + 629, + 785, + 629, + 812, + 609, + 812 + ], + "score": 0.77, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 314, + 415, + 336, + 415, + 336, + 444, + 314, + 444 + ], + "score": 0.76, + "latex": "\\diamondsuit" + }, + { + "category_id": 13, + "poly": [ + 313, + 448, + 333, + 448, + 333, + 471, + 313, + 471 + ], + "score": 0.76, + "latex": "\\star" + }, + { + "category_id": 13, + "poly": [ + 396, + 877, + 418, + 877, + 418, + 905, + 396, + 905 + ], + "score": 0.73, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 681, + 321, + 740, + 321, + 740, + 351, + 681, + 351 + ], + "score": 0.72, + "latex": "\\mathbf { L i } ^ { \\circ , \\star }" + }, + { + "category_id": 13, + "poly": [ + 313, + 353, + 331, + 353, + 331, + 385, + 313, + 385 + ], + "score": 0.4, + "latex": "\\dagger" + }, + { + "category_id": 13, + "poly": [ + 313, + 388, + 333, + 388, + 333, + 410, + 313, + 410 + ], + "score": 0.28, + "latex": "\\circ" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1971.0, + 1402.0, + 1971.0, + 1402.0, + 2012.0, + 329.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 2005.0, + 516.0, + 2005.0, + 516.0, + 2035.0, + 298.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 217.0, + 628.0, + 217.0, + 628.0, + 273.0, + 291.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1181.0, + 579.0, + 1181.0, + 579.0, + 1228.0, + 294.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 612.0, + 934.0, + 612.0, + 934.0, + 655.0, + 768.0, + 655.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": [ + 840.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 840.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 312.0, + 680.0, + 312.0, + 680.0, + 362.0, + 309.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 312.0, + 1249.0, + 312.0, + 1249.0, + 362.0, + 741.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 688.0, + 1305.0, + 688.0, + 1305.0, + 723.0, + 395.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 718.0, + 1305.0, + 718.0, + 1305.0, + 755.0, + 393.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 746.0, + 1306.0, + 746.0, + 1306.0, + 788.0, + 392.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 780.0, + 608.0, + 780.0, + 608.0, + 814.0, + 394.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 780.0, + 1304.0, + 780.0, + 1304.0, + 814.0, + 630.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 811.0, + 1305.0, + 811.0, + 1305.0, + 845.0, + 394.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 842.0, + 1305.0, + 842.0, + 1305.0, + 874.0, + 395.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 872.0, + 395.0, + 872.0, + 395.0, + 905.0, + 392.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 872.0, + 1306.0, + 872.0, + 1306.0, + 905.0, + 419.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 904.0, + 1305.0, + 904.0, + 1305.0, + 934.0, + 393.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 934.0, + 1304.0, + 934.0, + 1304.0, + 966.0, + 394.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 963.0, + 1304.0, + 963.0, + 1304.0, + 997.0, + 393.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 997.0, + 1303.0, + 997.0, + 1303.0, + 1028.0, + 395.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1025.0, + 1304.0, + 1025.0, + 1304.0, + 1057.0, + 395.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1054.0, + 1305.0, + 1054.0, + 1305.0, + 1088.0, + 393.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1085.0, + 1063.0, + 1085.0, + 1063.0, + 1120.0, + 394.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1486.0, + 1404.0, + 1486.0, + 1404.0, + 1521.0, + 294.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1518.0, + 1402.0, + 1518.0, + 1402.0, + 1549.0, + 296.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1547.0, + 1405.0, + 1547.0, + 1405.0, + 1582.0, + 294.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1577.0, + 1405.0, + 1577.0, + 1405.0, + 1613.0, + 293.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1608.0, + 1405.0, + 1608.0, + 1405.0, + 1643.0, + 294.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1639.0, + 1405.0, + 1639.0, + 1405.0, + 1674.0, + 294.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1669.0, + 1403.0, + 1669.0, + 1403.0, + 1703.0, + 292.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1698.0, + 1405.0, + 1698.0, + 1405.0, + 1734.0, + 293.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1729.0, + 1405.0, + 1729.0, + 1405.0, + 1765.0, + 293.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1759.0, + 1407.0, + 1759.0, + 1407.0, + 1795.0, + 293.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1790.0, + 1405.0, + 1790.0, + 1405.0, + 1825.0, + 294.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1823.0, + 1405.0, + 1823.0, + 1405.0, + 1854.0, + 296.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 1402.0, + 1851.0, + 1402.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1879.0, + 1405.0, + 1879.0, + 1405.0, + 1918.0, + 293.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1911.0, + 1407.0, + 1911.0, + 1407.0, + 1948.0, + 293.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1257.0, + 1404.0, + 1257.0, + 1404.0, + 1288.0, + 297.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1288.0, + 1403.0, + 1288.0, + 1403.0, + 1319.0, + 295.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1317.0, + 1405.0, + 1317.0, + 1405.0, + 1352.0, + 293.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1347.0, + 1403.0, + 1347.0, + 1403.0, + 1384.0, + 293.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1376.0, + 1403.0, + 1376.0, + 1403.0, + 1412.0, + 294.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1407.0, + 1407.0, + 1407.0, + 1407.0, + 1441.0, + 295.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1439.0, + 667.0, + 1439.0, + 667.0, + 1473.0, + 295.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 352.0, + 538.0, + 352.0, + 538.0, + 383.0, + 332.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 379.0, + 649.0, + 379.0, + 649.0, + 416.0, + 334.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 411.0, + 835.0, + 411.0, + 835.0, + 448.0, + 337.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 442.0, + 645.0, + 442.0, + 645.0, + 475.0, + 334.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 472.0, + 1122.0, + 472.0, + 1122.0, + 508.0, + 313.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 503.0, + 1068.0, + 503.0, + 1068.0, + 540.0, + 311.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 312.0, + 680.0, + 312.0, + 680.0, + 362.0, + 309.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 312.0, + 1249.0, + 312.0, + 1249.0, + 362.0, + 741.0, + 362.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1165, + 1405, + 1165, + 1405, + 1563, + 297, + 1563 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 297, + 445, + 1404, + 445, + 1404, + 601, + 297, + 601 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1578, + 1404, + 1578, + 1404, + 1763, + 298, + 1763 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 614, + 1403, + 614, + 1403, + 739, + 298, + 739 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1403, + 228, + 1403, + 353, + 297, + 353 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1027, + 1404, + 1027, + 1404, + 1151, + 297, + 1151 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 682, + 370, + 1015, + 370, + 1015, + 428, + 682, + 428 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 714, + 941, + 986, + 941, + 986, + 1013, + 714, + 1013 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 749, + 759, + 949, + 759, + 949, + 829, + 749, + 829 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 362, + 1836, + 1403, + 1836, + 1403, + 2035, + 362, + 2035 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 301, + 843, + 783, + 843, + 783, + 877, + 301, + 877 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 296, + 890, + 1228, + 890, + 1228, + 924, + 296, + 924 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 299, + 1778, + 1051, + 1778, + 1051, + 1810, + 299, + 1810 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.706 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.172 + }, + { + "category_id": 14, + "poly": [ + 745, + 756, + 951, + 756, + 951, + 829, + 745, + 829 + ], + "score": 0.94, + "latex": "\\int _ { \\mathcal { X } } f ^ { 2 } ( x ) \\mu ( x ) d x ." + }, + { + "category_id": 14, + "poly": [ + 711, + 938, + 984, + 938, + 984, + 1013, + 711, + 1013 + ], + "score": 0.93, + "latex": "\\int _ { \\mathcal { X } } \\| \\nabla _ { \\boldsymbol { x } } f ( \\boldsymbol { x } ) \\| _ { 2 } ^ { 2 } \\mu ( \\boldsymbol { x } ) d x ," + }, + { + "category_id": 14, + "poly": [ + 677, + 369, + 1018, + 369, + 1018, + 430, + 677, + 430 + ], + "score": 0.91, + "latex": "\\operatorname* { s u p } _ { f \\in \\mathcal { F } } \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) ." + }, + { + "category_id": 13, + "poly": [ + 589, + 449, + 608, + 449, + 608, + 479, + 589, + 479 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 949, + 448, + 980, + 448, + 980, + 476, + 949, + 476 + ], + "score": 0.86, + "latex": "\\mathcal { F }" + }, + { + "category_id": 13, + "poly": [ + 751, + 846, + 776, + 846, + 776, + 876, + 751, + 876 + ], + "score": 0.86, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 681, + 846, + 702, + 846, + 702, + 872, + 681, + 872 + ], + "score": 0.82, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 1225, + 293, + 1245, + 293, + 1245, + 324, + 1225, + 324 + ], + "score": 0.82, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1268, + 1872, + 1289, + 1872, + 1289, + 1900, + 1268, + 1900 + ], + "score": 0.8, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 372, + 850, + 392, + 850, + 392, + 877, + 372, + 877 + ], + "score": 0.8, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1374, + 684, + 1394, + 684, + 1394, + 710, + 1374, + 710 + ], + "score": 0.75, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 894, + 1982, + 912, + 1982, + 912, + 2005, + 894, + 2005 + ], + "score": 0.74, + "latex": "\\mu" + }, + { + "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, + 862.0, + 2085.0, + 862.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1164.0, + 1406.0, + 1164.0, + 1406.0, + 1202.0, + 294.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1193.0, + 1405.0, + 1193.0, + 1405.0, + 1234.0, + 292.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1225.0, + 1405.0, + 1225.0, + 1405.0, + 1263.0, + 291.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1256.0, + 1406.0, + 1256.0, + 1406.0, + 1291.0, + 292.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1290.0, + 1403.0, + 1290.0, + 1403.0, + 1322.0, + 295.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1316.0, + 1405.0, + 1316.0, + 1405.0, + 1355.0, + 292.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1348.0, + 1405.0, + 1348.0, + 1405.0, + 1385.0, + 294.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1378.0, + 1405.0, + 1378.0, + 1405.0, + 1415.0, + 294.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1412.0, + 1402.0, + 1412.0, + 1402.0, + 1444.0, + 295.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1439.0, + 1403.0, + 1439.0, + 1403.0, + 1474.0, + 294.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1468.0, + 1405.0, + 1468.0, + 1405.0, + 1507.0, + 291.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1498.0, + 1405.0, + 1498.0, + 1405.0, + 1539.0, + 294.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1533.0, + 1056.0, + 1533.0, + 1056.0, + 1565.0, + 296.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 447.0, + 588.0, + 447.0, + 588.0, + 480.0, + 296.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 447.0, + 948.0, + 447.0, + 948.0, + 480.0, + 609.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 447.0, + 1405.0, + 447.0, + 1405.0, + 480.0, + 981.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 478.0, + 1405.0, + 478.0, + 1405.0, + 511.0, + 295.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 508.0, + 1405.0, + 508.0, + 1405.0, + 542.0, + 296.0, + 542.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": [ + 295.0, + 567.0, + 560.0, + 567.0, + 560.0, + 604.0, + 295.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1578.0, + 1405.0, + 1578.0, + 1405.0, + 1609.0, + 296.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1609.0, + 1404.0, + 1609.0, + 1404.0, + 1641.0, + 296.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1640.0, + 1404.0, + 1640.0, + 1404.0, + 1669.0, + 293.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1669.0, + 1404.0, + 1669.0, + 1404.0, + 1705.0, + 294.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1700.0, + 1404.0, + 1700.0, + 1404.0, + 1734.0, + 295.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1732.0, + 1110.0, + 1732.0, + 1110.0, + 1763.0, + 296.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 616.0, + 1405.0, + 616.0, + 1405.0, + 648.0, + 296.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 646.0, + 1405.0, + 646.0, + 1405.0, + 680.0, + 293.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 675.0, + 1373.0, + 675.0, + 1373.0, + 714.0, + 293.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 675.0, + 1405.0, + 675.0, + 1405.0, + 714.0, + 1395.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 708.0, + 765.0, + 708.0, + 765.0, + 741.0, + 296.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 230.0, + 1404.0, + 230.0, + 1404.0, + 266.0, + 291.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 261.0, + 1405.0, + 261.0, + 1405.0, + 294.0, + 293.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 289.0, + 1224.0, + 289.0, + 1224.0, + 327.0, + 292.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 289.0, + 1407.0, + 289.0, + 1407.0, + 327.0, + 1246.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 322.0, + 1213.0, + 322.0, + 1213.0, + 355.0, + 295.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1026.0, + 1405.0, + 1026.0, + 1405.0, + 1063.0, + 291.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1059.0, + 1404.0, + 1059.0, + 1404.0, + 1091.0, + 294.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1089.0, + 1405.0, + 1089.0, + 1405.0, + 1126.0, + 292.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1118.0, + 1200.0, + 1118.0, + 1200.0, + 1157.0, + 292.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1836.0, + 1404.0, + 1836.0, + 1404.0, + 1871.0, + 361.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1867.0, + 1267.0, + 1867.0, + 1267.0, + 1902.0, + 394.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 1867.0, + 1404.0, + 1867.0, + 1404.0, + 1902.0, + 1290.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1899.0, + 967.0, + 1899.0, + 967.0, + 1932.0, + 394.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1978.0, + 362.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1974.0, + 893.0, + 1974.0, + 893.0, + 2007.0, + 395.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 1974.0, + 1407.0, + 1974.0, + 1407.0, + 2007.0, + 913.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 2001.0, + 1329.0, + 2001.0, + 1329.0, + 2038.0, + 393.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 839.0, + 371.0, + 839.0, + 371.0, + 881.0, + 296.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 839.0, + 680.0, + 839.0, + 680.0, + 881.0, + 393.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 839.0, + 750.0, + 839.0, + 750.0, + 881.0, + 703.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 839.0, + 787.0, + 839.0, + 787.0, + 881.0, + 777.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 888.0, + 1232.0, + 888.0, + 1232.0, + 927.0, + 292.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1775.0, + 1055.0, + 1775.0, + 1055.0, + 1813.0, + 294.0, + 1813.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 950, + 1403, + 950, + 1403, + 1137, + 297, + 1137 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1575, + 1405, + 1575, + 1405, + 2034, + 297, + 2034 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1281, + 1404, + 1281, + 1404, + 1405, + 298, + 1405 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 301, + 1467, + 1405, + 1467, + 1405, + 1563, + 301, + 1563 + ], + "score": 0.963 + }, + { + "category_id": 8, + "poly": [ + 669, + 1408, + 1029, + 1408, + 1029, + 1464, + 669, + 1464 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 574, + 1140, + 1123, + 1140, + 1123, + 1215, + 574, + 1215 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 299, + 1233, + 1231, + 1233, + 1231, + 1269, + 299, + 1269 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 297, + 885, + 1077, + 885, + 1077, + 922, + 297, + 922 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 359, + 229, + 1404, + 229, + 1404, + 845, + 359, + 845 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.642 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.361 + }, + { + "category_id": 14, + "poly": [ + 669, + 1407, + 1027, + 1407, + 1027, + 1466, + 669, + 1466 + ], + "score": 0.94, + "latex": "d _ { \\mathcal { F } } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { f \\in \\mathcal { F } } \\left| \\Delta ( f ; \\mathbb { P } , \\mathbb { Q } ) \\right| ," + }, + { + "category_id": 14, + "poly": [ + 575, + 1138, + 1123, + 1138, + 1123, + 1216, + 575, + 1216 + ], + "score": 0.93, + "latex": "F _ { \\mathbb { P } } ( x ) = \\int _ { - \\infty } ^ { x _ { 1 } } \\ldots \\cdot \\cdot \\int _ { - \\infty } ^ { x _ { d } } \\mathbb { P } ( u _ { 1 } , \\ldots \\cdot u _ { d } ) d u _ { 1 } \\ldots \\cdot \\cdot d u _ { d } ." + }, + { + "category_id": 13, + "poly": [ + 488, + 1106, + 683, + 1106, + 683, + 1139, + 488, + 1139 + ], + "score": 0.92, + "latex": "\\boldsymbol { x } = ( x _ { 1 } , \\dots , x _ { d } )" + }, + { + "category_id": 13, + "poly": [ + 424, + 1073, + 526, + 1073, + 526, + 1103, + 424, + 1103 + ], + "score": 0.91, + "latex": "\\mathcal { X } \\subset \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 1079, + 1469, + 1219, + 1469, + 1219, + 1496, + 1079, + 1496 + ], + "score": 0.91, + "latex": "\\Delta : \\mathcal { F } \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 1227, + 1044, + 1285, + 1044, + 1285, + 1077, + 1227, + 1077 + ], + "score": 0.91, + "latex": "\\mathbb { P } ( x )" + }, + { + "category_id": 13, + "poly": [ + 1339, + 1044, + 1400, + 1044, + 1400, + 1077, + 1339, + 1077 + ], + "score": 0.9, + "latex": "\\mathbb { Q } ( x )" + }, + { + "category_id": 13, + "poly": [ + 508, + 1530, + 589, + 1530, + 589, + 1563, + 508, + 1563 + ], + "score": 0.9, + "latex": "F _ { \\mathbb { P } } , F _ { \\mathbb { Q } }" + }, + { + "category_id": 13, + "poly": [ + 901, + 1233, + 1225, + 1233, + 1225, + 1270, + 901, + 1270 + ], + "score": 0.9, + "latex": "s _ { \\mathbb { P } } ( x ) = \\nabla _ { x } \\log ( \\mathbb { P } ( x ) ) \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 676, + 1076, + 714, + 1076, + 714, + 1108, + 676, + 1108 + ], + "score": 0.89, + "latex": "F _ { \\mathbb { Q } }" + }, + { + "category_id": 13, + "poly": [ + 1287, + 1500, + 1342, + 1500, + 1342, + 1531, + 1287, + 1531 + ], + "score": 0.89, + "latex": "\\mathbb { P } , \\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 589, + 1077, + 622, + 1077, + 622, + 1105, + 589, + 1105 + ], + "score": 0.89, + "latex": "F _ { \\mathbb { P } }" + }, + { + "category_id": 13, + "poly": [ + 744, + 1046, + 769, + 1046, + 769, + 1076, + 744, + 1076 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 371, + 1469, + 402, + 1469, + 402, + 1497, + 371, + 1497 + ], + "score": 0.86, + "latex": "\\mathcal { F }" + }, + { + "category_id": 13, + "poly": [ + 800, + 1470, + 826, + 1470, + 826, + 1496, + 800, + 1496 + ], + "score": 0.85, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 1236, + 1577, + 1269, + 1577, + 1269, + 1605, + 1236, + 1605 + ], + "score": 0.85, + "latex": "\\mathcal { F }" + }, + { + "category_id": 13, + "poly": [ + 1376, + 1077, + 1402, + 1077, + 1402, + 1106, + 1376, + 1106 + ], + "score": 0.85, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 724, + 1470, + 752, + 1470, + 752, + 1496, + 724, + 1496 + ], + "score": 0.85, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 665, + 1046, + 690, + 1046, + 690, + 1072, + 665, + 1072 + ], + "score": 0.84, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1302, + 1076, + 1324, + 1076, + 1324, + 1102, + 1302, + 1102 + ], + "score": 0.82, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 975, + 1578, + 1002, + 1578, + 1002, + 1604, + 975, + 1604 + ], + "score": 0.82, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 559, + 1348, + 580, + 1348, + 580, + 1375, + 559, + 1375 + ], + "score": 0.82, + "latex": "\\varphi" + }, + { + "category_id": 13, + "poly": [ + 839, + 1535, + 909, + 1535, + 909, + 1564, + 839, + 1564 + ], + "score": 0.81, + "latex": "s _ { \\mathbb { P } } , s _ { \\mathbb { Q } }" + }, + { + "category_id": 13, + "poly": [ + 802, + 1674, + 822, + 1674, + 822, + 1700, + 802, + 1700 + ], + "score": 0.8, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 518, + 1699, + 546, + 1699, + 546, + 1726, + 518, + 1726 + ], + "score": 0.78, + "latex": "\\mathcal { X }" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 881.0, + 1080.0, + 881.0, + 1080.0, + 927.0, + 291.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 951.0, + 1403.0, + 951.0, + 1403.0, + 987.0, + 293.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 982.0, + 1405.0, + 982.0, + 1405.0, + 1019.0, + 292.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1013.0, + 1405.0, + 1013.0, + 1405.0, + 1049.0, + 293.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1042.0, + 664.0, + 1042.0, + 664.0, + 1081.0, + 292.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1042.0, + 743.0, + 1042.0, + 743.0, + 1081.0, + 691.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 1042.0, + 1226.0, + 1042.0, + 1226.0, + 1081.0, + 770.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1042.0, + 1338.0, + 1042.0, + 1338.0, + 1081.0, + 1286.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1069.0, + 423.0, + 1069.0, + 423.0, + 1111.0, + 292.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1069.0, + 588.0, + 1069.0, + 588.0, + 1111.0, + 527.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1069.0, + 675.0, + 1069.0, + 675.0, + 1111.0, + 623.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1069.0, + 1301.0, + 1069.0, + 1301.0, + 1111.0, + 715.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 1069.0, + 1375.0, + 1069.0, + 1375.0, + 1111.0, + 1325.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1069.0, + 1407.0, + 1069.0, + 1407.0, + 1111.0, + 1403.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1106.0, + 487.0, + 1106.0, + 487.0, + 1142.0, + 295.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1106.0, + 798.0, + 1106.0, + 798.0, + 1142.0, + 684.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1576.0, + 974.0, + 1576.0, + 974.0, + 1611.0, + 294.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1576.0, + 1235.0, + 1576.0, + 1235.0, + 1611.0, + 1003.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 1576.0, + 1405.0, + 1576.0, + 1405.0, + 1611.0, + 1270.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1604.0, + 1408.0, + 1604.0, + 1408.0, + 1644.0, + 291.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1635.0, + 1405.0, + 1635.0, + 1405.0, + 1672.0, + 292.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1668.0, + 801.0, + 1668.0, + 801.0, + 1703.0, + 295.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1668.0, + 1403.0, + 1668.0, + 1403.0, + 1703.0, + 823.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1696.0, + 517.0, + 1696.0, + 517.0, + 1733.0, + 292.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 1696.0, + 1406.0, + 1696.0, + 1406.0, + 1733.0, + 547.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1726.0, + 1407.0, + 1726.0, + 1407.0, + 1763.0, + 295.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1758.0, + 1403.0, + 1758.0, + 1403.0, + 1793.0, + 294.0, + 1793.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": [ + 295.0, + 1822.0, + 1405.0, + 1822.0, + 1405.0, + 1853.0, + 295.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1852.0, + 1403.0, + 1852.0, + 1403.0, + 1883.0, + 296.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1881.0, + 1405.0, + 1881.0, + 1405.0, + 1916.0, + 292.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 1406.0, + 1911.0, + 1406.0, + 1945.0, + 295.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1942.0, + 1403.0, + 1942.0, + 1403.0, + 1975.0, + 292.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1967.0, + 1405.0, + 1967.0, + 1405.0, + 2010.0, + 291.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 466.0, + 2003.0, + 466.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1280.0, + 1404.0, + 1280.0, + 1404.0, + 1315.0, + 292.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1313.0, + 1402.0, + 1313.0, + 1402.0, + 1345.0, + 294.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1343.0, + 558.0, + 1343.0, + 558.0, + 1379.0, + 293.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1343.0, + 1405.0, + 1343.0, + 1405.0, + 1379.0, + 581.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1373.0, + 695.0, + 1373.0, + 695.0, + 1408.0, + 293.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1466.0, + 370.0, + 1466.0, + 370.0, + 1503.0, + 295.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1466.0, + 723.0, + 1466.0, + 723.0, + 1503.0, + 403.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 1466.0, + 799.0, + 1466.0, + 799.0, + 1503.0, + 753.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1466.0, + 1078.0, + 1466.0, + 1078.0, + 1503.0, + 827.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1466.0, + 1405.0, + 1466.0, + 1405.0, + 1503.0, + 1220.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1499.0, + 1286.0, + 1499.0, + 1286.0, + 1533.0, + 296.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1499.0, + 1404.0, + 1499.0, + 1404.0, + 1533.0, + 1343.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1525.0, + 507.0, + 1525.0, + 507.0, + 1569.0, + 294.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 1525.0, + 838.0, + 1525.0, + 838.0, + 1569.0, + 590.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1525.0, + 921.0, + 1525.0, + 921.0, + 1569.0, + 910.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1229.0, + 900.0, + 1229.0, + 900.0, + 1272.0, + 292.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1229.0, + 1236.0, + 1229.0, + 1236.0, + 1272.0, + 1226.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 230.0, + 1405.0, + 230.0, + 1405.0, + 266.0, + 359.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 261.0, + 1405.0, + 261.0, + 1405.0, + 296.0, + 392.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 288.0, + 921.0, + 288.0, + 921.0, + 329.0, + 393.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 329.0, + 1405.0, + 329.0, + 1405.0, + 367.0, + 357.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 359.0, + 1404.0, + 359.0, + 1404.0, + 395.0, + 394.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 392.0, + 677.0, + 392.0, + 677.0, + 425.0, + 394.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 427.0, + 1404.0, + 427.0, + 1404.0, + 465.0, + 358.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 462.0, + 1404.0, + 462.0, + 1404.0, + 495.0, + 395.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 489.0, + 1405.0, + 489.0, + 1405.0, + 528.0, + 391.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 520.0, + 548.0, + 520.0, + 548.0, + 554.0, + 394.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 561.0, + 1405.0, + 561.0, + 1405.0, + 594.0, + 359.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 591.0, + 1405.0, + 591.0, + 1405.0, + 624.0, + 395.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 618.0, + 1406.0, + 618.0, + 1406.0, + 656.0, + 393.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 651.0, + 1406.0, + 651.0, + 1406.0, + 687.0, + 391.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 679.0, + 1405.0, + 679.0, + 1405.0, + 718.0, + 394.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 710.0, + 1292.0, + 710.0, + 1292.0, + 750.0, + 393.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 750.0, + 1403.0, + 750.0, + 1403.0, + 785.0, + 359.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 782.0, + 1405.0, + 782.0, + 1405.0, + 817.0, + 392.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 813.0, + 528.0, + 813.0, + 528.0, + 847.0, + 392.0, + 847.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 297, + 223, + 1404, + 223, + 1404, + 1221, + 297, + 1221 + ], + "score": 0.983, + "html": "
△(f;P,Q)FFunction classdg(P,Q)Closed Form
-Divergence(Goodfellow et al., 2014)(Nowozin et al., 2016)Ex~Pf(x)-Ex~Q*(f(x))*Fenchel Conjugate{f:x→R,f∈domp*}E~[(]
Wasserstein -1(Arjovsky et al., 2017)(Gulrajani et al., 2017)Ex~Pf(x)-Ex~qf(x){f : x→R,fli ≤1}infπ∈(P,Q) Sx |lx-ylli dπ(x,y)Sinkhorn Divergence(Genevay et al., 2017)
MMD(Li et al., 2017)(Li et al., 2015)(Dziugaite et al., 2015)Ex~Pf(x)-Ex~qf(x){f:x→R,/fl/x ≤1}Ex~Pkx -Ex~Qr llyex
SteinDiscrepancy(Wang & Liu, 2016)Ex~Q[T(P)f(x)]T(P)=(Vxlog(P(x))T+Vx.{f:x→Rdf smooth with zeroboundary conditionNA in generalhas a closed formin RKHS
Cramerfor d =1(Bellemare et al., 2017a)Ex~Pf(x)-Ex~Qf(x){f:x→R,Ea~P()²≤1,f smooth with zeroboundary conditionEx~P(Fp(2)-F0())²P(x)xER
μ-FisherIPM(Mroueh & Sercu,2017)Ex~Pf(x)-Ex~Qf(x){f:X→R,f∈L(x,μ),Ex~μf²(x)≤1}Ex~u(P()-Q(x))²2μ(x)
μ-SobolevIPM(This work)Ex~Pf(x)-Ex~qf(x){f:X→R,f eW²(x,μ),Ex~μ|/Vxf(x)²≤1,with zero boundary condition }1VE~u∑i-((中i(P)-Φi(Q)μ(x)where 𝜙(P) =Px-i(x-i)FP[xx-i-ij(mi)x−=(x1,..xi-1,Ti+1,..d)
" + }, + { + "category_id": 1, + "poly": [ + 296, + 1439, + 1405, + 1439, + 1405, + 1595, + 296, + 1595 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1736, + 1404, + 1736, + 1404, + 1832, + 298, + 1832 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 290, + 1607, + 1399, + 1607, + 1399, + 1673, + 290, + 1673 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 618, + 1686, + 1080, + 1686, + 1080, + 1725, + 618, + 1725 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 427, + 1850, + 1268, + 1850, + 1268, + 1936, + 427, + 1936 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 569, + 1998, + 1127, + 1998, + 1127, + 2044, + 569, + 2044 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 296, + 1952, + 927, + 1952, + 927, + 1987, + 296, + 1987 + ], + "score": 0.929 + }, + { + "category_id": 0, + "poly": [ + 297, + 1369, + 1045, + 1369, + 1045, + 1409, + 297, + 1409 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.779 + }, + { + "category_id": 6, + "poly": [ + 298, + 1241, + 1402, + 1241, + 1402, + 1306, + 298, + 1306 + ], + "score": 0.706 + }, + { + "category_id": 7, + "poly": [ + 298, + 1241, + 1402, + 1241, + 1402, + 1306, + 298, + 1306 + ], + "score": 0.22 + }, + { + "category_id": 13, + "poly": [ + 758, + 1770, + 947, + 1770, + 947, + 1803, + 758, + 1803 + ], + "score": 0.93, + "latex": "f , g \\in \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu )" + }, + { + "category_id": 13, + "poly": [ + 407, + 1953, + 521, + 1953, + 521, + 1987, + 407, + 1987 + ], + "score": 0.93, + "latex": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu )" + }, + { + "category_id": 13, + "poly": [ + 1252, + 1738, + 1367, + 1738, + 1367, + 1772, + 1252, + 1772 + ], + "score": 0.93, + "latex": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu )" + }, + { + "category_id": 13, + "poly": [ + 680, + 1609, + 759, + 1609, + 759, + 1643, + 680, + 1643 + ], + "score": 0.93, + "latex": "\\mathcal { P } ( \\mathcal { X } )" + }, + { + "category_id": 14, + "poly": [ + 429, + 1845, + 1271, + 1845, + 1271, + 1939, + 429, + 1939 + ], + "score": 0.93, + "latex": "\\langle f , g \\rangle _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } = \\int _ { \\mathcal { X } } f ( x ) g ( x ) \\mu ( x ) d x , \\| f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } = \\sqrt { \\int _ { \\mathcal { X } } f ^ { 2 } ( x ) \\mu ( x ) d x } ." + }, + { + "category_id": 13, + "poly": [ + 516, + 1606, + 624, + 1606, + 624, + 1638, + 516, + 1638 + ], + "score": 0.91, + "latex": "\\mathcal { X } \\subset \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 746, + 1738, + 824, + 1738, + 824, + 1771, + 746, + 1771 + ], + "score": 0.91, + "latex": "\\mathcal { P } ( \\mathcal { X } )" + }, + { + "category_id": 13, + "poly": [ + 300, + 1641, + 377, + 1641, + 377, + 1674, + 300, + 1674 + ], + "score": 0.91, + "latex": "\\mathcal { P } ( \\mathcal { X } )" + }, + { + "category_id": 13, + "poly": [ + 1316, + 1609, + 1403, + 1609, + 1403, + 1642, + 1316, + 1642 + ], + "score": 0.88, + "latex": "\\mathbb { P } , \\mathbb { Q } \\in" + }, + { + "category_id": 13, + "poly": [ + 822, + 1642, + 847, + 1642, + 847, + 1671, + 822, + 1671 + ], + "score": 0.86, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 1111, + 785, + 1319, + 785, + 1319, + 855, + 1111, + 855 + ], + "score": 0.85, + "latex": "\\begin{array} { r l } & { \\sqrt { \\mathbb { E } _ { x \\sim \\mathbb { P } } \\left( \\frac { F _ { \\mathbb { P } } \\left( x \\right) - F _ { \\mathbb { Q } } \\left( x \\right) } { \\mathbb { P } \\left( x \\right) } \\right) ^ { 2 } } } \\\\ & { x \\in \\mathbb { R } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1222, + 1610, + 1250, + 1610, + 1250, + 1637, + 1222, + 1637 + ], + "score": 0.83, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 436, + 1776, + 455, + 1776, + 455, + 1802, + 436, + 1802 + ], + "score": 0.83, + "latex": "\\mu" + }, + { + "category_id": 14, + "poly": [ + 569, + 1998, + 1124, + 1998, + 1124, + 2044, + 569, + 2044 + ], + "score": 0.82, + "latex": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) = \\{ f : \\mathcal { X } \\to \\mathbb { R } \\mathrm { s . t } \\ \\| f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } < \\infty \\} ." + }, + { + "category_id": 13, + "poly": [ + 752, + 1643, + 773, + 1643, + 773, + 1668, + 752, + 1668 + ], + "score": 0.82, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 435, + 1644, + 456, + 1644, + 456, + 1673, + 435, + 1673 + ], + "score": 0.81, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 429, + 1744, + 448, + 1744, + 448, + 1770, + 429, + 1770 + ], + "score": 0.81, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1104, + 1054, + 1375, + 1054, + 1375, + 1104, + 1104, + 1104 + ], + "score": 0.8, + "latex": "\\begin{array} { r } { \\frac { 1 } { d } \\sqrt { \\mathbb { E } _ { { x } \\sim { \\mu } } \\sum _ { i = 1 } ^ { d } \\left( \\frac { \\phi _ { i } \\left( \\mathbb { P } \\right) - \\phi _ { i } \\left( \\mathbb { Q } \\right) } { { \\mu } \\left( x \\right) } \\right) ^ { 2 } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1103, + 1193, + 1383, + 1193, + 1383, + 1218, + 1103, + 1218 + ], + "score": 0.8, + "latex": "\\underline { { x ^ { - i } } } = ( x _ { 1 } , \\ldots x _ { i - 1 } , x _ { i + 1 } , \\ldots x _ { d } )" + }, + { + "category_id": 14, + "poly": [ + 617, + 1686, + 1078, + 1686, + 1078, + 1724, + 617, + 1724 + ], + "score": 0.8, + "latex": "\\mu ( x ) = 0 \\implies \\mathbb { P } ( x ) = 0 { \\mathrm { ~ a n d } } \\mathbb { Q } ( x ) = 0 ." + }, + { + "category_id": 13, + "poly": [ + 1117, + 922, + 1307, + 922, + 1307, + 974, + 1117, + 974 + ], + "score": 0.7, + "latex": "\\begin{array} { r } { \\sqrt { \\mathbb { E } _ { x \\sim \\mu } \\left( \\frac { \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) } { \\mu ( x ) } \\right) ^ { 2 } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 309, + 941, + 324, + 941, + 324, + 961, + 309, + 961 + ], + "score": 0.69, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1103, + 1162, + 1352, + 1162, + 1352, + 1193, + 1103, + 1193 + ], + "score": 0.68, + "latex": "-" + }, + { + "category_id": 13, + "poly": [ + 1205, + 1134, + 1280, + 1134, + 1280, + 1159, + 1205, + 1159 + ], + "score": 0.66, + "latex": "\\phi _ { i } ( \\mathbb { P } ) =" + }, + { + "category_id": 13, + "poly": [ + 310, + 1073, + 324, + 1073, + 324, + 1092, + 310, + 1092 + ], + "score": 0.65, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 958, + 1688, + 1071, + 1688, + 1071, + 1723, + 958, + 1723 + ], + "score": 0.65, + "latex": "\\mathbb { Q } ( x ) = 0" + }, + { + "category_id": 13, + "poly": [ + 310, + 332, + 326, + 332, + 326, + 351, + 310, + 351 + ], + "score": 0.65, + "latex": "\\varphi" + }, + { + "category_id": 13, + "poly": [ + 520, + 700, + 780, + 700, + 780, + 726, + 520, + 726 + ], + "score": 0.64, + "latex": "T ( \\mathbb { P } ) = ( \\nabla _ { \\boldsymbol { x } } \\log ( \\mathbb { P } ( \\boldsymbol { x } ) ) ^ { \\top } + \\nabla _ { \\boldsymbol { x } } ." + }, + { + "category_id": 13, + "poly": [ + 807, + 1062, + 1065, + 1062, + 1065, + 1098, + 807, + 1098 + ], + "score": 0.64, + "latex": "\\left\\{ f : \\mathcal { X } \\to \\mathbb { R } , f \\in W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) , \\right." + }, + { + "category_id": 13, + "poly": [ + 806, + 429, + 1030, + 429, + 1030, + 469, + 806, + 469 + ], + "score": 0.63, + "latex": "\\left\\{ f : \\mathcal { X } \\to \\mathbb { R } , \\| f \\| _ { \\operatorname* { l i p } } \\leq 1 \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 907, + 2001, + 1122, + 2001, + 1122, + 2044, + 907, + 2044 + ], + "score": 0.58, + "latex": "\\| f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } < \\infty \\} ." + }, + { + "category_id": 14, + "poly": [ + 805, + 928, + 1048, + 928, + 1048, + 1013, + 805, + 1013 + ], + "score": 0.56, + "latex": "\\begin{array} { r } { \\Big \\{ f : \\mathcal { X } \\to \\mathbb { R } , f \\in \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) , } \\\\ { \\mathbb { E } _ { x \\sim \\mu } f ^ { 2 } ( x ) \\leq 1 \\Big \\} \\qquad } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1104, + 431, + 1388, + 431, + 1388, + 462, + 1104, + 462 + ], + "score": 0.53, + "latex": "\\begin{array} { r } { \\operatorname* { i n f } _ { \\pi \\in \\Pi ( \\mathbb { P } , \\mathbb { Q } ) } \\int _ { \\mathcal { X } } \\| x - y \\| _ { 1 } d \\pi ( x , y ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 339, + 831, + 396, + 831, + 396, + 855, + 339, + 855 + ], + "score": 0.52, + "latex": "\\mathbf d = \\bf 1" + }, + { + "category_id": 13, + "poly": [ + 545, + 671, + 693, + 671, + 693, + 696, + 545, + 696 + ], + "score": 0.52, + "latex": "\\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ T ( \\mathbb { P } ) f ( x ) \\right]" + }, + { + "category_id": 13, + "poly": [ + 971, + 1738, + 1196, + 1738, + 1196, + 1772, + 971, + 1772 + ], + "score": 0.51, + "latex": "\\pmb { \\mu } ( \\pmb { x } ) > \\mathbf { 0 } , \\forall \\pmb { x } \\in \\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1118, + 537, + 1326, + 537, + 1326, + 568, + 1118, + 568 + ], + "score": 0.48, + "latex": "\\| \\mathbb { E } _ { x \\sim \\mathbb { P } } k _ { x } - \\mathbb { E } _ { x \\sim \\mathbb { Q } } k _ { x } \\| _ { \\mathcal { H } _ { k } }" + }, + { + "category_id": 13, + "poly": [ + 806, + 793, + 1077, + 793, + 1077, + 829, + 806, + 829 + ], + "score": 0.47, + "latex": "\\begin{array}{c} \\begin{array} { r } { \\left\\{ f : \\mathcal { X } \\to \\mathbb { R } , \\mathbb { E } _ { x \\sim \\mathbb { P } } ( \\frac { d f ( x ) } { d x } ) ^ { 2 } \\leq 1 . \\right.} \\end{array} \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 531, + 432, + 736, + 432, + 736, + 461, + 531, + 461 + ], + "score": 0.46, + "latex": "\\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x )" + }, + { + "category_id": 13, + "poly": [ + 524, + 378, + 549, + 378, + 549, + 402, + 524, + 402 + ], + "score": 0.45, + "latex": "\\varphi ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 807, + 535, + 1035, + 535, + 1035, + 572, + 807, + 572 + ], + "score": 0.45, + "latex": "\\left\\{ f : \\mathcal { X } \\to \\mathbb { R } , \\| f \\| _ { \\mathcal { H } _ { k } } \\leq 1 \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 1165, + 251, + 1254, + 251, + 1254, + 275, + 1165, + 275 + ], + "score": 0.45, + "latex": "d _ { \\mathcal { F } } ( \\mathbb { P } , \\mathbb { Q } )" + }, + { + "category_id": 13, + "poly": [ + 826, + 836, + 840, + 836, + 840, + 857, + 826, + 857 + ], + "score": 0.45, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1111, + 317, + 1254, + 317, + 1254, + 360, + 1111, + 360 + ], + "score": 0.44, + "latex": "\\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ \\varphi ( \\frac { \\mathbb { P } ( x ) } { \\mathbb { Q } ( x ) } ) \\right]" + }, + { + "category_id": 13, + "poly": [ + 533, + 539, + 735, + 539, + 735, + 566, + 533, + 566 + ], + "score": 0.42, + "latex": "\\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x )" + }, + { + "category_id": 13, + "poly": [ + 804, + 662, + 1004, + 662, + 1004, + 764, + 804, + 764 + ], + "score": 0.41, + "latex": "\\begin{array} { r } { \\{ f : \\mathcal { X } \\mathbb { R } ^ { d } \\qquad } \\\\ { f \\operatorname { s m o o t h } \\mathrm { w i t h } \\mathrm { z e r o } } \\\\ { \\qquad \\mathrm { b o u n d a r y } \\mathrm { c o n d i t i o n } \\} } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 805, + 790, + 1080, + 790, + 1080, + 899, + 805, + 899 + ], + "score": 0.39, + "latex": "\\begin{array} { r l } & { \\left\\{ f : \\mathcal { X } \\to \\mathbb { R } , \\mathbb { E } _ { x \\sim \\mathbb { P } } ( \\frac { d f ( x ) } { d x } ) ^ { 2 } \\leq 1 , \\right. } \\\\ & { \\quad \\left. f \\mathrm { ~ s m o o t h ~ w i t h ~ z e r o ~ } \\right. } \\\\ & { \\quad \\left. \\mathrm { b o u n d a r y ~ c o n d i t i o n ~ } \\right\\} } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 805, + 928, + 1048, + 928, + 1048, + 1013, + 805, + 1013 + ], + "score": 0.39, + "latex": "\\begin{array} { r } { \\Big \\{ f : \\mathcal { X } \\to \\mathbb { R } , f \\in \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) , } \\\\ { \\mathbb { E } _ { x \\sim \\mu } f ^ { 2 } ( x ) \\leq 1 \\Big \\} \\qquad } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 532, + 800, + 735, + 800, + 735, + 827, + 532, + 827 + ], + "score": 0.38, + "latex": "\\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x )" + }, + { + "category_id": 13, + "poly": [ + 1067, + 1128, + 1082, + 1128, + 1082, + 1168, + 1067, + 1168 + ], + "score": 0.38, + "latex": "\\Bigg \\}" + }, + { + "category_id": 13, + "poly": [ + 806, + 318, + 1036, + 318, + 1036, + 359, + 806, + 359 + ], + "score": 0.36, + "latex": "\\left\\{ f : \\mathcal { X } \\to \\mathbb { R } , f \\in \\mathrm { d o m } _ { \\varphi ^ { \\ast } } \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 826, + 704, + 840, + 704, + 840, + 725, + 826, + 725 + ], + "score": 0.35, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 527, + 935, + 729, + 935, + 729, + 963, + 527, + 963 + ], + "score": 0.35, + "latex": "\\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x )" + }, + { + "category_id": 13, + "poly": [ + 618, + 1686, + 909, + 1686, + 909, + 1724, + 618, + 1724 + ], + "score": 0.34, + "latex": "\\mu ( x ) = 0 \\implies \\mathbb { P } ( x ) = 0" + }, + { + "category_id": 13, + "poly": [ + 526, + 1065, + 729, + 1065, + 729, + 1094, + 526, + 1094 + ], + "score": 0.33, + "latex": "\\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x )" + }, + { + "category_id": 13, + "poly": [ + 1100, + 1739, + 1195, + 1739, + 1195, + 1769, + 1100, + 1769 + ], + "score": 0.33, + "latex": "\\forall x \\in { \\mathcal { X } }" + }, + { + "category_id": 13, + "poly": [ + 560, + 248, + 663, + 248, + 663, + 277, + 560, + 277 + ], + "score": 0.3, + "latex": "\\Delta ( f ; \\mathbb { P } , \\mathbb { Q } )" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1367.0, + 1049.0, + 1367.0, + 1049.0, + 1414.0, + 290.0, + 1414.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": [ + 838.0, + 2085.0, + 863.0, + 2085.0, + 863.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1237.0, + 1406.0, + 1237.0, + 1406.0, + 1280.0, + 293.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1271.0, + 884.0, + 1271.0, + 884.0, + 1312.0, + 294.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1237.0, + 1406.0, + 1237.0, + 1406.0, + 1280.0, + 293.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1271.0, + 884.0, + 1271.0, + 884.0, + 1312.0, + 294.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1440.0, + 1403.0, + 1440.0, + 1403.0, + 1473.0, + 295.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1472.0, + 1405.0, + 1472.0, + 1405.0, + 1505.0, + 295.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1500.0, + 1405.0, + 1500.0, + 1405.0, + 1537.0, + 294.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1532.0, + 1405.0, + 1532.0, + 1405.0, + 1565.0, + 295.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1562.0, + 1308.0, + 1562.0, + 1308.0, + 1596.0, + 295.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1733.0, + 428.0, + 1733.0, + 428.0, + 1775.0, + 293.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1733.0, + 745.0, + 1733.0, + 745.0, + 1775.0, + 449.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1733.0, + 970.0, + 1733.0, + 970.0, + 1775.0, + 825.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 1733.0, + 1251.0, + 1733.0, + 1251.0, + 1775.0, + 1197.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1368.0, + 1733.0, + 1405.0, + 1733.0, + 1405.0, + 1775.0, + 1368.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1769.0, + 435.0, + 1769.0, + 435.0, + 1804.0, + 296.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1769.0, + 757.0, + 1769.0, + 757.0, + 1804.0, + 456.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1769.0, + 1404.0, + 1769.0, + 1404.0, + 1804.0, + 948.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1797.0, + 568.0, + 1797.0, + 568.0, + 1836.0, + 293.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1605.0, + 515.0, + 1605.0, + 515.0, + 1644.0, + 293.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1605.0, + 679.0, + 1605.0, + 679.0, + 1644.0, + 625.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 1605.0, + 1221.0, + 1605.0, + 1221.0, + 1644.0, + 760.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 1605.0, + 1315.0, + 1605.0, + 1315.0, + 1644.0, + 1251.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1639.0, + 434.0, + 1639.0, + 434.0, + 1675.0, + 378.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1639.0, + 751.0, + 1639.0, + 751.0, + 1675.0, + 457.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 1639.0, + 821.0, + 1639.0, + 821.0, + 1675.0, + 774.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1639.0, + 1043.0, + 1639.0, + 1043.0, + 1675.0, + 848.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1952.0, + 406.0, + 1952.0, + 406.0, + 1988.0, + 296.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1952.0, + 928.0, + 1952.0, + 928.0, + 1988.0, + 522.0, + 1988.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1818, + 1405, + 1818, + 1405, + 2035, + 296, + 2035 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 313, + 1403, + 313, + 1403, + 435, + 296, + 435 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1316, + 1405, + 1316, + 1405, + 1442, + 298, + 1442 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 296, + 1090, + 840, + 1090, + 840, + 1278, + 296, + 1278 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 549, + 855, + 1246, + 855, + 1246, + 948, + 549, + 948 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 361, + 1459, + 1404, + 1459, + 1404, + 1713, + 361, + 1713 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 581, + 441, + 1116, + 441, + 1116, + 502, + 581, + 502 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 599, + 640, + 1098, + 640, + 1098, + 720, + 599, + 720 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 570, + 528, + 1120, + 528, + 1120, + 607, + 570, + 607 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 672, + 1007, + 1124, + 1007, + 1124, + 1078, + 672, + 1078 + ], + "score": 0.936 + }, + { + "category_id": 3, + "poly": [ + 996, + 1083, + 1260, + 1083, + 1260, + 1264, + 996, + 1264 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 301, + 229, + 792, + 229, + 792, + 261, + 301, + 261 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 298, + 607, + 794, + 607, + 794, + 640, + 298, + 640 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 360, + 967, + 1056, + 967, + 1056, + 1002, + 360, + 1002 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 296, + 506, + 411, + 506, + 411, + 537, + 296, + 537 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 816, + 73, + 816, + 106, + 298, + 106 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 299, + 1751, + 564, + 1751, + 564, + 1788, + 299, + 1788 + ], + "score": 0.913 + }, + { + "category_id": 8, + "poly": [ + 574, + 266, + 1120, + 266, + 1120, + 309, + 574, + 309 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 365, + 813, + 755, + 813, + 755, + 846, + 365, + 846 + ], + "score": 0.909 + }, + { + "category_id": 1, + "poly": [ + 288, + 759, + 1372, + 759, + 1372, + 793, + 288, + 793 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1365, + 661, + 1401, + 661, + 1401, + 692, + 1365, + 692 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1365, + 444, + 1401, + 444, + 1401, + 475, + 1365, + 475 + ], + "score": 0.874 + }, + { + "category_id": 1, + "poly": [ + 299, + 723, + 627, + 723, + 627, + 754, + 299, + 754 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.746 + }, + { + "category_id": 13, + "poly": [ + 905, + 968, + 1018, + 968, + 1018, + 1003, + 905, + 1003 + ], + "score": 0.93, + "latex": "\\mathcal { F } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } )" + }, + { + "category_id": 14, + "poly": [ + 550, + 851, + 1250, + 851, + 1250, + 948, + 550, + 948 + ], + "score": 0.93, + "latex": "\\mathcal { F } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\left\\| \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu } \\right\\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } = \\sqrt { \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mu } \\left( \\frac { \\mathbb { P } ( \\boldsymbol { x } ) - \\mathbb { Q } ( \\boldsymbol { x } ) } { \\mu ( \\boldsymbol { x } ) } \\right) ^ { 2 } } ." + }, + { + "category_id": 14, + "poly": [ + 581, + 440, + 1119, + 440, + 1119, + 502, + 581, + 502 + ], + "score": 0.93, + "latex": "\\mathcal { F } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { f \\in \\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu ) } \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x )" + }, + { + "category_id": 13, + "poly": [ + 619, + 1881, + 712, + 1881, + 712, + 1915, + 619, + 1915 + ], + "score": 0.92, + "latex": "\\nabla _ { x } f ( x )" + }, + { + "category_id": 13, + "poly": [ + 348, + 1193, + 458, + 1193, + 458, + 1228, + 348, + 1228 + ], + "score": 0.92, + "latex": "\\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu )" + }, + { + "category_id": 13, + "poly": [ + 442, + 1460, + 605, + 1460, + 605, + 1498, + 442, + 1498 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\mu = \\frac 1 2 ( { \\mathbb P } + { \\mathbb Q } ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 598, + 638, + 1101, + 638, + 1101, + 721, + 598, + 721 + ], + "score": 0.92, + "latex": "\\mathcal { F } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { f \\in \\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu ) } \\left. f , \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu } \\right. _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) }" + }, + { + "category_id": 13, + "poly": [ + 297, + 343, + 407, + 343, + 407, + 377, + 297, + 377 + ], + "score": 0.92, + "latex": "\\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu )" + }, + { + "category_id": 13, + "poly": [ + 843, + 373, + 1017, + 373, + 1017, + 410, + 843, + 410 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\mu = \\frac 1 2 ( { \\mathbb P } + { \\mathbb Q } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 366, + 1124, + 399, + 1124, + 399, + 1157, + 366, + 1157 + ], + "score": 0.9, + "latex": "f _ { \\chi }" + }, + { + "category_id": 14, + "poly": [ + 569, + 526, + 1130, + 526, + 1130, + 610, + 569, + 610 + ], + "score": 0.9, + "latex": "\\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) = \\left. f , { \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu } } \\right. _ { { \\mathcal { L } } _ { 2 } ( \\mathcal { X } , \\mu ) } ." + }, + { + "category_id": 13, + "poly": [ + 547, + 1194, + 740, + 1194, + 740, + 1241, + 547, + 1241 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { f _ { \\chi } = \\frac { n ^ { \\cdot } } { \\| n \\| _ { \\mathcal { L } _ { 2 } ( \\chi , \\mu ) } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 576, + 266, + 1119, + 266, + 1119, + 311, + 576, + 311 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\mathbb { B } _ { 2 } ( \\mathcal { X } , \\mu ) = \\{ f \\in \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) , \\| f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } \\leq 1 \\} . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1215, + 1534, + 1249, + 1534, + 1249, + 1563, + 1215, + 1563 + ], + "score": 0.89, + "latex": "\\mathbb { P } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 522, + 1634, + 884, + 1634, + 884, + 1683, + 522, + 1683 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\mathcal { F } _ { \\mathbb { P } } ^ { 2 } ( \\mathbb { P } , \\mathbb { Q } ) = \\int _ { \\mathcal { X } } \\frac { ( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) ) ^ { 2 } } { \\mathbb { P } ( x ) } d x } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1302, + 1533, + 1339, + 1533, + 1339, + 1564, + 1302, + 1564 + ], + "score": 0.89, + "latex": "\\mathbb { Q } _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 537, + 970, + 569, + 970, + 569, + 1002, + 537, + 1002 + ], + "score": 0.88, + "latex": "f _ { \\chi }" + }, + { + "category_id": 13, + "poly": [ + 437, + 1641, + 512, + 1641, + 512, + 1675, + 437, + 1675 + ], + "score": 0.87, + "latex": "\\mu = \\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 600, + 1153, + 728, + 1153, + 728, + 1196, + 600, + 1196 + ], + "score": 0.86, + "latex": "n ~ = ~ \\textstyle \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 597, + 406, + 622, + 406, + 622, + 436, + 597, + 436 + ], + "score": 0.85, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 1013, + 345, + 1038, + 345, + 1038, + 374, + 1013, + 374 + ], + "score": 0.84, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 526, + 406, + 548, + 406, + 548, + 431, + 526, + 431 + ], + "score": 0.84, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 782, + 1604, + 807, + 1604, + 807, + 1633, + 782, + 1633 + ], + "score": 0.83, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 941, + 345, + 963, + 345, + 963, + 371, + 941, + 371 + ], + "score": 0.82, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 396, + 1535, + 451, + 1535, + 451, + 1565, + 396, + 1565 + ], + "score": 0.81, + "latex": "\\mu _ { G P }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1236, + 571, + 1236, + 571, + 1278, + 297, + 1278 + ], + "score": 0.81, + "latex": "\\mathcal { F } ( \\mathbb { P } , \\mathbb { Q } ) = \\| n \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } ." + }, + { + "category_id": 13, + "poly": [ + 483, + 1415, + 503, + 1415, + 503, + 1442, + 483, + 1442 + ], + "score": 0.8, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 470, + 1607, + 490, + 1607, + 490, + 1635, + 470, + 1635 + ], + "score": 0.8, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1349, + 380, + 1369, + 380, + 1369, + 407, + 1349, + 407 + ], + "score": 0.79, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 703, + 1604, + 724, + 1604, + 724, + 1630, + 703, + 1630 + ], + "score": 0.77, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 1213, + 1384, + 1233, + 1384, + 1233, + 1411, + 1213, + 1411 + ], + "score": 0.77, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 929, + 1323, + 949, + 1323, + 949, + 1350, + 929, + 1350 + ], + "score": 0.75, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 673, + 1006, + 961, + 1006, + 961, + 1079, + 673, + 1079 + ], + "score": 0.55, + "latex": "f _ { \\chi } = \\frac { 1 } { \\mathscr { F } ( \\mathbb { P } , \\mathbb { Q } ) } \\frac { \\mathbb { P } - \\mathbb { Q } } { \\mu } , \\mu" + }, + { + "category_id": 13, + "poly": [ + 1001, + 1221, + 1094, + 1221, + 1094, + 1241, + 1001, + 1241 + ], + "score": 0.47, + "latex": "\\| f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) } = 1" + }, + { + "category_id": 13, + "poly": [ + 1148, + 1146, + 1168, + 1146, + 1168, + 1163, + 1148, + 1163 + ], + "score": 0.28, + "latex": "\\cdot _ { f _ { \\chi } }" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 1080.0, + 1158.0, + 1080.0, + 1158.0, + 1107.0, + 1110.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 1106.0, + 1145.0, + 1106.0, + 1145.0, + 1123.0, + 1125.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1217.0, + 1074.0, + 1217.0, + 1074.0, + 1243.0, + 999.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1746.0, + 567.0, + 1746.0, + 567.0, + 1793.0, + 292.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2119.0, + 838.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1852.0, + 295.0, + 1852.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": [ + 291.0, + 1878.0, + 618.0, + 1878.0, + 618.0, + 1919.0, + 291.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1878.0, + 1407.0, + 1878.0, + 1407.0, + 1919.0, + 713.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 1406.0, + 1909.0, + 1406.0, + 1948.0, + 293.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1944.0, + 1405.0, + 1944.0, + 1405.0, + 1975.0, + 295.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 682.0, + 2002.0, + 682.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 310.0, + 1405.0, + 310.0, + 1405.0, + 345.0, + 294.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 342.0, + 940.0, + 342.0, + 940.0, + 377.0, + 408.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 342.0, + 1012.0, + 342.0, + 1012.0, + 377.0, + 964.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 342.0, + 1405.0, + 342.0, + 1405.0, + 377.0, + 1039.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 372.0, + 842.0, + 372.0, + 842.0, + 410.0, + 293.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 372.0, + 1348.0, + 372.0, + 1348.0, + 410.0, + 1018.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1370.0, + 372.0, + 1407.0, + 372.0, + 1407.0, + 410.0, + 1370.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 404.0, + 525.0, + 404.0, + 525.0, + 436.0, + 294.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 404.0, + 596.0, + 404.0, + 596.0, + 436.0, + 549.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 404.0, + 1151.0, + 404.0, + 1151.0, + 436.0, + 623.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1315.0, + 928.0, + 1315.0, + 928.0, + 1351.0, + 295.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 1315.0, + 1405.0, + 1315.0, + 1405.0, + 1351.0, + 950.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1350.0, + 1405.0, + 1350.0, + 1405.0, + 1383.0, + 295.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1380.0, + 1212.0, + 1380.0, + 1212.0, + 1413.0, + 295.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 1380.0, + 1402.0, + 1380.0, + 1402.0, + 1413.0, + 1234.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1411.0, + 482.0, + 1411.0, + 482.0, + 1445.0, + 295.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 1411.0, + 515.0, + 1411.0, + 515.0, + 1445.0, + 504.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1088.0, + 839.0, + 1088.0, + 839.0, + 1126.0, + 295.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1120.0, + 365.0, + 1120.0, + 365.0, + 1157.0, + 294.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1120.0, + 840.0, + 1120.0, + 840.0, + 1157.0, + 400.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1158.0, + 599.0, + 1158.0, + 599.0, + 1190.0, + 293.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 1155.0, + 842.0, + 1155.0, + 842.0, + 1191.0, + 741.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 1190.0, + 844.0, + 1190.0, + 844.0, + 1229.0, + 753.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1241.0, + 840.0, + 1241.0, + 840.0, + 1265.0, + 814.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.25, + 1191.5, + 636.25, + 1191.5, + 636.25, + 1233.5, + 292.25, + 1233.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.75, + 1208.0, + 742.75, + 1208.0, + 742.75, + 1243.0, + 619.75, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.25, + 1236.5, + 580.25, + 1236.5, + 580.25, + 1277.5, + 293.25, + 1277.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1461.0, + 441.0, + 1461.0, + 441.0, + 1495.0, + 362.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1461.0, + 1405.0, + 1461.0, + 1405.0, + 1495.0, + 606.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1491.0, + 548.0, + 1491.0, + 548.0, + 1523.0, + 394.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1529.0, + 395.0, + 1529.0, + 395.0, + 1568.0, + 356.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1529.0, + 1214.0, + 1529.0, + 1214.0, + 1568.0, + 452.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 1529.0, + 1301.0, + 1529.0, + 1301.0, + 1568.0, + 1250.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 1529.0, + 1405.0, + 1529.0, + 1405.0, + 1568.0, + 1340.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1563.0, + 662.0, + 1563.0, + 662.0, + 1597.0, + 397.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1598.0, + 469.0, + 1598.0, + 469.0, + 1638.0, + 356.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 1598.0, + 702.0, + 1598.0, + 702.0, + 1638.0, + 491.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 1598.0, + 781.0, + 1598.0, + 781.0, + 1638.0, + 725.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 1598.0, + 1404.0, + 1598.0, + 1404.0, + 1638.0, + 808.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1635.0, + 436.0, + 1635.0, + 436.0, + 1685.0, + 388.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1635.0, + 521.0, + 1635.0, + 521.0, + 1685.0, + 513.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1674.0, + 743.0, + 1674.0, + 743.0, + 1714.0, + 395.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1629.5, + 1410.0, + 1629.5, + 1410.0, + 1683.5, + 704.0, + 1683.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 225.0, + 795.0, + 225.0, + 795.0, + 268.0, + 295.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 605.0, + 797.0, + 605.0, + 797.0, + 643.0, + 295.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 966.0, + 536.0, + 966.0, + 536.0, + 1006.0, + 360.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 966.0, + 904.0, + 966.0, + 904.0, + 1006.0, + 570.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 966.0, + 1056.0, + 966.0, + 1056.0, + 1006.0, + 1019.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 503.0, + 416.0, + 503.0, + 416.0, + 540.0, + 294.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 809.0, + 756.0, + 809.0, + 756.0, + 853.0, + 359.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 755.0, + 1376.0, + 755.0, + 1376.0, + 797.0, + 296.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 718.0, + 629.0, + 718.0, + 629.0, + 759.0, + 295.0, + 759.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 964, + 1406, + 964, + 1406, + 1059, + 297, + 1059 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 692, + 1071, + 1005, + 1071, + 1005, + 1146, + 692, + 1146 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 607, + 557, + 1092, + 557, + 1092, + 647, + 607, + 647 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 542, + 1723, + 1198, + 1723, + 1198, + 1814, + 542, + 1814 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 493, + 871, + 1203, + 871, + 1203, + 954, + 493, + 954 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 297, + 475, + 1400, + 475, + 1400, + 545, + 297, + 545 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 553, + 1174, + 1146, + 1174, + 1146, + 1252, + 553, + 1252 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 290, + 316, + 1401, + 316, + 1401, + 381, + 290, + 381 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 499, + 392, + 1198, + 392, + 1198, + 465, + 499, + 465 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 297, + 801, + 1400, + 801, + 1400, + 863, + 297, + 863 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 360, + 1837, + 1404, + 1837, + 1404, + 1902, + 360, + 1902 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 362, + 1647, + 1405, + 1647, + 1405, + 1712, + 362, + 1712 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 389, + 1914, + 1476, + 1914, + 1476, + 2007, + 389, + 2007 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 300, + 1347, + 1401, + 1347, + 1401, + 1413, + 300, + 1413 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 556, + 708, + 1142, + 708, + 1142, + 779, + 556, + 779 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 295, + 1270, + 1188, + 1270, + 1188, + 1306, + 295, + 1306 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 299, + 1418, + 1398, + 1418, + 1398, + 1485, + 299, + 1485 + ], + "score": 0.932 + }, + { + "category_id": 8, + "poly": [ + 714, + 1495, + 983, + 1495, + 983, + 1536, + 714, + 1536 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 297, + 1151, + 456, + 1151, + 456, + 1182, + 297, + 1182 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 296, + 658, + 1399, + 658, + 1399, + 699, + 296, + 699 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 816, + 73, + 816, + 106, + 298, + 106 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 300, + 1591, + 1137, + 1591, + 1137, + 1627, + 300, + 1627 + ], + "score": 0.909 + }, + { + "category_id": 1, + "poly": [ + 298, + 1544, + 1163, + 1544, + 1163, + 1581, + 298, + 1581 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1093, + 1401, + 1093, + 1401, + 1124, + 1365, + 1124 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1365, + 883, + 1400, + 883, + 1400, + 914, + 1365, + 914 + ], + "score": 0.864 + }, + { + "category_id": 0, + "poly": [ + 299, + 227, + 1270, + 227, + 1270, + 293, + 299, + 293 + ], + "score": 0.849 + }, + { + "category_id": 2, + "poly": [ + 839, + 2088, + 859, + 2088, + 859, + 2113, + 839, + 2113 + ], + "score": 0.81 + }, + { + "category_id": 9, + "poly": [ + 1365, + 2005, + 1402, + 2005, + 1402, + 2034, + 1365, + 2034 + ], + "score": 0.646 + }, + { + "category_id": 1, + "poly": [ + 299, + 227, + 1270, + 227, + 1270, + 293, + 299, + 293 + ], + "score": 0.105 + }, + { + "category_id": 14, + "poly": [ + 609, + 555, + 1092, + 555, + 1092, + 650, + 609, + 650 + ], + "score": 0.94, + "latex": "\\| f \\| _ { W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) } = \\sqrt { \\int _ { \\mathcal { X } } \\| \\nabla _ { x } f ( x ) \\| ^ { 2 } \\mu ( x ) d x }" + }, + { + "category_id": 14, + "poly": [ + 493, + 867, + 1207, + 867, + 1207, + 956, + 493, + 956 + ], + "score": 0.94, + "latex": "\\mathcal { S } _ { \\boldsymbol { \\mu } } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { \\substack { f \\in W _ { 0 } ^ { 1 , 2 } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\boldsymbol { \\mu } ) } \\leq 1 } } \\bigg \\{ \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mathbb { P } } f ( \\boldsymbol { x } ) - \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mathbb { Q } } f ( \\boldsymbol { x } ) \\bigg \\} ." + }, + { + "category_id": 14, + "poly": [ + 692, + 1067, + 1004, + 1067, + 1004, + 1144, + 692, + 1144 + ], + "score": 0.94, + "latex": "\\mathbb { P } ( x ) = \\frac { \\partial ^ { d } } { \\partial x _ { 1 } \\hdots \\partial x _ { d } } F _ { \\mathbb { P } } ( x ) ," + }, + { + "category_id": 14, + "poly": [ + 500, + 390, + 1195, + 390, + 1195, + 467, + 500, + 467 + ], + "score": 0.94, + "latex": "W ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) = \\left\\{ f : \\mathcal { X } \\to \\mathbb { R } , \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) \\right. ^ { 2 } \\mu ( x ) d x < \\infty \\right\\} ," + }, + { + "category_id": 14, + "poly": [ + 395, + 1914, + 1481, + 1914, + 1481, + 2009, + 395, + 2009 + ], + "score": 0.94, + "latex": "S _ { \\mu } ^ { 2 } ( { \\mathbb { P } } , { \\mathbb { Q } } ) = \\frac { 1 } { d ^ { 2 } } { \\mathbb { E } } _ { x \\sim \\mu } \\sum _ { i = 1 } ^ { d } \\left( \\frac { { \\mathbb { P } } _ { X ^ { - i } } ( x ^ { - i } ) F _ { { \\mathbb { P } } _ { [ X _ { i } ] X ^ { - i } = x ^ { - i } ] } } ( x _ { i } ) - { \\mathbb { Q } } _ { X ^ { - i } } ( x ^ { - i } ) F _ { { \\mathbb { Q } } _ { [ X _ { i } ] X ^ { - i } = x ^ { - i } ] } } ( x _ { i } ) } { \\mu ( x ) } \\right) ^ { 2 } ." + }, + { + "category_id": 14, + "poly": [ + 544, + 1721, + 1200, + 1721, + 1200, + 1814, + 544, + 1814 + ], + "score": 0.94, + "latex": "S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\frac { 1 } { d } \\sqrt { \\int _ { \\mathcal { X } } \\frac { \\sum _ { i = 1 } ^ { d } ( D ^ { - i } F _ { \\mathbb { P } } ( x ) - D ^ { - i } F _ { \\mathbb { Q } } ( x ) ) ^ { 2 } } { \\mu ( x ) } d x } ." + }, + { + "category_id": 14, + "poly": [ + 552, + 1171, + 1145, + 1171, + 1145, + 1250, + 552, + 1250 + ], + "score": 0.94, + "latex": "D ^ { - i } = \\frac { \\partial ^ { d - 1 } } { \\partial x _ { 1 } \\dots \\partial x _ { i - 1 } \\partial x _ { i + 1 } \\dots \\partial x _ { d } } , \\mathrm { f o r } i = 1 \\dots d ." + }, + { + "category_id": 13, + "poly": [ + 385, + 1451, + 535, + 1451, + 535, + 1487, + 385, + 1487 + ], + "score": 0.93, + "latex": "F _ { \\mathbb { Q } } \\in C ^ { d } ( \\mathcal { X } )" + }, + { + "category_id": 13, + "poly": [ + 988, + 659, + 1125, + 659, + 1125, + 698, + 988, + 698 + ], + "score": 0.93, + "latex": "W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )" + }, + { + "category_id": 13, + "poly": [ + 916, + 347, + 1054, + 347, + 1054, + 382, + 916, + 382 + ], + "score": 0.93, + "latex": "\\mathring { W } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )" + }, + { + "category_id": 13, + "poly": [ + 721, + 475, + 860, + 475, + 860, + 511, + 721, + 511 + ], + "score": 0.93, + "latex": "W ^ { 1 , 2 } ( \\mathcal { X } , \\mu )" + }, + { + "category_id": 13, + "poly": [ + 1176, + 658, + 1390, + 658, + 1390, + 698, + 1176, + 698 + ], + "score": 0.93, + "latex": "f , g \\in W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )" + }, + { + "category_id": 13, + "poly": [ + 298, + 508, + 436, + 508, + 436, + 548, + 298, + 548 + ], + "score": 0.92, + "latex": "W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )" + }, + { + "category_id": 14, + "poly": [ + 555, + 705, + 1145, + 705, + 1145, + 779, + 555, + 779 + ], + "score": 0.92, + "latex": "\\langle f , g \\rangle _ { W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) } = \\int _ { \\mathcal { X } } \\langle \\nabla _ { x } f ( x ) , \\nabla _ { x } g ( x ) \\rangle _ { \\mathbb { R } ^ { d } } \\mu ( x ) d x ." + }, + { + "category_id": 14, + "poly": [ + 713, + 1495, + 982, + 1495, + 982, + 1536, + 713, + 1536 + ], + "score": 0.91, + "latex": "D ^ { - } = ( D ^ { - 1 } , \\ldots D ^ { - d } ) ." + }, + { + "category_id": 13, + "poly": [ + 510, + 1272, + 593, + 1272, + 593, + 1306, + 510, + 1306 + ], + "score": 0.91, + "latex": "( d - 1 )" + }, + { + "category_id": 13, + "poly": [ + 850, + 1421, + 887, + 1421, + 887, + 1453, + 850, + 1453 + ], + "score": 0.89, + "latex": "F _ { \\mathbb { Q } }" + }, + { + "category_id": 13, + "poly": [ + 901, + 1452, + 946, + 1452, + 946, + 1480, + 901, + 1480 + ], + "score": 0.89, + "latex": "D ^ { - }" + }, + { + "category_id": 13, + "poly": [ + 382, + 1027, + 420, + 1027, + 420, + 1060, + 382, + 1060 + ], + "score": 0.89, + "latex": "F _ { \\mathbb { Q } }" + }, + { + "category_id": 13, + "poly": [ + 756, + 1421, + 790, + 1421, + 790, + 1450, + 756, + 1450 + ], + "score": 0.88, + "latex": "F _ { \\mathbb { P } }" + }, + { + "category_id": 13, + "poly": [ + 344, + 1547, + 731, + 1547, + 731, + 1581, + 344, + 1581 + ], + "score": 0.87, + "latex": "\\boldsymbol { x } = ( x _ { 1 } , \\dots x _ { i - 1 } , x _ { i } , x _ { i + 1 } , \\dots x _ { d } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1272, + 350, + 1272, + 350, + 1300, + 298, + 1300 + ], + "score": 0.87, + "latex": "D ^ { - i }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1029, + 331, + 1029, + 331, + 1057, + 298, + 1057 + ], + "score": 0.87, + "latex": "F _ { \\mathbb { P } }" + }, + { + "category_id": 13, + "poly": [ + 970, + 1027, + 996, + 1027, + 996, + 1058, + 970, + 1058 + ], + "score": 0.86, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1453, + 331, + 1453, + 331, + 1484, + 298, + 1484 + ], + "score": 0.86, + "latex": "F _ { \\mathbb { P } }" + }, + { + "category_id": 13, + "poly": [ + 899, + 1028, + 921, + 1028, + 921, + 1054, + 899, + 1054 + ], + "score": 0.83, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 1373, + 319, + 1400, + 319, + 1400, + 346, + 1373, + 346 + ], + "score": 0.8, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 777, + 1544, + 1158, + 1544, + 1158, + 1580, + 777, + 1580 + ], + "score": 0.79, + "latex": "x ^ { - i } = ( x _ { 1 } , \\ldots x _ { i - 1 } , x _ { i + 1 } , \\ldots x _ { d } ) ." + }, + { + "category_id": 13, + "poly": [ + 769, + 1000, + 790, + 1000, + 790, + 1028, + 769, + 1028 + ], + "score": 0.77, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1167, + 1276, + 1179, + 1276, + 1179, + 1300, + 1167, + 1300 + ], + "score": 0.72, + "latex": "i" + }, + { + "category_id": 14, + "poly": [ + 342, + 1543, + 1163, + 1543, + 1163, + 1580, + 342, + 1580 + ], + "score": 0.35, + "latex": "x = ( x _ { 1 } , \\ldots x _ { i - 1 } , x _ { i } , x _ { i + 1 } , \\ldots x _ { d } ) , l e t x ^ { - i } = ( x _ { 1 } , \\ldots x _ { i - 1 } , x _ { i + 1 } , \\ldots x _ { d } ) ." + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1273.0, + 228.0, + 1273.0, + 263.0, + 294.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 260.0, + 618.0, + 260.0, + 618.0, + 290.0, + 363.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2117.0, + 840.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 962.0, + 1406.0, + 962.0, + 1406.0, + 1002.0, + 294.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 996.0, + 768.0, + 996.0, + 768.0, + 1030.0, + 295.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 996.0, + 1406.0, + 996.0, + 1406.0, + 1030.0, + 791.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1027.0, + 381.0, + 1027.0, + 381.0, + 1061.0, + 332.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1027.0, + 898.0, + 1027.0, + 898.0, + 1061.0, + 421.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1027.0, + 969.0, + 1027.0, + 969.0, + 1061.0, + 922.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1027.0, + 1253.0, + 1027.0, + 1253.0, + 1061.0, + 997.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 470.0, + 720.0, + 470.0, + 720.0, + 515.0, + 295.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 470.0, + 1405.0, + 470.0, + 1405.0, + 515.0, + 861.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 505.0, + 698.0, + 505.0, + 698.0, + 551.0, + 437.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 316.0, + 1372.0, + 316.0, + 1372.0, + 352.0, + 297.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 342.0, + 915.0, + 342.0, + 915.0, + 387.0, + 292.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 342.0, + 1068.0, + 342.0, + 1068.0, + 387.0, + 1055.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 798.0, + 1404.0, + 798.0, + 1404.0, + 840.0, + 292.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 833.0, + 510.0, + 833.0, + 510.0, + 865.0, + 296.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1837.0, + 1405.0, + 1837.0, + 1405.0, + 1873.0, + 360.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1866.0, + 989.0, + 1866.0, + 989.0, + 1904.0, + 394.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1646.0, + 1406.0, + 1646.0, + 1406.0, + 1686.0, + 361.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1676.0, + 663.0, + 1676.0, + 663.0, + 1716.0, + 393.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1348.0, + 1403.0, + 1348.0, + 1403.0, + 1384.0, + 296.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1379.0, + 703.0, + 1379.0, + 703.0, + 1414.0, + 295.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1265.0, + 509.0, + 1265.0, + 509.0, + 1314.0, + 351.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 1265.0, + 1166.0, + 1265.0, + 1166.0, + 1314.0, + 594.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1265.0, + 1194.0, + 1265.0, + 1194.0, + 1314.0, + 1180.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1416.0, + 755.0, + 1416.0, + 755.0, + 1453.0, + 298.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1416.0, + 849.0, + 1416.0, + 849.0, + 1453.0, + 791.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1416.0, + 1401.0, + 1416.0, + 1401.0, + 1453.0, + 888.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1449.0, + 384.0, + 1449.0, + 384.0, + 1489.0, + 332.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 1449.0, + 900.0, + 1449.0, + 900.0, + 1489.0, + 536.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1449.0, + 966.0, + 1449.0, + 966.0, + 1489.0, + 947.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1149.0, + 458.0, + 1149.0, + 458.0, + 1185.0, + 295.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 656.0, + 987.0, + 656.0, + 987.0, + 702.0, + 292.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 656.0, + 1175.0, + 656.0, + 1175.0, + 702.0, + 1126.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1391.0, + 656.0, + 1403.0, + 656.0, + 1403.0, + 702.0, + 1391.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1589.0, + 1138.0, + 1589.0, + 1138.0, + 1631.0, + 294.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1535.0, + 341.0, + 1535.0, + 341.0, + 1590.0, + 291.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 1535.0, + 1168.0, + 1535.0, + 1168.0, + 1590.0, + 1164.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1273.0, + 228.0, + 1273.0, + 263.0, + 294.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 260.0, + 618.0, + 260.0, + 618.0, + 290.0, + 363.0, + 290.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1120, + 1405, + 1120, + 1405, + 1310, + 296, + 1310 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 296, + 424, + 1405, + 424, + 1405, + 583, + 296, + 583 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 716, + 1404, + 716, + 1404, + 843, + 296, + 843 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1508, + 1404, + 1508, + 1404, + 1603, + 297, + 1603 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 293, + 884, + 1405, + 884, + 1405, + 985, + 293, + 985 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 545, + 1885, + 1190, + 1885, + 1190, + 1977, + 545, + 1977 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 515, + 608, + 1181, + 608, + 1181, + 690, + 515, + 690 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 519, + 287, + 1276, + 287, + 1276, + 366, + 519, + 366 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 302, + 1710, + 1404, + 1710, + 1404, + 1805, + 302, + 1805 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 656, + 1408, + 1041, + 1408, + 1041, + 1486, + 656, + 1486 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 393, + 1005, + 1301, + 1005, + 1301, + 1092, + 393, + 1092 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 293, + 1321, + 1400, + 1321, + 1400, + 1386, + 293, + 1386 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 334, + 2002, + 1114, + 2002, + 1114, + 2036, + 334, + 2036 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 300, + 1823, + 951, + 1823, + 951, + 1859, + 300, + 1859 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 297, + 1646, + 1148, + 1646, + 1148, + 1682, + 297, + 1682 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 816, + 74, + 816, + 106, + 298, + 106 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 361, + 228, + 982, + 228, + 982, + 264, + 361, + 264 + ], + "score": 0.913 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1431, + 1400, + 1431, + 1400, + 1461, + 1366, + 1461 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1366, + 312, + 1401, + 312, + 1401, + 342, + 1366, + 342 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1365, + 622, + 1400, + 622, + 1400, + 653, + 1365, + 653 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.719 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2111, + 841, + 2111 + ], + "score": 0.195 + }, + { + "category_id": 14, + "poly": [ + 657, + 1408, + 1043, + 1408, + 1043, + 1486, + 657, + 1486 + ], + "score": 0.95, + "latex": "\\frac { \\mathbb { P } - \\mathbb { Q } } { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } = - \\mathrm { d i v } ( \\mu ( x ) \\nabla _ { x } f ( x ) ) ." + }, + { + "category_id": 14, + "poly": [ + 546, + 1882, + 1190, + 1882, + 1190, + 1979, + 546, + 1979 + ], + "score": 0.94, + "latex": "S _ { \\mu } ^ { 2 } ( { \\mathbb { P } } , \\mathbb { Q } ) = \\frac 1 { d ^ { 2 } } \\sum _ { i = 1 } ^ { d } { \\mathbb { E } } _ { x \\sim \\mu } \\left( \\frac { D ^ { - i } F _ { \\mathbb { P } } ( x ) - D ^ { - i } F _ { \\mathbb { Q } } ( x ) } { \\mu ( x ) } \\right) ^ { 2 } ," + }, + { + "category_id": 14, + "poly": [ + 516, + 607, + 1182, + 607, + 1182, + 690, + 516, + 690 + ], + "score": 0.94, + "latex": "\\mathcal { S } _ { \\mathcal { H } , \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\operatorname* { s u p } _ { \\substack { f \\in \\mathcal { H } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } } \\leq 1 } } \\left\\{ \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) \\right\\}" + }, + { + "category_id": 14, + "poly": [ + 518, + 287, + 1278, + 287, + 1278, + 366, + 518, + 366 + ], + "score": 0.93, + "latex": "\\nabla _ { x } f ^ { * } ( x ) = \\frac { 1 } { d S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } \\frac { D ^ { - } F _ { \\mathbb { Q } } ( x ) - D ^ { - } F _ { \\mathbb { P } } ( x ) } { \\mu ( x ) } , \\mu - a l m o s t s u r e l y ." + }, + { + "category_id": 14, + "poly": [ + 395, + 1002, + 1303, + 1002, + 1303, + 1092, + 395, + 1092 + ], + "score": 0.93, + "latex": "\\mathcal { S } _ { \\mathcal { H } , \\mu } ( \\mathbb { P } , \\mathbb { Q } ) = \\mathcal { S } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\operatorname* { s u p } _ { \\substack { f \\in \\mathcal { H } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } ( \\chi , \\mu ) } \\leq 1 } } \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. _ { \\mathbb { R } ^ { d } } \\mu ( x ) d x ." + }, + { + "category_id": 13, + "poly": [ + 743, + 1154, + 849, + 1154, + 849, + 1187, + 743, + 1187 + ], + "score": 0.92, + "latex": "\\nabla _ { x } f ^ { * } ( x )" + }, + { + "category_id": 13, + "poly": [ + 1066, + 424, + 1129, + 424, + 1129, + 463, + 1066, + 463 + ], + "score": 0.92, + "latex": "W _ { 0 } ^ { 1 , 2 }" + }, + { + "category_id": 13, + "poly": [ + 1290, + 917, + 1352, + 917, + 1352, + 955, + 1290, + 955 + ], + "score": 0.91, + "latex": "\\hat W _ { 0 } ^ { 1 , 2 }" + }, + { + "category_id": 13, + "poly": [ + 822, + 921, + 920, + 921, + 920, + 954, + 822, + 954 + ], + "score": 0.91, + "latex": "f \\in \\mathcal H" + }, + { + "category_id": 13, + "poly": [ + 756, + 1743, + 794, + 1743, + 794, + 1776, + 756, + 1776 + ], + "score": 0.89, + "latex": "F _ { \\mathbb { Q } }" + }, + { + "category_id": 13, + "poly": [ + 663, + 1744, + 698, + 1744, + 698, + 1773, + 663, + 1773 + ], + "score": 0.89, + "latex": "F _ { \\mathbb { P } }" + }, + { + "category_id": 13, + "poly": [ + 818, + 780, + 851, + 780, + 851, + 812, + 818, + 812 + ], + "score": 0.88, + "latex": "f ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 602, + 232, + 634, + 232, + 634, + 263, + 602, + 263 + ], + "score": 0.88, + "latex": "f ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 890, + 780, + 928, + 780, + 928, + 808, + 890, + 808 + ], + "score": 0.88, + "latex": "\\mathcal { H }" + }, + { + "category_id": 13, + "poly": [ + 1017, + 922, + 1049, + 922, + 1049, + 954, + 1017, + 954 + ], + "score": 0.87, + "latex": "f ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 926, + 461, + 965, + 461, + 965, + 488, + 926, + 488 + ], + "score": 0.87, + "latex": "\\mathcal { H }" + }, + { + "category_id": 13, + "poly": [ + 683, + 491, + 722, + 491, + 722, + 518, + 683, + 518 + ], + "score": 0.86, + "latex": "\\mathcal { H }" + }, + { + "category_id": 13, + "poly": [ + 421, + 1572, + 446, + 1572, + 446, + 1602, + 421, + 1602 + ], + "score": 0.86, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 1156, + 551, + 1194, + 551, + 1194, + 578, + 1156, + 578 + ], + "score": 0.86, + "latex": "\\mathcal { H }" + }, + { + "category_id": 13, + "poly": [ + 1068, + 720, + 1106, + 720, + 1106, + 747, + 1068, + 747 + ], + "score": 0.86, + "latex": "\\mathcal { H }" + }, + { + "category_id": 13, + "poly": [ + 1036, + 491, + 1064, + 491, + 1064, + 518, + 1036, + 518 + ], + "score": 0.84, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 540, + 521, + 578, + 521, + 578, + 549, + 540, + 549 + ], + "score": 0.84, + "latex": "\\mathcal { H }" + }, + { + "category_id": 13, + "poly": [ + 1280, + 1124, + 1319, + 1124, + 1319, + 1152, + 1280, + 1152 + ], + "score": 0.83, + "latex": "\\mathcal { H }" + }, + { + "category_id": 13, + "poly": [ + 597, + 1831, + 618, + 1831, + 618, + 1858, + 597, + 1858 + ], + "score": 0.82, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 595, + 521, + 635, + 521, + 635, + 549, + 595, + 549 + ], + "score": 0.81, + "latex": "\\mathcal { H }" + }, + { + "category_id": 13, + "poly": [ + 996, + 1714, + 1015, + 1714, + 1015, + 1740, + 996, + 1740 + ], + "score": 0.8, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 478, + 1572, + 497, + 1572, + 497, + 1598, + 478, + 1598 + ], + "score": 0.78, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 1087, + 2013, + 1105, + 2013, + 1105, + 2035, + 1087, + 2035 + ], + "score": 0.77, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1079, + 888, + 1118, + 888, + 1118, + 916, + 1079, + 916 + ], + "score": 0.74, + "latex": "\\mathcal { H }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1119.0, + 1279.0, + 1119.0, + 1279.0, + 1158.0, + 294.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 1119.0, + 1405.0, + 1119.0, + 1405.0, + 1158.0, + 1320.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1155.0, + 742.0, + 1155.0, + 742.0, + 1188.0, + 295.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1155.0, + 1403.0, + 1155.0, + 1403.0, + 1188.0, + 850.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1183.0, + 1405.0, + 1183.0, + 1405.0, + 1219.0, + 295.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1215.0, + 1405.0, + 1215.0, + 1405.0, + 1251.0, + 294.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1243.0, + 1407.0, + 1243.0, + 1407.0, + 1281.0, + 293.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1275.0, + 1000.0, + 1275.0, + 1000.0, + 1313.0, + 293.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 416.0, + 1065.0, + 416.0, + 1065.0, + 482.0, + 281.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 416.0, + 1409.0, + 416.0, + 1409.0, + 482.0, + 1130.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 456.0, + 925.0, + 456.0, + 925.0, + 495.0, + 293.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 456.0, + 1407.0, + 456.0, + 1407.0, + 495.0, + 966.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 489.0, + 682.0, + 489.0, + 682.0, + 526.0, + 294.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 489.0, + 1035.0, + 489.0, + 1035.0, + 526.0, + 723.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 489.0, + 1405.0, + 489.0, + 1405.0, + 526.0, + 1065.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 518.0, + 539.0, + 518.0, + 539.0, + 556.0, + 294.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 518.0, + 594.0, + 518.0, + 594.0, + 556.0, + 579.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 518.0, + 1407.0, + 518.0, + 1407.0, + 556.0, + 636.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 549.0, + 1155.0, + 549.0, + 1155.0, + 584.0, + 293.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 549.0, + 1206.0, + 549.0, + 1206.0, + 584.0, + 1195.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 717.0, + 1067.0, + 717.0, + 1067.0, + 753.0, + 294.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 717.0, + 1405.0, + 717.0, + 1405.0, + 753.0, + 1107.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 745.0, + 1405.0, + 745.0, + 1405.0, + 784.0, + 293.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 780.0, + 817.0, + 780.0, + 817.0, + 815.0, + 293.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 780.0, + 889.0, + 780.0, + 889.0, + 815.0, + 852.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 780.0, + 1405.0, + 780.0, + 1405.0, + 815.0, + 929.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 808.0, + 815.0, + 808.0, + 815.0, + 846.0, + 294.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1508.0, + 1402.0, + 1508.0, + 1402.0, + 1542.0, + 296.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1538.0, + 1404.0, + 1538.0, + 1404.0, + 1574.0, + 294.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1570.0, + 420.0, + 1570.0, + 420.0, + 1603.0, + 293.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1570.0, + 477.0, + 1570.0, + 477.0, + 1603.0, + 447.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 1570.0, + 508.0, + 1570.0, + 508.0, + 1603.0, + 498.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 886.0, + 1078.0, + 886.0, + 1078.0, + 921.0, + 293.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 886.0, + 1404.0, + 886.0, + 1404.0, + 921.0, + 1119.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 950.0, + 368.0, + 950.0, + 368.0, + 989.0, + 292.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.75, + 910.0, + 1366.75, + 910.0, + 1366.75, + 965.0, + 285.75, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 924.5, + 1405.0, + 924.5, + 1405.0, + 954.5, + 1333.0, + 954.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1711.0, + 995.0, + 1711.0, + 995.0, + 1745.0, + 302.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 1711.0, + 1405.0, + 1711.0, + 1405.0, + 1745.0, + 1016.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1738.0, + 662.0, + 1738.0, + 662.0, + 1781.0, + 332.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1738.0, + 755.0, + 1738.0, + 755.0, + 1781.0, + 699.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1738.0, + 1404.0, + 1738.0, + 1404.0, + 1781.0, + 795.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1768.0, + 456.0, + 1768.0, + 456.0, + 1807.0, + 333.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1320.0, + 1405.0, + 1320.0, + 1405.0, + 1357.0, + 293.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1351.0, + 1131.0, + 1351.0, + 1131.0, + 1388.0, + 295.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1996.0, + 1086.0, + 1996.0, + 1086.0, + 2044.0, + 332.0, + 2044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 1996.0, + 1117.0, + 1996.0, + 1117.0, + 2044.0, + 1106.0, + 2044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1823.0, + 596.0, + 1823.0, + 596.0, + 1860.0, + 299.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1823.0, + 952.0, + 1823.0, + 952.0, + 1860.0, + 619.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1643.0, + 1151.0, + 1643.0, + 1151.0, + 1685.0, + 294.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 225.0, + 601.0, + 225.0, + 601.0, + 269.0, + 358.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 225.0, + 984.0, + 225.0, + 984.0, + 269.0, + 635.0, + 269.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1021, + 1405, + 1021, + 1405, + 1147, + 298, + 1147 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 1375, + 1405, + 1375, + 1405, + 1564, + 296, + 1564 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 335, + 745, + 1405, + 745, + 1405, + 930, + 335, + 930 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 296, + 1593, + 1404, + 1593, + 1404, + 1748, + 296, + 1748 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 296, + 1909, + 1403, + 1909, + 1403, + 2044, + 296, + 2044 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 334, + 305, + 1457, + 305, + 1457, + 635, + 334, + 635 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 295, + 227, + 1402, + 227, + 1402, + 294, + 295, + 294 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 570, + 1747, + 1126, + 1747, + 1126, + 1823, + 570, + 1823 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 335, + 647, + 1408, + 647, + 1408, + 741, + 335, + 741 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 297, + 1827, + 1311, + 1827, + 1311, + 1899, + 297, + 1899 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 816, + 74, + 816, + 106, + 298, + 106 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 299, + 965, + 679, + 965, + 679, + 997, + 299, + 997 + ], + "score": 0.912 + }, + { + "category_id": 8, + "poly": [ + 339, + 1162, + 1358, + 1162, + 1358, + 1238, + 339, + 1238 + ], + "score": 0.903 + }, + { + "category_id": 1, + "poly": [ + 296, + 1248, + 948, + 1248, + 948, + 1282, + 296, + 1282 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1768, + 1400, + 1768, + 1400, + 1798, + 1365, + 1798 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.806 + }, + { + "category_id": 8, + "poly": [ + 627, + 1295, + 1069, + 1295, + 1069, + 1366, + 627, + 1366 + ], + "score": 0.785 + }, + { + "category_id": 8, + "poly": [ + 630, + 1296, + 1068, + 1296, + 1068, + 1366, + 630, + 1366 + ], + "score": 0.345 + }, + { + "category_id": 14, + "poly": [ + 627, + 1293, + 1071, + 1293, + 1071, + 1366, + 627, + 1366 + ], + "score": 0.94, + "latex": "\\mathcal { F } _ { \\mu : = 1 } ^ { 2 } ( \\mathbb { P } , \\mathbb { Q } ) = \\int _ { \\mathcal { X } } ( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) ) ^ { 2 } d x ." + }, + { + "category_id": 13, + "poly": [ + 1106, + 1657, + 1215, + 1657, + 1215, + 1697, + 1106, + 1697 + ], + "score": 0.93, + "latex": "\\textstyle \\mu = { \\frac { \\mathbb { P } + \\mathbb { Q } } { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 914, + 1627, + 979, + 1627, + 979, + 1660, + 914, + 1660 + ], + "score": 0.92, + "latex": "( x , y )" + }, + { + "category_id": 14, + "poly": [ + 341, + 1159, + 1355, + 1159, + 1355, + 1238, + 341, + 1238 + ], + "score": 0.92, + "latex": "S _ { \\mu : = 1 } ^ { 2 } ( { \\mathbb { P } } , \\mathbb { Q } ) = \\int _ { \\chi } ( F _ { \\mathbb { P } } ( x ) - F _ { \\mathbb { Q } } ( x ) ) ^ { 2 } d x { \\mathrm { ~ v e r s u s ~ } } W _ { p } ^ { p } ( { \\mathbb { P } } , \\mathbb { Q } ) = \\int _ { 0 } ^ { 1 } | F _ { \\mathbb { P } } ^ { - 1 } ( u ) - F _ { \\mathbb { Q } } ^ { - 1 } ( u ) | ^ { p } d u ," + }, + { + "category_id": 13, + "poly": [ + 1034, + 1379, + 1157, + 1379, + 1157, + 1409, + 1034, + 1409 + ], + "score": 0.92, + "latex": "a _ { 1 } , a _ { 2 } \\in \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 569, + 646, + 690, + 646, + 690, + 681, + 569, + 681 + ], + "score": 0.92, + "latex": "D ^ { - i } F _ { \\mathbb { P } } ( x )" + }, + { + "category_id": 13, + "poly": [ + 734, + 1378, + 826, + 1378, + 826, + 1411, + 734, + 1411 + ], + "score": 0.92, + "latex": "\\mathbb { P } = \\delta _ { a _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 878, + 1378, + 974, + 1378, + 974, + 1411, + 878, + 1411 + ], + "score": 0.91, + "latex": "\\mathbb { Q } = \\delta _ { a _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1468, + 673, + 1468, + 673, + 1506, + 298, + 1506 + ], + "score": 0.91, + "latex": "W _ { 1 } ^ { 1 } ( \\mathbb { P } , \\mathbb { Q } ) = S _ { \\mu : = 1 } ^ { 2 } \\stackrel { - } { = } | a _ { 1 } - a _ { 2 } |" + }, + { + "category_id": 13, + "poly": [ + 443, + 678, + 575, + 678, + 575, + 708, + 443, + 708 + ], + "score": 0.91, + "latex": "X ^ { - i } = x ^ { - i }" + }, + { + "category_id": 13, + "poly": [ + 984, + 678, + 1038, + 678, + 1038, + 707, + 984, + 707 + ], + "score": 0.91, + "latex": "X ^ { - i }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1970, + 724, + 1970, + 724, + 2005, + 296, + 2005 + ], + "score": 0.9, + "latex": "- d i v ( \\bar { \\mu } ( x ) \\nabla _ { x } f ( \\bar { x } ) ) = \\mathbb { P } ( x ) - \\bar { \\mathbb { Q } } ( x )" + }, + { + "category_id": 13, + "poly": [ + 758, + 1470, + 963, + 1470, + 963, + 1506, + 758, + 1506 + ], + "score": 0.9, + "latex": "\\mathcal { F } _ { \\mu : = 1 } ^ { 2 } ( \\mathbb { P } , \\mathbb { Q } ) = 2" + }, + { + "category_id": 13, + "poly": [ + 1068, + 678, + 1112, + 678, + 1112, + 707, + 1068, + 707 + ], + "score": 0.89, + "latex": "x ^ { - i }" + }, + { + "category_id": 13, + "poly": [ + 1119, + 1056, + 1205, + 1056, + 1205, + 1086, + 1119, + 1086 + ], + "score": 0.89, + "latex": "\\mu : = 1" + }, + { + "category_id": 13, + "poly": [ + 345, + 1661, + 383, + 1661, + 383, + 1694, + 345, + 1694 + ], + "score": 0.88, + "latex": "F _ { \\mathbb { Q } }" + }, + { + "category_id": 13, + "poly": [ + 1192, + 650, + 1227, + 650, + 1227, + 679, + 1192, + 679 + ], + "score": 0.88, + "latex": "X _ { i }" + }, + { + "category_id": 13, + "poly": [ + 734, + 1628, + 769, + 1628, + 769, + 1657, + 734, + 1657 + ], + "score": 0.88, + "latex": "\\Sigma _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1010, + 1597, + 1036, + 1597, + 1036, + 1627, + 1010, + 1627 + ], + "score": 0.87, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 14, + "poly": [ + 347, + 303, + 1458, + 303, + 1458, + 640, + 347, + 640 + ], + "score": 0.87, + "latex": "\\begin{array} { r l } & { \\mathsf { P } ^ { - i } F _ { \\mathbb { P } } ( x ) = \\frac { \\partial ^ { d - 1 } } { \\partial x _ { 1 } \\hdots \\partial x _ { i - 1 } \\partial x _ { i + 1 } \\hdots \\partial x _ { d } } \\displaystyle \\int _ { - \\infty } ^ { x _ { 1 } } \\hdots \\int _ { - \\infty } ^ { x _ { d } } \\mathbb { P } ( u _ { 1 } \\hdots u _ { d } ) d u _ { 1 } \\hdots d u _ { d } } \\\\ & { \\hphantom { \\mathsf { P } ^ { - i } F _ { \\mathbb { P } } ( x ) = } = \\displaystyle \\int _ { - \\infty } ^ { x _ { i } } \\mathbb { P } ( x _ { 1 } , \\hdots , x _ { i - 1 } , u , x _ { i + 1 } , \\hdots , x _ { d } ) d u } \\\\ & { \\hphantom { \\mathsf { P } ^ { - i } F _ { \\mathbb { P } } ( x ) = } = \\mathbb { P } _ { X ^ { - i } } ( x _ { 1 } , \\hdots , x _ { i - 1 } , x _ { i + 1 } , \\hdots x _ { d } ) \\displaystyle \\int _ { - \\infty } ^ { x _ { i } } \\mathbb { P } _ { [ X _ { i } | X ^ { - i } = x ^ { - i } ] } ( u | x _ { 1 } , \\hdots , x _ { i - 1 } , x _ { i + 1 } , \\hdots x _ { d } ) d u } \\\\ & { \\displaystyle ( \\mathrm { U s i n g ~ B a y e s ~ r u l e } ) } \\\\ & { \\hphantom { \\mathsf { P } ^ { - i } F _ { \\mathbb { P } } ( x ) = } = \\mathbb { P } _ { X ^ { - i } } ( x ^ { - i } ) F _ { \\mathbb { P } _ { [ X _ { i } | X ^ { - i } = x ^ { - i } ] } } ( x _ { i } ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 338, + 263, + 634, + 263, + 634, + 295, + 338, + 295 + ], + "score": 0.87, + "latex": "( x _ { 1 } , \\ldots x _ { i - 1 } , x _ { i + 1 } , \\ldots x _ { d } )" + }, + { + "category_id": 13, + "poly": [ + 820, + 1627, + 855, + 1627, + 855, + 1658, + 820, + 1658 + ], + "score": 0.87, + "latex": "\\Sigma _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 431, + 1631, + 463, + 1631, + 463, + 1659, + 431, + 1659 + ], + "score": 0.86, + "latex": "\\mu _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 514, + 1630, + 547, + 1630, + 547, + 1659, + 514, + 1659 + ], + "score": 0.86, + "latex": "\\mu _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 528, + 2000, + 633, + 2000, + 633, + 2044, + 528, + 2044 + ], + "score": 0.86, + "latex": "( \\frac { 1 } { S _ { \\mu } ( { \\mathbb P } , { \\mathbb Q } ) } ) )" + }, + { + "category_id": 13, + "poly": [ + 1366, + 1628, + 1401, + 1628, + 1401, + 1657, + 1366, + 1657 + ], + "score": 0.86, + "latex": "F _ { \\mathbb { P } }" + }, + { + "category_id": 13, + "poly": [ + 604, + 1661, + 630, + 1661, + 630, + 1692, + 604, + 1692 + ], + "score": 0.86, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 1312, + 228, + 1401, + 228, + 1401, + 264, + 1312, + 264 + ], + "score": 0.84, + "latex": "\\begin{array} { r l } { x ^ { - i } } & { { } = } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 569, + 1742, + 1128, + 1742, + 1128, + 1824, + 569, + 1824 + ], + "score": 0.83, + "latex": "\\nabla f ^ { * } ( x , y ) \\alpha \\frac { 1 } { \\mu ( x , y ) } \\left[ \\frac { \\partial } { \\partial x } ( F _ { \\mathbb { Q } } ( x , y ) - F _ { \\mathbb { P } } ( x , y ) ) \\right]" + }, + { + "category_id": 13, + "poly": [ + 942, + 1598, + 963, + 1598, + 963, + 1623, + 942, + 1623 + ], + "score": 0.83, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 932, + 1055, + 959, + 1055, + 959, + 1082, + 932, + 1082 + ], + "score": 0.83, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 532, + 1662, + 553, + 1662, + 553, + 1688, + 532, + 1688 + ], + "score": 0.82, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 784, + 1256, + 803, + 1256, + 803, + 1282, + 784, + 1282 + ], + "score": 0.81, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 771, + 1060, + 792, + 1060, + 792, + 1086, + 771, + 1086 + ], + "score": 0.8, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1384, + 1090, + 1401, + 1090, + 1401, + 1117, + 1384, + 1117 + ], + "score": 0.76, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 298, + 1502, + 358, + 1502, + 358, + 1528, + 298, + 1528 + ], + "score": 0.74, + "latex": "C D F" + }, + { + "category_id": 13, + "poly": [ + 1009, + 748, + 1022, + 748, + 1022, + 773, + 1009, + 773 + ], + "score": 0.73, + "latex": "i" + }, + { + "category_id": 14, + "poly": [ + 566, + 1741, + 1318, + 1741, + 1318, + 1903, + 566, + 1903 + ], + "score": 0.69, + "latex": "\\begin{array} { l } { \\displaystyle \\nabla f ^ { * } ( x , y ) \\alpha \\frac { 1 } { \\mu ( x , y ) } \\left[ \\frac { \\partial } { \\partial x } ( F _ { \\mathbb { Q } } ( x , y ) - F _ { \\mathbb { P } } ( x , y ) ) \\right] } \\\\ { \\displaystyle \\mu _ { 1 } = [ 1 , 0 ] , \\Sigma _ { 1 } = \\left[ \\frac { 1 . 9 } { 0 . 8 } \\quad 0 . 8 \\right] \\mu _ { 2 } = [ 1 , - 2 ] , \\Sigma _ { 2 } = \\left[ \\frac { 1 . 9 } { - 0 . 8 } \\quad - 0 . 8 \\right] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 567, + 1829, + 1313, + 1829, + 1313, + 1900, + 567, + 1900 + ], + "score": 0.45, + "latex": "\\mu _ { 1 } = [ 1 , 0 ] , \\Sigma _ { 1 } = \\left[ { \\begin{array} { l l } { 1 . 9 } & { 0 . 8 } \\\\ { 0 . 8 } & { 1 . 3 } \\end{array} } \\right] \\mu _ { 2 } = [ 1 , - 2 ] , \\Sigma _ { 2 } = \\left[ { \\begin{array} { l l } { 1 . 9 } & { - 0 . 8 } \\\\ { - 0 . 8 } & { 1 . 3 } \\end{array} } \\right] ." + }, + { + "category_id": 13, + "poly": [ + 544, + 651, + 557, + 651, + 557, + 676, + 544, + 676 + ], + "score": 0.38, + "latex": "i" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 965.0, + 682.0, + 965.0, + 682.0, + 1001.0, + 295.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1020.0, + 1405.0, + 1020.0, + 1405.0, + 1057.0, + 292.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1052.0, + 770.0, + 1052.0, + 770.0, + 1088.0, + 293.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1052.0, + 931.0, + 1052.0, + 931.0, + 1088.0, + 793.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1052.0, + 1118.0, + 1052.0, + 1118.0, + 1088.0, + 960.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1052.0, + 1405.0, + 1052.0, + 1405.0, + 1088.0, + 1206.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1082.0, + 1383.0, + 1082.0, + 1383.0, + 1121.0, + 292.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1082.0, + 1406.0, + 1082.0, + 1406.0, + 1121.0, + 1402.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1116.0, + 947.0, + 1116.0, + 947.0, + 1149.0, + 295.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1375.0, + 733.0, + 1375.0, + 733.0, + 1410.0, + 294.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1375.0, + 877.0, + 1375.0, + 877.0, + 1410.0, + 827.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1375.0, + 1033.0, + 1375.0, + 1033.0, + 1410.0, + 975.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1375.0, + 1406.0, + 1375.0, + 1406.0, + 1410.0, + 1158.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1409.0, + 1403.0, + 1409.0, + 1403.0, + 1441.0, + 296.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1437.0, + 297.0, + 1437.0, + 297.0, + 1537.0, + 285.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 1437.0, + 757.0, + 1437.0, + 757.0, + 1537.0, + 674.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1437.0, + 1416.0, + 1437.0, + 1416.0, + 1537.0, + 964.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1529.0, + 1046.0, + 1529.0, + 1046.0, + 1565.0, + 294.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 746.0, + 1008.0, + 746.0, + 1008.0, + 778.0, + 336.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 746.0, + 1404.0, + 746.0, + 1404.0, + 778.0, + 1023.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 773.0, + 1406.0, + 773.0, + 1406.0, + 811.0, + 333.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 804.0, + 1406.0, + 804.0, + 1406.0, + 843.0, + 333.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 836.0, + 1405.0, + 836.0, + 1405.0, + 869.0, + 333.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 863.0, + 1406.0, + 863.0, + 1406.0, + 906.0, + 331.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 899.0, + 837.0, + 899.0, + 837.0, + 930.0, + 335.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1595.0, + 941.0, + 1595.0, + 941.0, + 1628.0, + 295.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1595.0, + 1009.0, + 1595.0, + 1009.0, + 1628.0, + 964.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1595.0, + 1405.0, + 1595.0, + 1405.0, + 1628.0, + 1037.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1624.0, + 430.0, + 1624.0, + 430.0, + 1661.0, + 293.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1624.0, + 513.0, + 1624.0, + 513.0, + 1661.0, + 464.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1624.0, + 733.0, + 1624.0, + 733.0, + 1661.0, + 548.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 1624.0, + 819.0, + 1624.0, + 819.0, + 1661.0, + 770.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1624.0, + 913.0, + 1624.0, + 913.0, + 1661.0, + 856.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1624.0, + 1365.0, + 1624.0, + 1365.0, + 1661.0, + 980.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1648.0, + 344.0, + 1648.0, + 344.0, + 1698.0, + 290.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1648.0, + 531.0, + 1648.0, + 531.0, + 1698.0, + 384.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1648.0, + 603.0, + 1648.0, + 603.0, + 1698.0, + 554.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 1648.0, + 1105.0, + 1648.0, + 1105.0, + 1698.0, + 631.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1648.0, + 1406.0, + 1648.0, + 1406.0, + 1698.0, + 1216.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1688.0, + 1405.0, + 1688.0, + 1405.0, + 1728.0, + 293.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1720.0, + 363.0, + 1720.0, + 363.0, + 1755.0, + 293.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1907.0, + 1405.0, + 1907.0, + 1405.0, + 1946.0, + 291.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1975.0, + 295.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2008.0, + 725.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1996.0, + 527.0, + 1996.0, + 527.0, + 2050.0, + 287.0, + 2050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 1996.0, + 1410.0, + 1996.0, + 1410.0, + 2050.0, + 634.0, + 2050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 225.0, + 1311.0, + 225.0, + 1311.0, + 266.0, + 298.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 261.0, + 862.0, + 261.0, + 862.0, + 297.0, + 635.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 644.0, + 543.0, + 644.0, + 543.0, + 682.0, + 333.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 644.0, + 568.0, + 644.0, + 568.0, + 682.0, + 558.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 644.0, + 1191.0, + 644.0, + 1191.0, + 682.0, + 691.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 644.0, + 1407.0, + 644.0, + 1407.0, + 682.0, + 1228.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 675.0, + 442.0, + 675.0, + 442.0, + 712.0, + 334.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 675.0, + 983.0, + 675.0, + 983.0, + 712.0, + 576.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 675.0, + 1067.0, + 675.0, + 1067.0, + 712.0, + 1039.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 675.0, + 1404.0, + 675.0, + 1404.0, + 712.0, + 1113.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 709.0, + 569.0, + 709.0, + 569.0, + 742.0, + 332.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1813.0, + 565.0, + 1813.0, + 565.0, + 1919.0, + 286.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 1813.0, + 1329.0, + 1813.0, + 1329.0, + 1919.0, + 1319.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1241.0, + 783.0, + 1241.0, + 783.0, + 1289.0, + 293.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1241.0, + 950.0, + 1241.0, + 950.0, + 1289.0, + 804.0, + 1289.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1126, + 1405, + 1126, + 1405, + 1346, + 296, + 1346 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 295, + 1461, + 1406, + 1461, + 1406, + 1648, + 295, + 1648 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 462, + 580, + 1196, + 580, + 1196, + 801, + 462, + 801 + ], + "score": 0.963 + }, + { + "category_id": 3, + "poly": [ + 464, + 231, + 1200, + 231, + 1200, + 451, + 464, + 451 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 298, + 1964, + 1405, + 1964, + 1405, + 2041, + 298, + 2041 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 300, + 1390, + 575, + 1390, + 575, + 1426, + 300, + 1426 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.887 + }, + { + "category_id": 8, + "poly": [ + 420, + 1862, + 1279, + 1862, + 1279, + 1949, + 420, + 1949 + ], + "score": 0.873 + }, + { + "category_id": 4, + "poly": [ + 445, + 822, + 1249, + 822, + 1249, + 907, + 445, + 907 + ], + "score": 0.856 + }, + { + "category_id": 1, + "poly": [ + 360, + 1672, + 1406, + 1672, + 1406, + 1818, + 360, + 1818 + ], + "score": 0.849 + }, + { + "category_id": 4, + "poly": [ + 450, + 472, + 1248, + 472, + 1248, + 530, + 450, + 530 + ], + "score": 0.837 + }, + { + "category_id": 1, + "poly": [ + 296, + 1841, + 750, + 1841, + 750, + 1873, + 296, + 1873 + ], + "score": 0.806 + }, + { + "category_id": 2, + "poly": [ + 840, + 2087, + 859, + 2087, + 859, + 2112, + 840, + 2112 + ], + "score": 0.804 + }, + { + "category_id": 4, + "poly": [ + 296, + 943, + 1404, + 943, + 1404, + 1068, + 296, + 1068 + ], + "score": 0.682 + }, + { + "category_id": 1, + "poly": [ + 296, + 943, + 1404, + 943, + 1404, + 1068, + 296, + 1068 + ], + "score": 0.5 + }, + { + "category_id": 13, + "poly": [ + 923, + 1278, + 1032, + 1278, + 1032, + 1319, + 923, + 1319 + ], + "score": 0.94, + "latex": "\\textstyle \\mu = { \\frac { \\mathbb { P } + \\mathbb { Q } } { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 397, + 1673, + 526, + 1673, + 526, + 1714, + 397, + 1714 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mu = \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 683, + 1677, + 890, + 1677, + 890, + 1711, + 683, + 1711 + ], + "score": 0.93, + "latex": "\\tilde { x } = g _ { \\theta } ( z ) , z \\sim p _ { z }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1493, + 450, + 1493, + 450, + 1527, + 297, + 1527 + ], + "score": 0.92, + "latex": "\\mathbb { P } _ { r } \\in \\mathcal { P } ( \\mathcal { X } )" + }, + { + "category_id": 13, + "poly": [ + 992, + 1585, + 1244, + 1585, + 1244, + 1618, + 992, + 1618 + ], + "score": 0.92, + "latex": "\\{ \\tilde { x } _ { i } , i = 1 \\ldots N \\} \\sim \\mu" + }, + { + "category_id": 13, + "poly": [ + 464, + 1525, + 528, + 1525, + 528, + 1557, + 464, + 1557 + ], + "score": 0.92, + "latex": "g _ { \\boldsymbol { \\theta } } ( z )" + }, + { + "category_id": 13, + "poly": [ + 299, + 1996, + 555, + 1996, + 555, + 2039, + 299, + 2039 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { { \\frac { 1 } { N } } \\sum _ { i = 1 } ^ { N } \\left\\| \\nabla _ { x } f _ { p } ( \\tilde { x } _ { i } ) \\right\\| ^ { 2 } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 417, + 1853, + 1279, + 1853, + 1279, + 1949, + 417, + 1949 + ], + "score": 0.91, + "latex": "\\begin{array}{c} \\begin{array} { l } { \\displaystyle \\mathrm { A N ~ c a n ~ p e ~ w r i t t e n ~ a s ~ r o l l o w s } \\colon } \\\\ { \\displaystyle \\operatorname* { m i n } _ { g _ { \\theta } } } \\\\ { \\displaystyle \\quad { f _ { p } , \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } \\| \\nabla _ { x } f _ { p } ( \\tilde { x } _ { i } ) \\| ^ { 2 } = 1 } } \\end{array} \\hat { \\hat { \\mathcal E } } ( f _ { p } , g _ { \\theta } ) = \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( x _ { i } ) - \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( g _ { \\theta } ( z _ { i } ) ) \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1123, + 1555, + 1281, + 1555, + 1281, + 1587, + 1123, + 1587 + ], + "score": 0.9, + "latex": "g _ { \\theta } ( z ) , z \\sim p _ { z }" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1960, + 1402, + 1960, + 1402, + 1998, + 1233, + 1998 + ], + "score": 0.9, + "latex": "\\hat { \\Omega } _ { S } ( f _ { p } , g _ { \\theta } ) \\ =" + }, + { + "category_id": 13, + "poly": [ + 831, + 1494, + 1089, + 1494, + 1089, + 1525, + 831, + 1525 + ], + "score": 0.9, + "latex": "g _ { \\boldsymbol { \\theta } } : \\mathcal { Z } \\subset \\mathbb { R } ^ { n _ { z } } \\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 446, + 1555, + 631, + 1555, + 631, + 1586, + 446, + 1586 + ], + "score": 0.9, + "latex": "z \\sim \\mathcal { N } ( 0 , I _ { n _ { z } } ) )" + }, + { + "category_id": 13, + "poly": [ + 563, + 1677, + 649, + 1677, + 649, + 1709, + 563, + 1709 + ], + "score": 0.9, + "latex": "\\tilde { x } \\sim \\mathbb { P } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 759, + 1998, + 906, + 1998, + 906, + 2039, + 759, + 2039 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\mu \\ = \\ \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1331, + 1723, + 1368, + 1723, + 1368, + 1753, + 1331, + 1753 + ], + "score": 0.89, + "latex": "\\mathbb { Q } _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1258, + 1498, + 1348, + 1498, + 1348, + 1525, + 1258, + 1525 + ], + "score": 0.89, + "latex": "z \\sim p _ { z }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1585, + 565, + 1585, + 565, + 1618, + 298, + 1618 + ], + "score": 0.88, + "latex": "\\{ x _ { i } , i = 1 \\ldots N \\} \\sim \\bar { \\mathbb { P } } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 881, + 1966, + 924, + 1966, + 924, + 1999, + 881, + 1999 + ], + "score": 0.88, + "latex": "\\mathcal { H } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 751, + 1556, + 788, + 1556, + 788, + 1585, + 751, + 1585 + ], + "score": 0.88, + "latex": "\\mathbb { Q } _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 936, + 1526, + 968, + 1526, + 968, + 1555, + 936, + 1555 + ], + "score": 0.88, + "latex": "\\mathbb { P } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 397, + 1783, + 558, + 1783, + 558, + 1816, + 397, + 1816 + ], + "score": 0.88, + "latex": "u \\sim \\mathrm { U n i f } [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 1243, + 1723, + 1276, + 1723, + 1276, + 1752, + 1243, + 1752 + ], + "score": 0.87, + "latex": "\\mathbb { P } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 595, + 1315, + 621, + 1315, + 621, + 1345, + 595, + 1345 + ], + "score": 0.87, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1585, + 930, + 1585, + 930, + 1619, + 577, + 1619 + ], + "score": 0.86, + "latex": "\\{ z _ { i } , i = 1 \\ldots N \\} \\sim { \\mathcal { N } } ( 0 , I _ { n _ { z } } )" + }, + { + "category_id": 13, + "poly": [ + 1056, + 1530, + 1087, + 1530, + 1087, + 1556, + 1056, + 1556 + ], + "score": 0.86, + "latex": "p _ { z }" + }, + { + "category_id": 13, + "poly": [ + 1096, + 1219, + 1122, + 1219, + 1122, + 1250, + 1096, + 1250 + ], + "score": 0.86, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 1147, + 1675, + 1165, + 1675, + 1165, + 1714, + 1147, + 1714 + ], + "score": 0.85, + "latex": "\\textstyle { \\frac { 1 } { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 758, + 1752, + 1351, + 1752, + 1351, + 1785, + 758, + 1785 + ], + "score": 0.83, + "latex": "\\tilde { x } = u x + ( 1 - u ) y , x \\sim \\mathbb { P } _ { r } , y = g _ { \\theta } ( z ) , z \\sim p _ { z }" + }, + { + "category_id": 13, + "poly": [ + 1028, + 1220, + 1049, + 1220, + 1049, + 1246, + 1028, + 1246 + ], + "score": 0.81, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 1374, + 1525, + 1401, + 1525, + 1401, + 1552, + 1374, + 1552 + ], + "score": 0.8, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 397, + 1726, + 452, + 1726, + 452, + 1754, + 397, + 1754 + ], + "score": 0.8, + "latex": "\\mu _ { G P }" + }, + { + "category_id": 13, + "poly": [ + 491, + 1622, + 510, + 1622, + 510, + 1648, + 491, + 1648 + ], + "score": 0.8, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 924, + 1996, + 1398, + 1996, + 1398, + 2040, + 924, + 2040 + ], + "score": 0.79, + "latex": "\\begin{array} { r c l } { \\hat { \\Omega } _ { S } ( f _ { p } , g _ { \\theta } ) } & { = } & { \\frac { 1 } { 2 N } \\sum _ { i = 1 } ^ { N } \\| \\nabla _ { x } \\boldsymbol { f } _ { p } ( x _ { i } ) \\| ^ { 2 } + } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 652, + 1315, + 672, + 1315, + 672, + 1341, + 652, + 1341 + ], + "score": 0.79, + "latex": "\\mathbb { P }" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 596.0, + 502.0, + 596.0, + 502.0, + 615.0, + 473.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 591.0, + 556.0, + 591.0, + 556.0, + 610.0, + 523.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 596.0, + 893.0, + 596.0, + 893.0, + 615.0, + 866.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 590.0, + 952.0, + 590.0, + 952.0, + 612.0, + 917.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 605.0, + 556.0, + 605.0, + 556.0, + 624.0, + 527.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 604.0, + 951.0, + 604.0, + 951.0, + 627.0, + 918.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 631.0, + 510.0, + 631.0, + 510.0, + 718.0, + 456.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 632.0, + 893.0, + 632.0, + 893.0, + 736.0, + 852.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 702.0, + 500.0, + 702.0, + 500.0, + 720.0, + 474.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 702.0, + 890.0, + 702.0, + 890.0, + 720.0, + 866.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 736.0, + 500.0, + 736.0, + 500.0, + 755.0, + 470.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 737.0, + 891.0, + 737.0, + 891.0, + 756.0, + 866.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 772.0, + 499.0, + 772.0, + 499.0, + 790.0, + 474.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 772.0, + 892.0, + 772.0, + 892.0, + 790.0, + 866.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 780.0, + 540.0, + 780.0, + 540.0, + 802.0, + 510.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 784.0, + 597.0, + 784.0, + 597.0, + 800.0, + 576.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 783.0, + 657.0, + 783.0, + 657.0, + 800.0, + 641.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 783.0, + 718.0, + 783.0, + 718.0, + 800.0, + 703.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 784.0, + 783.0, + 784.0, + 783.0, + 800.0, + 763.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 782.0, + 931.0, + 782.0, + 931.0, + 801.0, + 903.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 784.0, + 989.0, + 784.0, + 989.0, + 800.0, + 969.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 785.0, + 1047.0, + 785.0, + 1047.0, + 798.0, + 1034.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 786.0, + 1109.0, + 786.0, + 1109.0, + 798.0, + 1097.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 784.0, + 1175.0, + 784.0, + 1175.0, + 800.0, + 1156.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 246.0, + 505.0, + 246.0, + 505.0, + 265.0, + 477.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 240.0, + 561.0, + 240.0, + 561.0, + 261.0, + 529.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 246.0, + 896.0, + 246.0, + 896.0, + 264.0, + 869.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 240.0, + 956.0, + 240.0, + 956.0, + 261.0, + 921.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 254.0, + 561.0, + 254.0, + 561.0, + 275.0, + 529.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 254.0, + 956.0, + 254.0, + 956.0, + 276.0, + 921.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 281.0, + 504.0, + 281.0, + 504.0, + 299.0, + 477.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 283.0, + 894.0, + 283.0, + 894.0, + 385.0, + 855.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 312.0, + 503.0, + 312.0, + 503.0, + 358.0, + 466.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 315.0, + 893.0, + 315.0, + 893.0, + 334.0, + 870.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 353.0, + 503.0, + 353.0, + 503.0, + 368.0, + 478.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 351.0, + 894.0, + 351.0, + 894.0, + 370.0, + 869.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 386.0, + 503.0, + 386.0, + 503.0, + 404.0, + 477.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 386.0, + 895.0, + 386.0, + 895.0, + 404.0, + 869.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 421.0, + 503.0, + 421.0, + 503.0, + 439.0, + 477.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 421.0, + 895.0, + 421.0, + 895.0, + 439.0, + 869.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 431.0, + 543.0, + 431.0, + 543.0, + 450.0, + 516.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 430.0, + 602.0, + 430.0, + 602.0, + 450.0, + 581.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 434.0, + 658.0, + 434.0, + 658.0, + 448.0, + 645.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 432.0, + 720.0, + 432.0, + 720.0, + 448.0, + 708.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 431.0, + 788.0, + 431.0, + 788.0, + 450.0, + 766.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 429.0, + 935.0, + 429.0, + 935.0, + 451.0, + 906.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 433.0, + 992.0, + 433.0, + 992.0, + 449.0, + 974.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 434.0, + 1050.0, + 434.0, + 1050.0, + 448.0, + 1038.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 434.0, + 1112.0, + 434.0, + 1112.0, + 448.0, + 1100.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 433.0, + 1178.0, + 433.0, + 1178.0, + 449.0, + 1159.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1386.0, + 579.0, + 1386.0, + 579.0, + 1434.0, + 292.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 820.0, + 1248.0, + 820.0, + 1248.0, + 853.0, + 445.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 846.0, + 1246.0, + 846.0, + 1246.0, + 885.0, + 443.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 880.0, + 513.0, + 880.0, + 513.0, + 908.0, + 443.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 471.0, + 1248.0, + 471.0, + 1248.0, + 502.0, + 450.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 499.0, + 809.0, + 499.0, + 809.0, + 532.0, + 449.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 943.0, + 1404.0, + 943.0, + 1404.0, + 979.0, + 294.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 973.0, + 1404.0, + 973.0, + 1404.0, + 1010.0, + 291.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1007.0, + 1404.0, + 1007.0, + 1404.0, + 1039.0, + 295.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1036.0, + 1217.0, + 1036.0, + 1217.0, + 1072.0, + 294.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1126.0, + 1403.0, + 1126.0, + 1403.0, + 1162.0, + 294.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1157.0, + 1405.0, + 1157.0, + 1405.0, + 1192.0, + 293.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1187.0, + 1405.0, + 1187.0, + 1405.0, + 1222.0, + 294.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1217.0, + 1027.0, + 1217.0, + 1027.0, + 1252.0, + 291.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1217.0, + 1095.0, + 1217.0, + 1095.0, + 1252.0, + 1050.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1217.0, + 1406.0, + 1217.0, + 1406.0, + 1252.0, + 1123.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1247.0, + 1406.0, + 1247.0, + 1406.0, + 1282.0, + 294.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1273.0, + 922.0, + 1273.0, + 922.0, + 1322.0, + 293.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 1273.0, + 1406.0, + 1273.0, + 1406.0, + 1322.0, + 1033.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1315.0, + 594.0, + 1315.0, + 594.0, + 1346.0, + 295.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1315.0, + 651.0, + 1315.0, + 651.0, + 1346.0, + 622.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 1315.0, + 680.0, + 1315.0, + 680.0, + 1346.0, + 673.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1461.0, + 1404.0, + 1461.0, + 1404.0, + 1497.0, + 294.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1492.0, + 830.0, + 1492.0, + 830.0, + 1528.0, + 451.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 1492.0, + 1257.0, + 1492.0, + 1257.0, + 1528.0, + 1090.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1492.0, + 1406.0, + 1492.0, + 1406.0, + 1528.0, + 1349.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1522.0, + 463.0, + 1522.0, + 463.0, + 1558.0, + 293.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 1522.0, + 935.0, + 1522.0, + 935.0, + 1558.0, + 529.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1522.0, + 1055.0, + 1522.0, + 1055.0, + 1558.0, + 969.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 1522.0, + 1373.0, + 1522.0, + 1373.0, + 1558.0, + 1088.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1553.0, + 445.0, + 1553.0, + 445.0, + 1589.0, + 294.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1553.0, + 750.0, + 1553.0, + 750.0, + 1589.0, + 632.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 1553.0, + 1122.0, + 1553.0, + 1122.0, + 1589.0, + 789.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1553.0, + 1406.0, + 1553.0, + 1406.0, + 1589.0, + 1282.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1581.0, + 297.0, + 1581.0, + 297.0, + 1620.0, + 294.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1581.0, + 576.0, + 1581.0, + 576.0, + 1620.0, + 566.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1581.0, + 991.0, + 1581.0, + 991.0, + 1620.0, + 931.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 1581.0, + 1407.0, + 1581.0, + 1407.0, + 1620.0, + 1245.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1611.0, + 490.0, + 1611.0, + 490.0, + 1653.0, + 294.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 1611.0, + 523.0, + 1611.0, + 523.0, + 1653.0, + 511.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1960.0, + 880.0, + 1960.0, + 880.0, + 2002.0, + 293.0, + 2002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 1960.0, + 1232.0, + 1960.0, + 1232.0, + 2002.0, + 925.0, + 2002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1979.0, + 298.0, + 1979.0, + 298.0, + 2054.0, + 286.0, + 2054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1979.0, + 758.0, + 1979.0, + 758.0, + 2054.0, + 556.0, + 2054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1979.0, + 923.0, + 1979.0, + 923.0, + 2054.0, + 907.0, + 2054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1979.0, + 1413.0, + 1979.0, + 1413.0, + 2054.0, + 1399.0, + 2054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1663.0, + 396.0, + 1663.0, + 396.0, + 1721.0, + 361.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1663.0, + 562.0, + 1663.0, + 562.0, + 1721.0, + 527.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1663.0, + 682.0, + 1663.0, + 682.0, + 1721.0, + 650.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1663.0, + 1146.0, + 1663.0, + 1146.0, + 1721.0, + 891.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 1663.0, + 1179.0, + 1663.0, + 1179.0, + 1721.0, + 1166.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1716.0, + 396.0, + 1716.0, + 396.0, + 1759.0, + 355.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1716.0, + 1242.0, + 1716.0, + 1242.0, + 1759.0, + 453.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 1716.0, + 1330.0, + 1716.0, + 1330.0, + 1759.0, + 1277.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 1716.0, + 1406.0, + 1716.0, + 1406.0, + 1759.0, + 1369.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1749.0, + 757.0, + 1749.0, + 757.0, + 1789.0, + 390.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 1749.0, + 1406.0, + 1749.0, + 1406.0, + 1789.0, + 1352.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1777.0, + 396.0, + 1777.0, + 396.0, + 1821.0, + 392.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 1777.0, + 572.0, + 1777.0, + 572.0, + 1821.0, + 559.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1838.0, + 751.0, + 1838.0, + 751.0, + 1876.0, + 295.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 943.0, + 1404.0, + 943.0, + 1404.0, + 979.0, + 294.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 973.0, + 1404.0, + 973.0, + 1404.0, + 1010.0, + 291.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1007.0, + 1404.0, + 1007.0, + 1404.0, + 1039.0, + 295.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1036.0, + 1217.0, + 1036.0, + 1217.0, + 1072.0, + 294.0, + 1072.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1209, + 1404, + 1209, + 1404, + 1343, + 297, + 1343 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1001, + 1404, + 1001, + 1404, + 1103, + 298, + 1103 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 909, + 248, + 1313, + 248, + 1313, + 599, + 909, + 599 + ], + "score": 0.965 + }, + { + "category_id": 3, + "poly": [ + 341, + 273, + 795, + 273, + 795, + 604, + 341, + 604 + ], + "score": 0.946 + }, + { + "category_id": 4, + "poly": [ + 855, + 634, + 1366, + 634, + 1366, + 748, + 855, + 748 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 327, + 635, + 834, + 635, + 834, + 692, + 327, + 692 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 461, + 1127, + 1238, + 1127, + 1238, + 1185, + 461, + 1185 + ], + "score": 0.938 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1139, + 1399, + 1139, + 1399, + 1170, + 1352, + 1170 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.895 + }, + { + "category_id": 5, + "poly": [ + 303, + 1425, + 1404, + 1425, + 1404, + 1899, + 303, + 1899 + ], + "score": 0.87, + "html": "
Input: ρ penalty weight, n Learning rate, nc number of iterations for training the critic, N batch size
Initialize p, 0,λ=0
repeat
for j = 1 to nc do
Samplea minibatch xi,i=1...N,xi~ Pr
Sample a minibatch zi,i = 1...N,zi ~ Pz
(gp,gx)←(VpLs,VxLs)(p,0,λ)
p ←p+η ADAM(p,9p)
λ ← λ- pgx {SGD rule on 入with learning rate ρ} end for
Sample zi,i= 1...N, zi ~ Pz
d←Vθ8(fp,g0)=-VθN∑=1fp(g0(zi)) N
0←0-nADAM(0,dθ)
until θ converges
" + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.863 + }, + { + "category_id": 1, + "poly": [ + 295, + 1942, + 1405, + 1942, + 1405, + 2035, + 295, + 2035 + ], + "score": 0.663 + }, + { + "category_id": 0, + "poly": [ + 298, + 1388, + 609, + 1388, + 609, + 1420, + 298, + 1420 + ], + "score": 0.651 + }, + { + "category_id": 1, + "poly": [ + 295, + 782, + 1405, + 782, + 1405, + 941, + 295, + 941 + ], + "score": 0.609 + }, + { + "category_id": 4, + "poly": [ + 295, + 782, + 1405, + 782, + 1405, + 941, + 295, + 941 + ], + "score": 0.589 + }, + { + "category_id": 6, + "poly": [ + 295, + 1942, + 1405, + 1942, + 1405, + 2035, + 295, + 2035 + ], + "score": 0.143 + }, + { + "category_id": 6, + "poly": [ + 298, + 1388, + 609, + 1388, + 609, + 1420, + 298, + 1420 + ], + "score": 0.127 + }, + { + "category_id": 13, + "poly": [ + 584, + 844, + 694, + 844, + 694, + 885, + 584, + 885 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\bar { \\boldsymbol { \\mu } } = \\frac { \\mathbb { P } + \\mathbb { Q } } { 2 } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 858, + 663, + 956, + 663, + 956, + 693, + 858, + 693 + ], + "score": 0.92, + "latex": "\\nabla _ { x } f ^ { * } { \\bar { ( x ) } }" + }, + { + "category_id": 13, + "poly": [ + 1263, + 662, + 1362, + 662, + 1362, + 693, + 1263, + 693 + ], + "score": 0.92, + "latex": "\\nabla _ { x } f ^ { * } ( x )" + }, + { + "category_id": 14, + "poly": [ + 461, + 1127, + 1237, + 1127, + 1237, + 1187, + 461, + 1187 + ], + "score": 0.91, + "latex": "\\mathcal { L } _ { S } ( p , \\theta , \\lambda ) = \\hat { \\mathcal { E } } ( f _ { p } , g _ { \\theta } ) + \\lambda ( 1 - \\hat { \\Omega } _ { S } ( f _ { p } , g _ { \\theta } ) ) - \\frac { \\rho } { 2 } ( \\hat { \\Omega } _ { S } ( f _ { p } , g _ { \\theta } ) - 1 ) ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 735, + 1213, + 803, + 1213, + 803, + 1243, + 735, + 1243 + ], + "score": 0.91, + "latex": "\\rho > 0" + }, + { + "category_id": 13, + "poly": [ + 299, + 1003, + 608, + 1003, + 608, + 1046, + 299, + 1046 + ], + "score": 0.9, + "latex": "\\begin{array} { r l } { } & { { } \\frac { 1 } { 2 N } \\sum _ { i = 1 } ^ { N } \\left\\| \\nabla _ { x } f _ { p } ( g _ { \\theta } ( z _ { i } ) ) \\right\\| ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1018, + 1304, + 1127, + 1304, + 1127, + 1344, + 1018, + 1344 + ], + "score": 0.89, + "latex": "\\hat { \\mathcal { E } } ( f _ { p } , g _ { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 436, + 1487, + 560, + 1487, + 560, + 1518, + 436, + 1518 + ], + "score": 0.86, + "latex": "p , \\theta , \\lambda = 0" + }, + { + "category_id": 13, + "poly": [ + 394, + 1549, + 462, + 1549, + 462, + 1579, + 394, + 1579 + ], + "score": 0.86, + "latex": "j = 1" + }, + { + "category_id": 13, + "poly": [ + 436, + 1272, + 699, + 1272, + 699, + 1307, + 436, + 1307 + ], + "score": 0.86, + "latex": "\\begin{array} { r } { \\operatorname* { m a x } _ { p } \\operatorname* { m i n } _ { \\lambda } \\mathcal { L } _ { S } ( p , \\theta , \\lambda ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 924, + 1699, + 955, + 1699, + 955, + 1733, + 924, + 1733 + ], + "score": 0.85, + "latex": "\\rho \\}" + }, + { + "category_id": 13, + "poly": [ + 796, + 1433, + 827, + 1433, + 827, + 1456, + 796, + 1456 + ], + "score": 0.85, + "latex": "n _ { c }" + }, + { + "category_id": 13, + "poly": [ + 1376, + 849, + 1402, + 849, + 1402, + 880, + 1376, + 880 + ], + "score": 0.83, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 605, + 1579, + 878, + 1579, + 878, + 1608, + 605, + 1608 + ], + "score": 0.82, + "latex": "x _ { i } , i = 1 \\ldots N , x _ { i } \\sim \\mathbb { P } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1213, + 391, + 1213, + 391, + 1239, + 372, + 1239 + ], + "score": 0.81, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 646, + 1311, + 664, + 1311, + 664, + 1337, + 646, + 1337 + ], + "score": 0.81, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 699, + 1702, + 719, + 1702, + 719, + 1727, + 699, + 1727 + ], + "score": 0.8, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1342, + 1279, + 1360, + 1279, + 1360, + 1305, + 1342, + 1305 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 494, + 1551, + 527, + 1551, + 527, + 1578, + 494, + 1578 + ], + "score": 0.79, + "latex": "n _ { c }" + }, + { + "category_id": 13, + "poly": [ + 610, + 1432, + 629, + 1432, + 629, + 1458, + 610, + 1458 + ], + "score": 0.78, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 441, + 1761, + 704, + 1761, + 704, + 1791, + 441, + 1791 + ], + "score": 0.75, + "latex": "z _ { i } , i = 1 \\dots N , z _ { i } \\sim p _ { z }" + }, + { + "category_id": 13, + "poly": [ + 599, + 1671, + 674, + 1671, + 674, + 1702, + 599, + 1702 + ], + "score": 0.73, + "latex": "( p , g _ { p } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1274, + 314, + 1274, + 314, + 1300, + 298, + 1300 + ], + "score": 0.73, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 607, + 1610, + 870, + 1610, + 870, + 1639, + 607, + 1639 + ], + "score": 0.72, + "latex": "z _ { i } , i = 1 \\dots N , z _ { i } \\sim p _ { z }" + }, + { + "category_id": 13, + "poly": [ + 409, + 1432, + 428, + 1432, + 428, + 1458, + 409, + 1458 + ], + "score": 0.68, + "latex": "\\rho" + }, + { + "category_id": 13, + "poly": [ + 380, + 1638, + 788, + 1638, + 788, + 1672, + 380, + 1672 + ], + "score": 0.65, + "latex": "( g _ { p } , g _ { \\lambda } ) ( \\nabla _ { p } \\mathcal { L } _ { S } , \\nabla _ { \\lambda } \\mathcal { L } _ { S } ) ( p , \\theta , \\lambda )" + }, + { + "category_id": 13, + "poly": [ + 350, + 1793, + 878, + 1793, + 878, + 1829, + 350, + 1829 + ], + "score": 0.63, + "latex": "\\begin{array} { r } { d _ { \\theta } \\gets \\nabla _ { \\theta } \\hat { \\mathcal { O } } ( f _ { p } , g _ { \\theta } ) = - \\nabla _ { \\theta } \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( g _ { \\theta } ( z _ { i } ) ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 325, + 880, + 346, + 880, + 346, + 906, + 325, + 906 + ], + "score": 0.6, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 381, + 1702, + 535, + 1702, + 535, + 1732, + 381, + 1732 + ], + "score": 0.57, + "latex": "\\lambda \\lambda - \\rho g _ { \\lambda }" + }, + { + "category_id": 14, + "poly": [ + 380, + 1638, + 786, + 1638, + 786, + 1672, + 380, + 1672 + ], + "score": 0.54, + "latex": "( g _ { p } , g _ { \\lambda } ) ( \\nabla _ { p } \\mathcal { L } _ { S } , \\nabla _ { \\lambda } \\mathcal { L } _ { S } ) ( p , \\theta , \\lambda )" + }, + { + "category_id": 13, + "poly": [ + 387, + 1858, + 405, + 1858, + 405, + 1884, + 387, + 1884 + ], + "score": 0.53, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 380, + 1673, + 505, + 1673, + 505, + 1700, + 380, + 1700 + ], + "score": 0.47, + "latex": "p \\gets p + \\eta" + }, + { + "category_id": 13, + "poly": [ + 693, + 1945, + 707, + 1945, + 707, + 1970, + 693, + 1970 + ], + "score": 0.37, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 571, + 1827, + 646, + 1827, + 646, + 1860, + 571, + 1860 + ], + "score": 0.33, + "latex": "( \\theta , d _ { \\theta } )" + }, + { + "category_id": 14, + "poly": [ + 350, + 1792, + 882, + 1792, + 882, + 1831, + 350, + 1831 + ], + "score": 0.29, + "latex": "\\begin{array} { r } { d _ { \\theta } \\gets \\nabla _ { \\theta } \\hat { \\mathcal { O } } ( f _ { p } , g _ { \\theta } ) = - \\nabla _ { \\theta } \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( g _ { \\theta } ( z _ { i } ) ) } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 217.0, + 1281.0, + 217.0, + 1281.0, + 461.0, + 953.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 355.0, + 1045.0, + 355.0, + 1045.0, + 370.0, + 1024.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 391.0, + 921.0, + 391.0, + 921.0, + 396.0, + 916.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 391.0, + 1216.0, + 391.0, + 1216.0, + 414.0, + 1029.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 403.0, + 1220.0, + 403.0, + 1220.0, + 433.0, + 1134.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 404.0, + 1241.0, + 404.0, + 1241.0, + 473.0, + 997.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 411.0, + 1130.0, + 411.0, + 1130.0, + 425.0, + 1016.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 411.0, + 1143.0, + 411.0, + 1143.0, + 422.0, + 1125.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 427.0, + 1234.0, + 427.0, + 1234.0, + 434.0, + 1220.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 433.0, + 1133.0, + 433.0, + 1133.0, + 459.0, + 1009.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 440.0, + 1235.0, + 440.0, + 1235.0, + 447.0, + 1223.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 444.0, + 1218.0, + 444.0, + 1218.0, + 476.0, + 1003.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 459.0, + 1214.0, + 459.0, + 1214.0, + 505.0, + 1018.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 487.0, + 921.0, + 487.0, + 921.0, + 492.0, + 916.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 496.0, + 1058.0, + 496.0, + 1058.0, + 503.0, + 1050.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 489.0, + 1172.0, + 489.0, + 1172.0, + 512.0, + 1062.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 510.0, + 1108.0, + 510.0, + 1108.0, + 518.0, + 1098.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 532.0, + 922.0, + 532.0, + 922.0, + 540.0, + 914.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 585.0, + 983.0, + 585.0, + 983.0, + 599.0, + 963.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 587.0, + 1025.0, + 587.0, + 1025.0, + 597.0, + 1017.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 585.0, + 1079.0, + 585.0, + 1079.0, + 599.0, + 1059.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 587.0, + 1173.0, + 587.0, + 1173.0, + 598.0, + 1157.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 588.0, + 1216.0, + 588.0, + 1216.0, + 596.0, + 1208.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 587.0, + 1269.0, + 587.0, + 1269.0, + 597.0, + 1253.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 590.0, + 1311.0, + 590.0, + 1311.0, + 595.0, + 1306.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.75, + 363.0, + 1202.75, + 363.0, + 1202.75, + 375.0, + 1184.75, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 458.0, + 1138.0, + 458.0, + 1138.0, + 487.0, + 1010.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 304.0, + 785.0, + 304.0, + 785.0, + 316.0, + 769.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 330.0, + 386.0, + 330.0, + 386.0, + 347.0, + 357.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 353.0, + 386.0, + 353.0, + 386.0, + 372.0, + 361.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 348.0, + 790.0, + 348.0, + 790.0, + 364.0, + 767.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 376.0, + 386.0, + 376.0, + 386.0, + 396.0, + 356.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 400.0, + 386.0, + 400.0, + 386.0, + 421.0, + 361.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 395.0, + 786.0, + 395.0, + 786.0, + 411.0, + 768.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 411.0, + 362.0, + 411.0, + 362.0, + 442.0, + 344.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 425.0, + 386.0, + 425.0, + 386.0, + 444.0, + 355.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 442.0, + 790.0, + 442.0, + 790.0, + 456.0, + 767.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 449.0, + 386.0, + 449.0, + 386.0, + 468.0, + 361.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 473.0, + 385.0, + 473.0, + 385.0, + 491.0, + 356.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 489.0, + 783.0, + 489.0, + 783.0, + 501.0, + 769.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 504.0, + 379.0, + 504.0, + 379.0, + 509.0, + 373.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 534.0, + 790.0, + 534.0, + 790.0, + 548.0, + 766.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 577.0, + 594.0, + 577.0, + 594.0, + 587.0, + 586.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 589.0, + 528.0, + 589.0, + 528.0, + 601.0, + 516.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.75, + 353.0, + 627.75, + 353.0, + 627.75, + 594.5, + 525.75, + 594.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 633.0, + 1369.0, + 633.0, + 1369.0, + 665.0, + 854.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 658.0, + 857.0, + 658.0, + 857.0, + 696.0, + 854.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 658.0, + 1262.0, + 658.0, + 1262.0, + 696.0, + 957.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 658.0, + 1367.0, + 658.0, + 1367.0, + 696.0, + 1363.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 689.0, + 1368.0, + 689.0, + 1368.0, + 722.0, + 855.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 720.0, + 1129.0, + 720.0, + 1129.0, + 747.0, + 856.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1384.0, + 613.0, + 1384.0, + 613.0, + 1427.0, + 295.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 783.0, + 1403.0, + 783.0, + 1403.0, + 817.0, + 295.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 814.0, + 1403.0, + 814.0, + 1403.0, + 848.0, + 295.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 839.0, + 583.0, + 839.0, + 583.0, + 889.0, + 290.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 839.0, + 1375.0, + 839.0, + 1375.0, + 889.0, + 695.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 839.0, + 1407.0, + 839.0, + 1407.0, + 889.0, + 1403.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 875.0, + 324.0, + 875.0, + 324.0, + 914.0, + 293.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 875.0, + 1406.0, + 875.0, + 1406.0, + 914.0, + 347.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 909.0, + 772.0, + 909.0, + 772.0, + 942.0, + 295.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 692.0, + 1940.0, + 692.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1940.0, + 1405.0, + 1940.0, + 1405.0, + 1976.0, + 708.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2009.0, + 290.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 1323.0, + 2003.0, + 1323.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1384.0, + 613.0, + 1384.0, + 613.0, + 1427.0, + 295.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1211.0, + 371.0, + 1211.0, + 371.0, + 1246.0, + 297.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1211.0, + 734.0, + 1211.0, + 734.0, + 1246.0, + 392.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1211.0, + 1404.0, + 1211.0, + 1404.0, + 1246.0, + 804.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1241.0, + 1404.0, + 1241.0, + 1404.0, + 1277.0, + 294.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1270.0, + 297.0, + 1270.0, + 297.0, + 1310.0, + 291.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 1270.0, + 435.0, + 1270.0, + 435.0, + 1310.0, + 315.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1270.0, + 1341.0, + 1270.0, + 1341.0, + 1310.0, + 700.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 1270.0, + 1405.0, + 1270.0, + 1405.0, + 1310.0, + 1361.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1308.0, + 645.0, + 1308.0, + 645.0, + 1345.0, + 295.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 1308.0, + 1017.0, + 1308.0, + 1017.0, + 1345.0, + 665.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1308.0, + 1337.0, + 1308.0, + 1337.0, + 1345.0, + 1128.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1000.0, + 298.0, + 1000.0, + 298.0, + 1051.0, + 286.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1000.0, + 1411.0, + 1000.0, + 1411.0, + 1051.0, + 609.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1038.0, + 1405.0, + 1038.0, + 1405.0, + 1073.0, + 293.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1067.0, + 1311.0, + 1067.0, + 1311.0, + 1105.0, + 293.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 633.0, + 836.0, + 633.0, + 836.0, + 667.0, + 326.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 663.0, + 562.0, + 663.0, + 562.0, + 693.0, + 326.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 692.0, + 1940.0, + 692.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1940.0, + 1405.0, + 1940.0, + 1405.0, + 1976.0, + 708.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2009.0, + 290.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 1323.0, + 2003.0, + 1323.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 783.0, + 1403.0, + 783.0, + 1403.0, + 817.0, + 295.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 814.0, + 1403.0, + 814.0, + 1403.0, + 848.0, + 295.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 839.0, + 583.0, + 839.0, + 583.0, + 889.0, + 290.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 839.0, + 1375.0, + 839.0, + 1375.0, + 889.0, + 695.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 839.0, + 1407.0, + 839.0, + 1407.0, + 889.0, + 1403.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 875.0, + 324.0, + 875.0, + 324.0, + 914.0, + 293.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 875.0, + 1406.0, + 875.0, + 1406.0, + 914.0, + 347.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 909.0, + 772.0, + 909.0, + 772.0, + 942.0, + 295.0, + 942.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 783, + 1404, + 783, + 1404, + 1029, + 297, + 1029 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1121, + 1404, + 1121, + 1404, + 1305, + 297, + 1305 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1321, + 1403, + 1321, + 1403, + 1505, + 297, + 1505 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1780, + 1403, + 1780, + 1403, + 2035, + 297, + 2035 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 296, + 1520, + 1404, + 1520, + 1404, + 1767, + 296, + 1767 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 613, + 1404, + 613, + 1404, + 767, + 297, + 767 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 369, + 1403, + 369, + 1403, + 502, + 297, + 502 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 429, + 272, + 1271, + 272, + 1271, + 360, + 429, + 360 + ], + "score": 0.944 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 815, + 74, + 815, + 105, + 298, + 105 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 297, + 1064, + 861, + 1064, + 861, + 1096, + 297, + 1096 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 300, + 546, + 838, + 546, + 838, + 581, + 300, + 581 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.85 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1028, + 228, + 1028, + 262, + 297, + 262 + ], + "score": 0.594 + }, + { + "category_id": 0, + "poly": [ + 297, + 228, + 1028, + 228, + 1028, + 262, + 297, + 262 + ], + "score": 0.42 + }, + { + "category_id": 13, + "poly": [ + 1233, + 2002, + 1346, + 2002, + 1346, + 2036, + 1233, + 2036 + ], + "score": 0.93, + "latex": "{ \\bar { \\mathcal { N } } } ( 0 , \\sigma ^ { 2 } )" + }, + { + "category_id": 14, + "poly": [ + 425, + 267, + 1270, + 267, + 1270, + 362, + 425, + 362 + ], + "score": 0.93, + "latex": "\\operatorname* { m i n } _ { \\substack { g _ { \\theta } } } \\operatorname* { s u p } _ { f , \\| \\nabla _ { x } f _ { p } ( \\bar { x } _ { i } ) \\| = 1 , \\bar { x } _ { i } \\sim \\mu _ { G P } } \\hat { \\bar { \\mathcal { E } } } ( f _ { p } , g _ { \\theta } ) = \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( x _ { i } ) - \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } f _ { p } ( g _ { \\theta } ( z _ { i } ) )" + }, + { + "category_id": 13, + "poly": [ + 645, + 1842, + 957, + 1842, + 957, + 1887, + 645, + 1887 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mu _ { s } ( \\sigma ) \\ = \\ \\frac { \\mathbb { P } _ { r } \\star \\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { d } ) + \\mathbb { Q } _ { \\theta } } { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 559, + 1613, + 775, + 1613, + 775, + 1644, + 559, + 1644 + ], + "score": 0.92, + "latex": "\\mathbb { P } _ { r } : x + \\xi , x \\sim \\mathbb { P } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1882, + 380, + 1882, + 380, + 1915, + 297, + 1915 + ], + "score": 0.91, + "latex": "\\mu _ { s } ^ { a } ( \\sigma _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 1118, + 401, + 1406, + 401, + 1406, + 443, + 1118, + 443 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } { { \\big ( \\hat { \\mathcal { E } } ( f _ { p } , g _ { \\theta } ) - \\lambda \\sum _ { i = 1 } ^ { N } \\bigl ( 1 - \\bigl ) } \\quad } & { { } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 2002, + 500, + 2002, + 500, + 2036, + 298, + 2036 + ], + "score": 0.91, + "latex": "0 . 1 / ( d i c t _ { s i z e } - 1 )" + }, + { + "category_id": 13, + "poly": [ + 839, + 1581, + 1037, + 1581, + 1037, + 1614, + 839, + 1614 + ], + "score": 0.91, + "latex": "\\mathbb { P } _ { r } \\star \\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { d } )" + }, + { + "category_id": 13, + "poly": [ + 299, + 439, + 460, + 439, + 460, + 474, + 299, + 474 + ], + "score": 0.91, + "latex": "\\| \\nabla _ { x } f ( \\widetilde { x } _ { i } ) \\| ) ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 834, + 1613, + 1023, + 1613, + 1023, + 1646, + 834, + 1646 + ], + "score": 0.91, + "latex": "\\xi \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { d } )" + }, + { + "category_id": 13, + "poly": [ + 1290, + 1552, + 1322, + 1552, + 1322, + 1582, + 1290, + 1582 + ], + "score": 0.89, + "latex": "\\mathbb { P } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 627, + 410, + 736, + 410, + 736, + 439, + 627, + 439 + ], + "score": 0.88, + "latex": "\\mu = \\mu _ { G P }" + }, + { + "category_id": 13, + "poly": [ + 691, + 1523, + 725, + 1523, + 725, + 1552, + 691, + 1552 + ], + "score": 0.88, + "latex": "\\mathbb { P } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 585, + 1814, + 708, + 1814, + 708, + 1845, + 585, + 1845 + ], + "score": 0.85, + "latex": "\\mu = \\mu _ { G P } ) " + }, + { + "category_id": 13, + "poly": [ + 443, + 1885, + 475, + 1885, + 475, + 1912, + 443, + 1912 + ], + "score": 0.85, + "latex": "\\sigma _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1035, + 1978, + 1053, + 1978, + 1053, + 2004, + 1035, + 2004 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1215, + 1817, + 1236, + 1817, + 1236, + 1844, + 1215, + 1844 + ], + "score": 0.79, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 942, + 1526, + 965, + 1526, + 965, + 1553, + 942, + 1553 + ], + "score": 0.77, + "latex": "\\pmb { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 1378, + 1249, + 1402, + 1249, + 1402, + 1277, + 1378, + 1277 + ], + "score": 0.77, + "latex": "\\pmb { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 781, + 1740, + 801, + 1740, + 801, + 1762, + 781, + 1762 + ], + "score": 0.76, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 588, + 1978, + 607, + 1978, + 607, + 2000, + 588, + 2000 + ], + "score": 0.75, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 784, + 1187, + 808, + 1187, + 808, + 1216, + 784, + 1216 + ], + "score": 0.73, + "latex": "\\pmb { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 897, + 2009, + 910, + 2009, + 910, + 2030, + 897, + 2030 + ], + "score": 0.73, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 297, + 1856, + 352, + 1856, + 352, + 1882, + 297, + 1882 + ], + "score": 0.65, + "latex": "\\mu _ { G P }" + }, + { + "category_id": 13, + "poly": [ + 1104, + 1817, + 1123, + 1817, + 1123, + 1843, + 1104, + 1843 + ], + "score": 0.56, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 481, + 1814, + 505, + 1814, + 505, + 1839, + 481, + 1839 + ], + "score": 0.55, + "latex": "^ { 1 \\textless }" + }, + { + "category_id": 13, + "poly": [ + 1000, + 1814, + 1024, + 1814, + 1024, + 1839, + 1000, + 1839 + ], + "score": 0.53, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 357, + 1814, + 381, + 1814, + 381, + 1839, + 357, + 1839 + ], + "score": 0.5, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 877, + 1813, + 900, + 1813, + 900, + 1839, + 877, + 1839 + ], + "score": 0.41, + "latex": "=" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1064.0, + 864.0, + 1064.0, + 864.0, + 1100.0, + 295.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 543.0, + 842.0, + 543.0, + 842.0, + 587.0, + 293.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 1032.0, + 226.0, + 1032.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 785.0, + 1406.0, + 785.0, + 1406.0, + 818.0, + 294.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 815.0, + 1406.0, + 815.0, + 1406.0, + 848.0, + 293.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 844.0, + 1406.0, + 844.0, + 1406.0, + 878.0, + 291.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 876.0, + 1404.0, + 876.0, + 1404.0, + 910.0, + 295.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 905.0, + 1406.0, + 905.0, + 1406.0, + 941.0, + 292.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 936.0, + 1409.0, + 936.0, + 1409.0, + 973.0, + 292.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 967.0, + 1406.0, + 967.0, + 1406.0, + 1001.0, + 295.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1000.0, + 1210.0, + 1000.0, + 1210.0, + 1030.0, + 296.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1123.0, + 1402.0, + 1123.0, + 1402.0, + 1155.0, + 295.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1155.0, + 1404.0, + 1155.0, + 1404.0, + 1186.0, + 296.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1183.0, + 783.0, + 1183.0, + 783.0, + 1218.0, + 295.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 1183.0, + 1404.0, + 1183.0, + 1404.0, + 1218.0, + 809.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1212.0, + 1405.0, + 1212.0, + 1405.0, + 1250.0, + 294.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1240.0, + 1377.0, + 1240.0, + 1377.0, + 1283.0, + 292.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1240.0, + 1408.0, + 1240.0, + 1408.0, + 1283.0, + 1403.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1275.0, + 490.0, + 1275.0, + 490.0, + 1307.0, + 294.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1323.0, + 1404.0, + 1323.0, + 1404.0, + 1355.0, + 296.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1348.0, + 1407.0, + 1348.0, + 1407.0, + 1389.0, + 291.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1380.0, + 1405.0, + 1380.0, + 1405.0, + 1417.0, + 292.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1414.0, + 1405.0, + 1414.0, + 1405.0, + 1446.0, + 295.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1440.0, + 1405.0, + 1440.0, + 1405.0, + 1481.0, + 291.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1476.0, + 551.0, + 1476.0, + 551.0, + 1508.0, + 295.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1777.0, + 1405.0, + 1777.0, + 1405.0, + 1816.0, + 294.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1808.0, + 356.0, + 1808.0, + 356.0, + 1847.0, + 292.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1808.0, + 480.0, + 1808.0, + 480.0, + 1847.0, + 382.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1808.0, + 584.0, + 1808.0, + 584.0, + 1847.0, + 506.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 1808.0, + 876.0, + 1808.0, + 876.0, + 1847.0, + 709.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1808.0, + 999.0, + 1808.0, + 999.0, + 1847.0, + 901.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 1808.0, + 1103.0, + 1808.0, + 1103.0, + 1847.0, + 1025.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 1808.0, + 1214.0, + 1808.0, + 1214.0, + 1847.0, + 1124.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1808.0, + 1407.0, + 1808.0, + 1407.0, + 1847.0, + 1237.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 1832.0, + 296.0, + 1832.0, + 296.0, + 1894.0, + 283.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1832.0, + 644.0, + 1832.0, + 644.0, + 1894.0, + 353.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 1832.0, + 1414.0, + 1832.0, + 1414.0, + 1894.0, + 958.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1879.0, + 296.0, + 1879.0, + 296.0, + 1915.0, + 292.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1879.0, + 442.0, + 1879.0, + 442.0, + 1915.0, + 381.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 1879.0, + 1404.0, + 1879.0, + 1404.0, + 1915.0, + 476.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1946.0, + 295.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1974.0, + 296.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1974.0, + 587.0, + 1974.0, + 587.0, + 2005.0, + 295.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 1974.0, + 1034.0, + 1974.0, + 1034.0, + 2005.0, + 608.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2005.0, + 1054.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2001.0, + 297.0, + 2001.0, + 297.0, + 2037.0, + 292.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 2001.0, + 896.0, + 2001.0, + 896.0, + 2037.0, + 501.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 2001.0, + 1232.0, + 2001.0, + 1232.0, + 2037.0, + 911.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 2001.0, + 1405.0, + 2001.0, + 1405.0, + 2037.0, + 1347.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1521.0, + 690.0, + 1521.0, + 690.0, + 1554.0, + 296.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1521.0, + 941.0, + 1521.0, + 941.0, + 1554.0, + 726.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1521.0, + 1404.0, + 1521.0, + 1404.0, + 1554.0, + 966.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1551.0, + 1289.0, + 1551.0, + 1289.0, + 1584.0, + 296.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 1551.0, + 1406.0, + 1551.0, + 1406.0, + 1584.0, + 1323.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1582.0, + 838.0, + 1582.0, + 838.0, + 1616.0, + 294.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 1582.0, + 1402.0, + 1582.0, + 1402.0, + 1616.0, + 1038.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1611.0, + 558.0, + 1611.0, + 558.0, + 1648.0, + 294.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1611.0, + 833.0, + 1611.0, + 833.0, + 1648.0, + 776.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 1611.0, + 1406.0, + 1611.0, + 1406.0, + 1648.0, + 1024.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1644.0, + 1405.0, + 1644.0, + 1405.0, + 1677.0, + 294.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1675.0, + 1401.0, + 1675.0, + 1401.0, + 1705.0, + 295.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1701.0, + 1405.0, + 1701.0, + 1405.0, + 1739.0, + 293.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1733.0, + 780.0, + 1733.0, + 780.0, + 1770.0, + 293.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 1733.0, + 1328.0, + 1733.0, + 1328.0, + 1770.0, + 802.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 612.0, + 1406.0, + 612.0, + 1406.0, + 650.0, + 294.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 646.0, + 1404.0, + 646.0, + 1404.0, + 679.0, + 295.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 673.0, + 1406.0, + 673.0, + 1406.0, + 712.0, + 291.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 705.0, + 1406.0, + 705.0, + 1406.0, + 742.0, + 294.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 731.0, + 442.0, + 731.0, + 442.0, + 772.0, + 291.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 366.0, + 1404.0, + 366.0, + 1404.0, + 406.0, + 295.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 399.0, + 626.0, + 399.0, + 626.0, + 452.0, + 285.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 399.0, + 1117.0, + 399.0, + 1117.0, + 452.0, + 737.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1407.0, + 399.0, + 1413.0, + 399.0, + 1413.0, + 452.0, + 1407.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 440.0, + 1401.0, + 440.0, + 1401.0, + 474.0, + 461.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 469.0, + 986.0, + 469.0, + 986.0, + 503.0, + 293.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 1032.0, + 226.0, + 1032.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 910, + 1404, + 910, + 1404, + 1280, + 298, + 1280 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1724, + 1405, + 1724, + 1405, + 2034, + 297, + 2034 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 296, + 1372, + 1405, + 1372, + 1405, + 1710, + 296, + 1710 + ], + "score": 0.98 + }, + { + "category_id": 4, + "poly": [ + 296, + 665, + 1407, + 665, + 1407, + 727, + 296, + 727 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 300, + 1295, + 1400, + 1295, + 1400, + 1358, + 300, + 1358 + ], + "score": 0.922 + }, + { + "category_id": 4, + "poly": [ + 862, + 543, + 1311, + 543, + 1311, + 628, + 862, + 628 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.852 + }, + { + "category_id": 3, + "poly": [ + 867, + 261, + 1283, + 261, + 1283, + 533, + 867, + 533 + ], + "score": 0.843 + }, + { + "category_id": 3, + "poly": [ + 385, + 261, + 801, + 261, + 801, + 534, + 385, + 534 + ], + "score": 0.788 + }, + { + "category_id": 1, + "poly": [ + 382, + 543, + 829, + 543, + 829, + 627, + 382, + 627 + ], + "score": 0.391 + }, + { + "category_id": 13, + "poly": [ + 387, + 1785, + 519, + 1785, + 519, + 1825, + 387, + 1825 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mu = { \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1264, + 1154, + 1392, + 1154, + 1392, + 1194, + 1264, + 1194 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\bar { \\boldsymbol { \\mu } } = \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 297, + 1093, + 380, + 1093, + 380, + 1127, + 297, + 1127 + ], + "score": 0.92, + "latex": "\\mu _ { s } ^ { a } ( \\bar { \\sigma _ { 0 } } )" + }, + { + "category_id": 13, + "poly": [ + 1119, + 1525, + 1261, + 1525, + 1261, + 1557, + 1119, + 1557 + ], + "score": 0.92, + "latex": "\\rho _ { F } = 1 0 ^ { - 7 }" + }, + { + "category_id": 13, + "poly": [ + 911, + 598, + 1052, + 598, + 1052, + 628, + 911, + 628 + ], + "score": 0.92, + "latex": "\\mu _ { s } ^ { a } ( \\sigma _ { 0 } = 1 . 5 )" + }, + { + "category_id": 13, + "poly": [ + 880, + 1525, + 1011, + 1525, + 1011, + 1558, + 880, + 1558 + ], + "score": 0.91, + "latex": "[ - 1 0 ^ { 4 } , \\bar { 1 } 0 ^ { 4 } ]" + }, + { + "category_id": 13, + "poly": [ + 326, + 940, + 386, + 940, + 386, + 971, + 326, + 971 + ], + "score": 0.9, + "latex": "1 0 ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 487, + 940, + 546, + 940, + 546, + 970, + 487, + 970 + ], + "score": 0.9, + "latex": "1 0 ^ { - 5 }" + }, + { + "category_id": 13, + "poly": [ + 585, + 913, + 690, + 913, + 690, + 943, + 585, + 943 + ], + "score": 0.9, + "latex": "\\log p + \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 297, + 1882, + 365, + 1882, + 365, + 1910, + 297, + 1910 + ], + "score": 0.9, + "latex": "\\ell = 1" + }, + { + "category_id": 13, + "poly": [ + 1242, + 1561, + 1353, + 1561, + 1353, + 1589, + 1242, + 1589 + ], + "score": 0.9, + "latex": "\\mu = \\mu _ { G P }" + }, + { + "category_id": 13, + "poly": [ + 1236, + 1882, + 1305, + 1882, + 1305, + 1911, + 1236, + 1911 + ], + "score": 0.89, + "latex": "\\ell > 4" + }, + { + "category_id": 13, + "poly": [ + 532, + 1159, + 635, + 1159, + 635, + 1189, + 532, + 1189 + ], + "score": 0.89, + "latex": "\\sigma _ { 0 } = 1 . 5" + }, + { + "category_id": 13, + "poly": [ + 685, + 970, + 939, + 970, + 939, + 1007, + 685, + 1007 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\sigma _ { i } = \\sigma _ { 0 } ( 1 - \\frac { i } { M a x i t e r } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1279, + 1037, + 1393, + 1037, + 1393, + 1065, + 1279, + 1065 + ], + "score": 0.88, + "latex": "\\mu = \\mu _ { G P }" + }, + { + "category_id": 13, + "poly": [ + 802, + 1527, + 841, + 1527, + 841, + 1557, + 802, + 1557 + ], + "score": 0.88, + "latex": "\\lambda _ { F }" + }, + { + "category_id": 13, + "poly": [ + 864, + 1190, + 896, + 1190, + 896, + 1219, + 864, + 1219 + ], + "score": 0.88, + "latex": "\\mathbb { P } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 909, + 1557, + 1053, + 1557, + 1053, + 1589, + 909, + 1589 + ], + "score": 0.88, + "latex": "[ 1 0 ^ { - 5 } , 1 \\dot { 0 } ^ { - 4 } ]" + }, + { + "category_id": 13, + "poly": [ + 297, + 1560, + 407, + 1560, + 407, + 1588, + 297, + 1588 + ], + "score": 0.88, + "latex": "\\mu = \\mu _ { G P }" + }, + { + "category_id": 13, + "poly": [ + 605, + 1851, + 678, + 1851, + 678, + 1880, + 605, + 1880 + ], + "score": 0.87, + "latex": "3 2 - \\ell" + }, + { + "category_id": 13, + "poly": [ + 881, + 1097, + 913, + 1097, + 913, + 1125, + 881, + 1125 + ], + "score": 0.86, + "latex": "\\sigma _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 493, + 976, + 525, + 976, + 525, + 1003, + 493, + 1003 + ], + "score": 0.85, + "latex": "\\sigma _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1318, + 1785, + 1392, + 1785, + 1392, + 1825, + 1318, + 1825 + ], + "score": 0.85, + "latex": "{ \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } ." + }, + { + "category_id": 13, + "poly": [ + 850, + 1007, + 938, + 1007, + 938, + 1031, + 850, + 1031 + ], + "score": 0.85, + "latex": "\\lambda = 1 0" + }, + { + "category_id": 13, + "poly": [ + 437, + 945, + 455, + 945, + 455, + 973, + 437, + 973 + ], + "score": 0.81, + "latex": "\\rho" + }, + { + "category_id": 13, + "poly": [ + 1041, + 672, + 1061, + 672, + 1061, + 697, + 1041, + 697 + ], + "score": 0.78, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 735, + 947, + 755, + 947, + 755, + 969, + 735, + 969 + ], + "score": 0.76, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 992, + 1822, + 1009, + 1822, + 1009, + 1848, + 992, + 1848 + ], + "score": 0.73, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 980, + 1852, + 995, + 1852, + 995, + 1878, + 980, + 1878 + ], + "score": 0.73, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 1289, + 548, + 1308, + 548, + 1308, + 571, + 1289, + 571 + ], + "score": 0.69, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 755, + 1882, + 801, + 1882, + 801, + 1911, + 755, + 1911 + ], + "score": 0.69, + "latex": "1 5 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 1039, + 973, + 1108, + 973, + 1108, + 1002, + 1039, + 1002 + ], + "score": 0.64, + "latex": "{ \\displaystyle = 3 0 \\mathsf K }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1590, + 370, + 1590, + 370, + 1616, + 297, + 1616 + ], + "score": 0.62, + "latex": "G = \\mathbb { F }" + }, + { + "category_id": 13, + "poly": [ + 1272, + 1496, + 1393, + 1496, + 1393, + 1528, + 1272, + 1528 + ], + "score": 0.59, + "latex": "[ - 0 . 5 , 0 . 5 ]" + }, + { + "category_id": 13, + "poly": [ + 663, + 975, + 676, + 975, + 676, + 1001, + 663, + 1001 + ], + "score": 0.55, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 720, + 547, + 771, + 547, + 771, + 572, + 720, + 572 + ], + "score": 0.48, + "latex": "\\mu _ { G P }" + }, + { + "category_id": 13, + "poly": [ + 807, + 1618, + 930, + 1618, + 930, + 1648, + 807, + 1648 + ], + "score": 0.39, + "latex": "( \\mathrm { F i g } \\quad \\mathsf { b } , \\mathsf { c } )" + }, + { + "category_id": 13, + "poly": [ + 1102, + 1466, + 1260, + 1466, + 1260, + 1495, + 1102, + 1495 + ], + "score": 0.39, + "latex": "\\mathrm { R e s N e t + G R U }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1619, + 358, + 1619, + 358, + 1647, + 296, + 1647 + ], + "score": 0.25, + "latex": "{ \\mathfrak { 4 } } \\ { \\mathfrak { a - c } } { \\mathrm { , } }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 664.0, + 1040.0, + 664.0, + 1040.0, + 700.0, + 295.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 664.0, + 1405.0, + 664.0, + 1405.0, + 700.0, + 1062.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 692.0, + 607.0, + 692.0, + 607.0, + 730.0, + 293.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 541.0, + 1288.0, + 541.0, + 1288.0, + 575.0, + 862.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 541.0, + 1314.0, + 541.0, + 1314.0, + 575.0, + 1309.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 570.0, + 1312.0, + 570.0, + 1312.0, + 600.0, + 862.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 596.0, + 910.0, + 596.0, + 910.0, + 630.0, + 860.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 596.0, + 1165.0, + 596.0, + 1165.0, + 630.0, + 1053.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 257.0, + 926.0, + 257.0, + 926.0, + 281.0, + 885.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 282.0, + 926.0, + 282.0, + 926.0, + 306.0, + 885.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 275.0, + 1220.0, + 275.0, + 1220.0, + 298.0, + 1059.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 293.0, + 1251.0, + 293.0, + 1251.0, + 317.0, + 1059.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 308.0, + 926.0, + 308.0, + 926.0, + 331.0, + 885.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 315.0, + 1255.0, + 315.0, + 1255.0, + 336.0, + 1061.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 333.0, + 926.0, + 333.0, + 926.0, + 356.0, + 885.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 334.0, + 1257.0, + 334.0, + 1257.0, + 358.0, + 1059.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 389.0, + 1025.0, + 389.0, + 1025.0, + 405.0, + 1006.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 409.0, + 926.0, + 409.0, + 926.0, + 433.0, + 885.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 411.0, + 1216.0, + 411.0, + 1216.0, + 424.0, + 1192.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 434.0, + 926.0, + 434.0, + 926.0, + 458.0, + 885.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 459.0, + 925.0, + 459.0, + 925.0, + 483.0, + 885.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 497.0, + 1001.0, + 497.0, + 1001.0, + 517.0, + 959.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 495.0, + 1286.0, + 495.0, + 1286.0, + 516.0, + 1011.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 514.0, + 1141.0, + 514.0, + 1141.0, + 535.0, + 1041.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 356.0, + 929.0, + 356.0, + 929.0, + 385.0, + 861.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.25, + 377.5, + 926.25, + 377.5, + 926.25, + 408.5, + 865.25, + 408.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 408.5, + 1064.0, + 408.5, + 1064.0, + 425.5, + 1031.0, + 425.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 438.0, + 1264.0, + 438.0, + 1264.0, + 478.5, + 1066.0, + 478.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 421.0, + 1255.0, + 421.0, + 1255.0, + 443.0, + 1126.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 480.5, + 930.0, + 480.5, + 930.0, + 516.5, + 888.0, + 516.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 257.0, + 445.0, + 257.0, + 445.0, + 281.0, + 403.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 282.0, + 448.0, + 282.0, + 448.0, + 306.0, + 403.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 277.0, + 773.0, + 277.0, + 773.0, + 302.0, + 589.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 307.0, + 445.0, + 307.0, + 445.0, + 331.0, + 403.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 297.0, + 763.0, + 297.0, + 763.0, + 325.0, + 588.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 332.0, + 448.0, + 332.0, + 448.0, + 357.0, + 403.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 348.0, + 457.0, + 348.0, + 457.0, + 418.0, + 373.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 409.0, + 445.0, + 409.0, + 445.0, + 433.0, + 403.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 434.0, + 445.0, + 434.0, + 445.0, + 458.0, + 403.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 459.0, + 444.0, + 459.0, + 444.0, + 483.0, + 403.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 497.0, + 519.0, + 497.0, + 519.0, + 517.0, + 477.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 496.0, + 806.0, + 496.0, + 806.0, + 517.0, + 530.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 513.0, + 660.0, + 513.0, + 660.0, + 535.0, + 560.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.25, + 480.0, + 450.25, + 480.0, + 450.25, + 516.0, + 406.25, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 910.0, + 584.0, + 910.0, + 584.0, + 944.0, + 294.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 910.0, + 1404.0, + 910.0, + 1404.0, + 944.0, + 691.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 938.0, + 325.0, + 938.0, + 325.0, + 975.0, + 292.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 938.0, + 436.0, + 938.0, + 436.0, + 975.0, + 387.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 938.0, + 486.0, + 938.0, + 486.0, + 975.0, + 456.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 938.0, + 734.0, + 938.0, + 734.0, + 975.0, + 547.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 938.0, + 1405.0, + 938.0, + 1405.0, + 975.0, + 756.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 965.0, + 492.0, + 965.0, + 492.0, + 1019.0, + 288.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 965.0, + 662.0, + 965.0, + 662.0, + 1019.0, + 526.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 965.0, + 684.0, + 965.0, + 684.0, + 1019.0, + 677.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 965.0, + 1038.0, + 965.0, + 1038.0, + 1019.0, + 940.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 965.0, + 1411.0, + 965.0, + 1411.0, + 1019.0, + 1109.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1002.0, + 849.0, + 1002.0, + 849.0, + 1036.0, + 294.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 1002.0, + 1405.0, + 1002.0, + 1405.0, + 1036.0, + 939.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1026.0, + 1278.0, + 1026.0, + 1278.0, + 1072.0, + 291.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1026.0, + 1409.0, + 1026.0, + 1409.0, + 1072.0, + 1394.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1059.0, + 1405.0, + 1059.0, + 1405.0, + 1100.0, + 293.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1093.0, + 296.0, + 1093.0, + 296.0, + 1130.0, + 293.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1093.0, + 880.0, + 1093.0, + 880.0, + 1130.0, + 381.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 1093.0, + 1406.0, + 1093.0, + 1406.0, + 1130.0, + 914.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1124.0, + 1404.0, + 1124.0, + 1404.0, + 1159.0, + 293.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1153.0, + 531.0, + 1153.0, + 531.0, + 1195.0, + 288.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 1153.0, + 1263.0, + 1153.0, + 1263.0, + 1195.0, + 636.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 1153.0, + 1404.0, + 1153.0, + 1404.0, + 1195.0, + 1393.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1187.0, + 863.0, + 1187.0, + 863.0, + 1221.0, + 294.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1187.0, + 1404.0, + 1187.0, + 1404.0, + 1221.0, + 897.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1219.0, + 1404.0, + 1219.0, + 1404.0, + 1253.0, + 294.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1248.0, + 1026.0, + 1248.0, + 1026.0, + 1285.0, + 293.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 1178.0, + 1363.0, + 1178.0, + 1363.0, + 1194.0, + 1350.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1723.0, + 1407.0, + 1723.0, + 1407.0, + 1760.0, + 294.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1753.0, + 1405.0, + 1753.0, + 1405.0, + 1789.0, + 294.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1776.0, + 386.0, + 1776.0, + 386.0, + 1829.0, + 293.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1776.0, + 1317.0, + 1776.0, + 1317.0, + 1829.0, + 520.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 1776.0, + 1411.0, + 1776.0, + 1411.0, + 1829.0, + 1393.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1819.0, + 991.0, + 1819.0, + 991.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 1819.0, + 1406.0, + 1819.0, + 1406.0, + 1855.0, + 1010.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1848.0, + 604.0, + 1848.0, + 604.0, + 1885.0, + 291.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 1848.0, + 979.0, + 1848.0, + 979.0, + 1885.0, + 679.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 1848.0, + 1407.0, + 1848.0, + 1407.0, + 1885.0, + 996.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1879.0, + 296.0, + 1879.0, + 296.0, + 1916.0, + 292.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1879.0, + 754.0, + 1879.0, + 754.0, + 1916.0, + 366.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 1879.0, + 1235.0, + 1879.0, + 1235.0, + 1916.0, + 802.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1879.0, + 1406.0, + 1879.0, + 1406.0, + 1916.0, + 1306.0, + 1916.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": [ + 296.0, + 1943.0, + 1403.0, + 1943.0, + 1403.0, + 1975.0, + 296.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1966.0, + 1406.0, + 1966.0, + 1406.0, + 2011.0, + 291.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 1403.0, + 2001.0, + 1403.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1372.0, + 1403.0, + 1372.0, + 1403.0, + 1407.0, + 294.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1403.0, + 1403.0, + 1403.0, + 1403.0, + 1438.0, + 294.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1435.0, + 1403.0, + 1435.0, + 1403.0, + 1466.0, + 296.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1464.0, + 1101.0, + 1464.0, + 1101.0, + 1497.0, + 294.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 1464.0, + 1402.0, + 1464.0, + 1402.0, + 1497.0, + 1261.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1492.0, + 1271.0, + 1492.0, + 1271.0, + 1530.0, + 293.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1492.0, + 1403.0, + 1492.0, + 1403.0, + 1530.0, + 1394.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1524.0, + 801.0, + 1524.0, + 801.0, + 1562.0, + 293.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 1524.0, + 879.0, + 1524.0, + 879.0, + 1562.0, + 842.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 1524.0, + 1118.0, + 1524.0, + 1118.0, + 1562.0, + 1012.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1524.0, + 1407.0, + 1524.0, + 1407.0, + 1562.0, + 1262.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1551.0, + 296.0, + 1551.0, + 296.0, + 1593.0, + 289.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1551.0, + 908.0, + 1551.0, + 908.0, + 1593.0, + 408.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 1551.0, + 1241.0, + 1551.0, + 1241.0, + 1593.0, + 1054.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1551.0, + 1408.0, + 1551.0, + 1408.0, + 1593.0, + 1354.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 1585.0, + 1405.0, + 1585.0, + 1405.0, + 1622.0, + 371.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1614.0, + 295.0, + 1614.0, + 295.0, + 1654.0, + 290.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1614.0, + 806.0, + 1614.0, + 806.0, + 1654.0, + 359.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1614.0, + 1406.0, + 1614.0, + 1406.0, + 1654.0, + 931.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1646.0, + 1407.0, + 1646.0, + 1407.0, + 1684.0, + 293.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1678.0, + 1231.0, + 1678.0, + 1231.0, + 1711.0, + 293.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1293.0, + 1406.0, + 1293.0, + 1406.0, + 1334.0, + 295.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1324.0, + 1404.0, + 1324.0, + 1404.0, + 1362.0, + 295.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 539.0, + 719.0, + 539.0, + 719.0, + 573.0, + 378.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 539.0, + 833.0, + 539.0, + 833.0, + 573.0, + 772.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 565.0, + 832.0, + 565.0, + 832.0, + 601.0, + 378.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 594.0, + 592.0, + 594.0, + 592.0, + 631.0, + 380.0, + 631.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 984, + 1405, + 984, + 1405, + 1297, + 297, + 1297 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 297, + 1849, + 1405, + 1849, + 1405, + 2035, + 297, + 2035 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1311, + 1404, + 1311, + 1404, + 1405, + 299, + 1405 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 582, + 223, + 1092, + 223, + 1092, + 564, + 582, + 564 + ], + "score": 0.967 + }, + { + "category_id": 4, + "poly": [ + 296, + 596, + 1406, + 596, + 1406, + 874, + 296, + 874 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 589, + 1704, + 1111, + 1704, + 1111, + 1840, + 589, + 1840 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 409, + 1420, + 1289, + 1420, + 1289, + 1494, + 409, + 1494 + ], + "score": 0.922 + }, + { + "category_id": 8, + "poly": [ + 667, + 1513, + 1034, + 1513, + 1034, + 1562, + 667, + 1562 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 298, + 928, + 985, + 928, + 985, + 961, + 298, + 961 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.896 + }, + { + "category_id": 1, + "poly": [ + 298, + 1638, + 1400, + 1638, + 1400, + 1702, + 298, + 1702 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1519, + 1400, + 1519, + 1400, + 1550, + 1351, + 1550 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1429, + 1400, + 1429, + 1400, + 1460, + 1352, + 1460 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.865 + }, + { + "category_id": 1, + "poly": [ + 296, + 1574, + 1399, + 1574, + 1399, + 1627, + 296, + 1627 + ], + "score": 0.857 + }, + { + "category_id": 14, + "poly": [ + 590, + 1697, + 1111, + 1697, + 1111, + 1842, + 590, + 1842 + ], + "score": 0.93, + "latex": "f ( x ) = \\underbrace { \\sum _ { y = 1 } ^ { K } p ( y | x ) \\left. S _ { y } , \\Phi _ { \\omega } ( x ) \\right. } _ { f _ { + } : \\mathrm { \\normalfont ~ { \\mathrm { \\fontfamily { ~ \\ddots ~ } \\selectfont ~ { \\ c r i t i c } } } } } - \\underbrace { \\left. v , \\Phi _ { \\omega } ( x ) \\right. } _ { f _ { - } : \\mathrm { \\normalfont ~ { \\cdot \\mathrm { \\sc ~ { \\ c r i t i c } } } } }" + }, + { + "category_id": 13, + "poly": [ + 500, + 1138, + 771, + 1138, + 771, + 1179, + 500, + 1179 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\int _ { \\mathcal { X } } \\left\\| \\nabla _ { x } \\bar { f } ( x ) \\right\\| ^ { 2 } \\mu ^ { 2 } ( x ) d x } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 408, + 1849, + 779, + 1849, + 779, + 1884, + 408, + 1884 + ], + "score": 0.91, + "latex": "p ( y | x ) = \\mathrm { S o f t m a x } ( \\langle \\mathrm { S } , \\Phi _ { \\omega } ( \\mathrm { x } ) \\rangle ) _ { \\mathrm { y } }" + }, + { + "category_id": 13, + "poly": [ + 481, + 2003, + 563, + 2003, + 563, + 2032, + 481, + 2032 + ], + "score": 0.9, + "latex": "K + 1" + }, + { + "category_id": 13, + "poly": [ + 819, + 1312, + 995, + 1312, + 995, + 1344, + 819, + 1344 + ], + "score": 0.9, + "latex": "\\Phi _ { \\omega } : \\mathcal { X } \\mathbb { R } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 1237, + 603, + 1352, + 603, + 1352, + 630, + 1237, + 630 + ], + "score": 0.89, + "latex": "\\mu = \\mu _ { G P }" + }, + { + "category_id": 13, + "poly": [ + 713, + 1341, + 857, + 1341, + 857, + 1372, + 713, + 1372 + ], + "score": 0.89, + "latex": "( S \\in \\mathbb { R } ^ { K \\times m } )" + }, + { + "category_id": 13, + "poly": [ + 997, + 1911, + 1067, + 1911, + 1067, + 1941, + 997, + 1941 + ], + "score": 0.89, + "latex": "\\mathrm { K } { + } 1 ^ { \\mathrm { t h } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1912, + 330, + 1912, + 330, + 1945, + 298, + 1945 + ], + "score": 0.88, + "latex": "S _ { y }" + }, + { + "category_id": 14, + "poly": [ + 409, + 1417, + 1289, + 1417, + 1289, + 1498, + 409, + 1498 + ], + "score": 0.87, + "latex": "{ \\mathrm { C r i t i c } } + { \\mathrm { C l a s s i f i e r } } ; \\quad \\operatorname* { m a x } _ { S , \\Phi _ { \\omega } , f } \\mathcal { L } _ { D } = \\mathcal { L } _ { \\mathrm { a l m } } ^ { \\mathrm { G A N } } ( f , g _ { \\theta } ) - \\lambda _ { C E } \\sum _ { ( x , y ) \\in \\mathrm { l a b } } C E ( p ( y | x ) , y )" + }, + { + "category_id": 13, + "poly": [ + 831, + 1573, + 1396, + 1573, + 1396, + 1630, + 831, + 1630 + ], + "score": 0.87, + "latex": "\\begin{array} { r } { \\hat { \\mathcal { E } } ( f , g _ { \\theta } ) = \\frac { 1 } { N } \\left( \\sum _ { x \\in \\mathrm { u n l } } f ( x ) - \\sum _ { z \\sim p _ { z } } f ( g _ { \\theta } ( z ) ) \\right) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 942, + 1641, + 1012, + 1641, + 1012, + 1670, + 942, + 1670 + ], + "score": 0.87, + "latex": "K + 1" + }, + { + "category_id": 14, + "poly": [ + 664, + 1510, + 1034, + 1510, + 1034, + 1565, + 664, + 1565 + ], + "score": 0.82, + "latex": "\\mathrm { G e n e r a t o r : \\ m a x } { \\mathcal { L } } _ { G } = { \\hat { \\mathcal { E } } } ( f , g _ { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 1006, + 1883, + 1035, + 1883, + 1035, + 1909, + 1006, + 1909 + ], + "score": 0.81, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 504, + 1344, + 533, + 1344, + 533, + 1370, + 504, + 1370 + ], + "score": 0.81, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 695, + 1586, + 723, + 1586, + 723, + 1612, + 695, + 1612 + ], + "score": 0.81, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 1379, + 2003, + 1402, + 2003, + 1402, + 2030, + 1379, + 2030 + ], + "score": 0.78, + "latex": "S" + }, + { + "category_id": 13, + "poly": [ + 809, + 1377, + 832, + 1377, + 832, + 1401, + 809, + 1401 + ], + "score": 0.77, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 297, + 629, + 365, + 629, + 365, + 657, + 297, + 657 + ], + "score": 0.7, + "latex": "G =" + }, + { + "category_id": 13, + "poly": [ + 1175, + 1916, + 1193, + 1916, + 1193, + 1939, + 1175, + 1939 + ], + "score": 0.7, + "latex": "v" + }, + { + "category_id": 13, + "poly": [ + 549, + 721, + 565, + 721, + 565, + 748, + 549, + 748 + ], + "score": 0.59, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 481, + 1432, + 504, + 1432, + 504, + 1457, + 481, + 1457 + ], + "score": 0.26, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 241.0, + 640.0, + 241.0, + 640.0, + 267.0, + 605.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 260.0, + 1057.0, + 260.0, + 1057.0, + 269.0, + 1040.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 283.0, + 645.0, + 283.0, + 645.0, + 312.0, + 603.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 316.0, + 804.0, + 316.0, + 804.0, + 328.0, + 787.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 329.0, + 642.0, + 329.0, + 642.0, + 354.0, + 605.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 348.0, + 615.0, + 348.0, + 615.0, + 403.0, + 578.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 371.0, + 642.0, + 371.0, + 642.0, + 399.0, + 602.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 415.0, + 642.0, + 415.0, + 642.0, + 442.0, + 605.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 419.0, + 874.0, + 419.0, + 874.0, + 441.0, + 687.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 437.0, + 878.0, + 437.0, + 878.0, + 464.0, + 685.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 459.0, + 642.0, + 459.0, + 642.0, + 486.0, + 605.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 460.0, + 911.0, + 460.0, + 911.0, + 487.0, + 685.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 484.0, + 971.0, + 484.0, + 971.0, + 509.0, + 686.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 504.0, + 643.0, + 504.0, + 643.0, + 529.0, + 605.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 519.0, + 648.0, + 519.0, + 648.0, + 538.0, + 632.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 518.0, + 739.0, + 518.0, + 739.0, + 540.0, + 688.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 518.0, + 817.0, + 518.0, + 817.0, + 540.0, + 753.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 517.0, + 1096.0, + 517.0, + 1096.0, + 541.0, + 823.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 539.0, + 913.0, + 539.0, + 913.0, + 563.0, + 791.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 254.5, + 658.0, + 254.5, + 658.0, + 265.5, + 642.0, + 265.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 270.5, + 1048.0, + 270.5, + 1048.0, + 302.0, + 863.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.25, + 295.0, + 776.25, + 295.0, + 776.25, + 311.5, + 740.25, + 311.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 595.0, + 1236.0, + 595.0, + 1236.0, + 634.0, + 293.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 595.0, + 1406.0, + 595.0, + 1406.0, + 634.0, + 1353.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 625.0, + 296.0, + 625.0, + 296.0, + 664.0, + 293.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 625.0, + 1407.0, + 625.0, + 1407.0, + 664.0, + 366.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 656.0, + 1404.0, + 656.0, + 1404.0, + 694.0, + 293.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 684.0, + 1407.0, + 684.0, + 1407.0, + 728.0, + 291.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 718.0, + 548.0, + 718.0, + 548.0, + 757.0, + 293.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 718.0, + 1404.0, + 718.0, + 1404.0, + 757.0, + 566.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 749.0, + 1406.0, + 749.0, + 1406.0, + 786.0, + 295.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 778.0, + 1406.0, + 778.0, + 1406.0, + 816.0, + 293.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 810.0, + 1406.0, + 810.0, + 1406.0, + 847.0, + 294.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 841.0, + 566.0, + 841.0, + 566.0, + 878.0, + 295.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 927.0, + 988.0, + 927.0, + 988.0, + 963.0, + 295.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 984.0, + 1406.0, + 984.0, + 1406.0, + 1019.0, + 294.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1014.0, + 1403.0, + 1014.0, + 1403.0, + 1050.0, + 292.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1048.0, + 1403.0, + 1048.0, + 1403.0, + 1080.0, + 296.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1077.0, + 1405.0, + 1077.0, + 1405.0, + 1110.0, + 295.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1106.0, + 1405.0, + 1106.0, + 1405.0, + 1144.0, + 292.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1139.0, + 499.0, + 1139.0, + 499.0, + 1178.0, + 291.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 1139.0, + 1407.0, + 1139.0, + 1407.0, + 1178.0, + 772.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1170.0, + 1405.0, + 1170.0, + 1405.0, + 1208.0, + 294.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1201.0, + 1405.0, + 1201.0, + 1405.0, + 1239.0, + 295.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1235.0, + 1406.0, + 1235.0, + 1406.0, + 1267.0, + 296.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1266.0, + 1041.0, + 1266.0, + 1041.0, + 1298.0, + 296.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1849.0, + 407.0, + 1849.0, + 407.0, + 1885.0, + 295.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1885.0, + 780.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1878.0, + 1005.0, + 1878.0, + 1005.0, + 1915.0, + 292.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 1878.0, + 1406.0, + 1878.0, + 1406.0, + 1915.0, + 1036.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1909.0, + 297.0, + 1909.0, + 297.0, + 1945.0, + 294.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1909.0, + 996.0, + 1909.0, + 996.0, + 1945.0, + 331.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 1909.0, + 1174.0, + 1909.0, + 1174.0, + 1945.0, + 1068.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1909.0, + 1407.0, + 1909.0, + 1407.0, + 1945.0, + 1194.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1976.0, + 292.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1407.0, + 1971.0, + 1407.0, + 2006.0, + 294.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 480.0, + 2002.0, + 480.0, + 2034.0, + 295.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 2002.0, + 1378.0, + 2002.0, + 1378.0, + 2034.0, + 564.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1306.0, + 818.0, + 1306.0, + 818.0, + 1351.0, + 290.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 1306.0, + 1405.0, + 1306.0, + 1405.0, + 1351.0, + 996.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1335.0, + 503.0, + 1335.0, + 503.0, + 1380.0, + 292.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1335.0, + 712.0, + 1335.0, + 712.0, + 1380.0, + 534.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 1335.0, + 1409.0, + 1335.0, + 1409.0, + 1380.0, + 858.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1373.0, + 808.0, + 1373.0, + 808.0, + 1407.0, + 295.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1373.0, + 1145.0, + 1373.0, + 1145.0, + 1407.0, + 833.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1638.0, + 941.0, + 1638.0, + 941.0, + 1674.0, + 294.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1638.0, + 1404.0, + 1638.0, + 1404.0, + 1674.0, + 1013.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1665.0, + 424.0, + 1665.0, + 424.0, + 1710.0, + 291.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1566.0, + 694.0, + 1566.0, + 694.0, + 1634.0, + 286.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1566.0, + 830.0, + 1566.0, + 830.0, + 1634.0, + 724.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1566.0, + 1404.0, + 1566.0, + 1404.0, + 1634.0, + 1397.0, + 1634.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1297, + 1406, + 1297, + 1406, + 1575, + 296, + 1575 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1403, + 228, + 1403, + 394, + 297, + 394 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 1160, + 1406, + 1160, + 1406, + 1284, + 297, + 1284 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 433, + 1629, + 1263, + 1629, + 1263, + 1964, + 433, + 1964 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 449, + 1040, + 1251, + 1040, + 1251, + 1148, + 449, + 1148 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 295, + 728, + 1400, + 728, + 1400, + 791, + 295, + 791 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 391, + 499, + 1301, + 499, + 1301, + 593, + 391, + 593 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 446, + 655, + 1255, + 655, + 1255, + 713, + 446, + 713 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 300, + 607, + 1135, + 607, + 1135, + 641, + 300, + 641 + ], + "score": 0.935 + }, + { + "category_id": 4, + "poly": [ + 431, + 1995, + 1265, + 1995, + 1265, + 2030, + 431, + 2030 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 299, + 991, + 1027, + 991, + 1027, + 1026, + 299, + 1026 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 295, + 804, + 1398, + 804, + 1398, + 840, + 295, + 840 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 291, + 402, + 1357, + 402, + 1357, + 439, + 291, + 439 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 300, + 450, + 1155, + 450, + 1155, + 484, + 300, + 484 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.871 + }, + { + "category_id": 8, + "poly": [ + 502, + 859, + 1191, + 859, + 1191, + 916, + 502, + 916 + ], + "score": 0.783 + }, + { + "category_id": 1, + "poly": [ + 301, + 928, + 1182, + 928, + 1182, + 981, + 301, + 981 + ], + "score": 0.644 + }, + { + "category_id": 8, + "poly": [ + 301, + 928, + 1182, + 928, + 1182, + 981, + 301, + 981 + ], + "score": 0.169 + }, + { + "category_id": 14, + "poly": [ + 448, + 1037, + 1250, + 1037, + 1250, + 1153, + 448, + 1153 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\mathcal { L } _ { \\mathrm { a l m } } ^ { \\mathrm { G A N } } ( f , g _ { \\theta } ) = \\hat { \\mathcal { E } } ( f , g _ { \\theta } ) + \\lambda _ { F } ( 1 - \\hat { \\Omega } _ { F } ( \\pmb { f } , g _ { \\theta } ) ) + \\lambda _ { S } ( 1 - \\hat { \\Omega } _ { S } ( f _ { - } , g _ { \\theta } ) ) } \\\\ & { \\quad \\quad \\quad \\quad - \\frac { \\rho _ { F } } { 2 } ( \\hat { \\Omega } _ { F } ( \\pmb { f } , g _ { \\theta } ) - 1 ) ^ { 2 } - \\frac { \\rho _ { S } } { 2 } ( \\hat { \\Omega } _ { S } ( f _ { - } , g _ { \\theta } ) - 1 ) ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 510, + 352, + 638, + 352, + 638, + 394, + 510, + 394 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mu = { \\frac { \\mathbb { P } _ { r } + \\mathbb { Q } _ { \\theta } } { 2 } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 392, + 496, + 1304, + 496, + 1304, + 594, + 392, + 594 + ], + "score": 0.93, + "latex": "f \\in \\left\\{ f = f _ { + } - f _ { - } , \\hat { \\Omega } _ { F } ( f , g _ { \\theta } ) = \\frac { 1 } { 2 N } \\left( \\sum _ { x \\in \\mathrm { u n l } } f ^ { 2 } ( x ) + \\sum _ { z \\sim p _ { z } } f ^ { 2 } ( g _ { \\theta } ( z ) ) \\right) = 1 \\right\\} ." + }, + { + "category_id": 13, + "poly": [ + 1083, + 403, + 1349, + 403, + 1349, + 439, + 1083, + 439 + ], + "score": 0.92, + "latex": "f ( x ) = f _ { + } ( x ) - f _ { - } ( x )" + }, + { + "category_id": 13, + "poly": [ + 967, + 262, + 1129, + 262, + 1129, + 294, + 967, + 294 + ], + "score": 0.92, + "latex": "f = f _ { + } - f _ { - }" + }, + { + "category_id": 13, + "poly": [ + 1317, + 1191, + 1393, + 1191, + 1393, + 1225, + 1317, + 1225 + ], + "score": 0.92, + "latex": "\\Phi _ { \\omega } ( x )" + }, + { + "category_id": 14, + "poly": [ + 447, + 654, + 1249, + 654, + 1249, + 716, + 447, + 716 + ], + "score": 0.91, + "latex": "\\mathcal { L } _ { \\mathrm { a l m } } ^ { \\mathrm { G A N } } ( f , g _ { \\theta } ) = \\hat { \\mathcal { E } } ( f , g _ { \\theta } ) + \\lambda _ { F } ( 1 - \\hat { \\Omega } _ { F } ( f , g _ { \\theta } ) ) - \\frac { \\rho _ { F } } { 2 } ( \\hat { \\Omega } _ { F } ( f , g _ { \\theta } ) - 1 ) ^ { 2 } ," + }, + { + "category_id": 13, + "poly": [ + 521, + 1192, + 560, + 1192, + 560, + 1224, + 521, + 1224 + ], + "score": 0.88, + "latex": "f _ { - }" + }, + { + "category_id": 13, + "poly": [ + 1213, + 322, + 1252, + 322, + 1252, + 355, + 1213, + 355 + ], + "score": 0.88, + "latex": "f _ { - }" + }, + { + "category_id": 13, + "poly": [ + 575, + 1784, + 614, + 1784, + 614, + 1808, + 575, + 1808 + ], + "score": 0.87, + "latex": "\\Phi _ { \\omega }" + }, + { + "category_id": 13, + "poly": [ + 1361, + 1391, + 1400, + 1391, + 1400, + 1423, + 1361, + 1423 + ], + "score": 0.87, + "latex": "\\Phi _ { \\omega }" + }, + { + "category_id": 13, + "poly": [ + 668, + 1163, + 690, + 1163, + 690, + 1194, + 668, + 1194 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1361, + 807, + 1400, + 807, + 1400, + 840, + 1361, + 840 + ], + "score": 0.85, + "latex": "f _ { - }" + }, + { + "category_id": 13, + "poly": [ + 1180, + 808, + 1202, + 808, + 1202, + 839, + 1180, + 839 + ], + "score": 0.82, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 438, + 1801, + 456, + 1801, + 456, + 1815, + 438, + 1815 + ], + "score": 0.82, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 962, + 405, + 1015, + 405, + 1015, + 434, + 962, + 434 + ], + "score": 0.82, + "latex": "\\mathrm { K } { + } 1" + }, + { + "category_id": 14, + "poly": [ + 401, + 856, + 1191, + 856, + 1191, + 986, + 401, + 986 + ], + "score": 0.76, + "latex": "\\begin{array} { r } { f \\in \\left\\{ f = f _ { + } - f _ { - } , \\hat { \\Omega } _ { F } ( \\pmb { f } , g _ { \\theta } ) = 1 \\mathrm { a n d } \\hat { \\Omega } _ { S } ( \\pmb { f } _ { - } , g _ { \\theta } ) = 1 \\right\\} , } \\\\ { \\mathrm { } _ { \\mathrm { } s } ( \\pmb { f } _ { - } , g _ { \\theta } ) = \\frac { 1 } { 2 N } \\left( \\sum _ { x \\in \\mathrm { u n l } } \\left. \\nabla _ { x } \\pmb { f } _ { - } ( x ) \\right. ^ { 2 } + \\sum _ { z \\sim p _ { z } } \\left. \\nabla _ { x } \\pmb { f } _ { - } ( g _ { \\theta } ( z ) ) \\right. ^ { 2 } \\right) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 737, + 236, + 755, + 236, + 755, + 258, + 737, + 258 + ], + "score": 0.71, + "latex": "v" + }, + { + "category_id": 13, + "poly": [ + 548, + 1997, + 612, + 1997, + 612, + 2026, + 548, + 2026 + ], + "score": 0.7, + "latex": "\\mathrm { \\ddot { \\Delta K } } + 1 \\mathrm { \\ ' }" + }, + { + "category_id": 13, + "poly": [ + 718, + 1641, + 788, + 1641, + 788, + 1662, + 718, + 1662 + ], + "score": 0.53, + "latex": "p ( y | x ) =" + }, + { + "category_id": 13, + "poly": [ + 1076, + 1781, + 1258, + 1781, + 1258, + 1807, + 1076, + 1807 + ], + "score": 0.53, + "latex": "f ( x ) = f _ { + } ( x ) -" + }, + { + "category_id": 14, + "poly": [ + 503, + 858, + 1186, + 858, + 1186, + 919, + 503, + 919 + ], + "score": 0.51, + "latex": "\\begin{array} { r } { f \\in \\left\\{ f = f _ { + } - f _ { - } , \\hat { \\Omega } _ { F } ( \\pmb { f } , g _ { \\theta } ) = 1 \\mathrm { a n d } \\hat { \\Omega } _ { S } ( \\pmb { f } _ { - } , g _ { \\theta } ) = 1 \\right\\} , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 699, + 1912, + 789, + 1912, + 789, + 1939, + 699, + 1939 + ], + "score": 0.42, + "latex": "\\langle v , \\Phi _ { \\omega } ( x ) \\rangle" + }, + { + "category_id": 13, + "poly": [ + 814, + 1862, + 987, + 1862, + 987, + 1891, + 814, + 1891 + ], + "score": 0.41, + "latex": "f _ { - } ( x ) = \\langle v , \\Phi _ { \\omega } ( x ) \\rangle" + }, + { + "category_id": 13, + "poly": [ + 374, + 926, + 1186, + 926, + 1186, + 982, + 374, + 982 + ], + "score": 0.4, + "latex": "\\begin{array} { r } { \\hat { \\Omega } _ { S } ( f _ { - } , g _ { \\theta } ) = \\frac { 1 } { 2 N } \\left( \\sum _ { x \\in \\mathrm { u n l } } \\Vert \\nabla _ { x } f _ { - } ( x ) \\Vert ^ { 2 } + \\sum _ { z \\sim p _ { z } } \\Vert \\nabla _ { x } f _ { - } ( g _ { \\theta } ( z ) ) \\Vert ^ { 2 } \\right) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 403, + 811, + 419, + 811, + 419, + 833, + 403, + 833 + ], + "score": 0.31, + "latex": "^ +" + }, + { + "category_id": 14, + "poly": [ + 373, + 926, + 1189, + 926, + 1189, + 983, + 373, + 983 + ], + "score": 0.27, + "latex": "\\begin{array} { r } { \\hat { \\Omega } _ { S } ( f _ { - } , g _ { \\theta } ) = \\frac { 1 } { 2 N } \\left( \\sum _ { x \\in \\mathrm { u n l } } \\Vert \\nabla _ { x } f _ { - } ( x ) \\Vert ^ { 2 } + \\sum _ { z \\sim p _ { z } } \\Vert \\nabla _ { x } f _ { - } ( g _ { \\theta } ( z ) ) \\Vert ^ { 2 } \\right) . } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1635.0, + 717.0, + 1635.0, + 717.0, + 1667.0, + 711.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 1635.0, + 794.0, + 1635.0, + 794.0, + 1667.0, + 789.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 1658.0, + 825.0, + 1658.0, + 825.0, + 1688.0, + 677.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 1701.0, + 716.0, + 1701.0, + 716.0, + 1730.0, + 685.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1686.0, + 995.0, + 1686.0, + 995.0, + 1729.0, + 804.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1730.0, + 755.0, + 1730.0, + 755.0, + 1753.0, + 737.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 1714.0, + 1050.0, + 1714.0, + 1050.0, + 1766.0, + 770.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 1761.0, + 755.0, + 1761.0, + 755.0, + 1785.0, + 736.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 1792.0, + 437.0, + 1792.0, + 437.0, + 1821.0, + 434.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1792.0, + 465.0, + 1792.0, + 465.0, + 1821.0, + 457.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1779.0, + 1075.0, + 1779.0, + 1075.0, + 1810.0, + 1049.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1779.0, + 1262.0, + 1779.0, + 1262.0, + 1810.0, + 1259.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1812.0, + 634.0, + 1812.0, + 634.0, + 1852.0, + 555.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1812.0, + 993.0, + 1812.0, + 993.0, + 1852.0, + 798.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 1818.0, + 1223.0, + 1818.0, + 1223.0, + 1846.0, + 1096.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 1862.0, + 813.0, + 1862.0, + 813.0, + 1893.0, + 805.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 1910.0, + 793.0, + 1910.0, + 793.0, + 1942.0, + 790.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1775.0, + 617.0, + 1775.0, + 617.0, + 1812.5, + 571.0, + 1812.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1986.0, + 547.0, + 1986.0, + 547.0, + 2040.0, + 426.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1986.0, + 1271.0, + 1986.0, + 1271.0, + 2040.0, + 613.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1300.0, + 1406.0, + 1300.0, + 1406.0, + 1332.0, + 296.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1331.0, + 1404.0, + 1331.0, + 1404.0, + 1364.0, + 296.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1362.0, + 1402.0, + 1362.0, + 1402.0, + 1391.0, + 296.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1386.0, + 1360.0, + 1386.0, + 1360.0, + 1429.0, + 291.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1386.0, + 1406.0, + 1386.0, + 1406.0, + 1429.0, + 1401.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1416.0, + 1406.0, + 1416.0, + 1406.0, + 1457.0, + 291.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1449.0, + 1404.0, + 1449.0, + 1404.0, + 1485.0, + 294.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1483.0, + 1402.0, + 1483.0, + 1402.0, + 1512.0, + 296.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1511.0, + 1406.0, + 1511.0, + 1406.0, + 1548.0, + 295.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1540.0, + 583.0, + 1540.0, + 583.0, + 1577.0, + 297.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 736.0, + 229.0, + 736.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 229.0, + 1407.0, + 229.0, + 1407.0, + 266.0, + 756.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 259.0, + 966.0, + 259.0, + 966.0, + 298.0, + 292.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 259.0, + 1407.0, + 259.0, + 1407.0, + 298.0, + 1130.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 292.0, + 1405.0, + 292.0, + 1405.0, + 325.0, + 293.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 320.0, + 1212.0, + 320.0, + 1212.0, + 356.0, + 294.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 320.0, + 1405.0, + 320.0, + 1405.0, + 356.0, + 1253.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 347.0, + 509.0, + 347.0, + 509.0, + 397.0, + 295.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 347.0, + 642.0, + 347.0, + 642.0, + 397.0, + 639.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1160.0, + 667.0, + 1160.0, + 667.0, + 1193.0, + 295.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1160.0, + 1404.0, + 1160.0, + 1404.0, + 1193.0, + 691.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1189.0, + 520.0, + 1189.0, + 520.0, + 1224.0, + 292.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1189.0, + 1316.0, + 1189.0, + 1316.0, + 1224.0, + 561.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1189.0, + 1403.0, + 1189.0, + 1403.0, + 1224.0, + 1394.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1221.0, + 1403.0, + 1221.0, + 1403.0, + 1256.0, + 294.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1246.0, + 379.0, + 1246.0, + 379.0, + 1289.0, + 291.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 724.0, + 1405.0, + 724.0, + 1405.0, + 766.0, + 293.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 757.0, + 693.0, + 757.0, + 693.0, + 793.0, + 294.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 603.0, + 1136.0, + 603.0, + 1136.0, + 646.0, + 294.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 985.0, + 1029.0, + 985.0, + 1029.0, + 1033.0, + 293.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 799.0, + 402.0, + 799.0, + 402.0, + 846.0, + 293.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 799.0, + 1179.0, + 799.0, + 1179.0, + 846.0, + 420.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 799.0, + 1360.0, + 799.0, + 1360.0, + 846.0, + 1203.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 401.0, + 961.0, + 401.0, + 961.0, + 442.0, + 296.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 401.0, + 1082.0, + 401.0, + 1082.0, + 442.0, + 1016.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 401.0, + 1361.0, + 401.0, + 1361.0, + 442.0, + 1350.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 445.0, + 1154.0, + 445.0, + 1154.0, + 490.0, + 295.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 917.0, + 372.0, + 917.0, + 372.0, + 985.0, + 286.0, + 985.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 299, + 468, + 1401, + 468, + 1401, + 956, + 299, + 956 + ], + "score": 0.983, + "html": "
Number of labeled examples Model100020004000 Misclassification rate8000
CatGAN (Springenberg, 2015) FM (Salimans et al., 2016) ALI (Dumoulin et al., 2017)21.83 ± 2.0119.61 ± 2.0919.58 18.63 ± 2.3217.72 ± 1.82
Tangents Reg (Kumar et al., 2017)19.98 ± 0.3 20.06 ± 0.519.09 ± 0.1517.99 ± 0.54 16.78 ± 0.617.05 ± 0.50
II-model (Laine & Aila, 2016) *16.55 ± 0.29
VAT (Miyato et al., 2017)14.87
Bad Gan (Dai et al., 2017) *14.41 ± 0.30
VAT+EntMin+Large (Miyato et al., 2017) *13.15
Sajadi (Sajjadi et al., 2016) *11.29
WGAN-GP (Gulrajani et al., 2017) t44.85 ± 0.2837.62 ± 0.5632.66 ± 0.4830.38± 0.22
Fisher,layer norm (Mroueh & Sercu,2017)19.74± 0.2117.87 ± 0.3816.13 ± 0.5314.81 ± 0.16
Fisher, no norm (Mroueh & Sercu, 2017)21.49 ± 0.1819.20 ± 0.4617.30 ± 0.3015.57 ± 0.33
Sobolev + Fisher, no norm (This Work)20.14 ± 0.2117.38 ± 0.1015.77 ± 0.1914.20± 0.08
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1079, + 1404, + 1079, + 1404, + 1416, + 298, + 1416 + ], + "score": 0.982 + }, + { + "category_id": 6, + "poly": [ + 296, + 221, + 1403, + 221, + 1403, + 467, + 296, + 467 + ], + "score": 0.952 + }, + { + "category_id": 0, + "poly": [ + 301, + 1010, + 543, + 1010, + 543, + 1045, + 301, + 1045 + ], + "score": 0.908 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 300, + 1465, + 487, + 1465, + 487, + 1497, + 300, + 1497 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.826 + }, + { + "category_id": 1, + "poly": [ + 292, + 1515, + 1407, + 1515, + 1407, + 2035, + 292, + 2035 + ], + "score": 0.607 + }, + { + "category_id": 13, + "poly": [ + 941, + 254, + 1014, + 254, + 1014, + 283, + 941, + 283 + ], + "score": 0.91, + "latex": "K + 1" + }, + { + "category_id": 13, + "poly": [ + 1068, + 377, + 1087, + 377, + 1087, + 408, + 1068, + 408 + ], + "score": 0.81, + "latex": "\\dagger" + }, + { + "category_id": 13, + "poly": [ + 991, + 407, + 1062, + 407, + 1062, + 436, + 991, + 436 + ], + "score": 0.74, + "latex": "\\mathrm { \\ddot { \\Delta K } } + 1 \\mathrm { \\ ' }" + }, + { + "category_id": 13, + "poly": [ + 350, + 739, + 366, + 739, + 366, + 760, + 350, + 760 + ], + "score": 0.39, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 390, + 921, + 411, + 921, + 411, + 943, + 390, + 943 + ], + "score": 0.27, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 221.0, + 1405.0, + 221.0, + 1405.0, + 256.0, + 295.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 254.0, + 940.0, + 254.0, + 940.0, + 284.0, + 296.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 254.0, + 1404.0, + 254.0, + 1404.0, + 284.0, + 1015.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 285.0, + 1404.0, + 285.0, + 1404.0, + 319.0, + 295.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 314.0, + 1404.0, + 314.0, + 1404.0, + 348.0, + 295.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 344.0, + 1405.0, + 344.0, + 1405.0, + 380.0, + 294.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 375.0, + 1067.0, + 375.0, + 1067.0, + 409.0, + 295.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 375.0, + 1405.0, + 375.0, + 1405.0, + 409.0, + 1088.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 406.0, + 990.0, + 406.0, + 990.0, + 440.0, + 294.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 406.0, + 1404.0, + 406.0, + 1404.0, + 440.0, + 1063.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 437.0, + 857.0, + 437.0, + 857.0, + 470.0, + 299.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1004.0, + 549.0, + 1004.0, + 549.0, + 1055.0, + 291.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1462.0, + 491.0, + 1462.0, + 491.0, + 1502.0, + 296.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1079.0, + 1405.0, + 1079.0, + 1405.0, + 1115.0, + 295.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1111.0, + 1405.0, + 1111.0, + 1405.0, + 1144.0, + 294.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1142.0, + 1404.0, + 1142.0, + 1404.0, + 1177.0, + 294.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1168.0, + 1406.0, + 1168.0, + 1406.0, + 1208.0, + 292.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1200.0, + 1405.0, + 1200.0, + 1405.0, + 1239.0, + 293.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1231.0, + 1406.0, + 1231.0, + 1406.0, + 1269.0, + 293.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1264.0, + 1406.0, + 1264.0, + 1406.0, + 1298.0, + 294.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1292.0, + 1405.0, + 1292.0, + 1405.0, + 1328.0, + 293.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1323.0, + 1404.0, + 1323.0, + 1404.0, + 1358.0, + 294.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1353.0, + 1405.0, + 1353.0, + 1405.0, + 1390.0, + 295.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1387.0, + 1217.0, + 1387.0, + 1217.0, + 1420.0, + 294.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1517.0, + 1404.0, + 1517.0, + 1404.0, + 1553.0, + 295.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1546.0, + 1406.0, + 1546.0, + 1406.0, + 1586.0, + 323.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1580.0, + 582.0, + 1580.0, + 582.0, + 1612.0, + 324.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1630.0, + 1406.0, + 1630.0, + 1406.0, + 1670.0, + 293.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1665.0, + 615.0, + 1665.0, + 615.0, + 1697.0, + 323.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1716.0, + 1251.0, + 1716.0, + 1251.0, + 1756.0, + 293.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1767.0, + 1405.0, + 1767.0, + 1405.0, + 1810.0, + 291.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1802.0, + 395.0, + 1802.0, + 395.0, + 1838.0, + 322.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1855.0, + 1403.0, + 1855.0, + 1403.0, + 1894.0, + 293.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1887.0, + 1105.0, + 1887.0, + 1105.0, + 1924.0, + 323.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1939.0, + 1405.0, + 1939.0, + 1405.0, + 1982.0, + 293.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2009.0, + 323.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2004.0, + 737.0, + 2004.0, + 737.0, + 2038.0, + 322.0, + 2038.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.835 + }, + { + "category_id": 1, + "poly": [ + 292, + 154, + 1408, + 154, + 1408, + 2038, + 292, + 2038 + ], + "score": 0.696 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 228.0, + 1407.0, + 228.0, + 1407.0, + 267.0, + 293.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 255.0, + 1405.0, + 255.0, + 1405.0, + 302.0, + 320.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 290.0, + 689.0, + 290.0, + 689.0, + 327.0, + 318.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 344.0, + 1407.0, + 344.0, + 1407.0, + 383.0, + 295.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 375.0, + 1405.0, + 375.0, + 1405.0, + 414.0, + 324.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 404.0, + 614.0, + 404.0, + 614.0, + 443.0, + 320.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 455.0, + 1407.0, + 455.0, + 1407.0, + 497.0, + 293.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 490.0, + 538.0, + 490.0, + 538.0, + 524.0, + 322.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 542.0, + 1405.0, + 542.0, + 1405.0, + 581.0, + 295.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 573.0, + 1103.0, + 573.0, + 1103.0, + 612.0, + 318.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 623.0, + 1403.0, + 623.0, + 1403.0, + 666.0, + 293.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 660.0, + 1135.0, + 660.0, + 1135.0, + 693.0, + 322.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 707.0, + 1409.0, + 707.0, + 1409.0, + 753.0, + 293.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 743.0, + 1114.0, + 743.0, + 1114.0, + 782.0, + 318.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 794.0, + 1403.0, + 794.0, + 1403.0, + 827.0, + 293.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 825.0, + 569.0, + 825.0, + 569.0, + 865.0, + 318.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 875.0, + 1407.0, + 875.0, + 1407.0, + 920.0, + 291.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 910.0, + 1323.0, + 910.0, + 1323.0, + 949.0, + 320.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 960.0, + 1405.0, + 960.0, + 1405.0, + 1001.0, + 291.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 997.0, + 1238.0, + 997.0, + 1238.0, + 1030.0, + 322.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1048.0, + 1403.0, + 1048.0, + 1403.0, + 1082.0, + 295.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 1080.0, + 547.0, + 1080.0, + 547.0, + 1112.0, + 315.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1133.0, + 1403.0, + 1133.0, + 1403.0, + 1166.0, + 297.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1164.0, + 770.0, + 1164.0, + 770.0, + 1197.0, + 322.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1212.0, + 1405.0, + 1212.0, + 1405.0, + 1253.0, + 291.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1245.0, + 1019.0, + 1245.0, + 1019.0, + 1284.0, + 316.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1290.0, + 1407.0, + 1290.0, + 1407.0, + 1344.0, + 289.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1330.0, + 1074.0, + 1330.0, + 1074.0, + 1367.0, + 316.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1379.0, + 1405.0, + 1379.0, + 1405.0, + 1425.0, + 293.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1416.0, + 909.0, + 1416.0, + 909.0, + 1449.0, + 320.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1466.0, + 1407.0, + 1466.0, + 1407.0, + 1505.0, + 295.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1497.0, + 947.0, + 1497.0, + 947.0, + 1536.0, + 318.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1549.0, + 1407.0, + 1549.0, + 1407.0, + 1590.0, + 291.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1584.0, + 470.0, + 1584.0, + 470.0, + 1617.0, + 320.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1629.0, + 1410.0, + 1629.0, + 1410.0, + 1679.0, + 291.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1668.0, + 896.0, + 1668.0, + 896.0, + 1702.0, + 322.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1716.0, + 1407.0, + 1716.0, + 1407.0, + 1757.0, + 291.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1749.0, + 985.0, + 1749.0, + 985.0, + 1786.0, + 316.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1803.0, + 713.0, + 1803.0, + 713.0, + 1842.0, + 295.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1801.0, + 1403.0, + 1801.0, + 1403.0, + 1844.0, + 747.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1836.0, + 614.0, + 1836.0, + 614.0, + 1869.0, + 320.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1881.0, + 1407.0, + 1881.0, + 1407.0, + 1929.0, + 289.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1916.0, + 1342.0, + 1916.0, + 1342.0, + 1956.0, + 320.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2009.0, + 295.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1999.0, + 402.0, + 1999.0, + 402.0, + 2040.0, + 318.0, + 2040.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 864, + 2087, + 864, + 2112, + 836, + 2112 + ], + "score": 0.823 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1055, + 228, + 1055, + 264, + 296, + 264 + ], + "score": 0.743 + }, + { + "category_id": 1, + "poly": [ + 297, + 1023, + 1399, + 1023, + 1399, + 1089, + 297, + 1089 + ], + "score": 0.542 + }, + { + "category_id": 1, + "poly": [ + 297, + 858, + 1402, + 858, + 1402, + 924, + 297, + 924 + ], + "score": 0.529 + }, + { + "category_id": 1, + "poly": [ + 302, + 775, + 1401, + 775, + 1401, + 841, + 302, + 841 + ], + "score": 0.525 + }, + { + "category_id": 1, + "poly": [ + 296, + 1105, + 1398, + 1105, + 1398, + 1172, + 296, + 1172 + ], + "score": 0.523 + }, + { + "category_id": 1, + "poly": [ + 295, + 940, + 1401, + 940, + 1401, + 1007, + 295, + 1007 + ], + "score": 0.522 + }, + { + "category_id": 1, + "poly": [ + 294, + 1189, + 1399, + 1189, + 1399, + 1254, + 294, + 1254 + ], + "score": 0.503 + }, + { + "category_id": 1, + "poly": [ + 299, + 722, + 1159, + 722, + 1159, + 759, + 299, + 759 + ], + "score": 0.501 + }, + { + "category_id": 1, + "poly": [ + 300, + 1353, + 1400, + 1353, + 1400, + 1448, + 300, + 1448 + ], + "score": 0.501 + }, + { + "category_id": 1, + "poly": [ + 294, + 1270, + 1397, + 1270, + 1397, + 1337, + 294, + 1337 + ], + "score": 0.49 + }, + { + "category_id": 1, + "poly": [ + 297, + 1466, + 1400, + 1466, + 1400, + 1563, + 297, + 1563 + ], + "score": 0.461 + }, + { + "category_id": 1, + "poly": [ + 300, + 641, + 1400, + 641, + 1400, + 707, + 300, + 707 + ], + "score": 0.442 + }, + { + "category_id": 1, + "poly": [ + 297, + 1579, + 1401, + 1579, + 1401, + 1675, + 297, + 1675 + ], + "score": 0.432 + }, + { + "category_id": 1, + "poly": [ + 303, + 363, + 1399, + 363, + 1399, + 459, + 303, + 459 + ], + "score": 0.42 + }, + { + "category_id": 1, + "poly": [ + 301, + 1971, + 1395, + 1971, + 1395, + 2035, + 301, + 2035 + ], + "score": 0.416 + }, + { + "category_id": 1, + "poly": [ + 297, + 281, + 1400, + 281, + 1400, + 347, + 297, + 347 + ], + "score": 0.415 + }, + { + "category_id": 1, + "poly": [ + 299, + 558, + 1402, + 558, + 1402, + 625, + 299, + 625 + ], + "score": 0.408 + }, + { + "category_id": 1, + "poly": [ + 298, + 1692, + 1399, + 1692, + 1399, + 1758, + 298, + 1758 + ], + "score": 0.403 + }, + { + "category_id": 1, + "poly": [ + 300, + 1775, + 1396, + 1775, + 1396, + 1871, + 300, + 1871 + ], + "score": 0.389 + }, + { + "category_id": 1, + "poly": [ + 298, + 1888, + 1395, + 1888, + 1395, + 1953, + 298, + 1953 + ], + "score": 0.365 + }, + { + "category_id": 1, + "poly": [ + 298, + 476, + 1401, + 476, + 1401, + 542, + 298, + 542 + ], + "score": 0.364 + }, + { + "category_id": 13, + "poly": [ + 805, + 2008, + 823, + 2008, + 823, + 2035, + 805, + 2035 + ], + "score": 0.88, + "latex": "\\phi" + }, + { + "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, + 869.0, + 2085.0, + 869.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 1058.0, + 228.0, + 1058.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1025.0, + 1401.0, + 1025.0, + 1401.0, + 1061.0, + 296.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1055.0, + 1237.0, + 1055.0, + 1237.0, + 1090.0, + 322.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 859.0, + 1406.0, + 859.0, + 1406.0, + 895.0, + 296.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 890.0, + 627.0, + 890.0, + 627.0, + 923.0, + 321.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 770.0, + 1406.0, + 770.0, + 1406.0, + 816.0, + 296.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 808.0, + 740.0, + 808.0, + 740.0, + 842.0, + 322.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1106.0, + 1402.0, + 1106.0, + 1402.0, + 1142.0, + 296.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1139.0, + 1256.0, + 1139.0, + 1256.0, + 1172.0, + 321.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 941.0, + 1403.0, + 941.0, + 1403.0, + 977.0, + 297.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 974.0, + 979.0, + 974.0, + 979.0, + 1007.0, + 323.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1184.0, + 1405.0, + 1184.0, + 1405.0, + 1229.0, + 293.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1220.0, + 1135.0, + 1220.0, + 1135.0, + 1254.0, + 322.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 723.0, + 1153.0, + 723.0, + 1153.0, + 760.0, + 297.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1352.0, + 1404.0, + 1352.0, + 1404.0, + 1391.0, + 294.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1381.0, + 1404.0, + 1381.0, + 1404.0, + 1424.0, + 320.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1414.0, + 504.0, + 1414.0, + 504.0, + 1448.0, + 322.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1270.0, + 1399.0, + 1270.0, + 1399.0, + 1306.0, + 295.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1302.0, + 1032.0, + 1302.0, + 1032.0, + 1337.0, + 323.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1468.0, + 1402.0, + 1468.0, + 1402.0, + 1502.0, + 295.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1501.0, + 1402.0, + 1501.0, + 1402.0, + 1532.0, + 325.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1529.0, + 805.0, + 1529.0, + 805.0, + 1562.0, + 323.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 643.0, + 1402.0, + 643.0, + 1402.0, + 679.0, + 296.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 673.0, + 1130.0, + 673.0, + 1130.0, + 709.0, + 322.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1579.0, + 1405.0, + 1579.0, + 1405.0, + 1617.0, + 296.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1612.0, + 1406.0, + 1612.0, + 1406.0, + 1647.0, + 322.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1643.0, + 546.0, + 1643.0, + 546.0, + 1675.0, + 321.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 362.0, + 1407.0, + 362.0, + 1407.0, + 401.0, + 295.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 396.0, + 1403.0, + 396.0, + 1403.0, + 431.0, + 323.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 426.0, + 880.0, + 426.0, + 880.0, + 460.0, + 323.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1971.0, + 1399.0, + 1971.0, + 1399.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2004.0, + 804.0, + 2004.0, + 804.0, + 2036.0, + 324.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 2004.0, + 1319.0, + 2004.0, + 1319.0, + 2036.0, + 824.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 278.0, + 1405.0, + 278.0, + 1405.0, + 321.0, + 295.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 313.0, + 1178.0, + 313.0, + 1178.0, + 348.0, + 322.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 555.0, + 1408.0, + 555.0, + 1408.0, + 598.0, + 294.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 592.0, + 1368.0, + 592.0, + 1368.0, + 625.0, + 322.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1693.0, + 1403.0, + 1693.0, + 1403.0, + 1729.0, + 296.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1724.0, + 905.0, + 1724.0, + 905.0, + 1760.0, + 324.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1770.0, + 1402.0, + 1770.0, + 1402.0, + 1816.0, + 292.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1806.0, + 1401.0, + 1806.0, + 1401.0, + 1840.0, + 323.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1835.0, + 1212.0, + 1835.0, + 1212.0, + 1873.0, + 325.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1887.0, + 1400.0, + 1887.0, + 1400.0, + 1926.0, + 293.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1921.0, + 855.0, + 1921.0, + 855.0, + 1953.0, + 324.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 475.0, + 1403.0, + 475.0, + 1403.0, + 514.0, + 293.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 508.0, + 926.0, + 508.0, + 926.0, + 540.0, + 323.0, + 540.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.863 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.834 + }, + { + "category_id": 1, + "poly": [ + 295, + 228, + 1408, + 228, + 1408, + 574, + 295, + 574 + ], + "score": 0.505 + }, + { + "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, + 2122.0, + 832.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 1405.0, + 231.0, + 1405.0, + 267.0, + 296.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 262.0, + 1407.0, + 262.0, + 1407.0, + 301.0, + 321.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 293.0, + 505.0, + 293.0, + 505.0, + 325.0, + 325.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 340.0, + 1405.0, + 340.0, + 1405.0, + 385.0, + 292.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 376.0, + 1021.0, + 376.0, + 1021.0, + 411.0, + 321.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 426.0, + 1406.0, + 426.0, + 1406.0, + 469.0, + 290.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 459.0, + 903.0, + 459.0, + 903.0, + 493.0, + 325.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 509.0, + 1402.0, + 509.0, + 1402.0, + 548.0, + 293.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 542.0, + 1141.0, + 542.0, + 1141.0, + 580.0, + 321.0, + 580.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1819, + 1404, + 1819, + 1404, + 2035, + 296, + 2035 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 447, + 1405, + 447, + 1405, + 572, + 297, + 572 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 296, + 1149, + 1406, + 1149, + 1406, + 1261, + 296, + 1261 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 1680, + 1403, + 1680, + 1403, + 1772, + 297, + 1772 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 302, + 1435, + 1405, + 1435, + 1405, + 1528, + 302, + 1528 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 298, + 1289, + 1396, + 1289, + 1396, + 1353, + 298, + 1353 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 680, + 1614, + 1021, + 1614, + 1021, + 1676, + 680, + 1676 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 519, + 645, + 1179, + 645, + 1179, + 720, + 519, + 720 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 297, + 753, + 1400, + 753, + 1400, + 835, + 297, + 835 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 299, + 292, + 1400, + 292, + 1400, + 357, + 299, + 357 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 296, + 577, + 1403, + 577, + 1403, + 639, + 296, + 639 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 299, + 881, + 780, + 881, + 780, + 914, + 299, + 914 + ], + "score": 0.932 + }, + { + "category_id": 8, + "poly": [ + 653, + 1360, + 1047, + 1360, + 1047, + 1431, + 653, + 1431 + ], + "score": 0.931 + }, + { + "category_id": 8, + "poly": [ + 587, + 840, + 1115, + 840, + 1115, + 879, + 587, + 879 + ], + "score": 0.931 + }, + { + "category_id": 8, + "poly": [ + 572, + 920, + 1124, + 920, + 1124, + 978, + 572, + 978 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 296, + 225, + 1244, + 225, + 1244, + 263, + 296, + 263 + ], + "score": 0.913 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1631, + 1400, + 1631, + 1400, + 1661, + 1352, + 1661 + ], + "score": 0.912 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 105, + 299, + 105 + ], + "score": 0.904 + }, + { + "category_id": 1, + "poly": [ + 298, + 985, + 1236, + 985, + 1236, + 1019, + 298, + 1019 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1377, + 1400, + 1377, + 1400, + 1409, + 1352, + 1409 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1045, + 1400, + 1045, + 1400, + 1075, + 1351, + 1075 + ], + "score": 0.898 + }, + { + "category_id": 1, + "poly": [ + 440, + 1778, + 1257, + 1778, + 1257, + 1815, + 440, + 1815 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1351, + 665, + 1400, + 665, + 1400, + 697, + 1351, + 697 + ], + "score": 0.884 + }, + { + "category_id": 1, + "poly": [ + 363, + 1574, + 1271, + 1574, + 1271, + 1607, + 363, + 1607 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.863 + }, + { + "category_id": 1, + "poly": [ + 445, + 1533, + 1248, + 1533, + 1248, + 1569, + 445, + 1569 + ], + "score": 0.846 + }, + { + "category_id": 0, + "poly": [ + 298, + 390, + 1093, + 390, + 1093, + 425, + 298, + 425 + ], + "score": 0.768 + }, + { + "category_id": 8, + "poly": [ + 436, + 1025, + 1270, + 1025, + 1270, + 1121, + 436, + 1121 + ], + "score": 0.7 + }, + { + "category_id": 1, + "poly": [ + 298, + 390, + 1093, + 390, + 1093, + 425, + 298, + 425 + ], + "score": 0.17 + }, + { + "category_id": 14, + "poly": [ + 679, + 1611, + 1022, + 1611, + 1022, + 1677, + 679, + 1677 + ], + "score": 0.95, + "latex": "\\frac { d \\boldsymbol { q } _ { t } } { d t } ( \\boldsymbol { x } ) = - \\mathrm { d i v } ( \\boldsymbol { q } _ { t } ( \\boldsymbol { x } ) V ( \\boldsymbol { x } , t ) )" + }, + { + "category_id": 14, + "poly": [ + 651, + 1357, + 1048, + 1357, + 1048, + 1432, + 651, + 1432 + ], + "score": 0.94, + "latex": "\\frac { \\mathbb { P } - \\mathbb { Q } } { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } = - \\mathrm { d i v } ( \\mu ( x ) \\nabla _ { x } f ^ { * } ( x ) ) ," + }, + { + "category_id": 13, + "poly": [ + 357, + 1183, + 535, + 1183, + 535, + 1231, + 357, + 1231 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { r _ { n } ( x ) = \\frac { \\mathbb { Q } _ { n } ( x ) } { \\mathbb { P } ( x ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1076, + 1535, + 1236, + 1535, + 1236, + 1570, + 1076, + 1570 + ], + "score": 0.93, + "latex": "q _ { 0 } ( x ) = \\mathbb { Q } ( x )" + }, + { + "category_id": 13, + "poly": [ + 1086, + 1779, + 1247, + 1779, + 1247, + 1814, + 1086, + 1814 + ], + "score": 0.93, + "latex": "q _ { 0 } ( x ) = \\mathbb { Q } ( x )" + }, + { + "category_id": 13, + "poly": [ + 859, + 1464, + 967, + 1464, + 967, + 1496, + 859, + 1496 + ], + "score": 0.93, + "latex": "X _ { t } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 648, + 1226, + 754, + 1226, + 754, + 1261, + 648, + 1261 + ], + "score": 0.93, + "latex": "\\mathbb { S } ( \\mathbb { Q } _ { n } , \\mathbb { P } )" + }, + { + "category_id": 13, + "poly": [ + 1170, + 1151, + 1352, + 1151, + 1352, + 1185, + 1170, + 1185 + ], + "score": 0.93, + "latex": "S _ { \\mathbb { P } } ( \\mathbb { P } , \\mathbb { Q } _ { n } ) 0" + }, + { + "category_id": 14, + "poly": [ + 518, + 643, + 1181, + 643, + 1181, + 720, + 518, + 720 + ], + "score": 0.93, + "latex": "\\Delta f ^ { * } ( x ) + \\left. \\nabla _ { x } \\log \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. + \\frac { \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) } { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\mu ( x ) } = 0 ." + }, + { + "category_id": 13, + "poly": [ + 443, + 1779, + 677, + 1779, + 677, + 1814, + 443, + 1814 + ], + "score": 0.92, + "latex": "d X _ { t } = \\nabla _ { x } f _ { t } ^ { * } ( X _ { t } ) d t" + }, + { + "category_id": 13, + "poly": [ + 546, + 1153, + 624, + 1153, + 624, + 1183, + 546, + 1183 + ], + "score": 0.91, + "latex": "\\mu = \\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 792, + 1153, + 831, + 1153, + 831, + 1183, + 792, + 1183 + ], + "score": 0.9, + "latex": "\\mathbb { Q } _ { n }" + }, + { + "category_id": 13, + "poly": [ + 454, + 1534, + 665, + 1534, + 665, + 1569, + 454, + 1569 + ], + "score": 0.9, + "latex": "d X _ { t } = V ( X _ { t } , t ) d t" + }, + { + "category_id": 13, + "poly": [ + 297, + 1495, + 601, + 1495, + 601, + 1529, + 297, + 1529 + ], + "score": 0.89, + "latex": "V ( x , i ) : \\mathcal { X } \\times [ 0 , \\infty [ \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 374, + 1822, + 406, + 1822, + 406, + 1854, + 374, + 1854 + ], + "score": 0.89, + "latex": "f _ { t } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 594, + 752, + 1177, + 752, + 1177, + 807, + 594, + 807 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { T ( \\mu ) \\vec { g } ( x ) = \\frac { 1 } { 2 } \\Big ( \\langle \\nabla _ { x } \\log ( \\mu ( x ) ) , \\vec { g } ( x ) \\rangle + d i v ( \\vec { g } ( x ) ) \\Big ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 917, + 1782, + 954, + 1782, + 954, + 1812, + 917, + 1812 + ], + "score": 0.89, + "latex": "X _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 906, + 1537, + 944, + 1537, + 944, + 1567, + 906, + 1567 + ], + "score": 0.89, + "latex": "X _ { 0 }" + }, + { + "category_id": 14, + "poly": [ + 572, + 919, + 1123, + 919, + 1123, + 981, + 572, + 981 + ], + "score": 0.88, + "latex": "\\mathbb { S } ( \\mathbb { Q } , \\mu ) = \\operatorname* { s u p } _ { \\vec { g } } | \\mathbb { E } _ { x \\sim \\mathbb { Q } } [ T ( \\mu ) \\vec { g } ( x ) ] | , \\vec { g } : \\mathcal { X } \\mathbb { R } ^ { d } ." + }, + { + "category_id": 14, + "poly": [ + 434, + 1022, + 1252, + 1022, + 1252, + 1099, + 434, + 1099 + ], + "score": 0.87, + "latex": "\\bigg | \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mathbb { Q } } \\left[ \\frac { \\mathbb { Q } ( \\boldsymbol { x } ) - \\mathbb { P } ( \\boldsymbol { x } ) } { \\mu ( \\boldsymbol { x } ) } \\right] \\bigg | \\leq 2 \\qquad \\underbrace { \\mathbb { S } ( \\mathbb { Q } , \\mu ) } _ { \\mathrm { S } ( \\mathbb { Q } , \\mu ) } \\qquad \\underbrace { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } _ { \\mathrm { S } _ { \\boldsymbol { \\mu } } ( \\mathbb { Q } ) }" + }, + { + "category_id": 13, + "poly": [ + 1273, + 580, + 1303, + 580, + 1303, + 611, + 1273, + 611 + ], + "score": 0.87, + "latex": "f ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 458, + 1944, + 485, + 1944, + 485, + 1974, + 458, + 1974 + ], + "score": 0.86, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 1149, + 1580, + 1174, + 1580, + 1174, + 1607, + 1149, + 1607 + ], + "score": 0.85, + "latex": "q _ { t }" + }, + { + "category_id": 13, + "poly": [ + 714, + 804, + 739, + 804, + 739, + 835, + 714, + 835 + ], + "score": 0.83, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 750, + 1826, + 775, + 1826, + 775, + 1852, + 750, + 1852 + ], + "score": 0.83, + "latex": "q _ { t }" + }, + { + "category_id": 13, + "poly": [ + 662, + 805, + 683, + 805, + 683, + 831, + 662, + 831 + ], + "score": 0.83, + "latex": "\\mathbb { P }" + }, + { + "category_id": 14, + "poly": [ + 582, + 840, + 1111, + 840, + 1111, + 878, + 582, + 878 + ], + "score": 0.82, + "latex": "\\mathbb { Q } ( x ) = \\mathbb { P } ( x ) + 2 S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\mu ( x ) T ( \\mu ) \\nabla _ { x } f ^ { * } ( x ) ." + }, + { + "category_id": 13, + "poly": [ + 925, + 1191, + 951, + 1191, + 951, + 1221, + 925, + 1221 + ], + "score": 0.82, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 487, + 1470, + 511, + 1470, + 511, + 1497, + 487, + 1497 + ], + "score": 0.82, + "latex": "q _ { t }" + }, + { + "category_id": 13, + "poly": [ + 830, + 1821, + 851, + 1821, + 851, + 1848, + 830, + 1848 + ], + "score": 0.79, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 859, + 1943, + 881, + 1943, + 881, + 1970, + 859, + 1970 + ], + "score": 0.76, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 428, + 1852, + 448, + 1852, + 448, + 1878, + 428, + 1878 + ], + "score": 0.75, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 1087, + 1099, + 1104, + 1099, + 1104, + 1119, + 1087, + 1119 + ], + "score": 0.51, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1011, + 1096, + 1029, + 1096, + 1029, + 1118, + 1011, + 1118 + ], + "score": 0.44, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 449, + 610, + 507, + 610, + 507, + 637, + 449, + 637 + ], + "score": 0.29, + "latex": "P D E" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 1248.0, + 226.0, + 1248.0, + 266.0, + 294.0, + 266.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, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 391.0, + 1096.0, + 391.0, + 1096.0, + 426.0, + 295.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1820.0, + 373.0, + 1820.0, + 373.0, + 1854.0, + 295.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1820.0, + 749.0, + 1820.0, + 749.0, + 1854.0, + 407.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1820.0, + 829.0, + 1820.0, + 829.0, + 1854.0, + 776.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1854.0, + 852.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1847.0, + 427.0, + 1847.0, + 427.0, + 1888.0, + 293.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1847.0, + 1405.0, + 1847.0, + 1405.0, + 1888.0, + 449.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1879.0, + 1405.0, + 1879.0, + 1405.0, + 1916.0, + 294.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 457.0, + 1941.0, + 457.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 1941.0, + 858.0, + 1941.0, + 858.0, + 1976.0, + 486.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1941.0, + 1404.0, + 1941.0, + 1404.0, + 1976.0, + 882.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2005.0, + 295.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 669.0, + 2002.0, + 669.0, + 2034.0, + 294.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 446.0, + 1407.0, + 446.0, + 1407.0, + 483.0, + 292.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 478.0, + 1406.0, + 478.0, + 1406.0, + 512.0, + 292.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 508.0, + 1405.0, + 508.0, + 1405.0, + 545.0, + 292.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 536.0, + 379.0, + 536.0, + 379.0, + 576.0, + 291.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1149.0, + 545.0, + 1149.0, + 545.0, + 1186.0, + 296.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1149.0, + 791.0, + 1149.0, + 791.0, + 1186.0, + 625.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 1149.0, + 1169.0, + 1149.0, + 1169.0, + 1186.0, + 832.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1149.0, + 1406.0, + 1149.0, + 1406.0, + 1186.0, + 1353.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1181.0, + 356.0, + 1181.0, + 356.0, + 1224.0, + 291.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1226.0, + 647.0, + 1226.0, + 647.0, + 1262.0, + 294.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1226.0, + 764.0, + 1226.0, + 764.0, + 1262.0, + 755.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1176.5, + 1410.0, + 1176.5, + 1410.0, + 1235.0, + 457.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1678.0, + 1408.0, + 1678.0, + 1408.0, + 1715.0, + 296.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1707.0, + 1405.0, + 1707.0, + 1405.0, + 1746.0, + 292.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1740.0, + 460.0, + 1740.0, + 460.0, + 1775.0, + 291.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1433.0, + 1405.0, + 1433.0, + 1405.0, + 1467.0, + 297.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1463.0, + 486.0, + 1463.0, + 486.0, + 1501.0, + 296.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1463.0, + 858.0, + 1463.0, + 858.0, + 1501.0, + 512.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1463.0, + 1405.0, + 1463.0, + 1405.0, + 1501.0, + 968.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1494.0, + 616.0, + 1494.0, + 616.0, + 1528.0, + 602.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1288.0, + 1400.0, + 1288.0, + 1400.0, + 1324.0, + 295.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1321.0, + 1200.0, + 1321.0, + 1200.0, + 1357.0, + 295.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 739.0, + 593.0, + 739.0, + 593.0, + 815.0, + 285.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 739.0, + 1413.0, + 739.0, + 1413.0, + 815.0, + 1178.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 796.0, + 661.0, + 796.0, + 661.0, + 842.0, + 292.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 796.0, + 713.0, + 796.0, + 713.0, + 842.0, + 684.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 796.0, + 753.0, + 796.0, + 753.0, + 842.0, + 740.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 294.0, + 1404.0, + 294.0, + 1404.0, + 330.0, + 295.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 324.0, + 1310.0, + 324.0, + 1310.0, + 361.0, + 295.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 575.0, + 1272.0, + 575.0, + 1272.0, + 614.0, + 294.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 575.0, + 1404.0, + 575.0, + 1404.0, + 614.0, + 1304.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 607.0, + 448.0, + 607.0, + 448.0, + 643.0, + 295.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 607.0, + 520.0, + 607.0, + 520.0, + 643.0, + 508.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 878.0, + 783.0, + 878.0, + 783.0, + 920.0, + 294.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 980.0, + 1241.0, + 980.0, + 1241.0, + 1026.0, + 294.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 1776.0, + 916.0, + 1776.0, + 916.0, + 1820.0, + 678.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1776.0, + 1085.0, + 1776.0, + 1085.0, + 1820.0, + 955.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 1776.0, + 1258.0, + 1776.0, + 1258.0, + 1820.0, + 1248.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1571.0, + 1148.0, + 1571.0, + 1148.0, + 1611.0, + 357.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 1571.0, + 1276.0, + 1571.0, + 1276.0, + 1611.0, + 1175.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1528.0, + 905.0, + 1528.0, + 905.0, + 1577.0, + 666.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 1528.0, + 1075.0, + 1528.0, + 1075.0, + 1577.0, + 945.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1528.0, + 1248.0, + 1528.0, + 1248.0, + 1577.0, + 1237.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 391.0, + 1096.0, + 391.0, + 1096.0, + 426.0, + 295.0, + 426.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 424, + 1148, + 1275, + 1148, + 1275, + 1317, + 424, + 1317 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 692, + 400, + 1005, + 400, + 1005, + 476, + 692, + 476 + ], + "score": 0.962 + }, + { + "category_id": 8, + "poly": [ + 459, + 726, + 1240, + 726, + 1240, + 1040, + 459, + 1040 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 592, + 1468, + 1108, + 1468, + 1108, + 1541, + 592, + 1541 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 295, + 1366, + 1401, + 1366, + 1401, + 1433, + 295, + 1433 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 477, + 1809, + 1219, + 1809, + 1219, + 1893, + 477, + 1893 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 647, + 1632, + 1050, + 1632, + 1050, + 1706, + 647, + 1706 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 658, + 1996, + 1045, + 1996, + 1045, + 2045, + 658, + 2045 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 297, + 307, + 1402, + 307, + 1402, + 374, + 297, + 374 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 288, + 1740, + 1270, + 1740, + 1270, + 1778, + 288, + 1778 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 297, + 1573, + 554, + 1573, + 554, + 1606, + 297, + 1606 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 293, + 1929, + 1403, + 1929, + 1403, + 1966, + 293, + 1966 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 295, + 1074, + 784, + 1074, + 784, + 1111, + 295, + 1111 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 816, + 73, + 816, + 106, + 298, + 106 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 298, + 628, + 1405, + 628, + 1405, + 693, + 298, + 693 + ], + "score": 0.911 + }, + { + "category_id": 9, + "poly": [ + 1351, + 421, + 1401, + 421, + 1401, + 454, + 1351, + 454 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1261, + 1401, + 1261, + 1401, + 1293, + 1351, + 1293 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 298, + 225, + 472, + 225, + 472, + 262, + 298, + 262 + ], + "score": 0.897 + }, + { + "category_id": 1, + "poly": [ + 298, + 508, + 1122, + 508, + 1122, + 561, + 298, + 561 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1351, + 2002, + 1401, + 2002, + 1401, + 2033, + 1351, + 2033 + ], + "score": 0.894 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1833, + 1401, + 1833, + 1401, + 1865, + 1351, + 1865 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 866, + 2087, + 866, + 2114, + 834, + 2114 + ], + "score": 0.871 + }, + { + "category_id": 1, + "poly": [ + 299, + 594, + 1055, + 594, + 1055, + 627, + 299, + 627 + ], + "score": 0.853 + }, + { + "category_id": 13, + "poly": [ + 395, + 510, + 558, + 510, + 558, + 557, + 395, + 557 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { D = \\frac { \\partial ^ { d } } { \\partial x _ { 1 } \\ldots \\partial x _ { d } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 431, + 657, + 583, + 657, + 583, + 693, + 431, + 693 + ], + "score": 0.95, + "latex": "F _ { \\mathbb { Q } } \\in C ^ { d } ( \\mathcal { X } )" + }, + { + "category_id": 14, + "poly": [ + 424, + 1145, + 1272, + 1145, + 1272, + 1321, + 424, + 1321 + ], + "score": 0.94, + "latex": "\\begin{array} { r c l } { \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) } & { = } & { \\displaystyle \\frac { 1 } { d } \\sum _ { i = 1 } ^ { d } \\int _ { \\chi } \\frac { \\partial f } { \\partial x _ { i } } D ^ { - i } ( F _ { \\mathbb { Q } } ( x ) - F _ { \\mathbb { P } } ( x ) ) d x } \\\\ & { = } & { \\displaystyle \\frac { 1 } { d } \\int _ { \\chi } \\left. \\nabla _ { x } f ( x ) , D ^ { - } ( F _ { \\mathbb { Q } } ( x ) - F _ { \\mathbb { P } } ( x ) ) \\right. _ { \\mathbb { R } ^ { d } } d x } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 691, + 397, + 1004, + 397, + 1004, + 473, + 691, + 473 + ], + "score": 0.94, + "latex": "\\mathbb { P } ( x ) = \\frac { \\partial ^ { d } } { \\partial x _ { 1 } \\hdots \\partial x _ { d } } F _ { \\mathbb { P } } ( x ) ," + }, + { + "category_id": 14, + "poly": [ + 647, + 1629, + 1052, + 1629, + 1052, + 1704, + 647, + 1704 + ], + "score": 0.94, + "latex": "\\| g \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } } = \\int _ { X } \\| g \\| _ { \\mathbb { R } ^ { d } } ^ { 2 } \\mu ( x ) d x ." + }, + { + "category_id": 14, + "poly": [ + 479, + 1809, + 1220, + 1809, + 1220, + 1894, + 479, + 1894 + ], + "score": 0.94, + "latex": "\\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) = \\frac { 1 } { d } \\left. \\nabla _ { x } f , \\frac { D ^ { - } ( F _ { \\mathbb { Q } } - F _ { \\mathbb { P } } ) } { \\mu } \\right. _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } } ." + }, + { + "category_id": 14, + "poly": [ + 591, + 1466, + 1108, + 1466, + 1108, + 1541, + 591, + 1541 + ], + "score": 0.94, + "latex": "\\langle g , h \\rangle _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } } = \\int _ { \\mathcal { X } } \\langle g ( x ) , h ( x ) \\rangle _ { \\mathbb { R } ^ { d } } \\mu ( x ) d x" + }, + { + "category_id": 13, + "poly": [ + 341, + 1075, + 613, + 1075, + 613, + 1111, + 341, + 1111 + ], + "score": 0.93, + "latex": "D ^ { - } = ( D ^ { - 1 } , \\ldots , D ^ { - d } )" + }, + { + "category_id": 13, + "poly": [ + 616, + 509, + 943, + 509, + 943, + 559, + 616, + 559 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { D ^ { - i } = \\frac { \\partial ^ { d - 1 } } { \\partial x _ { 1 } \\dots \\partial x _ { i - 1 } \\partial x _ { i + 1 } \\dots \\partial x _ { d } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1105, + 1741, + 1253, + 1741, + 1253, + 1777, + 1105, + 1777 + ], + "score": 0.93, + "latex": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d }" + }, + { + "category_id": 14, + "poly": [ + 658, + 1998, + 1045, + 1998, + 1045, + 2044, + 658, + 2044 + ], + "score": 0.92, + "latex": "\\| f \\| _ { W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu ) } = \\| \\nabla _ { x } f \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } }" + }, + { + "category_id": 13, + "poly": [ + 1247, + 1929, + 1392, + 1929, + 1392, + 1965, + 1247, + 1965 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d }" + }, + { + "category_id": 14, + "poly": [ + 460, + 726, + 1192, + 726, + 1192, + 996, + 460, + 996 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) = \\displaystyle \\int _ { \\mathcal { X } } f ( x ) D \\Big ( F _ { \\mathbb { P } } ( x ) - F _ { \\mathbb { Q } } ( x ) \\Big ) d x } \\\\ & { \\quad \\quad \\quad \\quad \\quad = \\displaystyle \\int _ { \\mathcal { X } } f ( x ) \\frac { \\partial } { \\partial x _ { i } } D ^ { - i } ( F _ { \\mathbb { P } } ( x ) - F _ { \\mathbb { Q } } ( x ) ) d x } \\\\ & { \\quad \\quad \\quad \\quad \\quad \\mathrm { ( f o r ~ a n y ~ } i , \\mathrm { s i n c e ~ } F _ { \\mathbb { P } } \\mathrm { ~ a n d ~ } F _ { \\mathbb { Q } } \\in C ^ { d } ( \\mathcal { X } ) ) } \\\\ & { \\quad \\quad \\quad \\quad = - \\displaystyle \\int _ { \\mathcal { X } } \\frac { \\partial f } { \\partial x _ { i } } D ^ { - i } ( F _ { \\mathbb { P } } ( x ) - F _ { \\mathbb { Q } } ( x ) ) d x } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 466, + 1368, + 613, + 1368, + 613, + 1403, + 466, + 1403 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1399, + 443, + 1399, + 443, + 1434, + 297, + 1434 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d }" + }, + { + "category_id": 13, + "poly": [ + 1080, + 998, + 1220, + 998, + 1220, + 1037, + 1080, + 1037 + ], + "score": 0.91, + "latex": "W _ { 0 } ^ { 1 , 2 } ( \\mathcal { X } , \\mu )" + }, + { + "category_id": 13, + "poly": [ + 1106, + 1368, + 1232, + 1368, + 1232, + 1397, + 1106, + 1397 + ], + "score": 0.91, + "latex": "\\mathcal X ~ ~ \\mathbb R ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 297, + 594, + 350, + 594, + 350, + 624, + 297, + 624 + ], + "score": 0.9, + "latex": "D ^ { - i }" + }, + { + "category_id": 13, + "poly": [ + 755, + 626, + 792, + 626, + 792, + 660, + 755, + 660 + ], + "score": 0.9, + "latex": "F _ { \\mathbb { Q } }" + }, + { + "category_id": 13, + "poly": [ + 669, + 310, + 706, + 310, + 706, + 344, + 669, + 344 + ], + "score": 0.89, + "latex": "F _ { \\mathbb { Q } }" + }, + { + "category_id": 13, + "poly": [ + 661, + 626, + 695, + 626, + 695, + 657, + 661, + 657 + ], + "score": 0.89, + "latex": "F _ { \\mathbb { P } }" + }, + { + "category_id": 13, + "poly": [ + 579, + 311, + 615, + 311, + 615, + 341, + 579, + 341 + ], + "score": 0.89, + "latex": "F _ { \\mathbb { P } }" + }, + { + "category_id": 13, + "poly": [ + 346, + 660, + 380, + 660, + 380, + 690, + 346, + 690 + ], + "score": 0.89, + "latex": "F _ { \\mathbb { P } }" + }, + { + "category_id": 13, + "poly": [ + 1019, + 880, + 1178, + 880, + 1178, + 916, + 1019, + 916 + ], + "score": 0.88, + "latex": "F _ { \\mathbb { Q } } \\in C ^ { d } ( \\mathcal { X } ) )" + }, + { + "category_id": 13, + "poly": [ + 508, + 597, + 574, + 597, + 574, + 625, + 508, + 625 + ], + "score": 0.87, + "latex": "d - 1" + }, + { + "category_id": 13, + "poly": [ + 1287, + 310, + 1312, + 310, + 1312, + 341, + 1287, + 341 + ], + "score": 0.85, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 1318, + 1370, + 1403, + 1370, + 1403, + 1403, + 1318, + 1403 + ], + "score": 0.85, + "latex": "g , h \\in" + }, + { + "category_id": 13, + "poly": [ + 993, + 518, + 1113, + 518, + 1113, + 548, + 993, + 548 + ], + "score": 0.84, + "latex": "i = 1 \\ldots d" + }, + { + "category_id": 13, + "poly": [ + 1211, + 311, + 1232, + 311, + 1232, + 337, + 1211, + 337 + ], + "score": 0.82, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 877, + 627, + 895, + 627, + 895, + 653, + 877, + 653 + ], + "score": 0.79, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 748, + 1004, + 767, + 1004, + 767, + 1035, + 748, + 1035 + ], + "score": 0.75, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 933, + 883, + 968, + 883, + 968, + 913, + 933, + 913 + ], + "score": 0.73, + "latex": "F _ { \\mathbb { P } }" + }, + { + "category_id": 13, + "poly": [ + 1022, + 599, + 1034, + 599, + 1034, + 623, + 1022, + 623 + ], + "score": 0.72, + "latex": "i" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 221.0, + 475.0, + 221.0, + 475.0, + 269.0, + 292.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2121.0, + 826.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1364.0, + 465.0, + 1364.0, + 465.0, + 1405.0, + 293.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1364.0, + 1105.0, + 1364.0, + 1105.0, + 1405.0, + 614.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1364.0, + 1317.0, + 1364.0, + 1317.0, + 1405.0, + 1233.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1396.0, + 296.0, + 1396.0, + 296.0, + 1436.0, + 293.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1396.0, + 863.0, + 1396.0, + 863.0, + 1436.0, + 444.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 303.0, + 578.0, + 303.0, + 578.0, + 347.0, + 294.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 303.0, + 668.0, + 303.0, + 668.0, + 347.0, + 616.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 303.0, + 1210.0, + 303.0, + 1210.0, + 347.0, + 707.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 303.0, + 1286.0, + 303.0, + 1286.0, + 347.0, + 1233.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1313.0, + 303.0, + 1404.0, + 303.0, + 1404.0, + 347.0, + 1313.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 336.0, + 483.0, + 336.0, + 483.0, + 377.0, + 293.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1734.0, + 1104.0, + 1734.0, + 1104.0, + 1782.0, + 293.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1734.0, + 1274.0, + 1734.0, + 1274.0, + 1782.0, + 1254.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1572.0, + 558.0, + 1572.0, + 558.0, + 1608.0, + 296.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1923.0, + 1246.0, + 1923.0, + 1246.0, + 1969.0, + 292.0, + 1969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 1923.0, + 1405.0, + 1923.0, + 1405.0, + 1969.0, + 1393.0, + 1969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1065.0, + 340.0, + 1065.0, + 340.0, + 1118.0, + 290.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1065.0, + 788.0, + 1065.0, + 788.0, + 1118.0, + 614.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 620.0, + 660.0, + 620.0, + 660.0, + 664.0, + 292.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 620.0, + 754.0, + 620.0, + 754.0, + 664.0, + 696.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 620.0, + 876.0, + 620.0, + 876.0, + 664.0, + 793.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 620.0, + 1405.0, + 620.0, + 1405.0, + 664.0, + 896.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 655.0, + 345.0, + 655.0, + 345.0, + 695.0, + 292.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 655.0, + 430.0, + 655.0, + 430.0, + 695.0, + 381.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 655.0, + 1319.0, + 655.0, + 1319.0, + 695.0, + 584.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 504.0, + 394.0, + 504.0, + 394.0, + 561.0, + 295.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 504.0, + 566.0, + 504.0, + 566.0, + 561.0, + 559.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 517.0, + 992.0, + 517.0, + 992.0, + 565.0, + 944.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 517.0, + 1123.0, + 517.0, + 1123.0, + 565.0, + 1114.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.25, + 502.5, + 856.25, + 502.5, + 856.25, + 537.0, + 787.25, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 514.0, + 681.0, + 514.0, + 681.0, + 552.0, + 558.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 534.0, + 573.0, + 534.0, + 573.0, + 548.0, + 551.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 590.0, + 507.0, + 590.0, + 507.0, + 633.0, + 351.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 590.0, + 1021.0, + 590.0, + 1021.0, + 633.0, + 575.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 590.0, + 1047.0, + 590.0, + 1047.0, + 633.0, + 1035.0, + 633.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1601, + 1405, + 1601, + 1405, + 1795, + 296, + 1795 + ], + "score": 0.98 + }, + { + "category_id": 8, + "poly": [ + 344, + 1017, + 1355, + 1017, + 1355, + 1291, + 344, + 1291 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 507, + 1938, + 1160, + 1938, + 1160, + 2041, + 507, + 2041 + ], + "score": 0.962 + }, + { + "category_id": 8, + "poly": [ + 297, + 270, + 1404, + 270, + 1404, + 755, + 297, + 755 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 472, + 804, + 1167, + 804, + 1167, + 907, + 472, + 907 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 557, + 1455, + 1137, + 1455, + 1137, + 1527, + 557, + 1527 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 292, + 1824, + 1402, + 1824, + 1402, + 1891, + 292, + 1891 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 297, + 1417, + 571, + 1417, + 571, + 1448, + 297, + 1448 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 297, + 1296, + 477, + 1296, + 477, + 1328, + 297, + 1328 + ], + "score": 0.925 + }, + { + "category_id": 8, + "poly": [ + 386, + 1334, + 1310, + 1334, + 1310, + 1407, + 386, + 1407 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 299, + 764, + 898, + 764, + 898, + 796, + 299, + 796 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 292, + 227, + 1395, + 227, + 1395, + 264, + 292, + 264 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 297, + 978, + 506, + 978, + 506, + 1010, + 297, + 1010 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 816, + 73, + 816, + 106, + 298, + 106 + ], + "score": 0.916 + }, + { + "category_id": 9, + "poly": [ + 1351, + 2003, + 1401, + 2003, + 1401, + 2034, + 1351, + 2034 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 1374, + 913, + 1404, + 913, + 1404, + 943, + 1374, + 943 + ], + "score": 0.824 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1538, + 1403, + 1538, + 1403, + 1567, + 1374, + 1567 + ], + "score": 0.82 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2113, + 834, + 2113 + ], + "score": 0.706 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2113, + 834, + 2113 + ], + "score": 0.124 + }, + { + "category_id": 14, + "poly": [ + 348, + 1017, + 1355, + 1017, + 1355, + 1295, + 348, + 1295 + ], + "score": 0.95, + "latex": "\\begin{array} { r c l } { \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) } & { = } & { \\displaystyle \\frac { 1 } { d } \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) , D ^ { - } ( F _ { \\mathbb { Q } } ( x ) - F _ { \\mathbb { P } } ( x ) ) \\right. _ { \\mathbb { R } ^ { d } } d x } \\\\ & { = } & { \\displaystyle S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) , \\frac { D ^ { - } ( F _ { \\mathbb { Q } } ( x ) - F _ { \\mathbb { P } } ( x ) ) } { \\mu ( x ) d S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } \\right. _ { \\mathbb { R } ^ { d } } \\mu ( x ) d x } \\\\ & { = } & { \\displaystyle S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\int _ { \\mathcal { X } } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. \\mu ( x ) d x } \\\\ & { = } & { \\displaystyle S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\left. f , f ^ { * } \\right. _ { W _ { 0 } ^ { 1 , 2 } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 473, + 802, + 1171, + 802, + 1171, + 908, + 473, + 908 + ], + "score": 0.94, + "latex": "\\nabla _ { x } f ^ { * } ( x ) = \\frac { D ^ { - } F _ { \\mathbb { Q } } ( x ) - D ^ { - } F _ { \\mathbb { P } } ( x ) } { \\mu ( x ) } \\frac { 1 } { \\Big \\| \\frac { D ^ { - } ( F _ { \\mathbb { Q } } - F _ { \\mathbb { P } } ) } { \\mu } \\Big \\| _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) ^ { \\otimes d } } } ." + }, + { + "category_id": 14, + "poly": [ + 511, + 1937, + 1161, + 1937, + 1161, + 2043, + 511, + 2043 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } { S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } & { { } = \\operatorname* { s u p } _ { f \\in W _ { 0 } ^ { 1 , 2 } } \\Big \\{ \\mathbb { E } _ { x \\sim \\mathbb { P } } \\left[ f ( x ) \\right] - \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ f ( x ) \\right] \\Big \\} } \\\\ { s . t . } & { { } \\quad \\mathbb { E } _ { x \\sim \\mu } \\| \\nabla f ( x ) \\| _ { 2 } ^ { 2 } \\leq 1 , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 558, + 1455, + 1138, + 1455, + 1138, + 1528, + 558, + 1528 + ], + "score": 0.91, + "latex": "\\mathcal { S } _ { \\mathcal { H } } ( \\mathbb { P } , \\mathbb { Q } ) = S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\operatorname* { s u p } _ { f \\in \\mathcal { H } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } } \\leq 1 } \\langle f , f ^ { * } \\rangle _ { W _ { 0 } ^ { 1 , 2 } }" + }, + { + "category_id": 13, + "poly": [ + 416, + 1724, + 674, + 1724, + 674, + 1766, + 416, + 1766 + ], + "score": 0.9, + "latex": "( \\vert \\vert f \\vert \\vert _ { \\mathcal { L } _ { 2 } } \\le C \\left. f \\right. _ { W _ { 0 } ^ { 1 , 2 } } )" + }, + { + "category_id": 14, + "poly": [ + 388, + 1336, + 1307, + 1336, + 1307, + 1409, + 388, + 1409 + ], + "score": 0.89, + "latex": "\\operatorname* { s u p } _ { f \\in \\mathcal { M } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } } \\leq 1 } \\mathbb { E } _ { x \\sim \\mathbb { P } } f ( x ) - \\mathbb { E } _ { x \\sim \\mathbb { Q } } f ( x ) = S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) \\operatorname* { s u p } _ { f \\in \\mathcal { M } , \\| f \\| _ { W _ { 0 } ^ { 1 , 2 } } \\leq 1 } \\langle f , f ^ { * } \\rangle _ { W _ { 0 } ^ { 1 , 2 } } ," + }, + { + "category_id": 13, + "poly": [ + 761, + 766, + 792, + 766, + 792, + 797, + 761, + 797 + ], + "score": 0.89, + "latex": "f ^ { * }" + }, + { + "category_id": 14, + "poly": [ + 310, + 268, + 1411, + 268, + 1411, + 763, + 310, + 763 + ], + "score": 0.87, + "latex": "\\begin{array} { r l } & { \\mathfrak { H } ( \\mathbb { P } , \\mathfrak { G } ) = \\frac { 1 } { d } _ { f , \\vert \\mathcal { C } _ { 2 } , \\vert \\mathcal { C } _ { 2 } , \\alpha , \\beta , 0 ; 0 } \\le \\mathfrak { C } _ { \\ge } f , \\frac { D ^ { - } ( F _ { \\mathfrak { g } } - F _ { \\mathfrak { g } } \\vert \\mathfrak { F } ) } { \\mu } \\Bigr \\rangle _ { \\mathcal { B } ( \\mathfrak { x } , \\mu ) \\le \\mathfrak { c } } } \\\\ & { \\ = \\frac { 1 } { d } _ { g \\le \\mathcal { G } _ { 2 } ( x , \\beta ) \\le \\mathfrak { c } , \\vert \\mathfrak { H } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { g } } \\vert _ { \\mathfrak { x } , \\mu } ) \\le \\mathfrak { c } } \\Big \\langle g , \\frac { D ^ { - } ( F _ { \\mathfrak { g } } - F _ { \\mathfrak { g } } ) } { \\mu } \\Big \\rangle _ { \\mathcal { B } _ { \\ge } ( x , \\mu ) \\ge \\mathfrak { c } } } \\\\ & { \\ = \\frac { 1 } { d } \\bigg \\Vert \\frac { D ^ { - } ( F _ { \\mathfrak { g } } - F _ { \\mathfrak { g } } ) } { \\mu } \\bigg \\Vert _ { \\mathcal { B } _ { \\ge } ( x , \\mu ) \\le \\mathfrak { c } } } \\\\ & { \\ \\left( \\mathtt { B y ~ d e n i n i o n ~ o f ~ } \\Vert \\cdot \\Vert _ { \\mathcal { L } _ { 2 } ( \\mathcal { X } , \\mu ) \\le \\mathfrak { c } } , g ^ { - } = \\frac { D ^ { - } F _ { \\mathfrak { g } } ( \\mathfrak { x } ) - D ^ { - } F _ { \\mathfrak { g } } ( \\mathfrak { x } ) } { \\mu ( \\mathfrak { x } ) } \\frac { 1 } { \\left. \\frac { D ^ { - } ( F _ { \\mathfrak { g } } - F _ { \\mathfrak { g } } ) } { \\mu } \\right. _ { \\mathcal { B } _ { \\ge } ( \\mathcal { X } , \\mu ) \\le \\mathfrak { c } } } \\right) } \\\\ & \\ = \\frac { 1 } { d } \\sqrt { \\int _ { x } \\frac { \\Vert D ^ { - } F _ { \\mathfrak { g } } ( \\mathfrak { x } ) - D ^ { - } F _ { \\mathfrak { g } } ( \\mathfrak { x } ) \\Vert _ { \\mathcal { A } ( \\mathcal { X } , \\mu ) } ^ { 2 } } { \\mu ( \\mathfrak { x } ) } d \\mathfrak { x } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 484, + 982, + 498, + 982, + 498, + 1006, + 484, + 1006 + ], + "score": 0.53, + "latex": "\\cdot" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 918.0, + 1403.0, + 918.0, + 1403.0, + 945.0, + 1378.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 1542.0, + 1403.0, + 1542.0, + 1403.0, + 1569.0, + 1377.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1602.0, + 1405.0, + 1602.0, + 1405.0, + 1639.0, + 296.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1634.0, + 1402.0, + 1634.0, + 1402.0, + 1666.0, + 295.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1661.0, + 1405.0, + 1661.0, + 1405.0, + 1701.0, + 293.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1691.0, + 1405.0, + 1691.0, + 1405.0, + 1731.0, + 293.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1723.0, + 415.0, + 1723.0, + 415.0, + 1764.0, + 294.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1723.0, + 1407.0, + 1723.0, + 1407.0, + 1764.0, + 675.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1761.0, + 924.0, + 1761.0, + 924.0, + 1796.0, + 295.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1825.0, + 1404.0, + 1825.0, + 1404.0, + 1861.0, + 296.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1856.0, + 1127.0, + 1856.0, + 1127.0, + 1891.0, + 294.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1415.0, + 573.0, + 1415.0, + 573.0, + 1451.0, + 294.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1292.0, + 481.0, + 1292.0, + 481.0, + 1331.0, + 294.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 760.0, + 760.0, + 760.0, + 760.0, + 801.0, + 294.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 760.0, + 898.0, + 760.0, + 898.0, + 801.0, + 793.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 227.0, + 1397.0, + 227.0, + 1397.0, + 267.0, + 296.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 975.0, + 483.0, + 975.0, + 483.0, + 1015.0, + 295.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 975.0, + 511.0, + 975.0, + 511.0, + 1015.0, + 499.0, + 1015.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 20, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 296, + 752, + 1482, + 752, + 1482, + 1200, + 296, + 1200 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 418, + 1893, + 1282, + 1893, + 1282, + 2047, + 418, + 2047 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 321, + 1666, + 1380, + 1666, + 1380, + 1814, + 321, + 1814 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 295, + 1346, + 1443, + 1346, + 1443, + 1592, + 295, + 1592 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 433, + 311, + 1266, + 311, + 1266, + 527, + 433, + 527 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 476, + 623, + 1222, + 623, + 1222, + 698, + 476, + 698 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 294, + 227, + 1405, + 227, + 1405, + 296, + 294, + 296 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 296, + 1227, + 1406, + 1227, + 1406, + 1294, + 296, + 1294 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 298, + 541, + 1402, + 541, + 1402, + 608, + 298, + 608 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 297, + 710, + 654, + 710, + 654, + 743, + 297, + 743 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 294, + 1843, + 1258, + 1843, + 1258, + 1880, + 294, + 1880 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 816, + 73, + 816, + 106, + 298, + 106 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 295, + 1620, + 380, + 1620, + 380, + 1652, + 295, + 1652 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 866, + 2087, + 866, + 2114, + 834, + 2114 + ], + "score": 0.67 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 866, + 2087, + 866, + 2114, + 834, + 2114 + ], + "score": 0.386 + }, + { + "category_id": 14, + "poly": [ + 433, + 308, + 1266, + 308, + 1266, + 529, + 433, + 529 + ], + "score": 0.96, + "latex": "\\begin{array} { l } { \\displaystyle { L ( f , \\lambda ) = \\mathbb { E } _ { x \\sim \\mathbb { P } } \\left[ f ( x ) \\right] - \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ f ( x ) \\right] + \\frac { \\lambda } { 2 } \\Big ( 1 - \\mathbb { E } _ { x \\sim \\mu } \\| \\nabla _ { x } f ( x ) \\| _ { 2 } ^ { 2 } \\Big ) } } \\\\ { \\displaystyle { \\quad = \\int _ { \\mathcal { X } } f ( x ) \\left( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) \\right) d x + \\frac { \\lambda } { 2 } \\Big ( 1 - \\int _ { \\mathcal { X } } \\| \\nabla _ { x } f ( x ) \\| _ { 2 } ^ { 2 } \\mu ( x ) d x \\Big ) } } \\\\ { \\displaystyle { \\quad = \\int _ { \\mathcal { X } } f ( x ) \\mu _ { 1 } ( x ) d x + \\frac { \\lambda } { 2 } \\Big ( 1 - \\int _ { \\mathcal { X } } \\| \\nabla _ { x } f ( x ) \\| _ { 2 } ^ { 2 } \\mu ( x ) d x \\Big ) } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 321, + 1665, + 1381, + 1665, + 1381, + 1817, + 321, + 1817 + ], + "score": 0.94, + "latex": "\\begin{array} { l } { { \\displaystyle { \\cal L } \\big ( f + \\epsilon h , \\lambda \\big ) = { \\cal L } \\big ( f , \\lambda \\big ) + \\epsilon \\bigg [ \\int _ { \\mathcal { X } } \\mu _ { 1 } ( x ) h ( x ) d x + \\lambda \\int _ { \\mathcal { X } } d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) h ( x ) d x \\bigg ] + { \\mathcal O } ( \\epsilon ^ { 2 } ) } } \\\\ { { \\displaystyle ~ = { \\cal L } \\big ( f , \\lambda \\big ) + \\epsilon \\int _ { \\mathcal { X } } \\bigg ( \\mu _ { 1 } ( x ) + \\lambda ~ d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) \\bigg ) h ( x ) d x + { \\mathcal O } ( \\epsilon ^ { 2 } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 612, + 1846, + 698, + 1846, + 698, + 1880, + 612, + 1880 + ], + "score": 0.93, + "latex": "L ( f , \\lambda )" + }, + { + "category_id": 14, + "poly": [ + 310, + 753, + 1428, + 753, + 1428, + 1203, + 310, + 1203 + ], + "score": 0.93, + "latex": "\\begin{array} { l } { \\displaystyle \\sum _ { k = 1 } ^ { \\infty } ( f + \\epsilon h , \\lambda ) = \\int _ { x } ( f + \\epsilon h ) ( x ) \\mu _ { 1 } ( x ) d x + \\frac { \\lambda } { 2 } \\Bigl ( 1 - \\int _ { x } \\| \\nabla _ { x } ( f + \\epsilon h ) ( x ) \\| _ { 2 } ^ { 2 } \\mu ( x ) d x \\Bigr ) } \\\\ { \\displaystyle = \\int _ { x } ( f ( x ) + \\epsilon h ( x ) ) \\mu _ { 1 } ( x ) d x + \\frac { \\lambda } { 2 } \\Bigl ( 1 - \\int _ { x } \\left. \\nabla _ { z } \\left( f + \\epsilon h \\right) ( x ) , \\nabla _ { z } \\left( f + \\epsilon h \\right) ( x ) \\right. \\mu ( x ) } \\\\ { \\displaystyle = \\int _ { x } ( f ( x ) + \\epsilon h ( x ) ) \\mu _ { 1 } ( x ) d x } \\\\ { \\displaystyle + \\frac { \\lambda } { 2 } \\Bigl ( 1 - \\int _ { x } \\left. \\| \\nabla _ { z } f ( x ) \\| _ { 2 } ^ { 2 } + 2 \\epsilon \\langle \\nabla _ { x } f ( x ) , \\nabla _ { x } h ( x ) \\rangle + \\mathcal { O } ( \\epsilon ^ { 2 } ) \\right. \\mu ( x ) d x \\Bigr ) } \\\\ { \\displaystyle = L ( f , \\lambda ) + \\epsilon \\int _ { x } h ( x ) \\mu _ { 1 } ( x ) d x - \\lambda \\epsilon \\int _ { x } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } h ( x ) \\right. \\mu ( x ) d x + \\mathcal { O } ( \\epsilon ^ { 2 } ) } \\\\ { \\displaystyle = L ( f , \\lambda ) + \\epsilon \\Bigl [ \\int _ { x } h ( x ) \\mu _ { 1 } ( x ) d x - \\lambda \\int _ { x } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } h ( x ) \\right. \\mu ( x ) d x \\Bigr ] + \\mathcal { O } ( \\epsilon ^ { 2 } ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 415, + 1893, + 1284, + 1893, + 1284, + 2048, + 415, + 2048 + ], + "score": 0.93, + "latex": "\\begin{array} { r c l } { \\displaystyle \\int _ { \\mathcal { X } } \\frac { \\partial L ( f , \\lambda ) } { \\partial f } ( x ) h ( x ) d x } & { = } & { \\displaystyle \\operatorname* { l i m } _ { \\epsilon \\to 0 } \\frac { L ( f + \\epsilon h , \\lambda ) - L ( f , \\lambda ) } { \\epsilon } } \\\\ & { = } & { \\displaystyle \\int _ { \\mathcal { X } } \\left( \\mu _ { 1 } ( x ) + \\lambda \\ d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) \\right) h ( x ) d x } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 310, + 1347, + 1428, + 1347, + 1428, + 1595, + 310, + 1595 + ], + "score": 0.92, + "latex": "\\begin{array} { l } { \\displaystyle \\int _ { \\mathcal X } \\langle \\nabla _ { x } f ( x ) , \\nabla _ { x } h ( x ) \\rangle \\mu ( x ) d x = \\int _ { \\mathcal X } \\langle \\nabla _ { x } f ( x ) \\mu ( x ) , \\nabla _ { x } h ( x ) \\rangle d x } \\\\ { = \\displaystyle \\oint h ( x ) \\mu ( x ) \\nabla _ { x } f ( x ) . n ( x ) d S ( x ) - \\int _ { \\mathcal X } d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) h ( x ) d x } \\\\ { = - \\displaystyle \\int _ { \\mathcal X } d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big ) h ( x ) d x } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 477, + 622, + 1222, + 622, + 1222, + 697, + 477, + 697 + ], + "score": 0.92, + "latex": "L ( f , \\lambda ) = \\int _ { \\mathcal { X } } f ( x ) \\mu _ { 1 } ( x ) d x + { \\frac { \\lambda } { 2 } } { \\Big ( } 1 - \\int _ { \\mathcal { X } } \\| \\nabla _ { x } f ( x ) \\| _ { 2 } ^ { 2 } \\ \\mu ( x ) d x { \\Big ) }" + }, + { + "category_id": 13, + "poly": [ + 632, + 544, + 700, + 544, + 700, + 578, + 632, + 578 + ], + "score": 0.91, + "latex": "\\mu _ { 1 } ( x )" + }, + { + "category_id": 13, + "poly": [ + 424, + 540, + 596, + 540, + 596, + 579, + 424, + 579 + ], + "score": 0.91, + "latex": "\\left( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 915, + 546, + 934, + 546, + 934, + 577, + 915, + 577 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 719, + 232, + 740, + 232, + 740, + 263, + 719, + 263 + ], + "score": 0.84, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 770, + 1232, + 789, + 1232, + 789, + 1257, + 770, + 1257 + ], + "score": 0.84, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 928, + 1849, + 946, + 1849, + 946, + 1874, + 928, + 1874 + ], + "score": 0.84, + "latex": "h" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 226.0, + 718.0, + 226.0, + 718.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 226.0, + 1405.0, + 226.0, + 1405.0, + 265.0, + 741.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 549.0, + 260.0, + 549.0, + 296.0, + 293.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1225.0, + 769.0, + 1225.0, + 769.0, + 1266.0, + 293.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 1225.0, + 1407.0, + 1225.0, + 1407.0, + 1266.0, + 790.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1259.0, + 357.0, + 1259.0, + 357.0, + 1295.0, + 289.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 538.0, + 423.0, + 538.0, + 423.0, + 582.0, + 294.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 538.0, + 631.0, + 538.0, + 631.0, + 582.0, + 597.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 538.0, + 914.0, + 538.0, + 914.0, + 582.0, + 701.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 538.0, + 1407.0, + 538.0, + 1407.0, + 582.0, + 935.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 570.0, + 483.0, + 570.0, + 483.0, + 613.0, + 294.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 711.0, + 654.0, + 711.0, + 654.0, + 744.0, + 297.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1838.0, + 611.0, + 1838.0, + 611.0, + 1887.0, + 293.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1838.0, + 927.0, + 1838.0, + 927.0, + 1887.0, + 699.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1838.0, + 1260.0, + 1838.0, + 1260.0, + 1887.0, + 947.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1617.0, + 384.0, + 1617.0, + 384.0, + 1658.0, + 296.0, + 1658.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 21, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 318, + 1476, + 1377, + 1476, + 1377, + 1745, + 318, + 1745 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 502, + 662, + 1194, + 662, + 1194, + 946, + 502, + 946 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 517, + 1938, + 1182, + 1938, + 1182, + 2030, + 517, + 2030 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 504, + 1294, + 1197, + 1294, + 1197, + 1369, + 504, + 1369 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 563, + 1787, + 1138, + 1787, + 1138, + 1869, + 563, + 1869 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 299, + 1227, + 1403, + 1227, + 1403, + 1289, + 299, + 1289 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 586, + 253, + 1113, + 253, + 1113, + 323, + 586, + 323 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 687, + 1156, + 1016, + 1156, + 1016, + 1223, + 687, + 1223 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 521, + 1050, + 1180, + 1050, + 1180, + 1123, + 521, + 1123 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 297, + 1376, + 575, + 1376, + 575, + 1409, + 297, + 1409 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 298, + 1892, + 792, + 1892, + 792, + 1926, + 298, + 1926 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 297, + 327, + 1002, + 327, + 1002, + 360, + 297, + 360 + ], + "score": 0.932 + }, + { + "category_id": 8, + "poly": [ + 638, + 367, + 1062, + 367, + 1062, + 409, + 638, + 409 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 298, + 230, + 477, + 230, + 477, + 261, + 298, + 261 + ], + "score": 0.924 + }, + { + "category_id": 8, + "poly": [ + 661, + 452, + 985, + 452, + 985, + 522, + 661, + 522 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 296, + 1748, + 380, + 1748, + 380, + 1780, + 296, + 1780 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 294, + 528, + 855, + 528, + 855, + 562, + 294, + 562 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 297, + 1008, + 559, + 1008, + 559, + 1041, + 297, + 1041 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 296, + 1419, + 933, + 1419, + 933, + 1467, + 296, + 1467 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 816, + 73, + 816, + 106, + 298, + 106 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 297, + 416, + 345, + 416, + 345, + 446, + 297, + 446 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 296, + 1134, + 345, + 1134, + 345, + 1163, + 296, + 1163 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 297, + 619, + 973, + 619, + 973, + 654, + 297, + 654 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1351, + 950, + 1401, + 950, + 1401, + 980, + 1351, + 980 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1351, + 371, + 1401, + 371, + 1401, + 403, + 1351, + 403 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1070, + 1401, + 1070, + 1401, + 1102, + 1351, + 1102 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1350, + 1315, + 1401, + 1315, + 1401, + 1347, + 1350, + 1347 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1350, + 1813, + 1402, + 1813, + 1402, + 1845, + 1350, + 1845 + ], + "score": 0.888 + }, + { + "category_id": 8, + "poly": [ + 499, + 570, + 1195, + 570, + 1195, + 611, + 499, + 611 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1172, + 1401, + 1172, + 1401, + 1204, + 1351, + 1204 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1350, + 469, + 1402, + 469, + 1402, + 501, + 1350, + 501 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.872 + }, + { + "category_id": 14, + "poly": [ + 498, + 662, + 1188, + 662, + 1188, + 949, + 498, + 949 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\quad \\mu _ { 1 } ( x ) + \\lambda ^ { * } \\ : d i v \\ : \\left( \\mu ( x ) \\nabla _ { x } f ^ { * } ( x ) \\right) = 0 } \\\\ & { \\Rightarrow \\mu _ { 1 } ( x ) + \\lambda ^ { * } \\ : \\left( \\mu ( x ) \\Delta _ { 2 } f ^ { * } ( x ) + \\left. \\nabla _ { x } \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. \\right) = 0 } \\\\ & { \\Rightarrow \\mu _ { 1 } ( x ) + \\lambda ^ { * } \\ : \\mu ( x ) \\Delta _ { 2 } f ^ { * } ( x ) + \\lambda ^ { * } \\langle \\nabla _ { x } \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\rangle = 0 } \\\\ & { \\Rightarrow \\Delta _ { 2 } f ^ { * } ( x ) + \\left. \\frac { \\nabla _ { x } \\mu ( x ) } { \\mu ( x ) } , \\nabla _ { x } f ^ { * } ( x ) \\right. + \\frac { \\mu _ { 1 } ( x ) } { \\lambda ^ { * } \\mu ( x ) } = 0 } \\\\ & { \\Rightarrow \\Delta _ { 2 } f ^ { * } ( x ) + \\left. \\nabla _ { x } \\log \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\right. + \\frac { \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) } { \\lambda ^ { * } \\mu ( x ) } = 0 } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 318, + 1476, + 1380, + 1476, + 1380, + 1746, + 318, + 1746 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\frac { \\partial ^ { 2 } f ( x ) } { \\partial x _ { i } ^ { 2 } } = \\frac { 1 } { \\lambda ^ { * } d } \\Bigg [ \\frac { \\mu ( x ) \\left[ \\frac { \\partial } { \\partial x _ { i } } ( D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) ) \\right] - \\left[ D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) \\right] \\nabla _ { i } \\mu ( X ) } { \\mu ^ { 2 } ( x ) } \\Bigg ] } \\\\ & { \\quad \\quad \\quad = \\frac { 1 } { \\lambda ^ { * } d } \\Bigg [ \\frac { \\mu ( x ) \\left[ \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) \\right] - \\left[ D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) \\right] \\nabla _ { i } \\mu ( X ) } { \\mu ^ { 2 } ( x ) } \\Bigg ] } \\\\ & { \\quad \\quad \\quad = \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\lambda ^ { * } d \\mu ( x ) } - \\frac { \\nabla _ { i } \\mu ( x ) } { \\mu ( x ) } \\nabla _ { i } f ^ { * } ( x ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 586, + 251, + 1112, + 251, + 1112, + 325, + 586, + 325 + ], + "score": 0.94, + "latex": "\\frac { \\partial L ( f , \\lambda ) } { \\partial f } ( x ) = \\mu _ { 1 } ( x ) + \\lambda ~ d i v \\big ( \\mu ( x ) \\nabla _ { x } f ( x ) \\big )" + }, + { + "category_id": 14, + "poly": [ + 505, + 1292, + 1192, + 1292, + 1192, + 1369, + 505, + 1369 + ], + "score": 0.94, + "latex": "\\nabla _ { i } f ^ { * } ( x ) = \\frac { \\partial f ^ { * } ( X ) } { \\partial x _ { i } } = \\frac { D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) } { \\lambda ^ { * } d ~ \\mu ( x ) } ~ \\forall ~ i \\in [ d ] ," + }, + { + "category_id": 14, + "poly": [ + 655, + 449, + 988, + 449, + 988, + 523, + 655, + 523 + ], + "score": 0.94, + "latex": "\\int _ { \\chi } \\left\\| \\nabla _ { x } f ^ { * } ( x ) \\right\\| ^ { 2 } \\mu ( x ) d x = 1" + }, + { + "category_id": 14, + "poly": [ + 681, + 1153, + 1020, + 1153, + 1020, + 1226, + 681, + 1226 + ], + "score": 0.93, + "latex": "\\int _ { \\mathcal { X } } \\left\\| \\nabla _ { x } f ^ { * } ( x ) \\right\\| ^ { 2 } \\mu ( x ) d x = 1 ." + }, + { + "category_id": 13, + "poly": [ + 759, + 1417, + 832, + 1417, + 832, + 1471, + 759, + 1471 + ], + "score": 0.93, + "latex": "\\frac { \\partial ^ { 2 } f ( \\boldsymbol { x } ) } { \\partial \\boldsymbol { x } _ { i } ^ { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 517, + 1936, + 1179, + 1936, + 1179, + 2031, + 517, + 2031 + ], + "score": 0.93, + "latex": "\\sum _ { i = 1 } ^ { d } \\left( \\frac { \\partial ^ { 2 } f ( x ) } { \\partial x _ { i } ^ { 2 } } + \\frac { \\nabla _ { i } \\mu ( x ) } { \\mu ( x ) } \\nabla _ { i } f ( x ) + \\frac { \\left( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) \\right) } { \\lambda ^ { * } d ~ \\mu ( x ) } \\right) = 0" + }, + { + "category_id": 13, + "poly": [ + 475, + 329, + 547, + 329, + 547, + 359, + 475, + 359 + ], + "score": 0.92, + "latex": "f ^ { * } , \\lambda ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 362, + 619, + 666, + 619, + 666, + 654, + 362, + 654 + ], + "score": 0.92, + "latex": "d i v ( \\nabla _ { x } f ^ { * } ( x ) ) = \\Delta _ { 2 } f ^ { * } ( x )" + }, + { + "category_id": 13, + "poly": [ + 375, + 1010, + 448, + 1010, + 448, + 1042, + 375, + 1042 + ], + "score": 0.92, + "latex": "f ^ { * } , \\lambda ^ { * }" + }, + { + "category_id": 14, + "poly": [ + 638, + 365, + 1062, + 365, + 1062, + 408, + 638, + 408 + ], + "score": 0.91, + "latex": "\\mu _ { 1 } ( x ) + \\lambda ^ { * } \\ d i v \\big ( \\mu ( x ) \\nabla _ { x } f ^ { * } ( x ) \\big ) = 0" + }, + { + "category_id": 13, + "poly": [ + 617, + 1894, + 692, + 1894, + 692, + 1927, + 617, + 1927 + ], + "score": 0.91, + "latex": "i \\in [ d ]" + }, + { + "category_id": 14, + "poly": [ + 563, + 1787, + 1136, + 1787, + 1136, + 1868, + 563, + 1868 + ], + "score": 0.91, + "latex": "{ \\frac { \\partial ^ { 2 } f ( x ) } { \\partial x _ { i } ^ { 2 } } } + { \\frac { \\nabla _ { i } \\mu ( x ) } { \\mu ( x ) } } \\nabla _ { i } f ( x ) + { \\frac { \\left( \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) \\right) } { \\lambda ^ { * } d \\ \\mu ( x ) } } = 0" + }, + { + "category_id": 14, + "poly": [ + 504, + 567, + 1192, + 567, + 1192, + 611, + 504, + 611 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { d i v \\big ( \\mu ( x ) \\nabla _ { x } f ^ { * } ( x ) \\big ) = \\mu ( x ) \\Delta _ { 2 } f ^ { * } ( x ) + \\langle \\nabla _ { x } \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\rangle , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 520, + 1050, + 1178, + 1050, + 1178, + 1123, + 520, + 1123 + ], + "score": 0.89, + "latex": "\\Delta _ { 2 } f ^ { * } ( x ) + \\langle \\nabla _ { x } \\log \\mu ( x ) , \\nabla _ { x } f ^ { * } ( x ) \\rangle + \\frac { \\mathbb { P } ( x ) - \\mathbb { Q } ( x ) } { \\lambda ^ { * } \\mu ( x ) } = 0" + }, + { + "category_id": 13, + "poly": [ + 911, + 1431, + 923, + 1431, + 923, + 1454, + 911, + 1454 + ], + "score": 0.71, + "latex": "i" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2123.0, + 830.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1224.0, + 1404.0, + 1224.0, + 1404.0, + 1262.0, + 293.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1257.0, + 448.0, + 1257.0, + 448.0, + 1290.0, + 295.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1375.0, + 578.0, + 1375.0, + 578.0, + 1411.0, + 296.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1890.0, + 616.0, + 1890.0, + 616.0, + 1930.0, + 296.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1890.0, + 797.0, + 1890.0, + 797.0, + 1930.0, + 693.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 323.0, + 474.0, + 323.0, + 474.0, + 366.0, + 293.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 323.0, + 1004.0, + 323.0, + 1004.0, + 366.0, + 548.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 226.0, + 481.0, + 226.0, + 481.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1746.0, + 384.0, + 1746.0, + 384.0, + 1785.0, + 295.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 527.0, + 858.0, + 527.0, + 858.0, + 564.0, + 296.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1006.0, + 374.0, + 1006.0, + 374.0, + 1045.0, + 294.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1006.0, + 564.0, + 1006.0, + 564.0, + 1045.0, + 449.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1410.0, + 758.0, + 1410.0, + 758.0, + 1475.0, + 296.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1410.0, + 910.0, + 1410.0, + 910.0, + 1475.0, + 833.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1410.0, + 941.0, + 1410.0, + 941.0, + 1475.0, + 924.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 416.0, + 344.0, + 416.0, + 344.0, + 446.0, + 294.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1132.0, + 345.0, + 1132.0, + 345.0, + 1164.0, + 293.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 614.0, + 361.0, + 614.0, + 361.0, + 660.0, + 293.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 614.0, + 974.0, + 614.0, + 974.0, + 660.0, + 667.0, + 660.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 22, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 481, + 433, + 1216, + 433, + 1216, + 712, + 481, + 712 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 468, + 852, + 1225, + 852, + 1225, + 984, + 468, + 984 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 684, + 1279, + 1015, + 1279, + 1015, + 1339, + 684, + 1339 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 494, + 1664, + 1199, + 1664, + 1199, + 1741, + 494, + 1741 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 605, + 1813, + 1092, + 1813, + 1092, + 1876, + 605, + 1876 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 636, + 1530, + 1062, + 1530, + 1062, + 1604, + 636, + 1604 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 298, + 1452, + 1401, + 1452, + 1401, + 1516, + 298, + 1516 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 294, + 994, + 1401, + 994, + 1401, + 1058, + 294, + 1058 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 298, + 1073, + 1402, + 1073, + 1402, + 1136, + 298, + 1136 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 580, + 290, + 1118, + 290, + 1118, + 366, + 580, + 366 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 299, + 1215, + 1403, + 1215, + 1403, + 1277, + 299, + 1277 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 298, + 1345, + 1407, + 1345, + 1407, + 1410, + 298, + 1410 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 710, + 1149, + 986, + 1149, + 986, + 1190, + 710, + 1190 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 650, + 1950, + 1049, + 1950, + 1049, + 1992, + 650, + 1992 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1401, + 228, + 1401, + 290, + 296, + 290 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 297, + 384, + 920, + 384, + 920, + 419, + 297, + 419 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 298, + 2002, + 751, + 2002, + 751, + 2036, + 298, + 2036 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 298, + 1904, + 776, + 1904, + 776, + 1937, + 298, + 1937 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 298, + 1765, + 828, + 1765, + 828, + 1800, + 298, + 1800 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 297, + 1615, + 983, + 1615, + 983, + 1649, + 297, + 1649 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 295, + 804, + 1042, + 804, + 1042, + 839, + 295, + 839 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 816, + 73, + 816, + 106, + 298, + 106 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 1373, + 740, + 1404, + 740, + 1404, + 770, + 1373, + 770 + ], + "score": 0.833 + }, + { + "category_id": 14, + "poly": [ + 476, + 431, + 1216, + 431, + 1216, + 715, + 476, + 715 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\quad \\displaystyle \\int \\| \\nabla f ^ { * } ( \\boldsymbol { x } ) \\| ^ { 2 } \\mu ( \\boldsymbol { x } ) d \\boldsymbol { x } = 1 } \\\\ & { \\Rightarrow \\displaystyle \\int \\sum _ { i = 1 } ^ { d } \\left( \\frac { \\partial f ^ { * } ( \\boldsymbol { x } ) } { \\partial x _ { i } } \\right) ^ { 2 } \\mu ( \\boldsymbol { x } ) d \\boldsymbol { x } = 1 } \\\\ & { \\Rightarrow \\lambda ^ { * } = \\displaystyle \\frac { 1 } { d } \\sqrt { \\displaystyle \\sum _ { i = 1 } ^ { d } \\int \\frac { \\left( D ^ { - i } F _ { \\mathbb { Q } } ( \\boldsymbol { x } ) - D ^ { - i } F _ { \\mathbb { P } } ( \\boldsymbol { x } ) \\right) ^ { 2 } } { \\mu ( \\boldsymbol { x } ) } d \\boldsymbol { x } } = S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 468, + 851, + 1226, + 851, + 1226, + 989, + 468, + 989 + ], + "score": 0.94, + "latex": "\\begin{array} { l l l } { { T ( \\mu ) [ \\nabla _ { x } f ( x ) ] } } & { { = } } & { { \\displaystyle \\frac { 1 } { 2 } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } \\log \\mu ( x ) \\right. + \\displaystyle \\frac { 1 } { 2 } \\left. \\nabla _ { x } , \\nabla _ { x } f ( x ) \\right. } } \\\\ { { } } & { { = } } & { { \\displaystyle \\frac { 1 } { 2 } \\left. \\nabla _ { x } f ( x ) , \\nabla _ { x } \\log \\mu ( x ) \\right. + \\displaystyle \\frac { 1 } { 2 } \\Delta _ { 2 } f ( x ) . } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 581, + 286, + 1119, + 286, + 1119, + 365, + 581, + 365 + ], + "score": 0.94, + "latex": "\\frac { \\partial f ^ { * } ( x ) } { \\partial x _ { i } } = \\frac { D ^ { - i } F _ { \\mathbb { Q } } ( x ) - D ^ { - i } F _ { \\mathbb { P } } ( x ) } { \\lambda ^ { * } d ~ \\mu ( x ) } ~ \\forall i \\in [ d ]" + }, + { + "category_id": 14, + "poly": [ + 682, + 1273, + 1016, + 1273, + 1016, + 1341, + 682, + 1341 + ], + "score": 0.94, + "latex": "d x _ { t } = \\frac { 1 } { 2 } \\nabla _ { x } \\log \\mu ( x _ { t } ) + d W _ { t }" + }, + { + "category_id": 14, + "poly": [ + 496, + 1661, + 1206, + 1661, + 1206, + 1740, + 496, + 1740 + ], + "score": 0.94, + "latex": "\\left| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ T ( \\mu ) \\nabla _ { x } f ^ { * } ( x ) \\right] \\right| = { \\frac { 1 } { 2 S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } } \\left| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ { \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\mu ( x ) } } \\right] \\right|" + }, + { + "category_id": 14, + "poly": [ + 637, + 1528, + 1063, + 1528, + 1063, + 1604, + 637, + 1604 + ], + "score": 0.93, + "latex": "T ( \\mu ) [ \\nabla _ { x } f ^ { * } ] ( x ) = \\frac { 1 } { 2 \\lambda ^ { * } } \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\mu ( x ) }" + }, + { + "category_id": 14, + "poly": [ + 606, + 1812, + 1093, + 1812, + 1093, + 1875, + 606, + 1875 + ], + "score": 0.93, + "latex": "{ \\mathbb S } ( \\mathbb Q , \\mu ) = \\operatorname* { s u p } _ { \\vec { g } \\in \\mathcal L _ { 2 } ( \\mathcal X , \\mu ) ^ { \\otimes d } } \\left| \\mathbb E _ { \\boldsymbol { x } \\sim \\mathbb Q } \\left[ T ( \\mu ) \\vec { g } ( \\boldsymbol { x } ) \\right] \\right|" + }, + { + "category_id": 13, + "poly": [ + 378, + 1346, + 475, + 1346, + 475, + 1380, + 378, + 1380 + ], + "score": 0.92, + "latex": "( W _ { t } ) _ { t \\geq 0 }" + }, + { + "category_id": 13, + "poly": [ + 1072, + 1453, + 1316, + 1453, + 1316, + 1489, + 1072, + 1489 + ], + "score": 0.92, + "latex": "( f ^ { * } , \\lambda ^ { * } = { \\cal S } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) )" + }, + { + "category_id": 14, + "poly": [ + 710, + 1148, + 989, + 1148, + 989, + 1188, + 710, + 1188 + ], + "score": 0.91, + "latex": "\\mathbb { E } _ { x \\sim \\mu } T ( \\mu ) \\nabla _ { x } f ( x ) = 0 ." + }, + { + "category_id": 14, + "poly": [ + 650, + 1951, + 1047, + 1951, + 1047, + 1990, + 650, + 1990 + ], + "score": 0.89, + "latex": "| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ T ( \\mu ) \\nabla _ { x } f ^ { * } ( x ) \\right] | \\leq \\mathbb { S } ( \\mathbb { Q } , \\mu ) ," + }, + { + "category_id": 13, + "poly": [ + 578, + 232, + 610, + 232, + 610, + 262, + 578, + 262 + ], + "score": 0.89, + "latex": "f ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 871, + 388, + 904, + 388, + 904, + 414, + 871, + 414 + ], + "score": 0.87, + "latex": "\\lambda ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 948, + 1618, + 973, + 1618, + 973, + 1648, + 948, + 1648 + ], + "score": 0.85, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 588, + 1108, + 608, + 1108, + 608, + 1135, + 588, + 1135 + ], + "score": 0.79, + "latex": "\\mu" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2083.0, + 871.0, + 2083.0, + 871.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 743.0, + 1404.0, + 743.0, + 1404.0, + 774.0, + 1376.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1449.0, + 1071.0, + 1449.0, + 1071.0, + 1490.0, + 292.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 1449.0, + 1405.0, + 1449.0, + 1405.0, + 1490.0, + 1317.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1484.0, + 794.0, + 1484.0, + 794.0, + 1520.0, + 296.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 993.0, + 1403.0, + 993.0, + 1403.0, + 1029.0, + 296.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1023.0, + 800.0, + 1023.0, + 800.0, + 1059.0, + 296.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1069.0, + 1406.0, + 1069.0, + 1406.0, + 1111.0, + 292.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1105.0, + 587.0, + 1105.0, + 587.0, + 1136.0, + 296.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1105.0, + 883.0, + 1105.0, + 883.0, + 1136.0, + 609.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1214.0, + 1403.0, + 1214.0, + 1403.0, + 1254.0, + 294.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1243.0, + 536.0, + 1243.0, + 536.0, + 1283.0, + 294.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1341.0, + 377.0, + 1341.0, + 377.0, + 1385.0, + 293.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 1341.0, + 1405.0, + 1341.0, + 1405.0, + 1385.0, + 476.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1376.0, + 1169.0, + 1376.0, + 1169.0, + 1411.0, + 293.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 577.0, + 227.0, + 577.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 227.0, + 1405.0, + 227.0, + 1405.0, + 267.0, + 611.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 256.0, + 430.0, + 256.0, + 430.0, + 300.0, + 292.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 384.0, + 870.0, + 384.0, + 870.0, + 421.0, + 295.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 384.0, + 922.0, + 384.0, + 922.0, + 421.0, + 905.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1997.0, + 751.0, + 1997.0, + 751.0, + 2041.0, + 294.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1902.0, + 778.0, + 1902.0, + 778.0, + 1940.0, + 293.0, + 1940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1761.0, + 832.0, + 1761.0, + 832.0, + 1806.0, + 293.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1610.0, + 947.0, + 1610.0, + 947.0, + 1656.0, + 294.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1610.0, + 984.0, + 1610.0, + 984.0, + 1656.0, + 974.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 804.0, + 1041.0, + 804.0, + 1041.0, + 840.0, + 296.0, + 840.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 23, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1848, + 1404, + 1848, + 1404, + 2035, + 297, + 2035 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 941, + 1405, + 941, + 1405, + 1046, + 298, + 1046 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 1057, + 1404, + 1057, + 1404, + 1151, + 298, + 1151 + ], + "score": 0.97 + }, + { + "category_id": 3, + "poly": [ + 626, + 1422, + 1045, + 1422, + 1045, + 1691, + 626, + 1691 + ], + "score": 0.965 + }, + { + "category_id": 8, + "poly": [ + 583, + 260, + 1116, + 260, + 1116, + 342, + 583, + 342 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 600, + 775, + 1097, + 775, + 1097, + 857, + 600, + 857 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 297, + 354, + 533, + 354, + 533, + 387, + 297, + 387 + ], + "score": 0.932 + }, + { + "category_id": 4, + "poly": [ + 293, + 1726, + 1400, + 1726, + 1400, + 1790, + 293, + 1790 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 297, + 724, + 834, + 724, + 834, + 756, + 297, + 756 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 297, + 530, + 527, + 530, + 527, + 563, + 297, + 563 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 296, + 890, + 1170, + 890, + 1170, + 924, + 296, + 924 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 816, + 74, + 816, + 106, + 298, + 106 + ], + "score": 0.914 + }, + { + "category_id": 8, + "poly": [ + 473, + 584, + 1222, + 584, + 1222, + 685, + 473, + 685 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.859 + }, + { + "category_id": 8, + "poly": [ + 429, + 408, + 1263, + 408, + 1263, + 509, + 429, + 509 + ], + "score": 0.859 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1166, + 1403, + 1166, + 1403, + 1196, + 1374, + 1196 + ], + "score": 0.802 + }, + { + "category_id": 0, + "poly": [ + 297, + 1249, + 955, + 1249, + 955, + 1286, + 297, + 1286 + ], + "score": 0.745 + }, + { + "category_id": 0, + "poly": [ + 296, + 1323, + 1237, + 1323, + 1237, + 1358, + 296, + 1358 + ], + "score": 0.716 + }, + { + "category_id": 1, + "poly": [ + 296, + 1323, + 1237, + 1323, + 1237, + 1358, + 296, + 1358 + ], + "score": 0.205 + }, + { + "category_id": 1, + "poly": [ + 297, + 1249, + 955, + 1249, + 955, + 1286, + 297, + 1286 + ], + "score": 0.196 + }, + { + "category_id": 3, + "poly": [ + 429, + 408, + 1263, + 408, + 1263, + 509, + 429, + 509 + ], + "score": 0.098 + }, + { + "category_id": 13, + "poly": [ + 442, + 1011, + 547, + 1011, + 547, + 1045, + 442, + 1045 + ], + "score": 0.93, + "latex": "\\mathbb { S } ( \\mathbb { Q } _ { n } , \\mathbb { P } )" + }, + { + "category_id": 13, + "poly": [ + 922, + 944, + 1108, + 944, + 1108, + 978, + 922, + 978 + ], + "score": 0.93, + "latex": "S _ { \\mathbb { P } } ( \\mathbb { P } , \\mathbb { Q } _ { n } ) 0" + }, + { + "category_id": 14, + "poly": [ + 600, + 776, + 1098, + 776, + 1098, + 855, + 600, + 855 + ], + "score": 0.93, + "latex": "{ \\frac { 1 } { 2 } } \\left| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ { \\frac { \\mathbb { Q } ( x ) } { \\mathbb { P } ( x ) } } \\right] - 1 \\right| \\leq \\mathbb { S } ( \\mathbb { Q } , \\mathbb { P } ) S _ { \\mathbb { P } } ( \\mathbb { P } , \\mathbb { Q } ) ." + }, + { + "category_id": 13, + "poly": [ + 541, + 726, + 614, + 726, + 614, + 756, + 541, + 756 + ], + "score": 0.92, + "latex": "\\mu = \\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 1224, + 937, + 1400, + 937, + 1400, + 985, + 1224, + 985 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { r _ { n } ( x ) = \\frac { \\mathbb Q _ { n } ( x ) } { \\mathbb P ( x ) } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 584, + 262, + 1117, + 262, + 1117, + 340, + 584, + 340 + ], + "score": 0.91, + "latex": "\\frac { 1 } { 2 S _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } \\left| \\mathbb { E } _ { \\boldsymbol { x } \\sim \\mathbb { Q } } \\left[ \\frac { \\mathbb { Q } ( \\boldsymbol { x } ) - \\mathbb { P } ( \\boldsymbol { x } ) } { \\mu ( \\boldsymbol { x } ) } \\right] \\right| \\leq \\mathbb { S } ( \\mathbb { Q } , \\mu )" + }, + { + "category_id": 13, + "poly": [ + 549, + 945, + 589, + 945, + 589, + 976, + 549, + 976 + ], + "score": 0.9, + "latex": "\\mathbb { Q } _ { n }" + }, + { + "category_id": 13, + "poly": [ + 606, + 1916, + 721, + 1916, + 721, + 1944, + 606, + 1944 + ], + "score": 0.89, + "latex": "\\mu = \\mu _ { G P }" + }, + { + "category_id": 13, + "poly": [ + 1079, + 1728, + 1111, + 1728, + 1111, + 1757, + 1079, + 1757 + ], + "score": 0.89, + "latex": "\\mathbb { P } _ { r }" + }, + { + "category_id": 14, + "poly": [ + 474, + 584, + 1215, + 584, + 1215, + 662, + 474, + 662 + ], + "score": 0.86, + "latex": "\\left| \\mathbb { E } _ { x \\sim \\mathbb { P } } \\left[ { \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\mu ( x ) } } \\right] \\right| \\leq 2 \\qquad \\underbrace { { \\mathbb { S } } ( \\mathbb { P } , \\mu ) } _ { \\in { \\mathcal { S } } } \\qquad \\underbrace { { \\mathcal { S } } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } _ { \\in { \\mathcal { S } } }" + }, + { + "category_id": 13, + "poly": [ + 1001, + 1331, + 1031, + 1331, + 1031, + 1356, + 1001, + 1356 + ], + "score": 0.83, + "latex": "\\mathbb { P } _ { r }" + }, + { + "category_id": 14, + "poly": [ + 429, + 408, + 1250, + 408, + 1250, + 487, + 429, + 487 + ], + "score": 0.82, + "latex": "\\left| \\mathbb { E } _ { x \\sim \\mathbb { Q } } \\left[ { \\frac { \\mathbb { Q } ( x ) - \\mathbb { P } ( x ) } { \\mu ( x ) } } \\right] \\right| \\leq 2 \\qquad { \\underset { \\Delta \\in { \\mathbb { Q } } , \\mu } { \\underbrace { \\mathbb { S } ( \\mathbb { Q } , \\mu ) } } } \\qquad { \\underset { \\Delta \\in { \\mathbb { P } } } { \\underbrace { { \\mathcal { S } } _ { \\mu } ( \\mathbb { P } , \\mathbb { Q } ) } } }" + }, + { + "category_id": 13, + "poly": [ + 688, + 981, + 714, + 981, + 714, + 1012, + 688, + 1012 + ], + "score": 0.78, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 1087, + 488, + 1104, + 488, + 1104, + 507, + 1087, + 507 + ], + "score": 0.73, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1009, + 484, + 1028, + 484, + 1028, + 506, + 1009, + 506 + ], + "score": 0.69, + "latex": "\\mathbb { Q }" + }, + { + "category_id": 13, + "poly": [ + 969, + 663, + 985, + 663, + 985, + 683, + 969, + 683 + ], + "score": 0.61, + "latex": "\\mu" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1422.0, + 685.0, + 1422.0, + 685.0, + 1445.0, + 644.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1454.0, + 684.0, + 1454.0, + 684.0, + 1478.0, + 644.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1454.0, + 1001.0, + 1454.0, + 1001.0, + 1475.0, + 822.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1465.0, + 702.0, + 1465.0, + 702.0, + 1503.0, + 689.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1471.0, + 1005.0, + 1471.0, + 1005.0, + 1492.0, + 823.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1486.0, + 684.0, + 1486.0, + 684.0, + 1510.0, + 644.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1489.0, + 1001.0, + 1489.0, + 1001.0, + 1510.0, + 823.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1507.0, + 1005.0, + 1507.0, + 1005.0, + 1528.0, + 823.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1523.0, + 1001.0, + 1523.0, + 1001.0, + 1547.0, + 823.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1534.0, + 684.0, + 1534.0, + 684.0, + 1575.0, + 624.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1540.0, + 1023.0, + 1540.0, + 1023.0, + 1566.0, + 823.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1574.0, + 805.0, + 1574.0, + 805.0, + 1592.0, + 780.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1584.0, + 685.0, + 1584.0, + 685.0, + 1608.0, + 644.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1616.0, + 685.0, + 1616.0, + 685.0, + 1641.0, + 644.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1631.0, + 1020.0, + 1631.0, + 1020.0, + 1647.0, + 961.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 1655.0, + 690.0, + 1655.0, + 690.0, + 1674.0, + 673.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1655.0, + 760.0, + 1655.0, + 760.0, + 1675.0, + 718.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 1655.0, + 1045.0, + 1655.0, + 1045.0, + 1674.0, + 771.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 1672.0, + 895.0, + 1672.0, + 895.0, + 1691.0, + 808.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1518.0, + 686.0, + 1518.0, + 686.0, + 1544.0, + 623.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.25, + 1607.0, + 1020.25, + 1607.0, + 1020.25, + 1625.0, + 936.25, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1723.0, + 1078.0, + 1723.0, + 1078.0, + 1762.0, + 293.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 1723.0, + 1403.0, + 1723.0, + 1403.0, + 1762.0, + 1112.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1758.0, + 1182.0, + 1758.0, + 1182.0, + 1790.0, + 296.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 830.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 1171.0, + 1403.0, + 1171.0, + 1403.0, + 1198.0, + 1377.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1247.0, + 955.0, + 1247.0, + 955.0, + 1291.0, + 295.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1323.0, + 1000.0, + 1323.0, + 1000.0, + 1362.0, + 296.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1323.0, + 1241.0, + 1323.0, + 1241.0, + 1362.0, + 1032.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 383.0, + 428.0, + 383.0, + 428.0, + 517.0, + 409.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 478.0, + 1008.0, + 478.0, + 1008.0, + 510.0, + 758.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 478.0, + 1086.0, + 478.0, + 1086.0, + 510.0, + 1029.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 478.0, + 1269.0, + 478.0, + 1269.0, + 510.0, + 1105.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1851.0, + 1405.0, + 1851.0, + 1405.0, + 1883.0, + 295.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1879.0, + 1405.0, + 1879.0, + 1405.0, + 1918.0, + 291.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1908.0, + 605.0, + 1908.0, + 605.0, + 1949.0, + 291.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1908.0, + 1405.0, + 1908.0, + 1405.0, + 1949.0, + 722.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1940.0, + 1404.0, + 1940.0, + 1404.0, + 1979.0, + 292.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 863.0, + 2002.0, + 863.0, + 2040.0, + 294.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 929.0, + 548.0, + 929.0, + 548.0, + 988.0, + 293.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 929.0, + 921.0, + 929.0, + 921.0, + 988.0, + 590.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 929.0, + 1223.0, + 929.0, + 1223.0, + 988.0, + 1109.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 929.0, + 1404.0, + 929.0, + 1404.0, + 988.0, + 1401.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 979.0, + 687.0, + 979.0, + 687.0, + 1015.0, + 296.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 979.0, + 1406.0, + 979.0, + 1406.0, + 1015.0, + 715.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1010.0, + 441.0, + 1010.0, + 441.0, + 1047.0, + 296.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1010.0, + 559.0, + 1010.0, + 559.0, + 1047.0, + 548.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1057.0, + 1406.0, + 1057.0, + 1406.0, + 1094.0, + 296.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1085.0, + 1406.0, + 1085.0, + 1406.0, + 1126.0, + 293.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1114.0, + 443.0, + 1114.0, + 443.0, + 1159.0, + 293.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 352.0, + 537.0, + 352.0, + 537.0, + 391.0, + 294.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 722.0, + 540.0, + 722.0, + 540.0, + 759.0, + 296.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 722.0, + 836.0, + 722.0, + 836.0, + 759.0, + 615.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 527.0, + 531.0, + 527.0, + 531.0, + 566.0, + 296.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 889.0, + 1169.0, + 889.0, + 1169.0, + 927.0, + 294.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1323.0, + 1000.0, + 1323.0, + 1000.0, + 1362.0, + 296.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1323.0, + 1241.0, + 1323.0, + 1241.0, + 1362.0, + 1032.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1247.0, + 955.0, + 1247.0, + 955.0, + 1291.0, + 295.0, + 1291.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 24, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1396, + 1405, + 1396, + 1405, + 1764, + 297, + 1764 + ], + "score": 0.982 + }, + { + "category_id": 3, + "poly": [ + 626, + 694, + 1045, + 694, + 1045, + 1196, + 626, + 1196 + ], + "score": 0.963 + }, + { + "category_id": 3, + "poly": [ + 411, + 255, + 1268, + 255, + 1268, + 571, + 411, + 571 + ], + "score": 0.959 + }, + { + "category_id": 4, + "poly": [ + 531, + 608, + 1166, + 608, + 1166, + 640, + 531, + 640 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 296, + 1836, + 1261, + 1836, + 1261, + 2033, + 296, + 2033 + ], + "score": 0.922 + }, + { + "category_id": 4, + "poly": [ + 467, + 1232, + 1229, + 1232, + 1229, + 1263, + 467, + 1263 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 299, + 77, + 814, + 77, + 814, + 104, + 299, + 104 + ], + "score": 0.877 + }, + { + "category_id": 0, + "poly": [ + 299, + 1780, + 445, + 1780, + 445, + 1810, + 299, + 1810 + ], + "score": 0.859 + }, + { + "category_id": 2, + "poly": [ + 835, + 2089, + 865, + 2089, + 865, + 2112, + 835, + 2112 + ], + "score": 0.858 + }, + { + "category_id": 0, + "poly": [ + 297, + 1327, + 1027, + 1327, + 1027, + 1360, + 297, + 1360 + ], + "score": 0.732 + }, + { + "category_id": 1, + "poly": [ + 297, + 1327, + 1027, + 1327, + 1027, + 1360, + 297, + 1360 + ], + "score": 0.169 + }, + { + "category_id": 2, + "poly": [ + 309, + 1896, + 1258, + 1896, + 1258, + 2033, + 309, + 2033 + ], + "score": 0.139 + }, + { + "category_id": 13, + "poly": [ + 404, + 1732, + 529, + 1732, + 529, + 1766, + 404, + 1766 + ], + "score": 0.94, + "latex": "\\langle S , \\Phi _ { \\omega } ( x ) \\rangle" + }, + { + "category_id": 13, + "poly": [ + 988, + 1701, + 1111, + 1701, + 1111, + 1735, + 988, + 1735 + ], + "score": 0.93, + "latex": "\\langle v , \\Phi _ { \\omega } ( \\bar { x } ) \\rangle" + }, + { + "category_id": 13, + "poly": [ + 822, + 1611, + 905, + 1611, + 905, + 1642, + 822, + 1642 + ], + "score": 0.92, + "latex": "\\beta _ { 2 } { = } 0 . 9" + }, + { + "category_id": 13, + "poly": [ + 1222, + 1551, + 1305, + 1551, + 1305, + 1580, + 1222, + 1580 + ], + "score": 0.91, + "latex": "n _ { c } = 1" + }, + { + "category_id": 13, + "poly": [ + 345, + 1428, + 479, + 1428, + 479, + 1459, + 345, + 1459 + ], + "score": 0.91, + "latex": "\\beta _ { 2 } = 0 . 9 9 9" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1520, + 1393, + 1520, + 1393, + 1550, + 1305, + 1550 + ], + "score": 0.9, + "latex": "n _ { c } = 2" + }, + { + "category_id": 13, + "poly": [ + 625, + 1643, + 754, + 1643, + 754, + 1671, + 625, + 1671 + ], + "score": 0.9, + "latex": "\\lambda _ { C E } = 0 . 3" + }, + { + "category_id": 13, + "poly": [ + 1085, + 1611, + 1232, + 1611, + 1232, + 1641, + 1085, + 1641 + ], + "score": 0.9, + "latex": "\\lambda _ { G P } = 1 0 . 0" + }, + { + "category_id": 13, + "poly": [ + 1029, + 1521, + 1171, + 1521, + 1171, + 1551, + 1029, + 1551 + ], + "score": 0.9, + "latex": "\\eta _ { D } = 1 \\mathrm { e } { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 553, + 1521, + 693, + 1521, + 693, + 1551, + 553, + 1551 + ], + "score": 0.9, + "latex": "\\rho _ { F } = 1 \\mathrm { e } { - 7 }" + }, + { + "category_id": 13, + "poly": [ + 334, + 1491, + 387, + 1491, + 387, + 1520, + 334, + 1520 + ], + "score": 0.89, + "latex": "\\omega , S" + }, + { + "category_id": 13, + "poly": [ + 418, + 1612, + 506, + 1612, + 506, + 1641, + 418, + 1641 + ], + "score": 0.89, + "latex": "n _ { c } = 5" + }, + { + "category_id": 13, + "poly": [ + 519, + 1612, + 734, + 1612, + 734, + 1643, + 519, + 1643 + ], + "score": 0.88, + "latex": "\\eta _ { G } = \\eta _ { D } = 1 \\mathrm { e } { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 1270, + 1430, + 1401, + 1430, + 1401, + 1459, + 1270, + 1459 + ], + "score": 0.88, + "latex": "\\lambda _ { C E } = 1 . 5" + }, + { + "category_id": 13, + "poly": [ + 960, + 1552, + 1093, + 1552, + 1093, + 1581, + 960, + 1581 + ], + "score": 0.85, + "latex": "\\rho _ { S } = 2 \\mathrm { e } - 8" + }, + { + "category_id": 13, + "poly": [ + 814, + 1551, + 949, + 1551, + 949, + 1581, + 814, + 1581 + ], + "score": 0.85, + "latex": "\\rho _ { F } = 5 \\mathrm { e } - 8" + }, + { + "category_id": 13, + "poly": [ + 653, + 1429, + 673, + 1429, + 673, + 1460, + 653, + 1460 + ], + "score": 0.84, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 511, + 1672, + 565, + 1672, + 565, + 1701, + 511, + 1701 + ], + "score": 0.79, + "latex": "\\mathrm { K } { + } 1" + }, + { + "category_id": 13, + "poly": [ + 1285, + 1398, + 1402, + 1398, + 1402, + 1428, + 1285, + 1428 + ], + "score": 0.78, + "latex": "\\beta _ { 1 } ~ = ~ 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 606, + 1554, + 629, + 1554, + 629, + 1577, + 606, + 1577 + ], + "score": 0.77, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 1144, + 1399, + 1272, + 1399, + 1272, + 1429, + 1144, + 1429 + ], + "score": 0.77, + "latex": "\\eta = 2 \\mathrm { { e } - 4 }" + }, + { + "category_id": 13, + "poly": [ + 1163, + 1494, + 1180, + 1494, + 1180, + 1516, + 1163, + 1516 + ], + "score": 0.65, + "latex": "v" + }, + { + "category_id": 13, + "poly": [ + 896, + 1918, + 909, + 1918, + 909, + 1933, + 896, + 1933 + ], + "score": 0.44, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 973, + 1641, + 1227, + 1641, + 1227, + 1673, + 973, + 1673 + ], + "score": 0.43, + "latex": "[ 0 . 0 3 , 0 . 1 , 0 . 3 , 1 . 0 , 3 . 0 ]" + }, + { + "category_id": 13, + "poly": [ + 746, + 1919, + 760, + 1919, + 760, + 1933, + 746, + 1933 + ], + "score": 0.37, + "latex": ": =" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 702.0, + 803.0, + 702.0, + 803.0, + 719.0, + 632.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 704.0, + 1024.0, + 704.0, + 1024.0, + 717.0, + 861.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 715.0, + 799.0, + 715.0, + 799.0, + 727.0, + 634.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 714.0, + 1028.0, + 714.0, + 1028.0, + 727.0, + 862.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 724.0, + 802.0, + 724.0, + 802.0, + 737.0, + 634.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 722.0, + 1024.0, + 722.0, + 1024.0, + 737.0, + 862.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 734.0, + 802.0, + 734.0, + 802.0, + 747.0, + 634.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 734.0, + 1024.0, + 734.0, + 1024.0, + 747.0, + 862.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 744.0, + 803.0, + 744.0, + 803.0, + 757.0, + 634.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 740.0, + 1030.0, + 740.0, + 1030.0, + 757.0, + 860.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 754.0, + 802.0, + 754.0, + 802.0, + 767.0, + 634.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 753.0, + 1029.0, + 753.0, + 1029.0, + 766.0, + 861.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 764.0, + 802.0, + 764.0, + 802.0, + 777.0, + 634.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 763.0, + 1030.0, + 763.0, + 1030.0, + 776.0, + 861.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 774.0, + 802.0, + 774.0, + 802.0, + 787.0, + 634.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 771.0, + 1031.0, + 771.0, + 1031.0, + 788.0, + 859.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 784.0, + 802.0, + 784.0, + 802.0, + 796.0, + 634.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 783.0, + 1030.0, + 783.0, + 1030.0, + 795.0, + 861.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 791.0, + 803.0, + 791.0, + 803.0, + 808.0, + 632.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 793.0, + 1025.0, + 793.0, + 1025.0, + 805.0, + 862.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 803.0, + 801.0, + 803.0, + 801.0, + 816.0, + 634.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 801.0, + 1031.0, + 801.0, + 1031.0, + 817.0, + 861.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 810.0, + 803.0, + 810.0, + 803.0, + 827.0, + 632.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 810.0, + 1030.0, + 810.0, + 1030.0, + 827.0, + 860.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 823.0, + 802.0, + 823.0, + 802.0, + 835.0, + 634.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 822.0, + 1026.0, + 822.0, + 1026.0, + 835.0, + 861.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 833.0, + 802.0, + 833.0, + 802.0, + 846.0, + 634.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 832.0, + 1028.0, + 832.0, + 1028.0, + 845.0, + 860.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 843.0, + 802.0, + 843.0, + 802.0, + 856.0, + 634.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 842.0, + 1025.0, + 842.0, + 1025.0, + 855.0, + 861.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 853.0, + 802.0, + 853.0, + 802.0, + 866.0, + 634.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 852.0, + 1029.0, + 852.0, + 1029.0, + 865.0, + 862.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 863.0, + 799.0, + 863.0, + 799.0, + 876.0, + 634.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 862.0, + 1025.0, + 862.0, + 1025.0, + 875.0, + 861.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 870.0, + 798.0, + 870.0, + 798.0, + 887.0, + 632.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 872.0, + 1029.0, + 872.0, + 1029.0, + 885.0, + 862.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 882.0, + 797.0, + 882.0, + 797.0, + 895.0, + 634.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 882.0, + 1029.0, + 882.0, + 1029.0, + 895.0, + 862.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 892.0, + 789.0, + 892.0, + 789.0, + 904.0, + 634.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 892.0, + 1030.0, + 892.0, + 1030.0, + 904.0, + 861.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 901.0, + 1025.0, + 901.0, + 1025.0, + 914.0, + 861.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 911.0, + 1025.0, + 911.0, + 1025.0, + 924.0, + 862.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 921.0, + 799.0, + 921.0, + 799.0, + 937.0, + 628.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 919.0, + 1029.0, + 919.0, + 1029.0, + 934.0, + 861.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 928.0, + 1029.0, + 928.0, + 1029.0, + 946.0, + 859.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 953.0, + 800.0, + 953.0, + 800.0, + 976.0, + 632.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 954.0, + 1043.0, + 954.0, + 1043.0, + 974.0, + 856.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 973.0, + 800.0, + 973.0, + 800.0, + 986.0, + 631.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 980.0, + 801.0, + 980.0, + 801.0, + 997.0, + 630.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 991.0, + 800.0, + 991.0, + 800.0, + 1005.0, + 631.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1002.0, + 797.0, + 1002.0, + 797.0, + 1015.0, + 632.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1012.0, + 800.0, + 1012.0, + 800.0, + 1025.0, + 632.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1022.0, + 799.0, + 1022.0, + 799.0, + 1035.0, + 633.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 1021.0, + 1029.0, + 1021.0, + 1029.0, + 1037.0, + 859.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1030.0, + 801.0, + 1030.0, + 801.0, + 1044.0, + 632.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1033.0, + 1028.0, + 1033.0, + 1028.0, + 1046.0, + 860.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1042.0, + 800.0, + 1042.0, + 800.0, + 1055.0, + 632.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1043.0, + 1029.0, + 1043.0, + 1029.0, + 1056.0, + 863.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1051.0, + 799.0, + 1051.0, + 799.0, + 1064.0, + 632.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1053.0, + 1027.0, + 1053.0, + 1027.0, + 1066.0, + 863.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 1061.0, + 800.0, + 1061.0, + 800.0, + 1074.0, + 631.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1063.0, + 1028.0, + 1063.0, + 1028.0, + 1076.0, + 863.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1071.0, + 800.0, + 1071.0, + 800.0, + 1084.0, + 632.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1073.0, + 1025.0, + 1073.0, + 1025.0, + 1086.0, + 860.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1080.0, + 801.0, + 1080.0, + 801.0, + 1094.0, + 630.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1083.0, + 1024.0, + 1083.0, + 1024.0, + 1096.0, + 861.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1092.0, + 800.0, + 1092.0, + 800.0, + 1104.0, + 632.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1092.0, + 1028.0, + 1092.0, + 1028.0, + 1104.0, + 861.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1101.0, + 800.0, + 1101.0, + 800.0, + 1113.0, + 632.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1101.0, + 1028.0, + 1101.0, + 1028.0, + 1114.0, + 861.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1111.0, + 800.0, + 1111.0, + 800.0, + 1124.0, + 632.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 1109.0, + 1025.0, + 1109.0, + 1025.0, + 1126.0, + 859.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1121.0, + 798.0, + 1121.0, + 798.0, + 1134.0, + 632.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1130.0, + 800.0, + 1130.0, + 800.0, + 1143.0, + 632.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 1140.0, + 799.0, + 1140.0, + 799.0, + 1153.0, + 631.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1173.0, + 1049.0, + 1173.0, + 1049.0, + 1193.0, + 623.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 259.0, + 460.0, + 259.0, + 460.0, + 278.0, + 431.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 259.0, + 906.0, + 259.0, + 906.0, + 278.0, + 878.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 271.0, + 504.0, + 271.0, + 504.0, + 285.0, + 473.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 288.0, + 461.0, + 288.0, + 461.0, + 314.0, + 428.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 290.0, + 907.0, + 290.0, + 907.0, + 313.0, + 875.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 292.0, + 1100.0, + 292.0, + 1100.0, + 324.0, + 1048.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 291.0, + 1250.0, + 291.0, + 1250.0, + 341.0, + 1124.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 322.0, + 461.0, + 322.0, + 461.0, + 379.0, + 427.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 329.0, + 801.0, + 329.0, + 801.0, + 387.0, + 566.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 322.0, + 907.0, + 322.0, + 907.0, + 379.0, + 874.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 370.0, + 1108.0, + 370.0, + 1108.0, + 387.0, + 1027.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 364.0, + 1248.0, + 364.0, + 1248.0, + 399.0, + 1132.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 419.0, + 461.0, + 419.0, + 461.0, + 445.0, + 428.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 416.0, + 690.0, + 416.0, + 690.0, + 444.0, + 507.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 420.0, + 907.0, + 420.0, + 907.0, + 443.0, + 875.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 417.0, + 1127.0, + 417.0, + 1127.0, + 444.0, + 952.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 439.0, + 693.0, + 439.0, + 693.0, + 467.0, + 505.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 439.0, + 1129.0, + 439.0, + 1129.0, + 466.0, + 951.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 453.0, + 460.0, + 453.0, + 460.0, + 476.0, + 429.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 453.0, + 907.0, + 453.0, + 907.0, + 475.0, + 875.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 463.0, + 695.0, + 463.0, + 695.0, + 488.0, + 506.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 462.0, + 1132.0, + 462.0, + 1132.0, + 489.0, + 951.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 485.0, + 461.0, + 485.0, + 461.0, + 508.0, + 429.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 485.0, + 909.0, + 485.0, + 909.0, + 507.0, + 876.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 499.0, + 467.0, + 499.0, + 467.0, + 515.0, + 450.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 496.0, + 536.0, + 496.0, + 536.0, + 517.0, + 495.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 496.0, + 598.0, + 496.0, + 598.0, + 516.0, + 548.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 498.0, + 653.0, + 498.0, + 653.0, + 515.0, + 602.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 498.0, + 710.0, + 498.0, + 710.0, + 515.0, + 658.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 497.0, + 823.0, + 497.0, + 823.0, + 516.0, + 715.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 499.0, + 913.0, + 499.0, + 913.0, + 515.0, + 896.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 496.0, + 983.0, + 496.0, + 983.0, + 517.0, + 941.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 496.0, + 1045.0, + 496.0, + 1045.0, + 516.0, + 995.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 498.0, + 1100.0, + 498.0, + 1100.0, + 515.0, + 1051.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 498.0, + 1158.0, + 498.0, + 1158.0, + 515.0, + 1101.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 497.0, + 1269.0, + 497.0, + 1269.0, + 516.0, + 1159.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 512.0, + 677.0, + 512.0, + 677.0, + 535.0, + 577.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 513.0, + 1125.0, + 513.0, + 1125.0, + 536.0, + 1025.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 541.0, + 706.0, + 541.0, + 706.0, + 572.0, + 539.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 541.0, + 1134.0, + 541.0, + 1134.0, + 573.0, + 1004.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 330.0, + 978.0, + 330.0, + 978.0, + 354.5, + 921.0, + 354.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 342.0, + 555.0, + 342.0, + 555.0, + 375.0, + 473.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 371.5, + 438.0, + 371.5, + 438.0, + 408.5, + 424.0, + 408.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 371.5, + 884.0, + 371.5, + 884.0, + 409.0, + 871.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 605.0, + 1169.0, + 605.0, + 1169.0, + 644.0, + 529.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1835.0, + 836.0, + 1835.0, + 836.0, + 1860.0, + 295.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1853.0, + 810.0, + 1853.0, + 810.0, + 1879.0, + 295.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1875.0, + 336.0, + 1875.0, + 336.0, + 1899.0, + 294.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 1895.0, + 521.0, + 1895.0, + 521.0, + 1917.0, + 315.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1914.0, + 745.0, + 1914.0, + 745.0, + 1938.0, + 326.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 1914.0, + 895.0, + 1914.0, + 895.0, + 1938.0, + 761.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1914.0, + 1098.0, + 1914.0, + 1098.0, + 1938.0, + 910.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1932.0, + 920.0, + 1932.0, + 920.0, + 1958.0, + 327.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1953.0, + 521.0, + 1953.0, + 521.0, + 1975.0, + 328.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1972.0, + 1258.0, + 1972.0, + 1258.0, + 1997.0, + 328.0, + 1997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1991.0, + 919.0, + 1991.0, + 919.0, + 2015.0, + 327.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 2010.0, + 521.0, + 2010.0, + 521.0, + 2034.0, + 327.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1227.0, + 1231.0, + 1227.0, + 1231.0, + 1270.0, + 466.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 107.0, + 295.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1778.0, + 449.0, + 1778.0, + 449.0, + 1812.0, + 295.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2122.0, + 830.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1325.0, + 1031.0, + 1325.0, + 1031.0, + 1367.0, + 294.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1898.0, + 519.0, + 1898.0, + 519.0, + 1915.0, + 317.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1915.0, + 745.0, + 1915.0, + 745.0, + 1938.0, + 328.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 1915.0, + 895.0, + 1915.0, + 895.0, + 1938.0, + 761.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1915.0, + 1098.0, + 1915.0, + 1098.0, + 1938.0, + 910.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1933.0, + 918.0, + 1933.0, + 918.0, + 1956.0, + 327.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1953.0, + 520.0, + 1953.0, + 520.0, + 1976.0, + 326.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1971.0, + 1258.0, + 1971.0, + 1258.0, + 1997.0, + 326.0, + 1997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1993.0, + 918.0, + 1993.0, + 918.0, + 2014.0, + 328.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 2011.0, + 520.0, + 2011.0, + 520.0, + 2034.0, + 327.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1395.0, + 1143.0, + 1395.0, + 1143.0, + 1433.0, + 294.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 1395.0, + 1284.0, + 1395.0, + 1284.0, + 1433.0, + 1273.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1395.0, + 1407.0, + 1395.0, + 1407.0, + 1433.0, + 1403.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1424.0, + 344.0, + 1424.0, + 344.0, + 1463.0, + 292.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 1424.0, + 652.0, + 1424.0, + 652.0, + 1463.0, + 480.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 1424.0, + 1269.0, + 1424.0, + 1269.0, + 1463.0, + 674.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1424.0, + 1406.0, + 1424.0, + 1406.0, + 1463.0, + 1402.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1458.0, + 1405.0, + 1458.0, + 1405.0, + 1492.0, + 295.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1487.0, + 333.0, + 1487.0, + 333.0, + 1521.0, + 294.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1487.0, + 1162.0, + 1487.0, + 1162.0, + 1521.0, + 388.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 1487.0, + 1406.0, + 1487.0, + 1406.0, + 1521.0, + 1181.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1517.0, + 552.0, + 1517.0, + 552.0, + 1556.0, + 292.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 1517.0, + 1028.0, + 1517.0, + 1028.0, + 1556.0, + 694.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1517.0, + 1304.0, + 1517.0, + 1304.0, + 1556.0, + 1172.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1517.0, + 1407.0, + 1517.0, + 1407.0, + 1556.0, + 1394.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1546.0, + 605.0, + 1546.0, + 605.0, + 1586.0, + 291.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1546.0, + 813.0, + 1546.0, + 813.0, + 1586.0, + 630.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 1546.0, + 959.0, + 1546.0, + 959.0, + 1586.0, + 950.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 1546.0, + 1221.0, + 1546.0, + 1221.0, + 1586.0, + 1094.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1546.0, + 1406.0, + 1546.0, + 1406.0, + 1586.0, + 1306.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1578.0, + 1403.0, + 1578.0, + 1403.0, + 1614.0, + 294.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1608.0, + 417.0, + 1608.0, + 417.0, + 1646.0, + 292.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 1608.0, + 518.0, + 1608.0, + 518.0, + 1646.0, + 507.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 1608.0, + 821.0, + 1608.0, + 821.0, + 1646.0, + 735.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1608.0, + 1084.0, + 1608.0, + 1084.0, + 1646.0, + 906.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1608.0, + 1406.0, + 1608.0, + 1406.0, + 1646.0, + 1233.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1640.0, + 624.0, + 1640.0, + 624.0, + 1674.0, + 295.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1640.0, + 972.0, + 1640.0, + 972.0, + 1674.0, + 755.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1640.0, + 1405.0, + 1640.0, + 1405.0, + 1674.0, + 1228.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1669.0, + 510.0, + 1669.0, + 510.0, + 1706.0, + 292.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1669.0, + 1403.0, + 1669.0, + 1403.0, + 1706.0, + 566.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1702.0, + 987.0, + 1702.0, + 987.0, + 1736.0, + 294.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 1702.0, + 1405.0, + 1702.0, + 1405.0, + 1736.0, + 1112.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1726.0, + 403.0, + 1726.0, + 403.0, + 1770.0, + 293.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 1726.0, + 542.0, + 1726.0, + 542.0, + 1770.0, + 530.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1325.0, + 1031.0, + 1325.0, + 1031.0, + 1367.0, + 294.0, + 1367.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 25, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 289, + 239, + 1241, + 239, + 1241, + 1083, + 289, + 1083 + ], + "score": 0.964 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 105, + 300, + 105 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 864, + 2088, + 864, + 2112, + 834, + 2112 + ], + "score": 0.841 + }, + { + "category_id": 13, + "poly": [ + 466, + 532, + 543, + 532, + 543, + 551, + 466, + 551 + ], + "score": 0.75, + "latex": "\\mathrm { ~ \\bf ~ p ~ } = \\mathrm { ~ \\bf ~ 0 ~ } . 2 \\mathrm { ~ \\bf ~ }" + }, + { + "category_id": 13, + "poly": [ + 476, + 803, + 555, + 803, + 555, + 822, + 476, + 822 + ], + "score": 0.67, + "latex": "\\mathrm { ~ \\cdot ~ p ~ } = \\mathrm { ~ 0 ~ . ~ 5 ~ }" + }, + { + "category_id": 13, + "poly": [ + 816, + 726, + 830, + 726, + 830, + 741, + 816, + 741 + ], + "score": 0.64, + "latex": ": =" + }, + { + "category_id": 13, + "poly": [ + 464, + 667, + 544, + 667, + 544, + 685, + 464, + 685 + ], + "score": 0.63, + "latex": "( \\mathrm { p } ~ = ~ 0 . 5 )" + }, + { + "category_id": 13, + "poly": [ + 817, + 823, + 831, + 823, + 831, + 838, + 817, + 838 + ], + "score": 0.6, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 966, + 688, + 980, + 688, + 980, + 703, + 966, + 703 + ], + "score": 0.57, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 472, + 977, + 554, + 977, + 554, + 996, + 472, + 996 + ], + "score": 0.55, + "latex": "( \\mathrm { p } ~ = ~ 0 . 5 )" + }, + { + "category_id": 13, + "poly": [ + 817, + 881, + 830, + 881, + 830, + 896, + 817, + 896 + ], + "score": 0.53, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 807, + 688, + 820, + 688, + 820, + 703, + 807, + 703 + ], + "score": 0.51, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 795, + 358, + 811, + 358, + 811, + 373, + 795, + 373 + ], + "score": 0.51, + "latex": "\\div =" + }, + { + "category_id": 13, + "poly": [ + 646, + 358, + 661, + 358, + 661, + 373, + 646, + 373 + ], + "score": 0.5, + "latex": ": =" + }, + { + "category_id": 13, + "poly": [ + 785, + 591, + 800, + 591, + 800, + 606, + 785, + 606 + ], + "score": 0.5, + "latex": "\\div =" + }, + { + "category_id": 13, + "poly": [ + 816, + 765, + 830, + 765, + 830, + 780, + 816, + 780 + ], + "score": 0.48, + "latex": ": =" + }, + { + "category_id": 13, + "poly": [ + 976, + 727, + 989, + 727, + 989, + 741, + 976, + 741 + ], + "score": 0.47, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 474, + 919, + 555, + 919, + 555, + 937, + 474, + 937 + ], + "score": 0.47, + "latex": "( \\mathrm { p } ~ = ~ 0 . 5 )" + }, + { + "category_id": 13, + "poly": [ + 666, + 823, + 681, + 823, + 681, + 838, + 666, + 838 + ], + "score": 0.46, + "latex": ": =" + }, + { + "category_id": 13, + "poly": [ + 667, + 727, + 681, + 727, + 681, + 741, + 667, + 741 + ], + "score": 0.45, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 667, + 881, + 680, + 881, + 680, + 896, + 667, + 896 + ], + "score": 0.45, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 875, + 416, + 889, + 416, + 889, + 431, + 875, + 431 + ], + "score": 0.42, + "latex": ": =" + }, + { + "category_id": 13, + "poly": [ + 635, + 591, + 651, + 591, + 651, + 606, + 635, + 606 + ], + "score": 0.39, + "latex": "\\div =" + }, + { + "category_id": 13, + "poly": [ + 976, + 766, + 989, + 766, + 989, + 780, + 976, + 780 + ], + "score": 0.39, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 726, + 417, + 740, + 417, + 740, + 431, + 726, + 431 + ], + "score": 0.37, + "latex": ": =" + }, + { + "category_id": 13, + "poly": [ + 666, + 765, + 680, + 765, + 680, + 780, + 666, + 780 + ], + "score": 0.37, + "latex": ": =" + }, + { + "category_id": 13, + "poly": [ + 1035, + 417, + 1049, + 417, + 1049, + 431, + 1035, + 431 + ], + "score": 0.34, + "latex": "^ { \\ast = }" + }, + { + "category_id": 13, + "poly": [ + 956, + 358, + 970, + 358, + 970, + 373, + 956, + 373 + ], + "score": 0.31, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 658, + 688, + 671, + 688, + 671, + 703, + 658, + 703 + ], + "score": 0.31, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 1105, + 726, + 1126, + 726, + 1126, + 742, + 1105, + 742 + ], + "score": 0.29, + "latex": "\\scriptstyle = \\mathbf { E }" + }, + { + "category_id": 13, + "poly": [ + 635, + 300, + 651, + 300, + 651, + 315, + 635, + 315 + ], + "score": 0.28, + "latex": "\\div =" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 71.0, + 817.0, + 71.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2125.0, + 830.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 240.0, + 1245.0, + 240.0, + 1245.0, + 261.0, + 329.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 258.0, + 910.0, + 258.0, + 910.0, + 282.0, + 327.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 277.0, + 523.0, + 277.0, + 523.0, + 302.0, + 327.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 295.0, + 634.0, + 295.0, + 634.0, + 322.0, + 326.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 295.0, + 1147.0, + 295.0, + 1147.0, + 322.0, + 652.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 315.0, + 920.0, + 315.0, + 920.0, + 342.0, + 326.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 337.0, + 532.0, + 337.0, + 532.0, + 358.0, + 328.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 354.0, + 645.0, + 354.0, + 645.0, + 379.0, + 327.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 354.0, + 794.0, + 354.0, + 794.0, + 379.0, + 662.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 354.0, + 955.0, + 354.0, + 955.0, + 379.0, + 812.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 354.0, + 1156.0, + 354.0, + 1156.0, + 379.0, + 971.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 374.0, + 918.0, + 374.0, + 918.0, + 399.0, + 328.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 393.0, + 529.0, + 393.0, + 529.0, + 418.0, + 327.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 412.0, + 725.0, + 412.0, + 725.0, + 437.0, + 328.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 412.0, + 874.0, + 412.0, + 874.0, + 437.0, + 741.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 412.0, + 1034.0, + 412.0, + 1034.0, + 437.0, + 890.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 412.0, + 1236.0, + 412.0, + 1236.0, + 437.0, + 1050.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 433.0, + 461.0, + 433.0, + 461.0, + 457.0, + 328.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 459.0, + 323.0, + 459.0, + 323.0, + 469.0, + 314.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 476.0, + 310.0, + 476.0, + 310.0, + 492.0, + 297.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 494.0, + 314.0, + 494.0, + 314.0, + 511.0, + 296.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 498.0, + 330.0, + 498.0, + 330.0, + 508.0, + 320.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 511.0, + 520.0, + 511.0, + 520.0, + 532.0, + 315.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 530.0, + 465.0, + 530.0, + 465.0, + 554.0, + 328.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 530.0, + 550.0, + 530.0, + 550.0, + 554.0, + 544.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 547.0, + 1018.0, + 547.0, + 1018.0, + 573.0, + 328.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 568.0, + 619.0, + 568.0, + 619.0, + 591.0, + 328.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 588.0, + 634.0, + 588.0, + 634.0, + 612.0, + 328.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 588.0, + 784.0, + 588.0, + 784.0, + 612.0, + 652.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 588.0, + 1146.0, + 588.0, + 1146.0, + 612.0, + 801.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 607.0, + 617.0, + 607.0, + 617.0, + 630.0, + 328.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 627.0, + 1146.0, + 627.0, + 1146.0, + 651.0, + 328.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 646.0, + 621.0, + 646.0, + 621.0, + 670.0, + 328.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 665.0, + 463.0, + 665.0, + 463.0, + 688.0, + 328.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 665.0, + 550.0, + 665.0, + 550.0, + 688.0, + 545.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 686.0, + 657.0, + 686.0, + 657.0, + 708.0, + 328.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 686.0, + 806.0, + 686.0, + 806.0, + 708.0, + 672.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 686.0, + 965.0, + 686.0, + 965.0, + 708.0, + 821.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 686.0, + 1166.0, + 686.0, + 1166.0, + 708.0, + 981.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 703.0, + 630.0, + 703.0, + 630.0, + 728.0, + 327.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 720.0, + 666.0, + 720.0, + 666.0, + 748.0, + 327.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 720.0, + 815.0, + 720.0, + 815.0, + 748.0, + 682.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 720.0, + 975.0, + 720.0, + 975.0, + 748.0, + 831.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 720.0, + 1104.0, + 720.0, + 1104.0, + 748.0, + 990.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 720.0, + 1177.0, + 720.0, + 1177.0, + 748.0, + 1127.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 742.0, + 628.0, + 742.0, + 628.0, + 767.0, + 327.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 760.0, + 665.0, + 760.0, + 665.0, + 786.0, + 328.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 760.0, + 815.0, + 760.0, + 815.0, + 786.0, + 681.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 760.0, + 975.0, + 760.0, + 975.0, + 786.0, + 831.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 760.0, + 1176.0, + 760.0, + 1176.0, + 786.0, + 990.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 782.0, + 629.0, + 782.0, + 629.0, + 804.0, + 328.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 800.0, + 475.0, + 800.0, + 475.0, + 825.0, + 327.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 800.0, + 561.0, + 800.0, + 561.0, + 825.0, + 556.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 819.0, + 665.0, + 819.0, + 665.0, + 843.0, + 328.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 819.0, + 816.0, + 819.0, + 816.0, + 843.0, + 682.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 819.0, + 1018.0, + 819.0, + 1018.0, + 843.0, + 832.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 839.0, + 629.0, + 839.0, + 629.0, + 864.0, + 327.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 858.0, + 561.0, + 858.0, + 561.0, + 883.0, + 327.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 877.0, + 666.0, + 877.0, + 666.0, + 901.0, + 328.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 877.0, + 816.0, + 877.0, + 816.0, + 901.0, + 681.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 877.0, + 1017.0, + 877.0, + 1017.0, + 901.0, + 831.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 897.0, + 629.0, + 897.0, + 629.0, + 922.0, + 327.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 917.0, + 473.0, + 917.0, + 473.0, + 941.0, + 328.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 917.0, + 561.0, + 917.0, + 561.0, + 941.0, + 556.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 935.0, + 1018.0, + 935.0, + 1018.0, + 960.0, + 327.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 955.0, + 629.0, + 955.0, + 629.0, + 980.0, + 326.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 975.0, + 471.0, + 975.0, + 471.0, + 999.0, + 327.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 975.0, + 561.0, + 975.0, + 561.0, + 999.0, + 555.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1001.0, + 323.0, + 1001.0, + 323.0, + 1012.0, + 314.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 1014.0, + 548.0, + 1014.0, + 548.0, + 1038.0, + 312.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 1032.0, + 556.0, + 1032.0, + 556.0, + 1057.0, + 312.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1055.0, + 312.0, + 1055.0, + 312.0, + 1074.0, + 296.0, + 1074.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 26, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/SJeLopEYDH/images/0674e833ebe4676da479b168290180165c76c3cc69e89bf87f8edf207744d224.jpg b/parse/train/SJeLopEYDH/images/0674e833ebe4676da479b168290180165c76c3cc69e89bf87f8edf207744d224.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f09aace5eb3dc4be7f63adb552c6c920d3092c9e --- /dev/null +++ b/parse/train/SJeLopEYDH/images/0674e833ebe4676da479b168290180165c76c3cc69e89bf87f8edf207744d224.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e79542ea495d30d2125c840be054ec2be37cf60263d990e2e746074e70753730 +size 133041 diff --git a/parse/train/SJeLopEYDH/images/0ed8fb1fb9883efe07587e877df2c7e84cb0d18a2b3b7d3b9dc91ee8bddba413.jpg b/parse/train/SJeLopEYDH/images/0ed8fb1fb9883efe07587e877df2c7e84cb0d18a2b3b7d3b9dc91ee8bddba413.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cdf6fe2b170c6362e46578e32a82e32c64d0ffab --- /dev/null +++ b/parse/train/SJeLopEYDH/images/0ed8fb1fb9883efe07587e877df2c7e84cb0d18a2b3b7d3b9dc91ee8bddba413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:067ac696de4e154e00b202a9e347df5e4af8e7f4cecb910a766a773961553edf +size 48851 diff --git a/parse/train/SJeLopEYDH/images/0f7ff0ff84172346c51bcc1c4f9f4c9bb9f9e22c5a99341decd94e51e9092ea1.jpg b/parse/train/SJeLopEYDH/images/0f7ff0ff84172346c51bcc1c4f9f4c9bb9f9e22c5a99341decd94e51e9092ea1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8144ce14ec81a4fad7e098bed056f94851273e82 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/0f7ff0ff84172346c51bcc1c4f9f4c9bb9f9e22c5a99341decd94e51e9092ea1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6352856e7e2fb58d870b63446b293104e16271121cfc7908cde1b6dc3ab54c9a +size 18066 diff --git a/parse/train/SJeLopEYDH/images/2224cb320bf5d5f4e6770f91a2829d414505899913a22c1d52acfc14425fdfc8.jpg b/parse/train/SJeLopEYDH/images/2224cb320bf5d5f4e6770f91a2829d414505899913a22c1d52acfc14425fdfc8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9cb23c703a6a295c55190fef73df6cb726888411 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/2224cb320bf5d5f4e6770f91a2829d414505899913a22c1d52acfc14425fdfc8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7d5f17158ac550561f5437882d728dc5aa94da71e8c29845028fd2d66abea82 +size 133209 diff --git a/parse/train/SJeLopEYDH/images/2386215137c1ec660e38445f8d0f2e8f495558ff964513d916f093680f1a325b.jpg b/parse/train/SJeLopEYDH/images/2386215137c1ec660e38445f8d0f2e8f495558ff964513d916f093680f1a325b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..15f401c32279a4217fd186b0cb0ecf2af45b353a --- /dev/null +++ b/parse/train/SJeLopEYDH/images/2386215137c1ec660e38445f8d0f2e8f495558ff964513d916f093680f1a325b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f1281bbe694687afbe5cd2715ef2e325e8176837e758158698965df1d324902 +size 11376 diff --git a/parse/train/SJeLopEYDH/images/275737e28526167aced06f7d1bba18e37a7488a64278d1c8359efa565d285c41.jpg b/parse/train/SJeLopEYDH/images/275737e28526167aced06f7d1bba18e37a7488a64278d1c8359efa565d285c41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87c3cb262c25267cc8ab23985e00bca3446fe87c --- /dev/null +++ b/parse/train/SJeLopEYDH/images/275737e28526167aced06f7d1bba18e37a7488a64278d1c8359efa565d285c41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18465cf24deb2f27ede5dcd0d6705ec0ae7384e08af79dad4d15a7e0191b4e68 +size 26922 diff --git a/parse/train/SJeLopEYDH/images/37b1eb5ad5e7237de518b27c5a62f7fbede8cc54931187abe14f25cf7c734f73.jpg b/parse/train/SJeLopEYDH/images/37b1eb5ad5e7237de518b27c5a62f7fbede8cc54931187abe14f25cf7c734f73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4e091806b0b0091abbc5f7989c8dcdad8daaf22b --- /dev/null +++ b/parse/train/SJeLopEYDH/images/37b1eb5ad5e7237de518b27c5a62f7fbede8cc54931187abe14f25cf7c734f73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:289d698df3c989045f24d78a1729cf25f6ed695001176426eac81fdaa16f1af8 +size 6083 diff --git a/parse/train/SJeLopEYDH/images/3a38a00777c730b10613b13fc067539d468825908e6ecaba924e0a5fd3f3df73.jpg b/parse/train/SJeLopEYDH/images/3a38a00777c730b10613b13fc067539d468825908e6ecaba924e0a5fd3f3df73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ba35ce367a1abb07fb3d9e5e97538cccbee9e4b --- /dev/null +++ b/parse/train/SJeLopEYDH/images/3a38a00777c730b10613b13fc067539d468825908e6ecaba924e0a5fd3f3df73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:637a1a89bb0e38e42ab2a7a90b92b9348858381d13b934a83aa888645f40c830 +size 139263 diff --git a/parse/train/SJeLopEYDH/images/444886b16851fd0913576d274d56a89cb777632696959a7c3768cce7af508b66.jpg b/parse/train/SJeLopEYDH/images/444886b16851fd0913576d274d56a89cb777632696959a7c3768cce7af508b66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c04198f8ba6c835b64f150e1b386277f3231e4a3 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/444886b16851fd0913576d274d56a89cb777632696959a7c3768cce7af508b66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d9f7e490dede7609279a2ad9678eb1526aa746ebb5827418190e83c2ca03efe +size 121142 diff --git a/parse/train/SJeLopEYDH/images/53ae42551d104ef05eff94b8d3a163a7559328f1248efe0c0c4185de64c8f5c3.jpg b/parse/train/SJeLopEYDH/images/53ae42551d104ef05eff94b8d3a163a7559328f1248efe0c0c4185de64c8f5c3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ede3332dc28415f863920c5be0e75fe05491e7b9 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/53ae42551d104ef05eff94b8d3a163a7559328f1248efe0c0c4185de64c8f5c3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a7076a42c0ea2ba04f83b758aa7b5d938906cde5232419c7223a3312d51dc97 +size 158107 diff --git a/parse/train/SJeLopEYDH/images/6799150db94b3ee2ade6b2373f4a1f40873e80ac59d22f5028fb1d64f6f4d347.jpg b/parse/train/SJeLopEYDH/images/6799150db94b3ee2ade6b2373f4a1f40873e80ac59d22f5028fb1d64f6f4d347.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bf074bd095f77bae3fa9365f2e96003c9d88876 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/6799150db94b3ee2ade6b2373f4a1f40873e80ac59d22f5028fb1d64f6f4d347.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04f9b0185925a35ec6f3667b03ce5fdb1955cedf61b36a54eae431b3b7282aac +size 125207 diff --git a/parse/train/SJeLopEYDH/images/732309d3a94b05e6a4a3e5041b903bcf639a21cff162c6af86bbfd04d3b626d8.jpg b/parse/train/SJeLopEYDH/images/732309d3a94b05e6a4a3e5041b903bcf639a21cff162c6af86bbfd04d3b626d8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b682f69ffc041bb5ce76e970cb300cee18a0c7ea --- /dev/null +++ b/parse/train/SJeLopEYDH/images/732309d3a94b05e6a4a3e5041b903bcf639a21cff162c6af86bbfd04d3b626d8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a99fb82424e78f80826750fc2b29f1eb449bca717fdd4dfb3bca12bd63232868 +size 18364 diff --git a/parse/train/SJeLopEYDH/images/77373849af1006ccc6dcab91fc9c784e7ac513660134c5ed1c11b2bbaef84897.jpg b/parse/train/SJeLopEYDH/images/77373849af1006ccc6dcab91fc9c784e7ac513660134c5ed1c11b2bbaef84897.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ce37fde1c145fe0487da536b8c517fef93e223c --- /dev/null +++ b/parse/train/SJeLopEYDH/images/77373849af1006ccc6dcab91fc9c784e7ac513660134c5ed1c11b2bbaef84897.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9fc7fccc46a8b820446dc38f7f55a7840d720871a6b8632c8c60ea36feb33d7 +size 21863 diff --git a/parse/train/SJeLopEYDH/images/8ad6cf10b5af6743983c54ed14a2f68665c78dce612fdbbff90188e5ff5158f7.jpg b/parse/train/SJeLopEYDH/images/8ad6cf10b5af6743983c54ed14a2f68665c78dce612fdbbff90188e5ff5158f7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fbfcfe77a6e9fa73439f0b04eafb1bf5a7f4bb40 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/8ad6cf10b5af6743983c54ed14a2f68665c78dce612fdbbff90188e5ff5158f7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149595c78566485f323d4bc9d5d903b96b78964d12efd2b9af639ddd6c1bc83b +size 31314 diff --git a/parse/train/SJeLopEYDH/images/989d2b903e11af3d026f91038f110c4d4e35ea3b4683271b4b2b2e79b14e169f.jpg b/parse/train/SJeLopEYDH/images/989d2b903e11af3d026f91038f110c4d4e35ea3b4683271b4b2b2e79b14e169f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..529aecb5536fd537c06213ddab600723593c4d37 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/989d2b903e11af3d026f91038f110c4d4e35ea3b4683271b4b2b2e79b14e169f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b755b1e3b3834cc0f16e9bf0c2318b3dace711564c24d6d563a1f4585f804cc +size 54265 diff --git a/parse/train/SJeLopEYDH/images/9a125f06fdb275709b5ee3fa9bc8dae6cc267938179236a5230ce8d82076637c.jpg b/parse/train/SJeLopEYDH/images/9a125f06fdb275709b5ee3fa9bc8dae6cc267938179236a5230ce8d82076637c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee96c7af48191c7e354725f581a502400919b4e3 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/9a125f06fdb275709b5ee3fa9bc8dae6cc267938179236a5230ce8d82076637c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0697e53a27ccb2967758fa31e491409f65474107acb6ee3002494b7c16d646d8 +size 14636 diff --git a/parse/train/SJeLopEYDH/images/9d58107b3f68f20388bc5e795fb0d379816a97bb8655c926956740138c8a20b6.jpg b/parse/train/SJeLopEYDH/images/9d58107b3f68f20388bc5e795fb0d379816a97bb8655c926956740138c8a20b6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e6c2cecb11ab7dd56bffbed86ad36cd0516b84f6 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/9d58107b3f68f20388bc5e795fb0d379816a97bb8655c926956740138c8a20b6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f91a72636b59a643cbb1910e47b7c079f8dc96bec6fa92e468f4bce63e7f9e1 +size 12201 diff --git a/parse/train/SJeLopEYDH/images/a12838f0c821da3c461e0194d4e84d148e6729ab568c50cc8d10fb6823f3f4bd.jpg b/parse/train/SJeLopEYDH/images/a12838f0c821da3c461e0194d4e84d148e6729ab568c50cc8d10fb6823f3f4bd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e749c47ad483255c8f7c3e02f92c418a496ec0c8 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/a12838f0c821da3c461e0194d4e84d148e6729ab568c50cc8d10fb6823f3f4bd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b5c8e63444a41f9de93c0a11f94fe821b77a20112b60b782870b1694e61d252 +size 19103 diff --git a/parse/train/SJeLopEYDH/images/aa212b08cf1798590b0acd37d54c446470023abcd2ab7feb69827194e66762ac.jpg b/parse/train/SJeLopEYDH/images/aa212b08cf1798590b0acd37d54c446470023abcd2ab7feb69827194e66762ac.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a72c23dd4eafcc1377bed3f3a89f2863b11ab137 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/aa212b08cf1798590b0acd37d54c446470023abcd2ab7feb69827194e66762ac.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0501a131b607d2ca74484359b277bdb338222035dda3f5c830d2a50e6ec50d65 +size 83312 diff --git a/parse/train/SJeLopEYDH/images/aa637c0d1a58179999c2ad0799c6c1b5efca64122bc3a0aef6f0d204f539ec79.jpg b/parse/train/SJeLopEYDH/images/aa637c0d1a58179999c2ad0799c6c1b5efca64122bc3a0aef6f0d204f539ec79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc089a6679503c60f8d514a26fbfb1228b82b7e5 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/aa637c0d1a58179999c2ad0799c6c1b5efca64122bc3a0aef6f0d204f539ec79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:038ab211b588433e782399d8e6c2cd47ed70b4137be84e64b6a8d1a4a2af69d0 +size 55534 diff --git a/parse/train/SJeLopEYDH/images/b2eb9226b6c08b44a02458da613f06777ce22d63977096f440eedebef08eacc8.jpg b/parse/train/SJeLopEYDH/images/b2eb9226b6c08b44a02458da613f06777ce22d63977096f440eedebef08eacc8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d54bd369bd6085f7fb4ec708d104642e86777f4 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/b2eb9226b6c08b44a02458da613f06777ce22d63977096f440eedebef08eacc8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5875b4c26329e6ae3a27f3e483f28eb4fe2bc9c741489b2acd8ad3fa099fa28e +size 112171 diff --git a/parse/train/SJeLopEYDH/images/ba8210b66e660697a025d1e67fe31175e030b2faa82ee73cd1420b1e481b7861.jpg b/parse/train/SJeLopEYDH/images/ba8210b66e660697a025d1e67fe31175e030b2faa82ee73cd1420b1e481b7861.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35d79dce6efbe5913c2d60d189cb204f2efe2203 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/ba8210b66e660697a025d1e67fe31175e030b2faa82ee73cd1420b1e481b7861.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c8925aebd3ddd31cde30220e0ebb76567163ffca0871103c37e8654f7b846a0 +size 19816 diff --git a/parse/train/SJeLopEYDH/images/d17a54dd14f3a67a1332023efcf5143b5c6e91f65c5753ec8b840ddfc008a8a9.jpg b/parse/train/SJeLopEYDH/images/d17a54dd14f3a67a1332023efcf5143b5c6e91f65c5753ec8b840ddfc008a8a9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6e258d6968fbea697636c1c321ade982025d681 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/d17a54dd14f3a67a1332023efcf5143b5c6e91f65c5753ec8b840ddfc008a8a9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8cd1054100d5a77bcb349d3f1938293919d99b8df5cbc1f72b1b0e8ca08e28d +size 31147 diff --git a/parse/train/SJeLopEYDH/images/e237ad16a83405351ce4e40de73b7fb84b335de365344481089b4cc7ebd413d4.jpg b/parse/train/SJeLopEYDH/images/e237ad16a83405351ce4e40de73b7fb84b335de365344481089b4cc7ebd413d4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e83ee53c3b7f719b5057036a3b566b3dfda864a9 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/e237ad16a83405351ce4e40de73b7fb84b335de365344481089b4cc7ebd413d4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ca7ca7a1cfa9547a33387d6699ae36b7ac5d8cf218fc12b2b9a8022610ec0ba +size 121637 diff --git a/parse/train/SJeLopEYDH/images/f4e2fca89d639fbc59d16a022dda0edf11da85ba63266482b5c1b96b4b90ccb3.jpg b/parse/train/SJeLopEYDH/images/f4e2fca89d639fbc59d16a022dda0edf11da85ba63266482b5c1b96b4b90ccb3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da1ceb053181d55c818825d794455520519d0e32 --- /dev/null +++ b/parse/train/SJeLopEYDH/images/f4e2fca89d639fbc59d16a022dda0edf11da85ba63266482b5c1b96b4b90ccb3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:594b35f087fa9957916edfe2cb19b9994c1c8123fcb1e7d815dfb2512dc1bf3c +size 144001 diff --git a/parse/train/SJeLopEYDH/images/fa7b3bd413f4829644ad58768d16c44e36b976fb2db97c90ce134a9476c58648.jpg b/parse/train/SJeLopEYDH/images/fa7b3bd413f4829644ad58768d16c44e36b976fb2db97c90ce134a9476c58648.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fbf4e110e53ea85ff5a7fb768bdd3168ec10b14d --- /dev/null +++ b/parse/train/SJeLopEYDH/images/fa7b3bd413f4829644ad58768d16c44e36b976fb2db97c90ce134a9476c58648.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3dd0063cb92ab74f12369f87e83aaf322c271775a54812dddbbe5b6b3254048 +size 105026 diff --git a/parse/train/SJeLopEYDH/images/fa8425da7f07f6416ac6b0c97065c8f4e1bd6975e14cc1333aeafa20d3b3241e.jpg b/parse/train/SJeLopEYDH/images/fa8425da7f07f6416ac6b0c97065c8f4e1bd6975e14cc1333aeafa20d3b3241e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe91a5b7a95c6f66248534e14decfee2c8b8750a --- /dev/null +++ b/parse/train/SJeLopEYDH/images/fa8425da7f07f6416ac6b0c97065c8f4e1bd6975e14cc1333aeafa20d3b3241e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b862a438e5486844a9c47b3f92e810b4a7fc05184898f2fcc276b0513d2e2530 +size 49732 diff --git a/parse/train/SJl98sR5tX/SJl98sR5tX.md b/parse/train/SJl98sR5tX/SJl98sR5tX.md new file mode 100644 index 0000000000000000000000000000000000000000..e669ccff55847ab81aa98863e8fb54e9eab73e21 --- /dev/null +++ b/parse/train/SJl98sR5tX/SJl98sR5tX.md @@ -0,0 +1,423 @@ +# INTERACTIVE AGENT MODELING BY LEARNING TOPROBE + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +The ability of modeling the other agents, such as understanding their intentions and skills, is essential to an agent’s interactions with other agents. Conventional agent modeling relies on passive observation from demonstrations. In this work, we propose an interactive agent modeling scheme enabled by encouraging an agent to learn to probe. In particular, the probing agent (i.e., a learner) learns to interact with the environment and with a target agent (i.e., a demonstrator) to maximize the change in the observed behaviors of that agent. Through probing, rich behaviors can be observed and are used for enhancing the agent modeling to learn a more accurate mind model of the target agent. Our framework consists of two learning processes: i) imitation learning for an approximated agent model and ii) pure curiosity-driven reinforcement learning for an efficient probing policy to discover new behaviors that otherwise can not be observed. We have validated our approach in four different tasks. The experimental results suggest that the agent model learned by our approach i) generalizes better in novel scenarios than the ones learned by passive observation, random probing, and other curiositydriven approaches do, and ii) can be used for enhancing performance in multiple applications including distilling optimal planning to a policy net, collaboration, and competition. A video demo is available at https://www.dropbox.com/ s/8mz6rd3349tso67/Probing_Demo.mov?dl $= 0$ . + +# 1 INTRODUCTION + +An accurate understanding of other agents is essential to many multi-agent problems, such as collaboration, competition, and learning from an expert agent. Humans achieve this not only by passively observing others’ behaviors, but also by actively probing others including interacting with them or changing the environment and conditions so that they can understand others’ intentions, skills, and capabilities better. For instance, when working with a colleague for the first time, one may intentionally create diverse situations where the true intention and skill set of that colleague can be clearly revealed, which in turn helps improve the collaboration. + +Inspired by this observation, in this work, we try to enable a probing agent (i.e., a learner) to automatically learn a good policy for probing in a way that helps it discover new behaviors of a target agent (i.e., a demonstrator) and thus learn a better model of the target agent that is generalizable to unseen environments or settings. Different from common task-oriented policy training, the learning of our probing policy is purely driven by the motivation of maximizing the knowledge about the target agent’s model. We show a simple case in Figure 1 to illustrate this idea, where the learner and the demonstrator are initially located in the upper part and the lower part of the room respectively. The true policy of the demonstrator is trying to go to the upper part by finding the shortest path. However, since the room layout is fixed, the learner may overfit the only path observed from the demonstrator. By actively creating new gaps, the learner is able to discover various paths, which will greatly improve the accuracy of the approximated model of the demonstrator. + +We consider the following setting for probing-based interactive agent modeling. In an environment, there are two general types of agents: i) a demonstrator who possesses certain skills for a single task or multiple tasks, and ii) a learner who has no prior knowledge of the environment and the demonstrator’s skills. The purpose of the learner is to efficiently and thoroughly learn all of the demonstrator’s skills and goals by not only passively watching the demonstrations but also actively interacting with the environment and/or the demonstrator. This learning process entails both imitation learning (IL) for modeling the demonstrator’s skills and goals, and reinforcement learning (RL) + +![](images/3c1afb04daa88192307507702776c69b03f1854302bfa148df1e924a35747df7.jpg) +Figure 1: Illustration of our probing-based interactive agent modeling. Here, the demonstrator tries to go from the bottom-right corner to the upper part of the room. The passive learner (left) only observes one path in the fixed environment while the probing learner (right) removes a wall block to create a new gap so that the demonstrator will change its path accordingly. + +for optimizing probing policy to diversify the task settings and the demonstrations to facilitate the imitation learning. Note that we assume that the demonstrator will always truthfully reveal its skills and intentions in any scenarios. + +A key idea in our approach is to use task independent RL training purely driven by a curiosity reward. For this, we represent the demonstrator’s mind by i) a latent vector to encode and track an agent’s intention and belief, and ii) a policy conditioned on the latent vector and the agent’s observed state for action prediction (i.e., the agent’s skills). By introducing this latent vector, we are able to characterize an agent’s policy by a low dimensional representation, and to reflect the change of policy by the change of this latent vector. Since the goal of probing policy is to cause the demonstrator to change its policy so that the learner may observe diverse demonstrations, it is natural to apply the change in the latent mind representation as the curiosity-driven incentive for the learner. + +We evaluate our approach on four tasks in different domains (grid worlds and algorithmic problems). The experimental results indicate that our probing-based interactive agent modeling framework can: i) efficiently model the demonstrator’s mind that is generalizable in unseen scenarios, and ii) can be applied to several applications including distilling optimal plans to a policy net by automatically diversifying task settings, and improving multi-agent collaboration as well as competition using the learned agent model. + +# 2 RELATED WORK + +In multi-agent reinforcement learning (MARL), agent modeling or opponent modeling plays an essential role as the ability of understanding other agent’s goals and predicting their actions can greatly facilitate both collaborative and competitive purposes (Busoniu et al., 2008; Albrecht & Stone, 2018). Previous work has attempted to achieve this by task-oriented learning for maximizing a specified collaborative or competitive reward in the given tasks. For instance, inspired by game theory, there have been approaches aiming at finding Nash equilibira in multi-agent games, where agents’ models are represented by their utilities (Littman, 1994; Hu & Wellman, 2003) and strategies (Claus & Boutilier, 1998; Tesauro, 2004; Powers & Shoham, 2005; Heinrich et al., 2015; Heinrich & Silver, 2016; Lanctot et al., 2017). Recently, some deep RL methods have incorporated simple agent modeling into Q-learning (Lowe et al., 2017) or policy updates (Foerster et al., 2018). Auxiliary tasks like explicitly predicting other agents’ goals have also been applied to MARL (Mordatch & Abbeel, 2018). In previous work, the agents’ incentive of modeling other agents comes from reaching a common goal or conflicting goals. In contrast, we never define a task-specific reward for the learner since the goal of our probing-based interactive agent modeling is not to reach a predefined goal but rather to learn a good mind model of the demonstrator which can be generalized to unseen settings and transferred to multi-agent tasks afterwards when a task-dependent reward is given. + +Our work is greatly inspired by Theory of Mind (ToM) (Premack & Woodruff, 1978), which is a general and powerful framework to model an agent’s mind and use the mind model to better explain or predict the agent’s behaviors. Baker et al. (2009) has proposed a Bayesian formulation to incorporate an agent’s desires, intentions, and belief about the world into the agent’s policy in order to predict the agent’s goals and actions via inverse planning. Rabinowitz et al. (2018) adopts a simpler mind representation (i.e., a latent vector) learned by a neural net (ToMnet). In our work, the learner is also trying to learn the policy of the demonstrator with a simple mind modeling. However, instead of only serving as a passive observer, we encourage the learner to probe so that it will learn to interact with the environment and with the demonstrator to quickly and continuously discover new behaviors of the demonstrator, which in turn helps learning a better mind model. + +![](images/84aa49337f3c7c08fcf23511a43c0078a3fcfdc51c45b78d41146d298740de5e.jpg) +Figure 2: An overview of our model. Architecture details are in Appendix C. Note that the modules do not share weights, and the dashed line indicates that it is a feed forward only path (no back propagation through this path to update the mind model). + +Our task-independent reward is related to the curiosity-driven reward applied to an RL agent for encouraging exploration (Strehl & Littman, 2008; Bellemare et al., 2016; Tang et al., 2017; Pathak et al., 2017). Our probing framework differs from this in two ways: i) instead of exploring the world states, we encourage the learner to discover new behaviors of the demonstrator to learn a better model of its mind; ii) the curiosity-driven rewards in previous work only serve as auxiliary rewards for achieving specific goals, whereas in our case, the sole motivation of our learner agent is from curiosity, and we demonstrate that this type of pure curiosity-driven learning can actually yield rich behaviors and general agent modeling. + +There is certain similarity between active learning and our learning to prob mechanism. As Yang & Shafto (2017) shows, active learning is more effective than optimal teaching when the learner and teacher are not conceptually aligned, which is exactly the scenario in our problem setting (the learner does do not share any conceptual common ground with the demonstrator at the beginning). However, active learning typically addresses problems such as classification (Tong & Koller, 2001; Kapoor et al., 2007) by generating queries to an oracle to get additional ground-truth supervision. There are have been work on active imitation learning (Shon et al., 2007; nd Geoffrey J. Gordon & Bagnell, 2011; Judah et al., 2012) and active inverse reinforcement learning (Lopes et al., 2009) utilizing the similar concept, where the learner asks quires at certain states to a human oracle for guidance on what actions to take at those states. In contrast, our work goes beyond the scope of the existing work on active learning – we aim at training a learner agent to directly interact with the environment and with the target agent in order to automatically diversify the task settings and learn a better agent model without any task-dependent training objectives so that the learned agent models can be applied to improve the learner’s performance in various applications. + +Lastly, our task-independent learning objective can also be connected with meta-learning (Wang et al., 2016; Finn et al., 2017), which is to learn a meta strategy that can conduct efficient multi-task learning (Maclaurin et al., 2015; Duan et al., 2017; Hariharan & Girshick, 2017; Wichrowska et al., 2017; Yu et al., 2018; Baker et al., 2017) or adapt an agent’s policy to its opponent’s policy (Al-Shedivat et al., 2018) in a competitive setting. In this work, the purpose of our task-independent learning is to learn to probe a demonstrator for a better modeling of its mind, which is different from existing meta-learning approaches. + +# 3 APPROACH + +# 3.1 MODEL + +We assume a Markov Decision Process (MDP) framework for both the demonstrator and the learner, where their behaviors at time $t$ are denoted by a pair of state and action $( s _ { d } ^ { t } , a _ { d } ^ { t } )$ and $( s _ { l } ^ { t } , a _ { l } ^ { t } )$ respectively. The history of their behaviors upon time $t$ is represented by trajectories $\Gamma _ { d } ^ { \acute { t } } = \big \{ ( s _ { d } ^ { \tau } , a _ { d } ^ { \tau } ) : \tau = 1 , \cdot \cdot \cdot , t \big \}$ and $\Gamma _ { l } ^ { t } = \{ ( s _ { l } ^ { \tau } , a _ { l } ^ { \tau } ) : \tau = 1 , \cdot \cdot \cdot , t \}$ respectively. + +Our interactive agent modeling framework is illustrated in Figure 2, which consists of two parts: i) learner’s estimation of the demonstrator’s model and ii) the learner’s probing policy for a better understanding of the demonstrator’s model. + +To estimate the demonstrator’s model, the learner maintains a behavior tracker, $\mathcal { M } ( \cdot )$ , to encode the observed trajectory of the demonstrator, which generates a latent vector, $m ^ { t } = \mathcal { M } ( \Gamma _ { d } ^ { t } )$ . This latent vector can be viewed as a simplified representation of the demonstrator’s mind upon time $t$ , hence the learner may use it to characterize the demonstrator’s policy, $\pi _ { d } ( a _ { d } ^ { t } \vert s _ { d } ^ { t } , m ^ { t - 1 } )$ , from which the learner may predict the demonstrator’s future action $\hat { a } _ { d } ^ { t }$ . Note that for each demonstration, $m ^ { t }$ always starts from the same constant, ${ \bf m } ^ { 0 } = { \bf 0 }$ . This particular definition of the demonstrator’s policy may also be connected with the option framework in hierarchical RL (Sutton et al., 1999), where the behavior tracker serves as a global policy to update the temporal abstraction $m ^ { t }$ and consequently changes the local policy $\pi _ { d }$ . + +In this work, we require a learner to interact with the environment and/or with the demonstrator instead of passively watching the demonstrations. We enable this by learning a probing policy for the learner, $\pi _ { l } ( a _ { l } ^ { t } | \dot { s _ { l } ^ { t } } , m ^ { t - 1 } )$ , where $m ^ { t - 1 }$ is from the current demonstration. The main purpose of the probing policy is to incite new behaviors of the demonstrator, thus we adopt a curiosity-driven reward to train this policy. Particularly, we define the reward function as + +$$ +\begin{array} { r } { r ^ { t } = R ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } , m ^ { t } ) = | | m ^ { t } - m ^ { t - 1 } | | ^ { 2 } , } \end{array} +$$ + +where $m ^ { t }$ is the successive output of the behavior tracker after observing $( s _ { d } ^ { t } , a _ { d } ^ { t } )$ . + +Finally, based on the probing policy, the learner can perform the probing as the rollout procedure outlined in Algorithm 1 (see Appendix A). + +In summary, there are four key components in our probing-based interactive agent modeling: + +• A behavior tracker $\mathcal { M } ( \Gamma _ { d } ^ { t } ; \theta _ { M } )$ ; +• The approximated demonstrator’s policy $\pi _ { d } ( a _ { d } ^ { t } \vert s _ { d } ^ { t } , m ^ { t - 1 } ; \theta _ { d } )$ ; +• A probing policy for the learner $\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , m ^ { t - 1 } ; \theta _ { l } )$ ; +• A value function for the probing policy $V ( s _ { l } ^ { t } , m ^ { t - 1 } ; \theta _ { V } )$ . + +Please refer to Appendix C for the details of the network architecture. + +# 3.2 LEARNING + +As discussed above, we have two main learning objectives corresponding to the two parts in our model respectively: i) minimizing imitation error (i.e., cross-entropy loss for action prediction) and ii) maximizing accumulated probing reward (i.e., probing policy optimization). Consequently, our approach includes an imitation learning process for recovering demonstrator’s policy and a reinforcement learning process for optimizing the probing policy. These two processes are intertwined and influenced by each other: the IL process provides the behavior tracker guiding the probing policy while the RL process helps $\mathrm { I L }$ to observe more diverse behaviors from the demonstrator, thus enabling an interactive learning scheme. Algorithm 2 in Appendix A summarizes the overall learning approach, where $N$ is the total number of training iterations. The optimization details for the two learning processes are introduced as follows. + +# 3.2.1 IMITATION LEARNING + +For $\mathrm { I L }$ , we want to learn a good behavior tracker as well as the demonstrator’s policy. For this, we minimize a cross-entropy loss for predicting demonstrator’s actions: + +$$ +\mathcal { L } ( \theta _ { M } , \theta _ { d } ) = \mathbb { E } \left[ - \log \pi _ { d } ( a _ { d } ^ { t } | s _ { d } ^ { t } , m ^ { t - 1 } ) \right] . +$$ + +# 3.2.2 REINFORCEMENT LEARNING + +The goal of RL is to train a good probing policy that will maximize the change of behavior and/or discover new behaviors of the demonstrator to facilitate the imitation learning. Based on the reward $\begin{array} { r } { \mathbb { E } \left[ \sum _ { \tau = 0 } ^ { \infty } \gamma ^ { \tau } r ^ { t + \tau } \right] } \end{array}$ n Eq. (, where $\gamma$ this goal is equivalent to maximizing the accumulated reward, is the discounted factor. $J ( \theta _ { l } ) =$ + +For the policy optimization, we use Advantage Actor-Critic (A2C) (Mnih et al., 2016) to conduct on-policy training. The policy gradient is + +$$ +\nabla _ { \theta _ { l } } J ( \theta _ { l } ) = \nabla _ { \theta _ { l } } \left[ \log \pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , m ^ { t - 1 } ; \theta _ { l } ) A ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } ) + \lambda \mathcal { H } ( \pi _ { l } ( \cdot | s _ { l } ^ { t } , m ^ { t - 1 } ; \theta _ { l } ) ) \right] , +$$ + +where $A ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } )$ is the advantage estimation defined as $\begin{array} { r } { A ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } ) = \sum _ { \tau = 0 } ^ { \infty } \gamma ^ { \tau } r ^ { t + \tau } \ - } \end{array}$ $V ( s _ { l } ^ { t } , m ^ { t - 1 } )$ and $\mathcal { H } ( \cdot )$ is the entropy regularization weighted by the constant $\lambda = 0 . 0 1$ for encouraging exploration. The value function is updated by the following gradient: + +$$ +\nabla _ { \theta _ { V } } \frac { 1 } { 2 } \left( \sum _ { \tau = 0 } ^ { \infty } \gamma ^ { \tau } r ^ { t + \tau } - V ( s _ { l } ^ { t } , m ^ { t - 1 } ; \theta _ { V } ) \right) ^ { 2 } . +$$ + +Note that when we update the probing policy and the value function, the behavior tracker is fixed (i.e., no back propagation through the dashed path in Figure 2). Thus $\theta _ { M }$ will only be updated by the IL loss in Eq. (2). This is to ensure that the change of $\mathrm { \Sigma } _ { m } \bar { t }$ is only caused by the change in policy or in behaviors, and not by the change of the parameters of the mind model, $\theta _ { M }$ . + +# 4 EXPERIMENTS + +To evaluate our approach, we introduce four tasks as shown in Figure 3, including three grid world tasks (passing through obstacles, maze navigation, construction) and an algorithmic problem (sorting). + +In order to test the generalization ability of the learned agent model, we adopt a strict training procedure, where only one particular environment and task design is given during training. Specially, for grid world tasks, we fix the environment layout and/or item placement in each demonstration, whereas for the sorting task, we use the exact same input array throughout the training. At testing time, we randomize the task settings to an extent to create novel environments/inputs that have never been seen during training. We provide the specific settings in Section 4.1. + +We implement rule-based policies for the demonstrator i) by searching the best plan from the initial state to the goal state for the grid world tasks or ii) by the bubble sort algorithm for sorting. When there is no possible path to reach the goal (e.g., blocked by the learner), the demonstrator will stop until a viable path appears. + +# 4.1 TASKS + +![](images/3b9d1a1dd367e5002b7172940644e658adf68fc36a8b0e845a272a5d536c86d3.jpg) +Figure 3: Illustration of the evaluated tasks. + +Passing. In this task modified from Baker et al. (2009), the demonstrator is initially located at the bottom-right corner and is trying to pass through the closest gap to get into the upper part of the room. The demonstrator can take 5 actions including moving in four directions and stopping, whereas the learner can move in four directions, stop, and also pickup or put down a wall block. The training environment is shown in Figure 3, where the gap is always located at the left end of the wall in the middle. In testing cases, we randomly place the location of the gap and the initial position of the demonstrator. + +Maze Navigation. Inspired by similar tasks in recent literature (Andreas et al., 2017), we place a few door blocks and tools (a key and a hammer) in a four-room maze, where the key can be used to open the yellow door but has no effect on the blue door, which must be broken by the hammer. The demonstrator is trying to go from the top-right room to the top-left room. The two agents share the same action space including moving in four directions, picking up an item, and putting down an item. Also, they can only carry one item at a time. In the training setting, the initial positions of both agents and the door blocks are fixed as shown in Figure 3, whereas the tools may be randomly placed at only a few locations. The rules in this environment are in fact fairly complex compared to other grid world tasks in previous work, where multiple sub-goals such as getting the tools, getting the door blocks, placing the door blocks, and walking through the doors are involved. + +Construction. We adapt the stacking tasks in Shu et al. (2018) into a grid world, where the demonstrator has a latent goal invisible to the learner, which is to construct a new block by putting two blocks with a specific color combination together. Three items are present in a room and they are assigned with different colors randomly. In each episode, the demonstrator is randomly assigned with a goal (i.e., a pair of colors). It then seeks the needed blocks and puts one of them beside the other one. In order to predict the demonstrator’s actions precisely, the learner must infer the correct goal first, which requires a sophisticated and dynamic agent modeling. Both agents share the same action space as in Maze Navigation. In training, there are no obstacles in the room. To increase the difficulty of goal inference, in testing scenarios, we randomly place a few wall blocks as obstacles around the colored blocks. + +Sorting. Compared to a grid world, algorithmic problems are less visually informative and entail more abstract reasoning. For this, we design a sorting task where an array with certain length is given at the beginning. In our experiments, we set the length to be 10 and restrain the size of numbers in the array to be 4 bits (i.e., from 0 to 15). The demonstrator is able to perform a bubble sort algorithm to rearrange the input array in an ascending order. Its action at each step is to select a pair of numbers to swap. For every 5 steps done by the demonstrator, the learner can select a number and flipping one of the bit of that number. Both agents can choose to do nothing for a step. During training, we only provide one constant array so that the sorting always starts from the same initial array. This is a very challenging setting as only 10 out of 16 possible numbers are present in the training example and the fixed ordering may also easily cause overfitting. For testing, we generate random arrays as inputs. + +For more details about the task settings, please refer to Appendix D. + +# 4.2 GENERALIZATION IN UNSEEN TASK SETTINGS + +![](images/1871cb7eec22fea8ea3cee03fbce6bab4a89e5ce0e304bc11a26ace233854a63.jpg) +Figure 4: Action prediction accuracies in novel testing settings over numbers of training iterations. + +![](images/013eb5aa25e3450135a48626efaa1b683544a12479c08644269d9f5f88ec7693.jpg) +Figure 5: Action prediction accuracies in novel testing settings over numbers of training iterations with $10 \%$ random actions. + +One of the main goals of learning to probe is to learn a good agent model that can be generalized to unseen scenarios. To evaluate how accurate our agent model is for approximating the true mind of the demonstrator, we may test the accuracy of predicting the demonstrator’s actions using the learned $\pi _ { d }$ and behavior tracker $\mathcal { M } ( \cdot )$ in testing task settings unseen by the learner during training. A high + +prediction accuracy in unseen settings will indicate good generalization of the learned agent model. +To eliminate the effects from probing, we remove the learner from the environment during testing. + +We compare our model with six baselines: i) ToMnet in Rabinowitz et al. (2018), which learns the demonstrator’s model by only observing the given demonstrations without interactions, ii) our model without training the probing policy using RL (i.e., the leaner always takes random actions), iii), ours without the attention-based fusion (concatenating state feature and $m ^ { t - 1 }$ instead), iv) using two LSTMs for the estimated demonstrator’s policy and the probing policy respectively (Figure 16), v) using count-based bonus as reward (Strehl & Littman, 2008; Bellemare et al., 2016; Tang et al., 2017), and vi) using cross-entropy loss for action prediction as reward (i.e., exploration by self-supervised prediction in Pathak et al. (2017)). To ensure fair comparison, the training settings and the testing settings are shared by all methods. We provide more details of the baselines in Appendix E. + +Figure 4 shows the predication accuracy in testing settings of the three approaches based on the models from different training iterations. It is clear that with more iterations, our probing policy can greatly help increase the accuracy by discovering new behaviors, and consequently yields much higher testing accuracy than the baselines do. The results of “ours w/o fusion” and “2-LSTM” baselines further demonstrates the importance of our attention-based fusion layer and the use of a separate behavior tracker. By randomizing $10 \%$ of demonstrator’s actions (Figure 5), we show that the probing policy can also handle stochastic and sub-optimal policies. It can be clearly seen from the results that the performance of the two baselines based on different curiosity rewards is clearly inferior to ours, which demonstrates the advantage of defining the behavioral change as the intrinsic reward for the purpose of agent modeling. We have also evaluated the robustness of our approach by showing the standard deviation from multiple runs as shown in Figure 9, which demonstrates a reasonably low variance across multiple runs. + +We demonstrate the effect of dimensionality of the latent vector $m ^ { t }$ (i.e., the complexity of the agent model) in Figure 4. In simple environments, our approach still outperforms the baselines even when the dimensionality is decreased from 8 to 2 or 4. In more complex tasks like Sorting, a higher dimension is necessary for the agent modeling. + +# 4.3 EVOLUTION OF LEARNED PROBING STRATEGY + +As training progresses, we observe that our probing policy is able to progressively discover new behaviors through interactions that are adapted to the demonstrator’s policy. For instance, in Maze Navigation, we find that the learner first learns to place one door, then gradually learns to place two doors at the appropriate moments to force the demonstrator to go back and forth to get the needed tools for opening the doors. Finally, the probing policy will even blocks the demonstrator for a while before it goes through the last door. Due to the space limit, we show this in the demo video. + +We also provide more analysis and visualization of the probing behavior and the resulting latent vectors in Appendix B.2 and Appendix B.3. + +# 4.4 EMERGENCE OF OBSTRUCTIVE BEHAVIORS FROM PROBING + +Although we never explicitly set an adversarial goal for the learner, we do observe a natural emergence of obstructive behaviors caused by the probing, which can be quantitatively measured by the success rate of the demonstrator within a time limit as shown in Figure 6. This phenomenon is aligned with common sense that the optimal probing policy to discover new behaviors of the demonstrator should constantly force the demonstrator to change its plan, which will eventually delay the time when the demonstrator finishes the task. Because of the reward defined in Eq. (1), the probing policy learned from RL is also maximizing the accumulated behavioral change of the demonstrator just like the common sense. This further justifies our simple yet effective reward design. + +![](images/f79f849d4628693a408ffe9f369a47a5064b5907c7894cb647ef97d04aad2d23.jpg) +Figure 6: The average success rate of the demonstrator within the given time limit. + +![](images/22c56a09143e8dc063fbd0fed96feb71578073b1b84e64124f4c3a82addce74e.jpg) +Figure 7: The learning curves of the collaborative task (reward is rescaled). + +![](images/b2076ef0ebd4994b1be4f0abf9861f2baf22ffd6fcc9e875892dea55ad60f109.jpg) +Figure 8: The learning curves of the competitive task (reward is rescaled). + +4.5 APPLICATION 1: DISTILLING OPTIMAL PLANS TO A POLICY NET + +Table 1: Success rates using the learned demonstrator’s policy in unseen tasking settings. Unless specified, the evaluated policies were learned from demonstrations without random actions. + +
MethodPassingMaze NavigationConstructionSorting
Ours0.710.600.480.82
Ours (from sub-optimal demo)0.680.510.47N/A
Ours w/o RL0.130.310.230.80
Ours w/o fusion0.110.190.290.10
Ours (2-LSTM)0.170.020.170
Passive (ToMnet)0.1100.120
Count-based0.2200.310.39
Self-supervised0.2300.360.56
+ +Optimal planning sometimes requires a long computational time. For acceleration, it is common to distill the optimal plans to a policy net (Lazaric et al., 2010; Guo et al., 2014). However, the distilled policy net may not generalize well in new scenarios if the training settings are not diverse enough. Thus, the nature of our approach makes it suitable for improving the generalization without manually designing a large number of diverse settings. + +For this, we evaluate the success rates when the learner directly uses $\pi _ { d }$ (with an 8-dim latent vector) to perform tasks in testing settings without finetuning. The results summarized in Table 1 are consistent with the findings based on action predictions. We have also tested the success rate of the policy learned from sub-optimal demonstrations with $10 \%$ random actions. Its performance is comparable to the one learned from perfect demonstrations by our approach. It also outperforms the baselines trained from optimal demonstrations. We didn’t test the randomized demonstrations for Sorting as it is unnecessary to randomize bubble sort algorithm. Note that since the learner is unaware of the goal in Construction, we let the learner take over the task after the first block has been picked up. + +# 4.6 APPLICATION 2: COLLABORATION + +To test whether the improved agent modeling by learning a probing policy can facilitate multi-agent collaboration, we modify the Construction task to be a collaborative task, where the learner is trying to help the demonstrator (fixed policy) to finish the task. For every step the demonstrator takes, the learner will get a $- 0 . 0 5$ penalty. When the goal is reached, it will be given a reward of 1. This setting is difficult for training a collaborative policy since the demonstrator is capable of finishing the task by itself. In order to help finish the task faster, the learner must infer the true goal of the demonstrator quickly and shares part of the labor accordingly. + +We fix the behavior tracker module, $\mathcal { M } ( \cdot )$ , trained from our interactive agent modeling and retrain the learner’s policy $\pi _ { l }$ using the task reward defined above. For comparison, we implement two baselines: i) retraining $\pi _ { l }$ based on $\mathcal { M }$ learned from passive agent modeling (i.e., ToMnet) and ii) training a policy without agent modeling, i.e., $\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , s _ { d } ^ { t } )$ . + +Figure 7 demonstrates the learning curves, where the reward is rescaled so that the theoretical maximum reward from a perfect policy is 1. From the curves, we may see that the policy trained with our interactively learned agent model significantly outperforms both baselines. + +# 4.7 APPLICATION 3: COMPETITION + +Similar to Section 4.6, we design a competitive task based on the Construction task, where the learner gets a 0.05 reward for every step and a -1.0 penalty if the opponent achieves its goal. We adopt the same training procedure as in Section 4.6, and also rescale the reward according to the maximum reward. As Figure 8 shows, the mind model learned by our approach improves the learning efficiency and the converged reward by a large margin. + +# 5 CONCLUSIONS + +In this work, we have proposed a novel agent modeling approach, i.e., probing-based interactive agent modeling. The core idea is to learn a probing policy using only a curiosity-driven reward, which is able to discover new behaviors of the target agent. We achieve this by incorporating two learning processes $\mathrm { I L }$ and RL) together. We are able to validate our approach in four distinct tasks. The results show that by learning a probing policy, the learner in our approach can build a more accurate agent model of the demonstrator. Thanks to this interactively learned agent model, the learner is able to i) approximate the demonstrator’s policy more accurately in unseen settings compared to passive agent modeling, ii) efficiently learn a good collaborative policy to help the demonstrator, and iii) develop an adversarial policy to compete with the demonstrator. + +In the future, we can extend this framework to simultaneous agent modeling and world modeling with a more complex mind representation. + +# REFERENCES + +Maruan Al-Shedivat, Trapit Bansal, Yuri Burda, Ilya Sutskever, Igor Mordatch, and Pieter Abbeel. Continuous adaptation via meta-learning in nonstationary and competitive environments. In The Sixth International Conference on Learning Representations (ICLR), 2018. +Stefano V Albrecht and Peter Stone. Autonomous agents modelling other agents: A comprehensive survey and open problems. Artificial Intelligence, (258):66–95, 2018. +Jacob Andreas, Dan Klein, and Sergey Levine. Modular multitask reinforcement learning with policy sketches. In International Conference on Machine Learning (ICML), 2017. +Bowen Baker, Otkrist Gupta, Nikhil Naik, and Ramesh Raskar. Designing neural network architectures using reinforcement learning. In The Fifth International Conference on Learning Representations (ICLR), 2017. +Chris L Baker, Rebecca Saxe, and Joshua B Tenenbaum. Action understanding as inverse planning. Cognition, 113(3):329–349, 2009. +Marc Bellemare, Sriram Srinivasan, Georg Ostrovski, Tom Schaul, David Saxton, and Remi Munos. Unifying count-based exploration and intrinsic motivation. In Advances in Neural Information Processing Systems (NIPS), pp. 1471–1479, 2016. +Lucian Busoniu, Robert Babuska, and Bart De Schutter. A comprehensive survey of multiagent reinforcement learning. IEEE Trans. Systems, Man, and Cybernetics, Part C, 38(2):156–172, 2008. +Devendra Singh Chaplot, Kanthashree Mysore Sathyendra, Rama Kumar Pasumarthi, Dheeraj Rajagopal, and Ruslan Salakhutdinov. Gated-attention architectures for task-oriented language grounding. arXiv preprint arXiv:1706.0723, 2017. +Caroline Claus and Craig Boutilier. The dynamics of reinforcement learning in cooperative multiagent systems. The Fifteenth National Conference on Artificial Intelligence (AAAI), 1998:746–752, 1998. +Yan Duan, Marcin Andrychowicz, Bradly Stadie, Jonathan Ho, Jonas Schneider, Ilya Sutskever, Pieter Abbeel, and Wojciech Zaremba. One-shot imitation learning. In Advances in neural information processing systems (NIPS), pp. 1087–1098, 2017. + +Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model-agnostic meta-learning for fast adaptation of deep networks. In International Conference on Machine Learning (ICML), 2017. + +Jakob N Foerster, Richard Y Chen, Maruan Al-Shedivat, Shimon Whiteson, Pieter Abbeel, and Igor Mordatch. Learning with opponent-learning awareness. In The 17th International Conference on Autonomous Agents and Multiagent Systems (AAMAS), 2018. + +Xiaoxiao Guo, Satinder P. Singh, Honglak Lee, Richard L. Lewis, and Xiaoshi Wang. Deep learning for realtime atari game play using offline monte-carlo tree search planning. In Advances in Neural Information Processing Systems (NIPS), 2014. + +Bharath Hariharan and Ross Girshick. Low-shot visual recognition by shrinking and hallucinating features. In IEEE International Conference on Computer Vision (ICCV), 2017. + +Johannes Heinrich and David Silver. Deep reinforcement learning from self-play in imperfectinformation games. arXiv preprint arXiv:1603.01121, 2016. + +Johannes Heinrich, Marc Lanctot, and David Silver. Fictitious self-play in extensive-form games. In International Conference on Machine Learning (ICML), pp. 805–813, 2015. + +Junling Hu and Michael P Wellman. Nash q-learning for general-sum stochastic games. In The 15th International Conference on Machine Learning (ICML), pp. 242–250, 2003. + +Kshitij Judah, Alan Fern, and Thomas G. Dietterich. Active imitation learning via reduction to i.i.d. active learning. In The Conference on Uncertainty in Artificial Intelligence (UAI), 2012. + +Ashish Kapoor, Kristen Grauman, Raquel Urtasun, and Trevor Darrell. Active learning with gaussian processes for object categorization. In International Conference on Computer Vision (ICCV), 2007. + +Marc Lanctot, Vinicius Zambaldi, Audrunas Gruslys, Angeliki Lazaridou, Julien Perolat, David Silver, Thore Graepel, et al. A unified game-theoretic approach to multiagent reinforcement learning. In Advances in Neural Information Processing Systems (NIPS), pp. 4193–4206, 2017. + +Alessandro Lazaric, Mohammad Ghavamzadeh, and Remi Munos. Analysis of a classification-based policy iteration algorithm. In International Conference on Machine Learning (ICML), 2010. + +Michael L Littman. Markov games as a framework for multi-agent reinforcement learning. In The 11th International Conference on Machine Learning (ICML), pp. 157–163, 1994. + +Manuel Lopes, Francisco Melo, and Luis Montesano. Active learning for reward estimation in inverse reinforcement learning. In Joint European Conference on Machine Learning and Knowledge Discovery in Databases, 2009. + +Ryan Lowe, Yi Wu, Aviv Tamar, Jean Harb, Pieter Abbeel, and Igor Mordatch. Multi-agent actor-critic for mixed cooperative-competitive environments. In Advances in Neural Information Processing Systems (NIPS, 2017. + +Dougal Maclaurin, David Duvenaud, and Ryan P. Adams. Gradient-based hyperparameter optimization through reversible learning. In International Conference on Machine Learning (ICML), 2015. + +Volodymyr Mnih, Adria Puigdomenech Badia, Mehdi Mirza, Alex Graves, Timothy Lillicrap, Tim Harley, David Silver, and Koray Kavukcuoglu. Asynchronous methods for deep reinforcement learning. In International Conference on Machine Learning (ICML), 2016. + +Igor Mordatch and Pieter Abbeel. Emergence of grounded compositional language in multi-agent populations. In The Thirty-Second AAAI Conference on Artificial Intelligence (AAAI), 2018. + +Stephane Ross nd Geoffrey J. Gordon and J. Andrew Bagnell. A reduction of imitation learning ´ and structured prediction to no-regret online learning. In International Conference on Artificial Intelligence and Statistics (AISTATS), 2011. + +Deepak Pathak, Pulkit Agrawal, Alexei A Efros, and Trevor Darrell. Curiosity-driven exploration by self-supervised prediction. In International Conference on Machine Learning (ICML), 2017. + +Rob Powers and Yoav Shoham. New criteria and a new algorithm for learning in multi-agent systems. In Advances in neural information processing systems (NIPS), pp. 1089–1096, 2005. + +David Premack and Guy Woodruff. Does the chimpanzee have a theory of mind? Behavioral and brain sciences, 1(4):515–526, 1978. + +Neil C. Rabinowitz, Frank Perbet, H. Francis Song, Chiyuan Zhang, S.M. Ali Eslami, and Matthew Botvinick. Machine theory of mind. arXiv preprint arXiv:1802.07740, 2018. + +Aaron P. Shon, Deepak Verma, and Rajesh PN Rao. Active imitation learning. In The AAAI Conference on Artificial Intelligence (AAAI), 2007. + +Tianmin Shu, Caiming Xiong, and Richard Socher. Hierarchical and interpretable skill acquisition in multi-task reinforcement learning. In The Sixth International Conference on Learning Representations (ICLR), 2018. + +A. L. Strehl and M. L. Littman. An analysis of model-based interval estimation for markov decision processes. Journal of Computer and System Sciences, 74(8):1309–1331, 2008. + +Richard S Sutton, Doina Precup, and Satinder Singh. Between mdps and semi-mdps: A framework for temporal abstraction in reinforcement learning. Artificial intelligence, 112(1-2):181–211, 1999. + +Haoran Tang, Rein Houthooft, Davis Foote, Adam Stooke, Xi Chen, Yan Duan, John Schulman, Filip De Turck, and Pieter Abbeel. #exploration: A study of count-based exploration for deep reinforcement learning. In 31st Conference on Neural Information Processing Systems (NIPS), 2017. + +Gerald Tesauro. Extending q-learning to general adaptive multi-agent systems. In Advances in neural information processing systems (NIPS), pp. 871–878, 2004. + +Tijmen Tieleman and Geoffrey Hinto. Lecture 6.5—rmsprop: Divide the gradient by a running average of its recent magnitude. COURSERA: Neural Networks for Machine Learning, 2012. + +Simon Tong and Daphne Koller. Support vector machine active learning with applications to text classification. Journal of Machine Learning Research, pp. 45–66, 2001. + +Jane X Wang, Zeb Kurth-Nelson, Dhruva Tirumala, Hubert Soyer, Joel Z Leibo, Remi Munos, Charles Blundell, Dharshan Kumaran, and Matt Botvinick. Learning to reinforcement learn. arXiv preprint arXiv:1611.05763, 2016. + +Olga Wichrowska, Niru Maheswaranathan, Matthew W Hoffman, Sergio Gomez Colmenarejo, Misha Denil, Nando de Freitas, and Jascha Sohl-Dickstein. Learned optimizers that scale and generalize. arXiv preprint arXiv:1703.04813, 2017. + +Scott Cheng-Hsin Yang and Patrick Shafto. Teaching versus active learning: A computational analysis of conditions that affect learning. In The AAAI Conference on Artificial Intelligence (AAAI), 2017. + +Tianhe Yu, Chelsea Finn, Annie Xie, Sudeep Dasari, Pieter Abbeel, and Sergey Levine. One-shot imitation from observing humans via domain-adaptive meta-learning. In Robotics: Science and Systems (RSS), 2018. + +# A PSEUDO CODE OF OUR ALGORITHMS + +# Algorithm 1 Rollout $ { T _ { \mathrm { m a x } } } )$ + +Input: Maximum steps $T _ { \mathrm { m a x } }$ +Output: Episode length $T$ , trajectories $\Gamma _ { d } ^ { T }$ and $\Gamma _ { l } ^ { T }$ , and the latent vector sequence $M$ +1: Initialize the environment +2: $\Gamma _ { d } ^ { 0 } \gets \emptyset , \Gamma _ { l } ^ { 0 } \gets \emptyset , M \gets \emptyset , m ^ { 0 } \gets \mathbf { 0 } , t \gets 0$ +3: repeat +4: $t \gets t + 1$ +5: Observe $s _ { d } ^ { t }$ and $a _ { d } ^ { t }$ from the demonstrator +6: Observe $s _ { l } ^ { t }$ from the environment +7: Sample and execute the learner’s action $a _ { l } ^ { t } \sim \pi _ { l } ( s _ { l } ^ { t } , m ^ { t - 1 } )$ +8: $\Gamma _ { d } ^ { t } \Gamma _ { d } ^ { t - 1 } \cup \{ ( s _ { d } ^ { t } , a _ { d } ^ { t } ) \} , \Gamma _ { l } ^ { t } \Gamma _ { l } ^ { t - 1 } \cup \{ ( s _ { l } ^ { t } , a _ { l } ^ { t } ) \}$ +9: $m ^ { t } \gets \mathcal { M } ( \Gamma _ { d } ^ { t } ) , M \gets M \cup \{ m ^ { t } \}$ + +# Algorithm 2 Learning Algorithm + +1: Initialize parameters $\Theta = \left. \theta _ { M } , \theta _ { b } , \theta _ { l } , \theta _ { V } \right.$ +2: Set $T _ { \mathrm { m a x } }$ (the maximum steps in an episode) and $N$ (the number of training iterations) +3: $i \gets 1$ +4: repeat +5: $T , \Gamma _ { d } ^ { T } , \Gamma _ { l } ^ { T } , M \gets \mathrm { R o l l o u t } ( T _ { \mathrm { m a x } } )$ +6: IL: Update $\theta _ { M }$ and $\theta _ { d }$ based on Eq. (2) using $\Gamma _ { d } ^ { T }$ +7: RL: Update $\theta _ { l }$ and $\theta _ { V }$ based on Eq. (3 and Eq. (4) respectively using $\Gamma _ { l } ^ { T }$ , and $M$ +8: $i \gets i + 1$ +9: until $i = N$ + +# B MORE RESULTS + +# B.1 ROBUSTNESS EVALUATION + +We show the mean and standard deviation of the prediction accuracy from 5 runs by our full model in Figure 9 for Maze Navigation to validate the robustness of our approach. + +![](images/d3766e4783ca2f1226bf81c173ed6690f9a07ff438e980d834c86b081f958f61.jpg) +10: until $t = T _ { \operatorname* { m a x } }$ or the task is finished 11: $T \gets t$ +Figure 9: Mean and standard deviation of multiple runs in Maze Navigation. + +# B.2 VISUALIZATION OF LATENT VECTORS + +Figure 10 visualizes the latent vectors obtained from demonstrations with probing and without probing, where the latent vectors were computed by the same behavior tracker in both cases. This provides empirical evidences that by finding new latent vectors, we are able to discover new demonstrations with probing. + +# B.3 VISUALIZATION OF THE CHANGE IN $m ^ { t }$ AND THE CHANGE IN POLICY + +To show that the change in $m ^ { t }$ indeed indicates the change in policy, we compute the correlation of $| | m ^ { t } - m ^ { t - 1 } | | ^ { 2 }$ and $\tilde { K L } ( \pi _ { d } ( \cdot | s ^ { t + 1 } , m ^ { t } ) | | \pi _ { d } ( \cdot | s ^ { t + 1 } , m ^ { t - 1 } ) )$ (i.e., how different the policy conditioned on the new latent vector $m ^ { t }$ is compared to the one with the old latent vector $m ^ { t - 1 }$ ). Figure 11 demonstrates the correlation between the change in $m ^ { t }$ and the corresponding change in policy in testing settings. The high correlation validates our hypothesis that the distance between consecutive latent vectors $m ^ { t }$ and $\bar { m } ^ { t - 1 }$ reflects the policy change of the demonstrator. + +![](images/f82b7a583fb0ccf3c5a6ef501adc2d8413d68eb07d6414f87e572db80aaacff7.jpg) +Figure 10: t-SNE embedding of $m ^ { t }$ . + +![](images/069435882d499904bb6f9b71b6a7dc219cc94a8b05cbac2d28d7728bc6f34cb1.jpg) +Figure 11: Correlation between the change in $m ^ { t }$ and the change in policy in testing settings $\dot { \boldsymbol { r } }$ is Pearson correlation coefficient). + +# C NETWORK ARCHITECTURE OF OUR MODEL + +State Encoder. The input of the state encoder is a multi-channel tensor. For the grid world case, the input dimension is $1 1 \bar { \times } 1 1 \times ( N _ { \mathrm { b l o c k s } } + 1 )$ , where $1 1 \times 1 1$ is the size of the grid world, $N _ { \mathrm { i t e m s } }$ is the number of types of blocks, and the additional channel is to show the position of the corresponding agent, i.e., the position of the demonstrator for $s _ { d } ^ { t }$ or the position of the learner for $s _ { l } ^ { t }$ . The other agent is treated as an obstacle and its position is encoded into the channel corresponded to the wall block. In the case of Sorting task, the input dimension is $1 0 \times 1 \times 4$ , representing 10 numbers in an array where the size of each number is 4 bits. The state encoder has one convolutional layer which consists of 32 filters with kernel size of $1 \times 1$ and stride of 1. + +Behavior Tracker. Assuming the action space is $A$ , we combine the state input and the action input by augmenting the state input with $A$ channels, each of which corresponds to an action. We set the channel of the observed action to be all ones and set the remaining $A - 1$ channels to be zeros. This combined state and action input is then fed into a convolutional layer with 32 filters (the kernel size is $1 \times 1$ and the stride is 1). The output is flatten into a vector and passed through two fully connected (FC) layers (all have 128 dimensions). The resulting 128-dim vector serves as the input of an LSTM with 128 hidden units. Finally, an FC layer takes in the hidden state from the LSTM and outputs the latent vector $m ^ { t }$ as the mind representation. + +![](images/9601707c6b27d9000ede144af1654db03552ded43028f6a05face04cd1b1a543.jpg) +Figure 12: The attention-based fusion module. + +Fusion. As shown in Figure 12, we design our fusion module using an attention based mechanism similar to the one introduced by Chaplot et al. (2017), where the latent vector $m ^ { t - 1 }$ is fed into an FC layer outputting an $N$ -dim attention vector (each element is from 0 to 1) corresponding to the $N$ feature maps from the state encoder (here $N = 3 2$ ). Formally, we have an attention vector $h = \sigma ( m ^ { t - 1 } ) \in \dot { \mathbb { R } } ^ { 3 2 }$ , where $\sigma ( \cdot )$ is an FC layer with sigmoid activation. $h$ is spatially expanded to a $H \times W \times 3 2$ tensor, $\pmb { H } ( h ) \in \mathbb { R } ^ { H \times W \times 3 2 }$ , where the elements in $k$ -th channel correspond to the $k$ -th element in $h$ . We then reweight each feature maps using the attention vector, which becomes the fusion output. I.e., $f ( \phi ( s ^ { t } ) , m ^ { t - \tilde { 1 } } ) = \phi ( s ^ { t } ) \odot H ( \sigma \tilde { ( } m ^ { t - 1 } ) \mathbf { \tilde { ) } }$ , where $\phi ( s ^ { t } )$ are the feature maps from the state encoder, $f ( \cdot )$ is the fusion layer, and $\odot$ is element-wise product. + +Policy. The input of this module is the flattened output from the fusion module, and is fed to an LSTM with 128 hidden units followed by an FC layer with softmax activation. The resulting output is an action distribution representing the policy (either $\pi _ { d }$ or $\pi _ { l }$ ). For Sorting task, we slightly modify the output to fit the problem. We decompose the demonstrator’s policy as ${ \pi } _ { d } ( a _ { d } ^ { t } \vert s _ { d } ^ { t } , m ^ { t - 1 } ) ~ = ~ { \pi } _ { d } ^ { ( 1 ) } ( a _ { d } ^ { \bar { t } , 1 } \vert s _ { d } ^ { t } , m ^ { t - 1 } ) { \pi } _ { d } ^ { ( 2 ) } ( a _ { d } ^ { t , 2 } \vert s _ { d } ^ { t } , m ^ { t - 1 } )$ , where $a _ { d } ^ { t , 1 }$ and $a _ { d } ^ { t , 2 }$ are the indices of the numbers the demonstrator chooses to swap. For the learner’s policy, it is decomposed as $\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , m ^ { t - 1 } ) = \pi _ { l } ^ { \mathrm { i d } } ( a _ { l } ^ { t , 1 } | s _ { l } ^ { t } , m ^ { t - 1 } ) \pi _ { l } ^ { \mathrm { b i t } } ( a _ { l } ^ { t , 2 } | s _ { l } ^ { t } , m ^ { t - 1 } )$ instead, where $a _ { l } ^ { t , 1 }$ indicates the number that the learner selects to change and $a _ { l } ^ { t , 2 }$ is the bit of that number that needs to be flipped. When $a _ { d } ^ { t , 1 }$ or $a _ { l } ^ { t , 1 }$ is larger than the length of the array, it means that the demonstrator or the learner is choosing to do nothing respectively. + +Value. We also have a value net designed for training the learner’s policy using A2C (i.e., $V ( s _ { l } ^ { t } , m ^ { t - 1 } ) )$ , which takes in the hidden state from the LSTM in the learner’s policy module and outputs a scalar value after an FC layer. + +The network is trained with RMSProp (Tieleman & Hinto, 2012) using a learning rate of 0.001. +During training, $\epsilon$ -greedy is applied to the rollout, where the $\epsilon$ gradually decreases from 0.1 to 0.01. + +# D TASK SETTINGS + +We assume full observations of the world state for both agents in all tasks but the internal state of an agent (e.g., goals) is unobservable to another agent. The discounted factor is set to be $\Gamma = 0 . 9 5$ . + +For the demonstrator in the grid world tasks, we implemented search based path planning and used simple heuristics to perform branch and bound for acceleration. In particular, the state for the search algorithm in Passing is the map status, whereas the state in Maze Navigation and Construction is the combination of map status and the demonstrator’s inventory. + +# D.1 PASSING + +![](images/104fb1162f260d597db6e2b8b643e42e84d9eb60187fab5116d2e2aba9e01f85.jpg) +Figure 13: The training setting and examples of testing settings for Passing. + +Figure 13 shows the training setting where the locations of the gap and the staring point of the demonstrator are fixed, and the examples of testing settings where the placement of the gap and the initial position of the demonstrator is randomized. We terminate a training episode if the demonstrator has not passed the obstacle after 15 steps. + +# D.2 MAZE NAVIGATION + +The training setting in Maze Navigation is designed as shown in Figure 14a, where the placement of the tools is restrained in the purple region, and the positions of the demonstrator’s starting point and the doors are fixed. For testing, we randomly put one or two doors to fill the gaps; the demonstrator + +![](images/7e7f142e00277a702495ff544dfc962f5c601cf88c03a1f6483f2f64ce64d982.jpg) +Figure 14: The training setting and examples of testing settings for Maze Navigation. + +and the tools can be randomly placed in the purple region. The demonstrator is always guaranteed to be able to find a path from its starting point to the destination (the top-left room). A training episode has a time limit of 60 steps. + +# D.3 CONSTRUCTION + +![](images/16b7b3aa92dee0ccd1525db6154d8b34c50807af6f08c7694f6469a3309c6d55.jpg) +Figure 15: The training setting and examples of testing settings for Construction. + +The room layout in training setting is fixed and shown in Figure 15a. In testing settings, we randomly put six wall blocks around the three colored blocks to create obstacles. Figure 15b displays a few examples of testing scenarios. Note that in both training and testing, we allow randomized coloring as long as the goal can be achieved. + +For each episode, we assign a random goal (a pair of colors) for the demonstrator. The maximum episode length is 30 steps during training. + +# D.4 SORTING + +# Algorithm 3 Modified Bubble Sort + +Input: Initial array $X = [ x _ { 1 } , x _ { 2 } , \cdot \cdot \cdot , x _ { n } ]$ , where $_ n$ is the length. +Output: Sorted array +1: Last position $i \gets 0$ +2: Steps $t \gets 0$ +3: while $X$ is not in an ascending order do +4: $c \gets 0$ +5: while $c < n - 1$ do +6: if $x _ { i } > x _ { i + 1 }$ then +7: Swap $x _ { i }$ and $x _ { i + 1 }$ , i.e., the demonstrator’s $t$ -th action is $( i , i + 1 )$ +8: $t \gets \bar { t } + 1$ +9: break +10: end if +11: $\begin{array} { l } { c c + 1 } \\ { i ( i + 1 ) \% ( n - 1 ) } \end{array}$ +12: +13: end while +14: end while + +In training, there is only one sequence as the initial state, i.e., [2, 0, 5, 12, 14, 10, 3, 11, 9, 7]. The testing settings include 100 randomly generated initial sequences. Training episodes have a 30-step time limit. + +Since the learner may change certain numbers during the process of sorting, the original bubble sort may fail to finish the sorting successfully since it will not look back at the sorted part of the array. To address this, we modify the original bubble sort algorithm so that it will continue to sort the sequence until it is in an ascending order. Algorithm 3 outlines how the demonstrator swaps the numbers. + +# E DETAILS OF BASELINES + +# E.1 REWARD FUNCTIONS IN BASELINES + +We define the reward functions used for baselines, count-based reward and self-supervised prediction here. + +# Count-based reward: + +$$ +r ^ { t } = R ( s _ { d } ^ { t } ) = \frac { \beta } { \sqrt { N ( s _ { d } ^ { t } ) } } , +$$ + +where $\beta$ is a constant (we set $\beta = 1$ , which gives the best results in our experiments), and $N ( s _ { d } ^ { t } )$ is the counts of state visitation. In our experiments, the counting can be efficiently implemented by hashing. This reward encourages the learner to push the demonstrator to new states in order to incite new demonstrations. + +# Self-supervised prediction: + +$$ +\begin{array} { r } { r ^ { t } = R ( s _ { d } ^ { t } , m ^ { t - 1 } , a _ { d } ^ { t } ) = - \log \pi _ { d } ( a _ { d } ^ { t } | s _ { d } ^ { t } , m ^ { t - 1 } ) , } \end{array} +$$ + +where $a _ { d } ^ { t }$ is the ground-truth action from the demonstrator. This reward essentially measures action prediction loss of the estimated demonstrator’s policy, which is designed to encourage the learner to find new scenarios where the previously learned demonstrator’s policy becomes less accurate. + +E.2 NETWORK ARCHITECTURE OF THE 2-LSTM BASELINE + +![](images/4d94346a5d39928d4bc7f89cf3ad6b330ebd1c289bd68248bddb18577350c585.jpg) +Figure 16: The network architecture of the 2-LSTM baseline. + +Figure 16 illustrates the network architecture of the 2-LSTM baseline, where two LSTMs all have 128 hidden units. \ No newline at end of file diff --git a/parse/train/SJl98sR5tX/SJl98sR5tX_content_list.json b/parse/train/SJl98sR5tX/SJl98sR5tX_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..13ac3cc34c89485e6eb4cd9c5217fad5f88aa417 --- /dev/null +++ b/parse/train/SJl98sR5tX/SJl98sR5tX_content_list.json @@ -0,0 +1,2045 @@ +[ + { + "type": "text", + "text": "INTERACTIVE AGENT MODELING BY LEARNING TOPROBE", + "text_level": 1, + "bbox": [ + 176, + 99, + 823, + 145 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 183, + 170, + 398, + 196 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 233, + 544, + 248 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The ability of modeling the other agents, such as understanding their intentions and skills, is essential to an agent’s interactions with other agents. Conventional agent modeling relies on passive observation from demonstrations. In this work, we propose an interactive agent modeling scheme enabled by encouraging an agent to learn to probe. In particular, the probing agent (i.e., a learner) learns to interact with the environment and with a target agent (i.e., a demonstrator) to maximize the change in the observed behaviors of that agent. Through probing, rich behaviors can be observed and are used for enhancing the agent modeling to learn a more accurate mind model of the target agent. Our framework consists of two learning processes: i) imitation learning for an approximated agent model and ii) pure curiosity-driven reinforcement learning for an efficient probing policy to discover new behaviors that otherwise can not be observed. We have validated our approach in four different tasks. The experimental results suggest that the agent model learned by our approach i) generalizes better in novel scenarios than the ones learned by passive observation, random probing, and other curiositydriven approaches do, and ii) can be used for enhancing performance in multiple applications including distilling optimal planning to a policy net, collaboration, and competition. A video demo is available at https://www.dropbox.com/ s/8mz6rd3349tso67/Probing_Demo.mov?dl $= 0$ . ", + "bbox": [ + 233, + 263, + 766, + 517 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 178, + 544, + 336, + 560 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "An accurate understanding of other agents is essential to many multi-agent problems, such as collaboration, competition, and learning from an expert agent. Humans achieve this not only by passively observing others’ behaviors, but also by actively probing others including interacting with them or changing the environment and conditions so that they can understand others’ intentions, skills, and capabilities better. For instance, when working with a colleague for the first time, one may intentionally create diverse situations where the true intention and skill set of that colleague can be clearly revealed, which in turn helps improve the collaboration. ", + "bbox": [ + 174, + 575, + 825, + 669 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Inspired by this observation, in this work, we try to enable a probing agent (i.e., a learner) to automatically learn a good policy for probing in a way that helps it discover new behaviors of a target agent (i.e., a demonstrator) and thus learn a better model of the target agent that is generalizable to unseen environments or settings. Different from common task-oriented policy training, the learning of our probing policy is purely driven by the motivation of maximizing the knowledge about the target agent’s model. We show a simple case in Figure 1 to illustrate this idea, where the learner and the demonstrator are initially located in the upper part and the lower part of the room respectively. The true policy of the demonstrator is trying to go to the upper part by finding the shortest path. However, since the room layout is fixed, the learner may overfit the only path observed from the demonstrator. By actively creating new gaps, the learner is able to discover various paths, which will greatly improve the accuracy of the approximated model of the demonstrator. ", + "bbox": [ + 174, + 676, + 825, + 823 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We consider the following setting for probing-based interactive agent modeling. In an environment, there are two general types of agents: i) a demonstrator who possesses certain skills for a single task or multiple tasks, and ii) a learner who has no prior knowledge of the environment and the demonstrator’s skills. The purpose of the learner is to efficiently and thoroughly learn all of the demonstrator’s skills and goals by not only passively watching the demonstrations but also actively interacting with the environment and/or the demonstrator. This learning process entails both imitation learning (IL) for modeling the demonstrator’s skills and goals, and reinforcement learning (RL) ", + "bbox": [ + 174, + 829, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/3c1afb04daa88192307507702776c69b03f1854302bfa148df1e924a35747df7.jpg", + "image_caption": [ + "Figure 1: Illustration of our probing-based interactive agent modeling. Here, the demonstrator tries to go from the bottom-right corner to the upper part of the room. The passive learner (left) only observes one path in the fixed environment while the probing learner (right) removes a wall block to create a new gap so that the demonstrator will change its path accordingly. " + ], + "image_footnote": [], + "bbox": [ + 269, + 99, + 727, + 185 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "for optimizing probing policy to diversify the task settings and the demonstrations to facilitate the imitation learning. Note that we assume that the demonstrator will always truthfully reveal its skills and intentions in any scenarios. ", + "bbox": [ + 174, + 276, + 821, + 318 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "A key idea in our approach is to use task independent RL training purely driven by a curiosity reward. For this, we represent the demonstrator’s mind by i) a latent vector to encode and track an agent’s intention and belief, and ii) a policy conditioned on the latent vector and the agent’s observed state for action prediction (i.e., the agent’s skills). By introducing this latent vector, we are able to characterize an agent’s policy by a low dimensional representation, and to reflect the change of policy by the change of this latent vector. Since the goal of probing policy is to cause the demonstrator to change its policy so that the learner may observe diverse demonstrations, it is natural to apply the change in the latent mind representation as the curiosity-driven incentive for the learner. ", + "bbox": [ + 174, + 324, + 825, + 433 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We evaluate our approach on four tasks in different domains (grid worlds and algorithmic problems). The experimental results indicate that our probing-based interactive agent modeling framework can: i) efficiently model the demonstrator’s mind that is generalizable in unseen scenarios, and ii) can be applied to several applications including distilling optimal plans to a policy net by automatically diversifying task settings, and improving multi-agent collaboration as well as competition using the learned agent model. ", + "bbox": [ + 174, + 439, + 825, + 518 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 539, + 344, + 554 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In multi-agent reinforcement learning (MARL), agent modeling or opponent modeling plays an essential role as the ability of understanding other agent’s goals and predicting their actions can greatly facilitate both collaborative and competitive purposes (Busoniu et al., 2008; Albrecht & Stone, 2018). Previous work has attempted to achieve this by task-oriented learning for maximizing a specified collaborative or competitive reward in the given tasks. For instance, inspired by game theory, there have been approaches aiming at finding Nash equilibira in multi-agent games, where agents’ models are represented by their utilities (Littman, 1994; Hu & Wellman, 2003) and strategies (Claus & Boutilier, 1998; Tesauro, 2004; Powers & Shoham, 2005; Heinrich et al., 2015; Heinrich & Silver, 2016; Lanctot et al., 2017). Recently, some deep RL methods have incorporated simple agent modeling into Q-learning (Lowe et al., 2017) or policy updates (Foerster et al., 2018). Auxiliary tasks like explicitly predicting other agents’ goals have also been applied to MARL (Mordatch & Abbeel, 2018). In previous work, the agents’ incentive of modeling other agents comes from reaching a common goal or conflicting goals. In contrast, we never define a task-specific reward for the learner since the goal of our probing-based interactive agent modeling is not to reach a predefined goal but rather to learn a good mind model of the demonstrator which can be generalized to unseen settings and transferred to multi-agent tasks afterwards when a task-dependent reward is given. ", + "bbox": [ + 174, + 569, + 825, + 784 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our work is greatly inspired by Theory of Mind (ToM) (Premack & Woodruff, 1978), which is a general and powerful framework to model an agent’s mind and use the mind model to better explain or predict the agent’s behaviors. Baker et al. (2009) has proposed a Bayesian formulation to incorporate an agent’s desires, intentions, and belief about the world into the agent’s policy in order to predict the agent’s goals and actions via inverse planning. Rabinowitz et al. (2018) adopts a simpler mind representation (i.e., a latent vector) learned by a neural net (ToMnet). In our work, the learner is also trying to learn the policy of the demonstrator with a simple mind modeling. However, instead of only serving as a passive observer, we encourage the learner to probe so that it will learn to interact with the environment and with the demonstrator to quickly and continuously discover new behaviors of the demonstrator, which in turn helps learning a better mind model. ", + "bbox": [ + 174, + 789, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/84aa49337f3c7c08fcf23511a43c0078a3fcfdc51c45b78d41146d298740de5e.jpg", + "image_caption": [ + "Figure 2: An overview of our model. Architecture details are in Appendix C. Note that the modules do not share weights, and the dashed line indicates that it is a feed forward only path (no back propagation through this path to update the mind model). " + ], + "image_footnote": [], + "bbox": [ + 336, + 101, + 660, + 306 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Our task-independent reward is related to the curiosity-driven reward applied to an RL agent for encouraging exploration (Strehl & Littman, 2008; Bellemare et al., 2016; Tang et al., 2017; Pathak et al., 2017). Our probing framework differs from this in two ways: i) instead of exploring the world states, we encourage the learner to discover new behaviors of the demonstrator to learn a better model of its mind; ii) the curiosity-driven rewards in previous work only serve as auxiliary rewards for achieving specific goals, whereas in our case, the sole motivation of our learner agent is from curiosity, and we demonstrate that this type of pure curiosity-driven learning can actually yield rich behaviors and general agent modeling. ", + "bbox": [ + 174, + 385, + 825, + 492 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "There is certain similarity between active learning and our learning to prob mechanism. As Yang & Shafto (2017) shows, active learning is more effective than optimal teaching when the learner and teacher are not conceptually aligned, which is exactly the scenario in our problem setting (the learner does do not share any conceptual common ground with the demonstrator at the beginning). However, active learning typically addresses problems such as classification (Tong & Koller, 2001; Kapoor et al., 2007) by generating queries to an oracle to get additional ground-truth supervision. There are have been work on active imitation learning (Shon et al., 2007; nd Geoffrey J. Gordon & Bagnell, 2011; Judah et al., 2012) and active inverse reinforcement learning (Lopes et al., 2009) utilizing the similar concept, where the learner asks quires at certain states to a human oracle for guidance on what actions to take at those states. In contrast, our work goes beyond the scope of the existing work on active learning – we aim at training a learner agent to directly interact with the environment and with the target agent in order to automatically diversify the task settings and learn a better agent model without any task-dependent training objectives so that the learned agent models can be applied to improve the learner’s performance in various applications. ", + "bbox": [ + 174, + 500, + 825, + 686 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Lastly, our task-independent learning objective can also be connected with meta-learning (Wang et al., 2016; Finn et al., 2017), which is to learn a meta strategy that can conduct efficient multi-task learning (Maclaurin et al., 2015; Duan et al., 2017; Hariharan & Girshick, 2017; Wichrowska et al., 2017; Yu et al., 2018; Baker et al., 2017) or adapt an agent’s policy to its opponent’s policy (Al-Shedivat et al., 2018) in a competitive setting. In this work, the purpose of our task-independent learning is to learn to probe a demonstrator for a better modeling of its mind, which is different from existing meta-learning approaches. ", + "bbox": [ + 174, + 693, + 825, + 786 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 APPROACH", + "text_level": 1, + "bbox": [ + 176, + 808, + 297, + 824 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 MODEL ", + "text_level": 1, + "bbox": [ + 174, + 840, + 267, + 854 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We assume a Markov Decision Process (MDP) framework for both the demonstrator and the learner, where their behaviors at time $t$ are denoted by a pair of state and action $( s _ { d } ^ { t } , a _ { d } ^ { t } )$ and $( s _ { l } ^ { t } , a _ { l } ^ { t } )$ respectively. The history of their behaviors upon time $t$ is represented by trajectories $\\Gamma _ { d } ^ { \\acute { t } } = \\big \\{ ( s _ { d } ^ { \\tau } , a _ { d } ^ { \\tau } ) : \\tau = 1 , \\cdot \\cdot \\cdot , t \\big \\}$ and $\\Gamma _ { l } ^ { t } = \\{ ( s _ { l } ^ { \\tau } , a _ { l } ^ { \\tau } ) : \\tau = 1 , \\cdot \\cdot \\cdot , t \\}$ respectively. ", + "bbox": [ + 174, + 866, + 823, + 925 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Our interactive agent modeling framework is illustrated in Figure 2, which consists of two parts: i) learner’s estimation of the demonstrator’s model and ii) the learner’s probing policy for a better understanding of the demonstrator’s model. ", + "bbox": [ + 176, + 103, + 823, + 145 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To estimate the demonstrator’s model, the learner maintains a behavior tracker, $\\mathcal { M } ( \\cdot )$ , to encode the observed trajectory of the demonstrator, which generates a latent vector, $m ^ { t } = \\mathcal { M } ( \\Gamma _ { d } ^ { t } )$ . This latent vector can be viewed as a simplified representation of the demonstrator’s mind upon time $t$ , hence the learner may use it to characterize the demonstrator’s policy, $\\pi _ { d } ( a _ { d } ^ { t } \\vert s _ { d } ^ { t } , m ^ { t - 1 } )$ , from which the learner may predict the demonstrator’s future action $\\hat { a } _ { d } ^ { t }$ . Note that for each demonstration, $m ^ { t }$ always starts from the same constant, ${ \\bf m } ^ { 0 } = { \\bf 0 }$ . This particular definition of the demonstrator’s policy may also be connected with the option framework in hierarchical RL (Sutton et al., 1999), where the behavior tracker serves as a global policy to update the temporal abstraction $m ^ { t }$ and consequently changes the local policy $\\pi _ { d }$ . ", + "bbox": [ + 173, + 150, + 825, + 276 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In this work, we require a learner to interact with the environment and/or with the demonstrator instead of passively watching the demonstrations. We enable this by learning a probing policy for the learner, $\\pi _ { l } ( a _ { l } ^ { t } | \\dot { s _ { l } ^ { t } } , m ^ { t - 1 } )$ , where $m ^ { t - 1 }$ is from the current demonstration. The main purpose of the probing policy is to incite new behaviors of the demonstrator, thus we adopt a curiosity-driven reward to train this policy. Particularly, we define the reward function as ", + "bbox": [ + 173, + 281, + 825, + 349 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/270c26407b519468f6d4c4f996271ccacc00ce109eade27476175f74f1122f82.jpg", + "text": "$$\n\\begin{array} { r } { r ^ { t } = R ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } , m ^ { t } ) = | | m ^ { t } - m ^ { t - 1 } | | ^ { 2 } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 349, + 356, + 647, + 375 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $m ^ { t }$ is the successive output of the behavior tracker after observing $( s _ { d } ^ { t } , a _ { d } ^ { t } )$ . ", + "bbox": [ + 176, + 381, + 710, + 396 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Finally, based on the probing policy, the learner can perform the probing as the rollout procedure outlined in Algorithm 1 (see Appendix A). ", + "bbox": [ + 173, + 401, + 821, + 430 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In summary, there are four key components in our probing-based interactive agent modeling: ", + "bbox": [ + 171, + 435, + 781, + 450 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "• A behavior tracker $\\mathcal { M } ( \\Gamma _ { d } ^ { t } ; \\theta _ { M } )$ ; \n• The approximated demonstrator’s policy $\\pi _ { d } ( a _ { d } ^ { t } \\vert s _ { d } ^ { t } , m ^ { t - 1 } ; \\theta _ { d } )$ ; \n• A probing policy for the learner $\\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { l } )$ ; \n• A value function for the probing policy $V ( s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { V } )$ . ", + "bbox": [ + 215, + 460, + 640, + 539 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Please refer to Appendix C for the details of the network architecture. ", + "bbox": [ + 174, + 547, + 630, + 564 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 LEARNING ", + "text_level": 1, + "bbox": [ + 174, + 579, + 290, + 594 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "As discussed above, we have two main learning objectives corresponding to the two parts in our model respectively: i) minimizing imitation error (i.e., cross-entropy loss for action prediction) and ii) maximizing accumulated probing reward (i.e., probing policy optimization). Consequently, our approach includes an imitation learning process for recovering demonstrator’s policy and a reinforcement learning process for optimizing the probing policy. These two processes are intertwined and influenced by each other: the IL process provides the behavior tracker guiding the probing policy while the RL process helps $\\mathrm { I L }$ to observe more diverse behaviors from the demonstrator, thus enabling an interactive learning scheme. Algorithm 2 in Appendix A summarizes the overall learning approach, where $N$ is the total number of training iterations. The optimization details for the two learning processes are introduced as follows. ", + "bbox": [ + 173, + 604, + 826, + 739 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2.1 IMITATION LEARNING ", + "text_level": 1, + "bbox": [ + 174, + 755, + 383, + 768 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For $\\mathrm { I L }$ , we want to learn a good behavior tracker as well as the demonstrator’s policy. For this, we minimize a cross-entropy loss for predicting demonstrator’s actions: ", + "bbox": [ + 173, + 779, + 823, + 806 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/b59c9a697f4aa739947d7d41b2f555f240ff19973d0ea14bac94c86cbc450414.jpg", + "text": "$$\n\\mathcal { L } ( \\theta _ { M } , \\theta _ { d } ) = \\mathbb { E } \\left[ - \\log \\pi _ { d } ( a _ { d } ^ { t } | s _ { d } ^ { t } , m ^ { t - 1 } ) \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 361, + 813, + 635, + 833 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2.2 REINFORCEMENT LEARNING ", + "text_level": 1, + "bbox": [ + 176, + 844, + 429, + 859 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The goal of RL is to train a good probing policy that will maximize the change of behavior and/or discover new behaviors of the demonstrator to facilitate the imitation learning. Based on the reward $\\begin{array} { r } { \\mathbb { E } \\left[ \\sum _ { \\tau = 0 } ^ { \\infty } \\gamma ^ { \\tau } r ^ { t + \\tau } \\right] } \\end{array}$ n Eq. (, where $\\gamma$ this goal is equivalent to maximizing the accumulated reward, is the discounted factor. $J ( \\theta _ { l } ) =$ ", + "bbox": [ + 174, + 869, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For the policy optimization, we use Advantage Actor-Critic (A2C) (Mnih et al., 2016) to conduct on-policy training. The policy gradient is ", + "bbox": [ + 173, + 103, + 825, + 132 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/94dedab7ea514b04f933d7460cb599c35bc4b9c5d7f1fb734fbed77af46661d2.jpg", + "text": "$$\n\\nabla _ { \\theta _ { l } } J ( \\theta _ { l } ) = \\nabla _ { \\theta _ { l } } \\left[ \\log \\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { l } ) A ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } ) + \\lambda \\mathcal { H } ( \\pi _ { l } ( \\cdot | s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { l } ) ) \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 220, + 137, + 776, + 157 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $A ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } )$ is the advantage estimation defined as $\\begin{array} { r } { A ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } ) = \\sum _ { \\tau = 0 } ^ { \\infty } \\gamma ^ { \\tau } r ^ { t + \\tau } \\ - } \\end{array}$ $V ( s _ { l } ^ { t } , m ^ { t - 1 } )$ and $\\mathcal { H } ( \\cdot )$ is the entropy regularization weighted by the constant $\\lambda = 0 . 0 1$ for encouraging exploration. The value function is updated by the following gradient: ", + "bbox": [ + 173, + 165, + 826, + 209 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/3e55479b0119c52ec1c9bebaff1d83382c9c087a98b80f79ba2c1efc6e84f2ff.jpg", + "text": "$$\n\\nabla _ { \\theta _ { V } } \\frac { 1 } { 2 } \\left( \\sum _ { \\tau = 0 } ^ { \\infty } \\gamma ^ { \\tau } r ^ { t + \\tau } - V ( s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { V } ) \\right) ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 351, + 215, + 647, + 261 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Note that when we update the probing policy and the value function, the behavior tracker is fixed (i.e., no back propagation through the dashed path in Figure 2). Thus $\\theta _ { M }$ will only be updated by the IL loss in Eq. (2). This is to ensure that the change of $\\mathrm { \\Sigma } _ { m } \\bar { t }$ is only caused by the change in policy or in behaviors, and not by the change of the parameters of the mind model, $\\theta _ { M }$ . ", + "bbox": [ + 173, + 275, + 825, + 329 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 174, + 348, + 326, + 364 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To evaluate our approach, we introduce four tasks as shown in Figure 3, including three grid world tasks (passing through obstacles, maze navigation, construction) and an algorithmic problem (sorting). ", + "bbox": [ + 174, + 378, + 825, + 407 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In order to test the generalization ability of the learned agent model, we adopt a strict training procedure, where only one particular environment and task design is given during training. Specially, for grid world tasks, we fix the environment layout and/or item placement in each demonstration, whereas for the sorting task, we use the exact same input array throughout the training. At testing time, we randomize the task settings to an extent to create novel environments/inputs that have never been seen during training. We provide the specific settings in Section 4.1. ", + "bbox": [ + 174, + 414, + 825, + 494 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We implement rule-based policies for the demonstrator i) by searching the best plan from the initial state to the goal state for the grid world tasks or ii) by the bubble sort algorithm for sorting. When there is no possible path to reach the goal (e.g., blocked by the learner), the demonstrator will stop until a viable path appears. ", + "bbox": [ + 174, + 501, + 825, + 556 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.1 TASKS ", + "text_level": 1, + "bbox": [ + 174, + 571, + 261, + 585 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/3b9d1a1dd367e5002b7172940644e658adf68fc36a8b0e845a272a5d536c86d3.jpg", + "image_caption": [ + "Figure 3: Illustration of the evaluated tasks. " + ], + "image_footnote": [], + "bbox": [ + 205, + 601, + 794, + 688 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Passing. In this task modified from Baker et al. (2009), the demonstrator is initially located at the bottom-right corner and is trying to pass through the closest gap to get into the upper part of the room. The demonstrator can take 5 actions including moving in four directions and stopping, whereas the learner can move in four directions, stop, and also pickup or put down a wall block. The training environment is shown in Figure 3, where the gap is always located at the left end of the wall in the middle. In testing cases, we randomly place the location of the gap and the initial position of the demonstrator. ", + "bbox": [ + 173, + 728, + 825, + 823 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Maze Navigation. Inspired by similar tasks in recent literature (Andreas et al., 2017), we place a few door blocks and tools (a key and a hammer) in a four-room maze, where the key can be used to open the yellow door but has no effect on the blue door, which must be broken by the hammer. The demonstrator is trying to go from the top-right room to the top-left room. The two agents share the same action space including moving in four directions, picking up an item, and putting down an item. Also, they can only carry one item at a time. In the training setting, the initial positions of both agents and the door blocks are fixed as shown in Figure 3, whereas the tools may be randomly placed at only a few locations. The rules in this environment are in fact fairly complex compared to other grid world tasks in previous work, where multiple sub-goals such as getting the tools, getting the door blocks, placing the door blocks, and walking through the doors are involved. ", + "bbox": [ + 173, + 829, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 823, + 145 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Construction. We adapt the stacking tasks in Shu et al. (2018) into a grid world, where the demonstrator has a latent goal invisible to the learner, which is to construct a new block by putting two blocks with a specific color combination together. Three items are present in a room and they are assigned with different colors randomly. In each episode, the demonstrator is randomly assigned with a goal (i.e., a pair of colors). It then seeks the needed blocks and puts one of them beside the other one. In order to predict the demonstrator’s actions precisely, the learner must infer the correct goal first, which requires a sophisticated and dynamic agent modeling. Both agents share the same action space as in Maze Navigation. In training, there are no obstacles in the room. To increase the difficulty of goal inference, in testing scenarios, we randomly place a few wall blocks as obstacles around the colored blocks. ", + "bbox": [ + 174, + 150, + 825, + 285 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Sorting. Compared to a grid world, algorithmic problems are less visually informative and entail more abstract reasoning. For this, we design a sorting task where an array with certain length is given at the beginning. In our experiments, we set the length to be 10 and restrain the size of numbers in the array to be 4 bits (i.e., from 0 to 15). The demonstrator is able to perform a bubble sort algorithm to rearrange the input array in an ascending order. Its action at each step is to select a pair of numbers to swap. For every 5 steps done by the demonstrator, the learner can select a number and flipping one of the bit of that number. Both agents can choose to do nothing for a step. During training, we only provide one constant array so that the sorting always starts from the same initial array. This is a very challenging setting as only 10 out of 16 possible numbers are present in the training example and the fixed ordering may also easily cause overfitting. For testing, we generate random arrays as inputs. ", + "bbox": [ + 173, + 291, + 825, + 425 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For more details about the task settings, please refer to Appendix D. ", + "bbox": [ + 174, + 433, + 619, + 446 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.2 GENERALIZATION IN UNSEEN TASK SETTINGS ", + "text_level": 1, + "bbox": [ + 174, + 463, + 539, + 477 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/1871cb7eec22fea8ea3cee03fbce6bab4a89e5ce0e304bc11a26ace233854a63.jpg", + "image_caption": [ + "Figure 4: Action prediction accuracies in novel testing settings over numbers of training iterations. " + ], + "image_footnote": [], + "bbox": [ + 173, + 492, + 823, + 631 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/013eb5aa25e3450135a48626efaa1b683544a12479c08644269d9f5f88ec7693.jpg", + "image_caption": [ + "Figure 5: Action prediction accuracies in novel testing settings over numbers of training iterations with $10 \\%$ random actions. " + ], + "image_footnote": [], + "bbox": [ + 254, + 678, + 743, + 813 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "One of the main goals of learning to probe is to learn a good agent model that can be generalized to unseen scenarios. To evaluate how accurate our agent model is for approximating the true mind of the demonstrator, we may test the accuracy of predicting the demonstrator’s actions using the learned $\\pi _ { d }$ and behavior tracker $\\mathcal { M } ( \\cdot )$ in testing task settings unseen by the learner during training. A high ", + "bbox": [ + 174, + 869, + 825, + 924 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "prediction accuracy in unseen settings will indicate good generalization of the learned agent model. \nTo eliminate the effects from probing, we remove the learner from the environment during testing. ", + "bbox": [ + 173, + 103, + 823, + 131 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We compare our model with six baselines: i) ToMnet in Rabinowitz et al. (2018), which learns the demonstrator’s model by only observing the given demonstrations without interactions, ii) our model without training the probing policy using RL (i.e., the leaner always takes random actions), iii), ours without the attention-based fusion (concatenating state feature and $m ^ { t - 1 }$ instead), iv) using two LSTMs for the estimated demonstrator’s policy and the probing policy respectively (Figure 16), v) using count-based bonus as reward (Strehl & Littman, 2008; Bellemare et al., 2016; Tang et al., 2017), and vi) using cross-entropy loss for action prediction as reward (i.e., exploration by self-supervised prediction in Pathak et al. (2017)). To ensure fair comparison, the training settings and the testing settings are shared by all methods. We provide more details of the baselines in Appendix E. ", + "bbox": [ + 174, + 137, + 825, + 258 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Figure 4 shows the predication accuracy in testing settings of the three approaches based on the models from different training iterations. It is clear that with more iterations, our probing policy can greatly help increase the accuracy by discovering new behaviors, and consequently yields much higher testing accuracy than the baselines do. The results of “ours w/o fusion” and “2-LSTM” baselines further demonstrates the importance of our attention-based fusion layer and the use of a separate behavior tracker. By randomizing $10 \\%$ of demonstrator’s actions (Figure 5), we show that the probing policy can also handle stochastic and sub-optimal policies. It can be clearly seen from the results that the performance of the two baselines based on different curiosity rewards is clearly inferior to ours, which demonstrates the advantage of defining the behavioral change as the intrinsic reward for the purpose of agent modeling. We have also evaluated the robustness of our approach by showing the standard deviation from multiple runs as shown in Figure 9, which demonstrates a reasonably low variance across multiple runs. ", + "bbox": [ + 174, + 265, + 825, + 425 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We demonstrate the effect of dimensionality of the latent vector $m ^ { t }$ (i.e., the complexity of the agent model) in Figure 4. In simple environments, our approach still outperforms the baselines even when the dimensionality is decreased from 8 to 2 or 4. In more complex tasks like Sorting, a higher dimension is necessary for the agent modeling. ", + "bbox": [ + 176, + 431, + 825, + 486 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.3 EVOLUTION OF LEARNED PROBING STRATEGY ", + "text_level": 1, + "bbox": [ + 174, + 502, + 540, + 516 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "As training progresses, we observe that our probing policy is able to progressively discover new behaviors through interactions that are adapted to the demonstrator’s policy. For instance, in Maze Navigation, we find that the learner first learns to place one door, then gradually learns to place two doors at the appropriate moments to force the demonstrator to go back and forth to get the needed tools for opening the doors. Finally, the probing policy will even blocks the demonstrator for a while before it goes through the last door. Due to the space limit, we show this in the demo video. ", + "bbox": [ + 174, + 527, + 825, + 608 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We also provide more analysis and visualization of the probing behavior and the resulting latent vectors in Appendix B.2 and Appendix B.3. ", + "bbox": [ + 176, + 614, + 821, + 642 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.4 EMERGENCE OF OBSTRUCTIVE BEHAVIORS FROM PROBING ", + "text_level": 1, + "bbox": [ + 176, + 657, + 629, + 671 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Although we never explicitly set an adversarial goal for the learner, we do observe a natural emergence of obstructive behaviors caused by the probing, which can be quantitatively measured by the success rate of the demonstrator within a time limit as shown in Figure 6. This phenomenon is aligned with common sense that the optimal probing policy to discover new behaviors of the demonstrator should constantly force the demonstrator to change its plan, which will eventually delay the time when the demonstrator finishes the task. Because of the reward defined in Eq. (1), the probing policy learned from RL is also maximizing the accumulated behavioral change of the demonstrator just like the common sense. This further justifies our simple yet effective reward design. ", + "bbox": [ + 174, + 683, + 825, + 790 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/f79f849d4628693a408ffe9f369a47a5064b5907c7894cb647ef97d04aad2d23.jpg", + "image_caption": [ + "Figure 6: The average success rate of the demonstrator within the given time limit. " + ], + "image_footnote": [], + "bbox": [ + 200, + 801, + 789, + 896 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/22c56a09143e8dc063fbd0fed96feb71578073b1b84e64124f4c3a82addce74e.jpg", + "image_caption": [ + "Figure 7: The learning curves of the collaborative task (reward is rescaled). " + ], + "image_footnote": [], + "bbox": [ + 254, + 104, + 470, + 217 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/b2076ef0ebd4994b1be4f0abf9861f2baf22ffd6fcc9e875892dea55ad60f109.jpg", + "image_caption": [ + "Figure 8: The learning curves of the competitive task (reward is rescaled). " + ], + "image_footnote": [], + "bbox": [ + 526, + 106, + 741, + 215 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.5 APPLICATION 1: DISTILLING OPTIMAL PLANS TO A POLICY NET ", + "bbox": [ + 174, + 285, + 666, + 299 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/025ab377f9282f75bdab2cdf094ee9670458eb994c66192879d47898c2ec9c32.jpg", + "table_caption": [ + "Table 1: Success rates using the learned demonstrator’s policy in unseen tasking settings. Unless specified, the evaluated policies were learned from demonstrations without random actions. " + ], + "table_footnote": [], + "table_body": "
MethodPassingMaze NavigationConstructionSorting
Ours0.710.600.480.82
Ours (from sub-optimal demo)0.680.510.47N/A
Ours w/o RL0.130.310.230.80
Ours w/o fusion0.110.190.290.10
Ours (2-LSTM)0.170.020.170
Passive (ToMnet)0.1100.120
Count-based0.2200.310.39
Self-supervised0.2300.360.56
", + "bbox": [ + 199, + 363, + 797, + 500 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Optimal planning sometimes requires a long computational time. For acceleration, it is common to distill the optimal plans to a policy net (Lazaric et al., 2010; Guo et al., 2014). However, the distilled policy net may not generalize well in new scenarios if the training settings are not diverse enough. Thus, the nature of our approach makes it suitable for improving the generalization without manually designing a large number of diverse settings. ", + "bbox": [ + 174, + 522, + 825, + 589 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "For this, we evaluate the success rates when the learner directly uses $\\pi _ { d }$ (with an 8-dim latent vector) to perform tasks in testing settings without finetuning. The results summarized in Table 1 are consistent with the findings based on action predictions. We have also tested the success rate of the policy learned from sub-optimal demonstrations with $10 \\%$ random actions. Its performance is comparable to the one learned from perfect demonstrations by our approach. It also outperforms the baselines trained from optimal demonstrations. We didn’t test the randomized demonstrations for Sorting as it is unnecessary to randomize bubble sort algorithm. Note that since the learner is unaware of the goal in Construction, we let the learner take over the task after the first block has been picked up. ", + "bbox": [ + 173, + 595, + 825, + 717 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.6 APPLICATION 2: COLLABORATION ", + "text_level": 1, + "bbox": [ + 176, + 741, + 454, + 755 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To test whether the improved agent modeling by learning a probing policy can facilitate multi-agent collaboration, we modify the Construction task to be a collaborative task, where the learner is trying to help the demonstrator (fixed policy) to finish the task. For every step the demonstrator takes, the learner will get a $- 0 . 0 5$ penalty. When the goal is reached, it will be given a reward of 1. This setting is difficult for training a collaborative policy since the demonstrator is capable of finishing the task by itself. In order to help finish the task faster, the learner must infer the true goal of the demonstrator quickly and shares part of the labor accordingly. ", + "bbox": [ + 173, + 768, + 825, + 863 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We fix the behavior tracker module, $\\mathcal { M } ( \\cdot )$ , trained from our interactive agent modeling and retrain the learner’s policy $\\pi _ { l }$ using the task reward defined above. For comparison, we implement two baselines: i) retraining $\\pi _ { l }$ based on $\\mathcal { M }$ learned from passive agent modeling (i.e., ToMnet) and ii) training a policy without agent modeling, i.e., $\\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , s _ { d } ^ { t } )$ . ", + "bbox": [ + 174, + 869, + 825, + 925 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Figure 7 demonstrates the learning curves, where the reward is rescaled so that the theoretical maximum reward from a perfect policy is 1. From the curves, we may see that the policy trained with our interactively learned agent model significantly outperforms both baselines. ", + "bbox": [ + 174, + 103, + 823, + 145 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4.7 APPLICATION 3: COMPETITION ", + "text_level": 1, + "bbox": [ + 176, + 161, + 431, + 175 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Similar to Section 4.6, we design a competitive task based on the Construction task, where the learner gets a 0.05 reward for every step and a -1.0 penalty if the opponent achieves its goal. We adopt the same training procedure as in Section 4.6, and also rescale the reward according to the maximum reward. As Figure 8 shows, the mind model learned by our approach improves the learning efficiency and the converged reward by a large margin. ", + "bbox": [ + 174, + 186, + 825, + 253 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 CONCLUSIONS ", + "text_level": 1, + "bbox": [ + 176, + 273, + 328, + 290 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this work, we have proposed a novel agent modeling approach, i.e., probing-based interactive agent modeling. The core idea is to learn a probing policy using only a curiosity-driven reward, which is able to discover new behaviors of the target agent. We achieve this by incorporating two learning processes $\\mathrm { I L }$ and RL) together. We are able to validate our approach in four distinct tasks. The results show that by learning a probing policy, the learner in our approach can build a more accurate agent model of the demonstrator. Thanks to this interactively learned agent model, the learner is able to i) approximate the demonstrator’s policy more accurately in unseen settings compared to passive agent modeling, ii) efficiently learn a good collaborative policy to help the demonstrator, and iii) develop an adversarial policy to compete with the demonstrator. ", + "bbox": [ + 174, + 304, + 825, + 425 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In the future, we can extend this framework to simultaneous agent modeling and world modeling with a more complex mind representation. ", + "bbox": [ + 174, + 431, + 821, + 459 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 479, + 285, + 494 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Maruan Al-Shedivat, Trapit Bansal, Yuri Burda, Ilya Sutskever, Igor Mordatch, and Pieter Abbeel. Continuous adaptation via meta-learning in nonstationary and competitive environments. In The Sixth International Conference on Learning Representations (ICLR), 2018. \nStefano V Albrecht and Peter Stone. Autonomous agents modelling other agents: A comprehensive survey and open problems. Artificial Intelligence, (258):66–95, 2018. \nJacob Andreas, Dan Klein, and Sergey Levine. Modular multitask reinforcement learning with policy sketches. In International Conference on Machine Learning (ICML), 2017. \nBowen Baker, Otkrist Gupta, Nikhil Naik, and Ramesh Raskar. Designing neural network architectures using reinforcement learning. In The Fifth International Conference on Learning Representations (ICLR), 2017. \nChris L Baker, Rebecca Saxe, and Joshua B Tenenbaum. Action understanding as inverse planning. Cognition, 113(3):329–349, 2009. \nMarc Bellemare, Sriram Srinivasan, Georg Ostrovski, Tom Schaul, David Saxton, and Remi Munos. Unifying count-based exploration and intrinsic motivation. In Advances in Neural Information Processing Systems (NIPS), pp. 1471–1479, 2016. \nLucian Busoniu, Robert Babuska, and Bart De Schutter. A comprehensive survey of multiagent reinforcement learning. IEEE Trans. Systems, Man, and Cybernetics, Part C, 38(2):156–172, 2008. \nDevendra Singh Chaplot, Kanthashree Mysore Sathyendra, Rama Kumar Pasumarthi, Dheeraj Rajagopal, and Ruslan Salakhutdinov. Gated-attention architectures for task-oriented language grounding. arXiv preprint arXiv:1706.0723, 2017. \nCaroline Claus and Craig Boutilier. The dynamics of reinforcement learning in cooperative multiagent systems. The Fifteenth National Conference on Artificial Intelligence (AAAI), 1998:746–752, 1998. \nYan Duan, Marcin Andrychowicz, Bradly Stadie, Jonathan Ho, Jonas Schneider, Ilya Sutskever, Pieter Abbeel, and Wojciech Zaremba. One-shot imitation learning. In Advances in neural information processing systems (NIPS), pp. 1087–1098, 2017. ", + "bbox": [ + 171, + 501, + 826, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model-agnostic meta-learning for fast adaptation of deep networks. In International Conference on Machine Learning (ICML), 2017. ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jakob N Foerster, Richard Y Chen, Maruan Al-Shedivat, Shimon Whiteson, Pieter Abbeel, and Igor Mordatch. Learning with opponent-learning awareness. In The 17th International Conference on Autonomous Agents and Multiagent Systems (AAMAS), 2018. ", + "bbox": [ + 176, + 140, + 821, + 181 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Xiaoxiao Guo, Satinder P. Singh, Honglak Lee, Richard L. Lewis, and Xiaoshi Wang. Deep learning for realtime atari game play using offline monte-carlo tree search planning. In Advances in Neural Information Processing Systems (NIPS), 2014. ", + "bbox": [ + 176, + 188, + 823, + 231 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Bharath Hariharan and Ross Girshick. Low-shot visual recognition by shrinking and hallucinating features. In IEEE International Conference on Computer Vision (ICCV), 2017. ", + "bbox": [ + 176, + 238, + 821, + 267 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Johannes Heinrich and David Silver. Deep reinforcement learning from self-play in imperfectinformation games. arXiv preprint arXiv:1603.01121, 2016. ", + "bbox": [ + 174, + 273, + 823, + 303 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Johannes Heinrich, Marc Lanctot, and David Silver. Fictitious self-play in extensive-form games. In International Conference on Machine Learning (ICML), pp. 805–813, 2015. ", + "bbox": [ + 176, + 310, + 823, + 339 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Junling Hu and Michael P Wellman. Nash q-learning for general-sum stochastic games. In The 15th International Conference on Machine Learning (ICML), pp. 242–250, 2003. ", + "bbox": [ + 174, + 345, + 821, + 376 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kshitij Judah, Alan Fern, and Thomas G. Dietterich. Active imitation learning via reduction to i.i.d. active learning. In The Conference on Uncertainty in Artificial Intelligence (UAI), 2012. ", + "bbox": [ + 174, + 382, + 823, + 411 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ashish Kapoor, Kristen Grauman, Raquel Urtasun, and Trevor Darrell. Active learning with gaussian processes for object categorization. In International Conference on Computer Vision (ICCV), 2007. ", + "bbox": [ + 173, + 417, + 825, + 446 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Marc Lanctot, Vinicius Zambaldi, Audrunas Gruslys, Angeliki Lazaridou, Julien Perolat, David Silver, Thore Graepel, et al. A unified game-theoretic approach to multiagent reinforcement learning. In Advances in Neural Information Processing Systems (NIPS), pp. 4193–4206, 2017. ", + "bbox": [ + 178, + 454, + 823, + 497 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alessandro Lazaric, Mohammad Ghavamzadeh, and Remi Munos. Analysis of a classification-based policy iteration algorithm. In International Conference on Machine Learning (ICML), 2010. ", + "bbox": [ + 173, + 503, + 823, + 534 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Michael L Littman. Markov games as a framework for multi-agent reinforcement learning. In The 11th International Conference on Machine Learning (ICML), pp. 157–163, 1994. ", + "bbox": [ + 171, + 540, + 823, + 569 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Manuel Lopes, Francisco Melo, and Luis Montesano. Active learning for reward estimation in inverse reinforcement learning. In Joint European Conference on Machine Learning and Knowledge Discovery in Databases, 2009. ", + "bbox": [ + 176, + 577, + 821, + 617 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ryan Lowe, Yi Wu, Aviv Tamar, Jean Harb, Pieter Abbeel, and Igor Mordatch. Multi-agent actor-critic for mixed cooperative-competitive environments. In Advances in Neural Information Processing Systems (NIPS, 2017. ", + "bbox": [ + 173, + 626, + 823, + 667 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dougal Maclaurin, David Duvenaud, and Ryan P. Adams. Gradient-based hyperparameter optimization through reversible learning. In International Conference on Machine Learning (ICML), 2015. ", + "bbox": [ + 174, + 674, + 823, + 717 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Volodymyr Mnih, Adria Puigdomenech Badia, Mehdi Mirza, Alex Graves, Timothy Lillicrap, Tim Harley, David Silver, and Koray Kavukcuoglu. Asynchronous methods for deep reinforcement learning. In International Conference on Machine Learning (ICML), 2016. ", + "bbox": [ + 174, + 724, + 823, + 766 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Igor Mordatch and Pieter Abbeel. Emergence of grounded compositional language in multi-agent populations. In The Thirty-Second AAAI Conference on Artificial Intelligence (AAAI), 2018. ", + "bbox": [ + 171, + 773, + 825, + 803 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Stephane Ross nd Geoffrey J. Gordon and J. Andrew Bagnell. A reduction of imitation learning ´ and structured prediction to no-regret online learning. In International Conference on Artificial Intelligence and Statistics (AISTATS), 2011. ", + "bbox": [ + 176, + 809, + 823, + 852 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Deepak Pathak, Pulkit Agrawal, Alexei A Efros, and Trevor Darrell. Curiosity-driven exploration by self-supervised prediction. In International Conference on Machine Learning (ICML), 2017. ", + "bbox": [ + 174, + 859, + 823, + 888 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Rob Powers and Yoav Shoham. New criteria and a new algorithm for learning in multi-agent systems. In Advances in neural information processing systems (NIPS), pp. 1089–1096, 2005. ", + "bbox": [ + 176, + 895, + 825, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "David Premack and Guy Woodruff. Does the chimpanzee have a theory of mind? Behavioral and brain sciences, 1(4):515–526, 1978. ", + "bbox": [ + 171, + 103, + 823, + 131 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Neil C. Rabinowitz, Frank Perbet, H. Francis Song, Chiyuan Zhang, S.M. Ali Eslami, and Matthew Botvinick. Machine theory of mind. arXiv preprint arXiv:1802.07740, 2018. ", + "bbox": [ + 171, + 140, + 821, + 169 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aaron P. Shon, Deepak Verma, and Rajesh PN Rao. Active imitation learning. In The AAAI Conference on Artificial Intelligence (AAAI), 2007. ", + "bbox": [ + 171, + 176, + 823, + 205 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tianmin Shu, Caiming Xiong, and Richard Socher. Hierarchical and interpretable skill acquisition in multi-task reinforcement learning. In The Sixth International Conference on Learning Representations (ICLR), 2018. ", + "bbox": [ + 174, + 213, + 821, + 255 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "A. L. Strehl and M. L. Littman. An analysis of model-based interval estimation for markov decision processes. Journal of Computer and System Sciences, 74(8):1309–1331, 2008. ", + "bbox": [ + 176, + 263, + 820, + 292 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Richard S Sutton, Doina Precup, and Satinder Singh. Between mdps and semi-mdps: A framework for temporal abstraction in reinforcement learning. Artificial intelligence, 112(1-2):181–211, 1999. ", + "bbox": [ + 174, + 299, + 823, + 328 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Haoran Tang, Rein Houthooft, Davis Foote, Adam Stooke, Xi Chen, Yan Duan, John Schulman, Filip De Turck, and Pieter Abbeel. #exploration: A study of count-based exploration for deep reinforcement learning. In 31st Conference on Neural Information Processing Systems (NIPS), 2017. ", + "bbox": [ + 173, + 335, + 826, + 390 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Gerald Tesauro. Extending q-learning to general adaptive multi-agent systems. In Advances in neural information processing systems (NIPS), pp. 871–878, 2004. ", + "bbox": [ + 173, + 400, + 823, + 428 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tijmen Tieleman and Geoffrey Hinto. Lecture 6.5—rmsprop: Divide the gradient by a running average of its recent magnitude. COURSERA: Neural Networks for Machine Learning, 2012. ", + "bbox": [ + 174, + 435, + 823, + 465 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Simon Tong and Daphne Koller. Support vector machine active learning with applications to text classification. Journal of Machine Learning Research, pp. 45–66, 2001. ", + "bbox": [ + 173, + 473, + 823, + 501 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jane X Wang, Zeb Kurth-Nelson, Dhruva Tirumala, Hubert Soyer, Joel Z Leibo, Remi Munos, Charles Blundell, Dharshan Kumaran, and Matt Botvinick. Learning to reinforcement learn. arXiv preprint arXiv:1611.05763, 2016. ", + "bbox": [ + 174, + 510, + 825, + 551 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Olga Wichrowska, Niru Maheswaranathan, Matthew W Hoffman, Sergio Gomez Colmenarejo, Misha Denil, Nando de Freitas, and Jascha Sohl-Dickstein. Learned optimizers that scale and generalize. arXiv preprint arXiv:1703.04813, 2017. ", + "bbox": [ + 173, + 559, + 825, + 601 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Scott Cheng-Hsin Yang and Patrick Shafto. Teaching versus active learning: A computational analysis of conditions that affect learning. In The AAAI Conference on Artificial Intelligence (AAAI), 2017. ", + "bbox": [ + 173, + 609, + 823, + 638 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tianhe Yu, Chelsea Finn, Annie Xie, Sudeep Dasari, Pieter Abbeel, and Sergey Levine. One-shot imitation from observing humans via domain-adaptive meta-learning. In Robotics: Science and Systems (RSS), 2018. ", + "bbox": [ + 174, + 646, + 826, + 688 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "A PSEUDO CODE OF OUR ALGORITHMS ", + "text_level": 1, + "bbox": [ + 176, + 102, + 524, + 118 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Algorithm 1 Rollout $ { T _ { \\mathrm { m a x } } } )$ ", + "text_level": 1, + "bbox": [ + 174, + 137, + 354, + 151 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Input: Maximum steps $T _ { \\mathrm { m a x } }$ \nOutput: Episode length $T$ , trajectories $\\Gamma _ { d } ^ { T }$ and $\\Gamma _ { l } ^ { T }$ , and the latent vector sequence $M$ \n1: Initialize the environment \n2: $\\Gamma _ { d } ^ { 0 } \\gets \\emptyset , \\Gamma _ { l } ^ { 0 } \\gets \\emptyset , M \\gets \\emptyset , m ^ { 0 } \\gets \\mathbf { 0 } , t \\gets 0$ \n3: repeat \n4: $t \\gets t + 1$ \n5: Observe $s _ { d } ^ { t }$ and $a _ { d } ^ { t }$ from the demonstrator \n6: Observe $s _ { l } ^ { t }$ from the environment \n7: Sample and execute the learner’s action $a _ { l } ^ { t } \\sim \\pi _ { l } ( s _ { l } ^ { t } , m ^ { t - 1 } )$ \n8: $\\Gamma _ { d } ^ { t } \\Gamma _ { d } ^ { t - 1 } \\cup \\{ ( s _ { d } ^ { t } , a _ { d } ^ { t } ) \\} , \\Gamma _ { l } ^ { t } \\Gamma _ { l } ^ { t - 1 } \\cup \\{ ( s _ { l } ^ { t } , a _ { l } ^ { t } ) \\}$ \n9: $m ^ { t } \\gets \\mathcal { M } ( \\Gamma _ { d } ^ { t } ) , M \\gets M \\cup \\{ m ^ { t } \\}$ ", + "bbox": [ + 174, + 156, + 681, + 297 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Algorithm 2 Learning Algorithm ", + "text_level": 1, + "bbox": [ + 174, + 342, + 395, + 356 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "1: Initialize parameters $\\Theta = \\left. \\theta _ { M } , \\theta _ { b } , \\theta _ { l } , \\theta _ { V } \\right.$ \n2: Set $T _ { \\mathrm { m a x } }$ (the maximum steps in an episode) and $N$ (the number of training iterations) \n3: $i \\gets 1$ \n4: repeat \n5: $T , \\Gamma _ { d } ^ { T } , \\Gamma _ { l } ^ { T } , M \\gets \\mathrm { R o l l o u t } ( T _ { \\mathrm { m a x } } )$ \n6: IL: Update $\\theta _ { M }$ and $\\theta _ { d }$ based on Eq. (2) using $\\Gamma _ { d } ^ { T }$ \n7: RL: Update $\\theta _ { l }$ and $\\theta _ { V }$ based on Eq. (3 and Eq. (4) respectively using $\\Gamma _ { l } ^ { T }$ , and $M$ \n8: $i \\gets i + 1$ \n9: until $i = N$ ", + "bbox": [ + 179, + 361, + 707, + 478 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "B MORE RESULTS ", + "text_level": 1, + "bbox": [ + 176, + 506, + 339, + 522 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "B.1 ROBUSTNESS EVALUATION ", + "text_level": 1, + "bbox": [ + 176, + 536, + 405, + 551 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "We show the mean and standard deviation of the prediction accuracy from 5 runs by our full model in Figure 9 for Maze Navigation to validate the robustness of our approach. ", + "bbox": [ + 174, + 561, + 825, + 590 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/d3766e4783ca2f1226bf81c173ed6690f9a07ff438e980d834c86b081f958f61.jpg", + "image_caption": [ + "10: until $t = T _ { \\operatorname* { m a x } }$ or the task is finished 11: $T \\gets t$ ", + "Figure 9: Mean and standard deviation of multiple runs in Maze Navigation. " + ], + "image_footnote": [], + "bbox": [ + 377, + 607, + 604, + 729 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "B.2 VISUALIZATION OF LATENT VECTORS ", + "text_level": 1, + "bbox": [ + 176, + 775, + 482, + 789 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Figure 10 visualizes the latent vectors obtained from demonstrations with probing and without probing, where the latent vectors were computed by the same behavior tracker in both cases. This provides empirical evidences that by finding new latent vectors, we are able to discover new demonstrations with probing. ", + "bbox": [ + 173, + 801, + 826, + 854 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "B.3 VISUALIZATION OF THE CHANGE IN $m ^ { t }$ AND THE CHANGE IN POLICY ", + "text_level": 1, + "bbox": [ + 174, + 869, + 700, + 885 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "To show that the change in $m ^ { t }$ indeed indicates the change in policy, we compute the correlation of $| | m ^ { t } - m ^ { t - 1 } | | ^ { 2 }$ and $\\tilde { K L } ( \\pi _ { d } ( \\cdot | s ^ { t + 1 } , m ^ { t } ) | | \\pi _ { d } ( \\cdot | s ^ { t + 1 } , m ^ { t - 1 } ) )$ (i.e., how different the policy conditioned on the new latent vector $m ^ { t }$ is compared to the one with the old latent vector $m ^ { t - 1 }$ ). Figure 11 demonstrates the correlation between the change in $m ^ { t }$ and the corresponding change in policy in testing settings. The high correlation validates our hypothesis that the distance between consecutive latent vectors $m ^ { t }$ and $\\bar { m } ^ { t - 1 }$ reflects the policy change of the demonstrator. ", + "bbox": [ + 174, + 896, + 828, + 925 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/f82b7a583fb0ccf3c5a6ef501adc2d8413d68eb07d6414f87e572db80aaacff7.jpg", + "image_caption": [ + "Figure 10: t-SNE embedding of $m ^ { t }$ . " + ], + "image_footnote": [], + "bbox": [ + 178, + 99, + 823, + 194 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/069435882d499904bb6f9b71b6a7dc219cc94a8b05cbac2d28d7728bc6f34cb1.jpg", + "image_caption": [ + "Figure 11: Correlation between the change in $m ^ { t }$ and the change in policy in testing settings $\\dot { \\boldsymbol { r } }$ is Pearson correlation coefficient). " + ], + "image_footnote": [], + "bbox": [ + 174, + 238, + 823, + 321 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 393, + 825, + 448 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "C NETWORK ARCHITECTURE OF OUR MODEL ", + "text_level": 1, + "bbox": [ + 174, + 473, + 573, + 488 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "State Encoder. The input of the state encoder is a multi-channel tensor. For the grid world case, the input dimension is $1 1 \\bar { \\times } 1 1 \\times ( N _ { \\mathrm { b l o c k s } } + 1 )$ , where $1 1 \\times 1 1$ is the size of the grid world, $N _ { \\mathrm { i t e m s } }$ is the number of types of blocks, and the additional channel is to show the position of the corresponding agent, i.e., the position of the demonstrator for $s _ { d } ^ { t }$ or the position of the learner for $s _ { l } ^ { t }$ . The other agent is treated as an obstacle and its position is encoded into the channel corresponded to the wall block. In the case of Sorting task, the input dimension is $1 0 \\times 1 \\times 4$ , representing 10 numbers in an array where the size of each number is 4 bits. The state encoder has one convolutional layer which consists of 32 filters with kernel size of $1 \\times 1$ and stride of 1. ", + "bbox": [ + 173, + 506, + 825, + 614 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Behavior Tracker. Assuming the action space is $A$ , we combine the state input and the action input by augmenting the state input with $A$ channels, each of which corresponds to an action. We set the channel of the observed action to be all ones and set the remaining $A - 1$ channels to be zeros. This combined state and action input is then fed into a convolutional layer with 32 filters (the kernel size is $1 \\times 1$ and the stride is 1). The output is flatten into a vector and passed through two fully connected (FC) layers (all have 128 dimensions). The resulting 128-dim vector serves as the input of an LSTM with 128 hidden units. Finally, an FC layer takes in the hidden state from the LSTM and outputs the latent vector $m ^ { t }$ as the mind representation. ", + "bbox": [ + 173, + 621, + 825, + 728 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/9601707c6b27d9000ede144af1654db03552ded43028f6a05face04cd1b1a543.jpg", + "image_caption": [ + "Figure 12: The attention-based fusion module. " + ], + "image_footnote": [], + "bbox": [ + 369, + 746, + 604, + 896 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Fusion. As shown in Figure 12, we design our fusion module using an attention based mechanism similar to the one introduced by Chaplot et al. (2017), where the latent vector $m ^ { t - 1 }$ is fed into an FC layer outputting an $N$ -dim attention vector (each element is from 0 to 1) corresponding to the $N$ feature maps from the state encoder (here $N = 3 2$ ). Formally, we have an attention vector $h = \\sigma ( m ^ { t - 1 } ) \\in \\dot { \\mathbb { R } } ^ { 3 2 }$ , where $\\sigma ( \\cdot )$ is an FC layer with sigmoid activation. $h$ is spatially expanded to a $H \\times W \\times 3 2$ tensor, $\\pmb { H } ( h ) \\in \\mathbb { R } ^ { H \\times W \\times 3 2 }$ , where the elements in $k$ -th channel correspond to the $k$ -th element in $h$ . We then reweight each feature maps using the attention vector, which becomes the fusion output. I.e., $f ( \\phi ( s ^ { t } ) , m ^ { t - \\tilde { 1 } } ) = \\phi ( s ^ { t } ) \\odot H ( \\sigma \\tilde { ( } m ^ { t - 1 } ) \\mathbf { \\tilde { ) } }$ , where $\\phi ( s ^ { t } )$ are the feature maps from the state encoder, $f ( \\cdot )$ is the fusion layer, and $\\odot$ is element-wise product. ", + "bbox": [ + 173, + 103, + 825, + 227 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Policy. The input of this module is the flattened output from the fusion module, and is fed to an LSTM with 128 hidden units followed by an FC layer with softmax activation. The resulting output is an action distribution representing the policy (either $\\pi _ { d }$ or $\\pi _ { l }$ ). For Sorting task, we slightly modify the output to fit the problem. We decompose the demonstrator’s policy as ${ \\pi } _ { d } ( a _ { d } ^ { t } \\vert s _ { d } ^ { t } , m ^ { t - 1 } ) ~ = ~ { \\pi } _ { d } ^ { ( 1 ) } ( a _ { d } ^ { \\bar { t } , 1 } \\vert s _ { d } ^ { t } , m ^ { t - 1 } ) { \\pi } _ { d } ^ { ( 2 ) } ( a _ { d } ^ { t , 2 } \\vert s _ { d } ^ { t } , m ^ { t - 1 } )$ , where $a _ { d } ^ { t , 1 }$ and $a _ { d } ^ { t , 2 }$ are the indices of the numbers the demonstrator chooses to swap. For the learner’s policy, it is decomposed as $\\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , m ^ { t - 1 } ) = \\pi _ { l } ^ { \\mathrm { i d } } ( a _ { l } ^ { t , 1 } | s _ { l } ^ { t } , m ^ { t - 1 } ) \\pi _ { l } ^ { \\mathrm { b i t } } ( a _ { l } ^ { t , 2 } | s _ { l } ^ { t } , m ^ { t - 1 } )$ instead, where $a _ { l } ^ { t , 1 }$ indicates the number that the learner selects to change and $a _ { l } ^ { t , 2 }$ is the bit of that number that needs to be flipped. When $a _ { d } ^ { t , 1 }$ or $a _ { l } ^ { t , 1 }$ is larger than the length of the array, it means that the demonstrator or the learner is choosing to do nothing respectively. ", + "bbox": [ + 173, + 232, + 825, + 381 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Value. We also have a value net designed for training the learner’s policy using A2C (i.e., $V ( s _ { l } ^ { t } , m ^ { t - 1 } ) )$ , which takes in the hidden state from the LSTM in the learner’s policy module and outputs a scalar value after an FC layer. ", + "bbox": [ + 174, + 386, + 826, + 428 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The network is trained with RMSProp (Tieleman & Hinto, 2012) using a learning rate of 0.001. \nDuring training, $\\epsilon$ -greedy is applied to the rollout, where the $\\epsilon$ gradually decreases from 0.1 to 0.01. ", + "bbox": [ + 176, + 433, + 823, + 462 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "D TASK SETTINGS ", + "text_level": 1, + "bbox": [ + 176, + 479, + 344, + 497 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We assume full observations of the world state for both agents in all tasks but the internal state of an agent (e.g., goals) is unobservable to another agent. The discounted factor is set to be $\\Gamma = 0 . 9 5$ . ", + "bbox": [ + 174, + 511, + 823, + 539 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "For the demonstrator in the grid world tasks, we implemented search based path planning and used simple heuristics to perform branch and bound for acceleration. In particular, the state for the search algorithm in Passing is the map status, whereas the state in Maze Navigation and Construction is the combination of map status and the demonstrator’s inventory. ", + "bbox": [ + 174, + 545, + 825, + 599 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "D.1 PASSING ", + "text_level": 1, + "bbox": [ + 174, + 616, + 279, + 631 + ], + "page_idx": 13 + }, + { + "type": "image", + "img_path": "images/104fb1162f260d597db6e2b8b643e42e84d9eb60187fab5116d2e2aba9e01f85.jpg", + "image_caption": [ + "Figure 13: The training setting and examples of testing settings for Passing. " + ], + "image_footnote": [], + "bbox": [ + 236, + 643, + 759, + 746 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Figure 13 shows the training setting where the locations of the gap and the staring point of the demonstrator are fixed, and the examples of testing settings where the placement of the gap and the initial position of the demonstrator is randomized. We terminate a training episode if the demonstrator has not passed the obstacle after 15 steps. ", + "bbox": [ + 173, + 786, + 825, + 840 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "D.2 MAZE NAVIGATION ", + "text_level": 1, + "bbox": [ + 174, + 857, + 354, + 871 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The training setting in Maze Navigation is designed as shown in Figure 14a, where the placement of the tools is restrained in the purple region, and the positions of the demonstrator’s starting point and the doors are fixed. For testing, we randomly put one or two doors to fill the gaps; the demonstrator ", + "bbox": [ + 174, + 882, + 825, + 924 + ], + "page_idx": 13 + }, + { + "type": "image", + "img_path": "images/7e7f142e00277a702495ff544dfc962f5c601cf88c03a1f6483f2f64ce64d982.jpg", + "image_caption": [ + "Figure 14: The training setting and examples of testing settings for Maze Navigation. " + ], + "image_footnote": [], + "bbox": [ + 238, + 98, + 759, + 224 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "and the tools can be randomly placed in the purple region. The demonstrator is always guaranteed to be able to find a path from its starting point to the destination (the top-left room). A training episode has a time limit of 60 steps. ", + "bbox": [ + 174, + 276, + 825, + 319 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "D.3 CONSTRUCTION ", + "text_level": 1, + "bbox": [ + 174, + 335, + 331, + 351 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/16b7b3aa92dee0ccd1525db6154d8b34c50807af6f08c7694f6469a3309c6d55.jpg", + "image_caption": [ + "Figure 15: The training setting and examples of testing settings for Construction. " + ], + "image_footnote": [], + "bbox": [ + 236, + 366, + 759, + 467 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The room layout in training setting is fixed and shown in Figure 15a. In testing settings, we randomly put six wall blocks around the three colored blocks to create obstacles. Figure 15b displays a few examples of testing scenarios. Note that in both training and testing, we allow randomized coloring as long as the goal can be achieved. ", + "bbox": [ + 174, + 510, + 823, + 564 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "For each episode, we assign a random goal (a pair of colors) for the demonstrator. The maximum episode length is 30 steps during training. ", + "bbox": [ + 176, + 570, + 823, + 598 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "D.4 SORTING ", + "text_level": 1, + "bbox": [ + 174, + 616, + 282, + 630 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Algorithm 3 Modified Bubble Sort ", + "text_level": 1, + "bbox": [ + 174, + 648, + 406, + 664 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Input: Initial array $X = [ x _ { 1 } , x _ { 2 } , \\cdot \\cdot \\cdot , x _ { n } ]$ , where $_ n$ is the length. \nOutput: Sorted array \n1: Last position $i \\gets 0$ \n2: Steps $t \\gets 0$ \n3: while $X$ is not in an ascending order do \n4: $c \\gets 0$ \n5: while $c < n - 1$ do \n6: if $x _ { i } > x _ { i + 1 }$ then \n7: Swap $x _ { i }$ and $x _ { i + 1 }$ , i.e., the demonstrator’s $t$ -th action is $( i , i + 1 )$ \n8: $t \\gets \\bar { t } + 1$ \n9: break \n10: end if \n11: $\\begin{array} { l } { c c + 1 } \\\\ { i ( i + 1 ) \\% ( n - 1 ) } \\end{array}$ \n12: \n13: end while \n14: end while ", + "bbox": [ + 174, + 667, + 648, + 863 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "In training, there is only one sequence as the initial state, i.e., [2, 0, 5, 12, 14, 10, 3, 11, 9, 7]. The testing settings include 100 randomly generated initial sequences. Training episodes have a 30-step time limit. ", + "bbox": [ + 174, + 882, + 825, + 922 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Since the learner may change certain numbers during the process of sorting, the original bubble sort may fail to finish the sorting successfully since it will not look back at the sorted part of the array. To address this, we modify the original bubble sort algorithm so that it will continue to sort the sequence until it is in an ascending order. Algorithm 3 outlines how the demonstrator swaps the numbers. ", + "bbox": [ + 174, + 103, + 825, + 159 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "E DETAILS OF BASELINES ", + "text_level": 1, + "bbox": [ + 176, + 178, + 408, + 194 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "E.1 REWARD FUNCTIONS IN BASELINES ", + "text_level": 1, + "bbox": [ + 176, + 208, + 467, + 223 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "We define the reward functions used for baselines, count-based reward and self-supervised prediction here. ", + "bbox": [ + 173, + 233, + 825, + 262 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Count-based reward: ", + "text_level": 1, + "bbox": [ + 174, + 268, + 323, + 282 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/050cbea808e73c012f9caec3a2ab7290b761ffdca5b30ab847c0b97247f62dae.jpg", + "text": "$$\nr ^ { t } = R ( s _ { d } ^ { t } ) = \\frac { \\beta } { \\sqrt { N ( s _ { d } ^ { t } ) } } ,\n$$", + "text_format": "latex", + "bbox": [ + 415, + 277, + 583, + 314 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "where $\\beta$ is a constant (we set $\\beta = 1$ , which gives the best results in our experiments), and $N ( s _ { d } ^ { t } )$ is the counts of state visitation. In our experiments, the counting can be efficiently implemented by hashing. This reward encourages the learner to push the demonstrator to new states in order to incite new demonstrations. ", + "bbox": [ + 173, + 316, + 825, + 371 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Self-supervised prediction: ", + "text_level": 1, + "bbox": [ + 174, + 378, + 361, + 392 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/149ec5b46e4be798ebbdfe6cbadc40e61d530a6a4ef523c79444671eb4c45609.jpg", + "text": "$$\n\\begin{array} { r } { r ^ { t } = R ( s _ { d } ^ { t } , m ^ { t - 1 } , a _ { d } ^ { t } ) = - \\log \\pi _ { d } ( a _ { d } ^ { t } | s _ { d } ^ { t } , m ^ { t - 1 } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 338, + 398, + 658, + 417 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "where $a _ { d } ^ { t }$ is the ground-truth action from the demonstrator. This reward essentially measures action prediction loss of the estimated demonstrator’s policy, which is designed to encourage the learner to find new scenarios where the previously learned demonstrator’s policy becomes less accurate. ", + "bbox": [ + 174, + 424, + 825, + 465 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "E.2 NETWORK ARCHITECTURE OF THE 2-LSTM BASELINE ", + "bbox": [ + 173, + 481, + 601, + 496 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/4d94346a5d39928d4bc7f89cf3ad6b330ebd1c289bd68248bddb18577350c585.jpg", + "image_caption": [ + "Figure 16: The network architecture of the 2-LSTM baseline. " + ], + "image_footnote": [], + "bbox": [ + 334, + 508, + 663, + 688 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Figure 16 illustrates the network architecture of the 2-LSTM baseline, where two LSTMs all have 128 hidden units. ", + "bbox": [ + 168, + 727, + 825, + 756 + ], + "page_idx": 15 + } +] \ No newline at end of file diff --git a/parse/train/SJl98sR5tX/SJl98sR5tX_middle.json b/parse/train/SJl98sR5tX/SJl98sR5tX_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..39506492e10bf0a635ee3c6f7962eb4f992f5547 --- /dev/null +++ b/parse/train/SJl98sR5tX/SJl98sR5tX_middle.json @@ -0,0 +1,43030 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "score": 1.0, + "content": "INTERACTIVE AGENT MODELING BY LEARNING TO", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 97, + 160, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 160, + 117 + ], + "score": 1.0, + "content": "PROBE", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 135, + 244, + 156 + ], + "lines": [ + { + "bbox": [ + 113, + 135, + 201, + 146 + ], + "spans": [ + { + "bbox": [ + 113, + 135, + 201, + 146 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 145, + 245, + 158 + ], + "spans": [ + { + "bbox": [ + 112, + 145, + 245, + 158 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 278, + 185, + 333, + 197 + ], + "lines": [ + { + "bbox": [ + 276, + 183, + 336, + 199 + ], + "spans": [ + { + "bbox": [ + 276, + 183, + 336, + 199 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 209, + 469, + 410 + ], + "lines": [ + { + "bbox": [ + 141, + 209, + 469, + 223 + ], + "spans": [ + { + "bbox": [ + 141, + 209, + 469, + 223 + ], + "score": 1.0, + "content": "The ability of modeling the other agents, such as understanding their intentions", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 220, + 470, + 232 + ], + "spans": [ + { + "bbox": [ + 141, + 220, + 470, + 232 + ], + "score": 1.0, + "content": "and skills, is essential to an agent’s interactions with other agents. Conventional", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 230, + 471, + 243 + ], + "spans": [ + { + "bbox": [ + 141, + 230, + 471, + 243 + ], + "score": 1.0, + "content": "agent modeling relies on passive observation from demonstrations. In this work,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 242, + 469, + 253 + ], + "spans": [ + { + "bbox": [ + 141, + 242, + 469, + 253 + ], + "score": 1.0, + "content": "we propose an interactive agent modeling scheme enabled by encouraging an", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 252, + 470, + 264 + ], + "spans": [ + { + "bbox": [ + 141, + 252, + 470, + 264 + ], + "score": 1.0, + "content": "agent to learn to probe. In particular, the probing agent (i.e., a learner) learns", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 263, + 470, + 275 + ], + "spans": [ + { + "bbox": [ + 141, + 263, + 470, + 275 + ], + "score": 1.0, + "content": "to interact with the environment and with a target agent (i.e., a demonstrator) to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 272, + 470, + 286 + ], + "spans": [ + { + "bbox": [ + 141, + 272, + 470, + 286 + ], + "score": 1.0, + "content": "maximize the change in the observed behaviors of that agent. Through probing,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 283, + 470, + 295 + ], + "spans": [ + { + "bbox": [ + 141, + 283, + 470, + 295 + ], + "score": 1.0, + "content": "rich behaviors can be observed and are used for enhancing the agent modeling to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 294, + 470, + 306 + ], + "spans": [ + { + "bbox": [ + 141, + 294, + 470, + 306 + ], + "score": 1.0, + "content": "learn a more accurate mind model of the target agent. Our framework consists of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 304, + 470, + 317 + ], + "spans": [ + { + "bbox": [ + 141, + 304, + 470, + 317 + ], + "score": 1.0, + "content": "two learning processes: i) imitation learning for an approximated agent model and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 315, + 470, + 327 + ], + "spans": [ + { + "bbox": [ + 141, + 315, + 470, + 327 + ], + "score": 1.0, + "content": "ii) pure curiosity-driven reinforcement learning for an efficient probing policy to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 325, + 469, + 337 + ], + "spans": [ + { + "bbox": [ + 141, + 325, + 469, + 337 + ], + "score": 1.0, + "content": "discover new behaviors that otherwise can not be observed. We have validated", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 336, + 469, + 348 + ], + "spans": [ + { + "bbox": [ + 141, + 336, + 469, + 348 + ], + "score": 1.0, + "content": "our approach in four different tasks. The experimental results suggest that the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 347, + 469, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 347, + 469, + 358 + ], + "score": 1.0, + "content": "agent model learned by our approach i) generalizes better in novel scenarios than", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 357, + 470, + 370 + ], + "spans": [ + { + "bbox": [ + 141, + 357, + 470, + 370 + ], + "score": 1.0, + "content": "the ones learned by passive observation, random probing, and other curiosity-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 368, + 469, + 379 + ], + "spans": [ + { + "bbox": [ + 142, + 368, + 469, + 379 + ], + "score": 1.0, + "content": "driven approaches do, and ii) can be used for enhancing performance in multiple", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 378, + 470, + 390 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 470, + 390 + ], + "score": 1.0, + "content": "applications including distilling optimal planning to a policy net, collaboration,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 389, + 470, + 401 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 470, + 401 + ], + "score": 1.0, + "content": "and competition. A video demo is available at https://www.dropbox.com/", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 399, + 381, + 411 + ], + "spans": [ + { + "bbox": [ + 142, + 399, + 363, + 411 + ], + "score": 1.0, + "content": "s/8mz6rd3349tso67/Probing_Demo.mov?dl", + "type": "text" + }, + { + "bbox": [ + 364, + 400, + 376, + 409 + ], + "score": 0.64, + "content": "= 0", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 399, + 381, + 411 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 109, + 431, + 206, + 444 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 208, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 208, + 447 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 456, + 505, + 530 + ], + "lines": [ + { + "bbox": [ + 106, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "An accurate understanding of other agents is essential to many multi-agent problems, such as", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "collaboration, competition, and learning from an expert agent. Humans achieve this not only by", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "passively observing others’ behaviors, but also by actively probing others including interacting with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 488, + 507, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 507, + 500 + ], + "score": 1.0, + "content": "them or changing the environment and conditions so that they can understand others’ intentions,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "skills, and capabilities better. For instance, when working with a colleague for the first time, one may", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 509, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 505, + 521 + ], + "score": 1.0, + "content": "intentionally create diverse situations where the true intention and skill set of that colleague can be", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 519, + 361, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 361, + 531 + ], + "score": 1.0, + "content": "clearly revealed, which in turn helps improve the collaboration.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 536, + 505, + 652 + ], + "lines": [ + { + "bbox": [ + 105, + 535, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 506, + 549 + ], + "score": 1.0, + "content": "Inspired by this observation, in this work, we try to enable a probing agent (i.e., a learner) to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "score": 1.0, + "content": "automatically learn a good policy for probing in a way that helps it discover new behaviors of a target", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 556, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 570 + ], + "score": 1.0, + "content": "agent (i.e., a demonstrator) and thus learn a better model of the target agent that is generalizable to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 566, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 506, + 581 + ], + "score": 1.0, + "content": "unseen environments or settings. Different from common task-oriented policy training, the learning", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "of our probing policy is purely driven by the motivation of maximizing the knowledge about the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 589, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 506, + 601 + ], + "score": 1.0, + "content": "target agent’s model. We show a simple case in Figure 1 to illustrate this idea, where the learner and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 598, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 506, + 611 + ], + "score": 1.0, + "content": "the demonstrator are initially located in the upper part and the lower part of the room respectively.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 609, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 506, + 622 + ], + "score": 1.0, + "content": "The true policy of the demonstrator is trying to go to the upper part by finding the shortest path.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "score": 1.0, + "content": "However, since the room layout is fixed, the learner may overfit the only path observed from the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 630, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 506, + 644 + ], + "score": 1.0, + "content": "demonstrator. By actively creating new gaps, the learner is able to discover various paths, which will", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 641, + 417, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 417, + 653 + ], + "score": 1.0, + "content": "greatly improve the accuracy of the approximated model of the demonstrator.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 657, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 670 + ], + "score": 1.0, + "content": "We consider the following setting for probing-based interactive agent modeling. In an environment,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "there are two general types of agents: i) a demonstrator who possesses certain skills for a single", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "task or multiple tasks, and ii) a learner who has no prior knowledge of the environment and the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 690, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 505, + 700 + ], + "score": 1.0, + "content": "demonstrator’s skills. The purpose of the learner is to efficiently and thoroughly learn all of the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "demonstrator’s skills and goals by not only passively watching the demonstrations but also actively", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "interacting with the environment and/or the demonstrator. This learning process entails both imitation", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "learning (IL) for modeling the demonstrator’s skills and goals, and reinforcement learning (RL)", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "score": 1.0, + "content": "INTERACTIVE AGENT MODELING BY LEARNING TO", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 97, + 160, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 160, + 117 + ], + "score": 1.0, + "content": "PROBE", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 135, + 244, + 156 + ], + "lines": [ + { + "bbox": [ + 113, + 135, + 201, + 146 + ], + "spans": [ + { + "bbox": [ + 113, + 135, + 201, + 146 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 145, + 245, + 158 + ], + "spans": [ + { + "bbox": [ + 112, + 145, + 245, + 158 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 112, + 135, + 245, + 158 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 185, + 333, + 197 + ], + "lines": [ + { + "bbox": [ + 276, + 183, + 336, + 199 + ], + "spans": [ + { + "bbox": [ + 276, + 183, + 336, + 199 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 209, + 469, + 410 + ], + "lines": [ + { + "bbox": [ + 141, + 209, + 469, + 223 + ], + "spans": [ + { + "bbox": [ + 141, + 209, + 469, + 223 + ], + "score": 1.0, + "content": "The ability of modeling the other agents, such as understanding their intentions", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 220, + 470, + 232 + ], + "spans": [ + { + "bbox": [ + 141, + 220, + 470, + 232 + ], + "score": 1.0, + "content": "and skills, is essential to an agent’s interactions with other agents. Conventional", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 230, + 471, + 243 + ], + "spans": [ + { + "bbox": [ + 141, + 230, + 471, + 243 + ], + "score": 1.0, + "content": "agent modeling relies on passive observation from demonstrations. In this work,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 242, + 469, + 253 + ], + "spans": [ + { + "bbox": [ + 141, + 242, + 469, + 253 + ], + "score": 1.0, + "content": "we propose an interactive agent modeling scheme enabled by encouraging an", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 252, + 470, + 264 + ], + "spans": [ + { + "bbox": [ + 141, + 252, + 470, + 264 + ], + "score": 1.0, + "content": "agent to learn to probe. In particular, the probing agent (i.e., a learner) learns", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 263, + 470, + 275 + ], + "spans": [ + { + "bbox": [ + 141, + 263, + 470, + 275 + ], + "score": 1.0, + "content": "to interact with the environment and with a target agent (i.e., a demonstrator) to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 272, + 470, + 286 + ], + "spans": [ + { + "bbox": [ + 141, + 272, + 470, + 286 + ], + "score": 1.0, + "content": "maximize the change in the observed behaviors of that agent. Through probing,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 283, + 470, + 295 + ], + "spans": [ + { + "bbox": [ + 141, + 283, + 470, + 295 + ], + "score": 1.0, + "content": "rich behaviors can be observed and are used for enhancing the agent modeling to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 294, + 470, + 306 + ], + "spans": [ + { + "bbox": [ + 141, + 294, + 470, + 306 + ], + "score": 1.0, + "content": "learn a more accurate mind model of the target agent. Our framework consists of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 304, + 470, + 317 + ], + "spans": [ + { + "bbox": [ + 141, + 304, + 470, + 317 + ], + "score": 1.0, + "content": "two learning processes: i) imitation learning for an approximated agent model and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 315, + 470, + 327 + ], + "spans": [ + { + "bbox": [ + 141, + 315, + 470, + 327 + ], + "score": 1.0, + "content": "ii) pure curiosity-driven reinforcement learning for an efficient probing policy to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 325, + 469, + 337 + ], + "spans": [ + { + "bbox": [ + 141, + 325, + 469, + 337 + ], + "score": 1.0, + "content": "discover new behaviors that otherwise can not be observed. We have validated", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 336, + 469, + 348 + ], + "spans": [ + { + "bbox": [ + 141, + 336, + 469, + 348 + ], + "score": 1.0, + "content": "our approach in four different tasks. The experimental results suggest that the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 347, + 469, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 347, + 469, + 358 + ], + "score": 1.0, + "content": "agent model learned by our approach i) generalizes better in novel scenarios than", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 357, + 470, + 370 + ], + "spans": [ + { + "bbox": [ + 141, + 357, + 470, + 370 + ], + "score": 1.0, + "content": "the ones learned by passive observation, random probing, and other curiosity-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 368, + 469, + 379 + ], + "spans": [ + { + "bbox": [ + 142, + 368, + 469, + 379 + ], + "score": 1.0, + "content": "driven approaches do, and ii) can be used for enhancing performance in multiple", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 378, + 470, + 390 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 470, + 390 + ], + "score": 1.0, + "content": "applications including distilling optimal planning to a policy net, collaboration,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 389, + 470, + 401 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 470, + 401 + ], + "score": 1.0, + "content": "and competition. A video demo is available at https://www.dropbox.com/", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 399, + 381, + 411 + ], + "spans": [ + { + "bbox": [ + 142, + 399, + 363, + 411 + ], + "score": 1.0, + "content": "s/8mz6rd3349tso67/Probing_Demo.mov?dl", + "type": "text" + }, + { + "bbox": [ + 364, + 400, + 376, + 409 + ], + "score": 0.64, + "content": "= 0", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 399, + 381, + 411 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 14, + "bbox_fs": [ + 141, + 209, + 471, + 411 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 431, + 206, + 444 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 208, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 208, + 447 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 456, + 505, + 530 + ], + "lines": [ + { + "bbox": [ + 106, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "An accurate understanding of other agents is essential to many multi-agent problems, such as", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "collaboration, competition, and learning from an expert agent. Humans achieve this not only by", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "passively observing others’ behaviors, but also by actively probing others including interacting with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 488, + 507, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 507, + 500 + ], + "score": 1.0, + "content": "them or changing the environment and conditions so that they can understand others’ intentions,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "skills, and capabilities better. For instance, when working with a colleague for the first time, one may", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 509, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 505, + 521 + ], + "score": 1.0, + "content": "intentionally create diverse situations where the true intention and skill set of that colleague can be", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 519, + 361, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 361, + 531 + ], + "score": 1.0, + "content": "clearly revealed, which in turn helps improve the collaboration.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 456, + 507, + 531 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 536, + 505, + 652 + ], + "lines": [ + { + "bbox": [ + 105, + 535, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 506, + 549 + ], + "score": 1.0, + "content": "Inspired by this observation, in this work, we try to enable a probing agent (i.e., a learner) to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "score": 1.0, + "content": "automatically learn a good policy for probing in a way that helps it discover new behaviors of a target", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 556, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 570 + ], + "score": 1.0, + "content": "agent (i.e., a demonstrator) and thus learn a better model of the target agent that is generalizable to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 566, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 506, + 581 + ], + "score": 1.0, + "content": "unseen environments or settings. Different from common task-oriented policy training, the learning", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "of our probing policy is purely driven by the motivation of maximizing the knowledge about the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 589, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 506, + 601 + ], + "score": 1.0, + "content": "target agent’s model. We show a simple case in Figure 1 to illustrate this idea, where the learner and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 598, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 506, + 611 + ], + "score": 1.0, + "content": "the demonstrator are initially located in the upper part and the lower part of the room respectively.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 609, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 506, + 622 + ], + "score": 1.0, + "content": "The true policy of the demonstrator is trying to go to the upper part by finding the shortest path.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "score": 1.0, + "content": "However, since the room layout is fixed, the learner may overfit the only path observed from the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 630, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 506, + 644 + ], + "score": 1.0, + "content": "demonstrator. By actively creating new gaps, the learner is able to discover various paths, which will", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 641, + 417, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 417, + 653 + ], + "score": 1.0, + "content": "greatly improve the accuracy of the approximated model of the demonstrator.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 535, + 506, + 653 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 657, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 670 + ], + "score": 1.0, + "content": "We consider the following setting for probing-based interactive agent modeling. In an environment,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "there are two general types of agents: i) a demonstrator who possesses certain skills for a single", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "task or multiple tasks, and ii) a learner who has no prior knowledge of the environment and the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 690, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 505, + 700 + ], + "score": 1.0, + "content": "demonstrator’s skills. The purpose of the learner is to efficiently and thoroughly learn all of the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "demonstrator’s skills and goals by not only passively watching the demonstrations but also actively", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "interacting with the environment and/or the demonstrator. This learning process entails both imitation", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "learning (IL) for modeling the demonstrator’s skills and goals, and reinforcement learning (RL)", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 657, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 165, + 79, + 445, + 147 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 165, + 79, + 445, + 147 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 79, + 445, + 147 + ], + "spans": [ + { + "bbox": [ + 165, + 79, + 445, + 147 + ], + "score": 0.964, + "type": "image", + "image_path": "3c1afb04daa88192307507702776c69b03f1854302bfa148df1e924a35747df7.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 165, + 79, + 445, + 101.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 165, + 101.66666666666667, + 445, + 124.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 165, + 124.33333333333334, + 445, + 147.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 156, + 505, + 199 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 156, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 156, + 505, + 168 + ], + "score": 1.0, + "content": "Figure 1: Illustration of our probing-based interactive agent modeling. Here, the demonstrator tries", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 166, + 504, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 504, + 178 + ], + "score": 1.0, + "content": "to go from the bottom-right corner to the upper part of the room. The passive learner (left) only", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 177, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 505, + 189 + ], + "score": 1.0, + "content": "observes one path in the fixed environment while the probing learner (right) removes a wall block to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 187, + 405, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 405, + 201 + ], + "score": 1.0, + "content": "create a new gap so that the demonstrator will change its path accordingly.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 107, + 219, + 503, + 252 + ], + "lines": [ + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "score": 1.0, + "content": "for optimizing probing policy to diversify the task settings and the demonstrations to facilitate the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "imitation learning. Note that we assume that the demonstrator will always truthfully reveal its skills", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 241, + 235, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 235, + 253 + ], + "score": 1.0, + "content": "and intentions in any scenarios.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 257, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 506, + 271 + ], + "score": 1.0, + "content": "A key idea in our approach is to use task independent RL training purely driven by a curiosity reward.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "score": 1.0, + "content": "For this, we represent the demonstrator’s mind by i) a latent vector to encode and track an agent’s", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "intention and belief, and ii) a policy conditioned on the latent vector and the agent’s observed state for", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 289, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 506, + 302 + ], + "score": 1.0, + "content": "action prediction (i.e., the agent’s skills). By introducing this latent vector, we are able to characterize", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 299, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 505, + 313 + ], + "score": 1.0, + "content": "an agent’s policy by a low dimensional representation, and to reflect the change of policy by the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 309, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 324 + ], + "score": 1.0, + "content": "change of this latent vector. Since the goal of probing policy is to cause the demonstrator to change", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "score": 1.0, + "content": "its policy so that the learner may observe diverse demonstrations, it is natural to apply the change in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 331, + 418, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 418, + 344 + ], + "score": 1.0, + "content": "the latent mind representation as the curiosity-driven incentive for the learner.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 348, + 505, + 411 + ], + "lines": [ + { + "bbox": [ + 105, + 347, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 506, + 360 + ], + "score": 1.0, + "content": "We evaluate our approach on four tasks in different domains (grid worlds and algorithmic problems).", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 358, + 507, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 507, + 371 + ], + "score": 1.0, + "content": "The experimental results indicate that our probing-based interactive agent modeling framework can:", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 368, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 505, + 381 + ], + "score": 1.0, + "content": "i) efficiently model the demonstrator’s mind that is generalizable in unseen scenarios, and ii) can", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "be applied to several applications including distilling optimal plans to a policy net by automatically", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "score": 1.0, + "content": "diversifying task settings, and improving multi-agent collaboration as well as competition using the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 401, + 193, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 193, + 413 + ], + "score": 1.0, + "content": "learned agent model.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5 + }, + { + "type": "title", + "bbox": [ + 108, + 427, + 211, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 213, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 213, + 442 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 451, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "score": 1.0, + "content": "In multi-agent reinforcement learning (MARL), agent modeling or opponent modeling plays an", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 461, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 475 + ], + "score": 1.0, + "content": "essential role as the ability of understanding other agent’s goals and predicting their actions can", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "score": 1.0, + "content": "greatly facilitate both collaborative and competitive purposes (Busoniu et al., 2008; Albrecht &", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 481, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 498 + ], + "score": 1.0, + "content": "Stone, 2018). Previous work has attempted to achieve this by task-oriented learning for maximizing", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 492, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 104, + 492, + 506, + 508 + ], + "score": 1.0, + "content": "a specified collaborative or competitive reward in the given tasks. For instance, inspired by game", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 504, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 517 + ], + "score": 1.0, + "content": "theory, there have been approaches aiming at finding Nash equilibira in multi-agent games, where", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "agents’ models are represented by their utilities (Littman, 1994; Hu & Wellman, 2003) and strategies", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "(Claus & Boutilier, 1998; Tesauro, 2004; Powers & Shoham, 2005; Heinrich et al., 2015; Heinrich &", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "Silver, 2016; Lanctot et al., 2017). Recently, some deep RL methods have incorporated simple agent", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 545, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 545, + 506, + 560 + ], + "score": 1.0, + "content": "modeling into Q-learning (Lowe et al., 2017) or policy updates (Foerster et al., 2018). Auxiliary", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 557, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 506, + 570 + ], + "score": 1.0, + "content": "tasks like explicitly predicting other agents’ goals have also been applied to MARL (Mordatch &", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 567, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 104, + 567, + 506, + 582 + ], + "score": 1.0, + "content": "Abbeel, 2018). In previous work, the agents’ incentive of modeling other agents comes from reaching", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 577, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 104, + 577, + 506, + 591 + ], + "score": 1.0, + "content": "a common goal or conflicting goals. In contrast, we never define a task-specific reward for the learner", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "since the goal of our probing-based interactive agent modeling is not to reach a predefined goal but", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 597, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 613 + ], + "score": 1.0, + "content": "rather to learn a good mind model of the demonstrator which can be generalized to unseen settings", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 609, + 454, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 454, + 622 + ], + "score": 1.0, + "content": "and transferred to multi-agent tasks afterwards when a task-dependent reward is given.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 625, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 625, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 506, + 639 + ], + "score": 1.0, + "content": "Our work is greatly inspired by Theory of Mind (ToM) (Premack & Woodruff, 1978), which is a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 636, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 506, + 650 + ], + "score": 1.0, + "content": "general and powerful framework to model an agent’s mind and use the mind model to better explain or", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 646, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 660 + ], + "score": 1.0, + "content": "predict the agent’s behaviors. Baker et al. (2009) has proposed a Bayesian formulation to incorporate", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 657, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 671 + ], + "score": 1.0, + "content": "an agent’s desires, intentions, and belief about the world into the agent’s policy in order to predict", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "the agent’s goals and actions via inverse planning. Rabinowitz et al. (2018) adopts a simpler mind", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 678, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 690 + ], + "score": 1.0, + "content": "representation (i.e., a latent vector) learned by a neural net (ToMnet). In our work, the learner is also", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "score": 1.0, + "content": "trying to learn the policy of the demonstrator with a simple mind modeling. However, instead of only", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "serving as a passive observer, we encourage the learner to probe so that it will learn to interact with", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "the environment and with the demonstrator to quickly and continuously discover new behaviors of", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 720, + 378, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 378, + 733 + ], + "score": 1.0, + "content": "the demonstrator, which in turn helps learning a better mind model.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 45.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 165, + 79, + 445, + 147 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 165, + 79, + 445, + 147 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 79, + 445, + 147 + ], + "spans": [ + { + "bbox": [ + 165, + 79, + 445, + 147 + ], + "score": 0.964, + "type": "image", + "image_path": "3c1afb04daa88192307507702776c69b03f1854302bfa148df1e924a35747df7.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 165, + 79, + 445, + 101.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 165, + 101.66666666666667, + 445, + 124.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 165, + 124.33333333333334, + 445, + 147.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 156, + 505, + 199 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 156, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 156, + 505, + 168 + ], + "score": 1.0, + "content": "Figure 1: Illustration of our probing-based interactive agent modeling. Here, the demonstrator tries", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 166, + 504, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 504, + 178 + ], + "score": 1.0, + "content": "to go from the bottom-right corner to the upper part of the room. The passive learner (left) only", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 177, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 505, + 189 + ], + "score": 1.0, + "content": "observes one path in the fixed environment while the probing learner (right) removes a wall block to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 187, + 405, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 405, + 201 + ], + "score": 1.0, + "content": "create a new gap so that the demonstrator will change its path accordingly.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 107, + 219, + 503, + 252 + ], + "lines": [ + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "score": 1.0, + "content": "for optimizing probing policy to diversify the task settings and the demonstrations to facilitate the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "imitation learning. Note that we assume that the demonstrator will always truthfully reveal its skills", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 241, + 235, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 235, + 253 + ], + "score": 1.0, + "content": "and intentions in any scenarios.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 219, + 505, + 253 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 257, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 506, + 271 + ], + "score": 1.0, + "content": "A key idea in our approach is to use task independent RL training purely driven by a curiosity reward.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "score": 1.0, + "content": "For this, we represent the demonstrator’s mind by i) a latent vector to encode and track an agent’s", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "intention and belief, and ii) a policy conditioned on the latent vector and the agent’s observed state for", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 289, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 506, + 302 + ], + "score": 1.0, + "content": "action prediction (i.e., the agent’s skills). By introducing this latent vector, we are able to characterize", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 299, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 505, + 313 + ], + "score": 1.0, + "content": "an agent’s policy by a low dimensional representation, and to reflect the change of policy by the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 309, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 324 + ], + "score": 1.0, + "content": "change of this latent vector. Since the goal of probing policy is to cause the demonstrator to change", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "score": 1.0, + "content": "its policy so that the learner may observe diverse demonstrations, it is natural to apply the change in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 331, + 418, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 418, + 344 + ], + "score": 1.0, + "content": "the latent mind representation as the curiosity-driven incentive for the learner.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 257, + 506, + 344 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 348, + 505, + 411 + ], + "lines": [ + { + "bbox": [ + 105, + 347, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 506, + 360 + ], + "score": 1.0, + "content": "We evaluate our approach on four tasks in different domains (grid worlds and algorithmic problems).", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 358, + 507, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 507, + 371 + ], + "score": 1.0, + "content": "The experimental results indicate that our probing-based interactive agent modeling framework can:", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 368, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 505, + 381 + ], + "score": 1.0, + "content": "i) efficiently model the demonstrator’s mind that is generalizable in unseen scenarios, and ii) can", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "be applied to several applications including distilling optimal plans to a policy net by automatically", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "score": 1.0, + "content": "diversifying task settings, and improving multi-agent collaboration as well as competition using the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 401, + 193, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 193, + 413 + ], + "score": 1.0, + "content": "learned agent model.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 347, + 507, + 413 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 427, + 211, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 213, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 213, + 442 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 451, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "score": 1.0, + "content": "In multi-agent reinforcement learning (MARL), agent modeling or opponent modeling plays an", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 461, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 475 + ], + "score": 1.0, + "content": "essential role as the ability of understanding other agent’s goals and predicting their actions can", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "score": 1.0, + "content": "greatly facilitate both collaborative and competitive purposes (Busoniu et al., 2008; Albrecht &", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 481, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 498 + ], + "score": 1.0, + "content": "Stone, 2018). Previous work has attempted to achieve this by task-oriented learning for maximizing", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 492, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 104, + 492, + 506, + 508 + ], + "score": 1.0, + "content": "a specified collaborative or competitive reward in the given tasks. For instance, inspired by game", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 504, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 517 + ], + "score": 1.0, + "content": "theory, there have been approaches aiming at finding Nash equilibira in multi-agent games, where", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "agents’ models are represented by their utilities (Littman, 1994; Hu & Wellman, 2003) and strategies", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "(Claus & Boutilier, 1998; Tesauro, 2004; Powers & Shoham, 2005; Heinrich et al., 2015; Heinrich &", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "Silver, 2016; Lanctot et al., 2017). Recently, some deep RL methods have incorporated simple agent", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 545, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 545, + 506, + 560 + ], + "score": 1.0, + "content": "modeling into Q-learning (Lowe et al., 2017) or policy updates (Foerster et al., 2018). Auxiliary", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 557, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 506, + 570 + ], + "score": 1.0, + "content": "tasks like explicitly predicting other agents’ goals have also been applied to MARL (Mordatch &", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 567, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 104, + 567, + 506, + 582 + ], + "score": 1.0, + "content": "Abbeel, 2018). In previous work, the agents’ incentive of modeling other agents comes from reaching", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 577, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 104, + 577, + 506, + 591 + ], + "score": 1.0, + "content": "a common goal or conflicting goals. In contrast, we never define a task-specific reward for the learner", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "since the goal of our probing-based interactive agent modeling is not to reach a predefined goal but", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 597, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 613 + ], + "score": 1.0, + "content": "rather to learn a good mind model of the demonstrator which can be generalized to unseen settings", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 609, + 454, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 454, + 622 + ], + "score": 1.0, + "content": "and transferred to multi-agent tasks afterwards when a task-dependent reward is given.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 32.5, + "bbox_fs": [ + 104, + 451, + 506, + 622 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 625, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 625, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 506, + 639 + ], + "score": 1.0, + "content": "Our work is greatly inspired by Theory of Mind (ToM) (Premack & Woodruff, 1978), which is a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 636, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 506, + 650 + ], + "score": 1.0, + "content": "general and powerful framework to model an agent’s mind and use the mind model to better explain or", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 646, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 660 + ], + "score": 1.0, + "content": "predict the agent’s behaviors. Baker et al. (2009) has proposed a Bayesian formulation to incorporate", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 657, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 671 + ], + "score": 1.0, + "content": "an agent’s desires, intentions, and belief about the world into the agent’s policy in order to predict", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "the agent’s goals and actions via inverse planning. Rabinowitz et al. (2018) adopts a simpler mind", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 678, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 690 + ], + "score": 1.0, + "content": "representation (i.e., a latent vector) learned by a neural net (ToMnet). In our work, the learner is also", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "score": 1.0, + "content": "trying to learn the policy of the demonstrator with a simple mind modeling. However, instead of only", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "serving as a passive observer, we encourage the learner to probe so that it will learn to interact with", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "the environment and with the demonstrator to quickly and continuously discover new behaviors of", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 720, + 378, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 378, + 733 + ], + "score": 1.0, + "content": "the demonstrator, which in turn helps learning a better mind model.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 625, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 206, + 80, + 404, + 243 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 206, + 80, + 404, + 243 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 206, + 80, + 404, + 243 + ], + "spans": [ + { + "bbox": [ + 206, + 80, + 404, + 243 + ], + "score": 0.971, + "type": "image", + "image_path": "84aa49337f3c7c08fcf23511a43c0078a3fcfdc51c45b78d41146d298740de5e.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 206, + 80, + 404, + 93.58333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 206, + 93.58333333333333, + 404, + 107.16666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 206, + 107.16666666666666, + 404, + 120.74999999999999 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 206, + 120.74999999999999, + 404, + 134.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 206, + 134.33333333333331, + 404, + 147.91666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 206, + 147.91666666666666, + 404, + 161.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 206, + 161.5, + 404, + 175.08333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 206, + 175.08333333333334, + 404, + 188.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 206, + 188.66666666666669, + 404, + 202.25000000000003 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 206, + 202.25000000000003, + 404, + 215.83333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 206, + 215.83333333333337, + 404, + 229.4166666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 206, + 229.4166666666667, + 404, + 243.00000000000006 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 250, + 504, + 282 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 250, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 261 + ], + "score": 1.0, + "content": "Figure 2: An overview of our model. Architecture details are in Appendix C. Note that the modules", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 261, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 505, + 272 + ], + "score": 1.0, + "content": "do not share weights, and the dashed line indicates that it is a feed forward only path (no back", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 271, + 337, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 337, + 284 + ], + "score": 1.0, + "content": "propagation through this path to update the mind model).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + } + ], + "index": 9.25 + }, + { + "type": "text", + "bbox": [ + 107, + 305, + 505, + 390 + ], + "lines": [ + { + "bbox": [ + 106, + 305, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 506, + 318 + ], + "score": 1.0, + "content": "Our task-independent reward is related to the curiosity-driven reward applied to an RL agent for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 316, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 506, + 328 + ], + "score": 1.0, + "content": "encouraging exploration (Strehl & Littman, 2008; Bellemare et al., 2016; Tang et al., 2017; Pathak", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 327, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 505, + 339 + ], + "score": 1.0, + "content": "et al., 2017). Our probing framework differs from this in two ways: i) instead of exploring the world", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 337, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 506, + 349 + ], + "score": 1.0, + "content": "states, we encourage the learner to discover new behaviors of the demonstrator to learn a better", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 348, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 360 + ], + "score": 1.0, + "content": "model of its mind; ii) the curiosity-driven rewards in previous work only serve as auxiliary rewards", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "for achieving specific goals, whereas in our case, the sole motivation of our learner agent is from", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "score": 1.0, + "content": "curiosity, and we demonstrate that this type of pure curiosity-driven learning can actually yield rich", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 379, + 263, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 263, + 393 + ], + "score": 1.0, + "content": "behaviors and general agent modeling.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 396, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "There is certain similarity between active learning and our learning to prob mechanism. As Yang &", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 406, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 506, + 419 + ], + "score": 1.0, + "content": "Shafto (2017) shows, active learning is more effective than optimal teaching when the learner and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "teacher are not conceptually aligned, which is exactly the scenario in our problem setting (the learner", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 427, + 506, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 506, + 440 + ], + "score": 1.0, + "content": "does do not share any conceptual common ground with the demonstrator at the beginning). However,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 438, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 449 + ], + "score": 1.0, + "content": "active learning typically addresses problems such as classification (Tong & Koller, 2001; Kapoor", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 448, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 462 + ], + "score": 1.0, + "content": "et al., 2007) by generating queries to an oracle to get additional ground-truth supervision. There are", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 459, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 506, + 471 + ], + "score": 1.0, + "content": "have been work on active imitation learning (Shon et al., 2007; nd Geoffrey J. Gordon & Bagnell,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 468, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 506, + 483 + ], + "score": 1.0, + "content": "2011; Judah et al., 2012) and active inverse reinforcement learning (Lopes et al., 2009) utilizing the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 480, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 506, + 492 + ], + "score": 1.0, + "content": "similar concept, where the learner asks quires at certain states to a human oracle for guidance on what", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "actions to take at those states. In contrast, our work goes beyond the scope of the existing work on", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "active learning – we aim at training a learner agent to directly interact with the environment and with", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "the target agent in order to automatically diversify the task settings and learn a better agent model", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "without any task-dependent training objectives so that the learned agent models can be applied to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 533, + 342, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 342, + 545 + ], + "score": 1.0, + "content": "improve the learner’s performance in various applications.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 549, + 505, + 623 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "score": 1.0, + "content": "Lastly, our task-independent learning objective can also be connected with meta-learning (Wang et al.,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 558, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 573 + ], + "score": 1.0, + "content": "2016; Finn et al., 2017), which is to learn a meta strategy that can conduct efficient multi-task learning", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 570, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 506, + 582 + ], + "score": 1.0, + "content": "(Maclaurin et al., 2015; Duan et al., 2017; Hariharan & Girshick, 2017; Wichrowska et al., 2017;", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 580, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 506, + 593 + ], + "score": 1.0, + "content": "Yu et al., 2018; Baker et al., 2017) or adapt an agent’s policy to its opponent’s policy (Al-Shedivat", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 590, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 506, + 604 + ], + "score": 1.0, + "content": "et al., 2018) in a competitive setting. In this work, the purpose of our task-independent learning is", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 600, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 104, + 600, + 506, + 614 + ], + "score": 1.0, + "content": "to learn to probe a demonstrator for a better modeling of its mind, which is different from existing", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 612, + 214, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 214, + 624 + ], + "score": 1.0, + "content": "meta-learning approaches.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40 + }, + { + "type": "title", + "bbox": [ + 108, + 640, + 182, + 653 + ], + "lines": [ + { + "bbox": [ + 104, + 638, + 185, + 656 + ], + "spans": [ + { + "bbox": [ + 104, + 638, + 185, + 656 + ], + "score": 1.0, + "content": "3 APPROACH", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "title", + "bbox": [ + 107, + 666, + 164, + 677 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 166, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 166, + 678 + ], + "score": 1.0, + "content": "3.1 MODEL", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 686, + 504, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 506, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 698 + ], + "score": 1.0, + "content": "We assume a Markov Decision Process (MDP) framework for both the demonstrator and the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 696, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 268, + 711 + ], + "score": 1.0, + "content": "learner, where their behaviors at time", + "type": "text" + }, + { + "bbox": [ + 268, + 698, + 273, + 707 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 696, + 453, + 711 + ], + "score": 1.0, + "content": "are denoted by a pair of state and action", + "type": "text" + }, + { + "bbox": [ + 453, + 697, + 485, + 709 + ], + "score": 0.93, + "content": "( s _ { d } ^ { t } , a _ { d } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 696, + 506, + 711 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 707, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 135, + 721 + ], + "score": 0.91, + "content": "( s _ { l } ^ { t } , a _ { l } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 707, + 373, + 723 + ], + "score": 1.0, + "content": "respectively. The history of their behaviors upon time", + "type": "text" + }, + { + "bbox": [ + 374, + 710, + 379, + 719 + ], + "score": 0.75, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 707, + 506, + 723 + ], + "score": 1.0, + "content": "is represented by trajectories", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 720, + 431, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 234, + 733 + ], + "score": 0.91, + "content": "\\Gamma _ { d } ^ { \\acute { t } } = \\big \\{ ( s _ { d } ^ { \\tau } , a _ { d } ^ { \\tau } ) : \\tau = 1 , \\cdot \\cdot \\cdot , t \\big \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 720, + 252, + 734 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 252, + 720, + 377, + 733 + ], + "score": 0.92, + "content": "\\Gamma _ { l } ^ { t } = \\{ ( s _ { l } ^ { \\tau } , a _ { l } ^ { \\tau } ) : \\tau = 1 , \\cdot \\cdot \\cdot , t \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 720, + 431, + 734 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 206, + 80, + 404, + 243 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 206, + 80, + 404, + 243 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 206, + 80, + 404, + 243 + ], + "spans": [ + { + "bbox": [ + 206, + 80, + 404, + 243 + ], + "score": 0.971, + "type": "image", + "image_path": "84aa49337f3c7c08fcf23511a43c0078a3fcfdc51c45b78d41146d298740de5e.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 206, + 80, + 404, + 93.58333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 206, + 93.58333333333333, + 404, + 107.16666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 206, + 107.16666666666666, + 404, + 120.74999999999999 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 206, + 120.74999999999999, + 404, + 134.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 206, + 134.33333333333331, + 404, + 147.91666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 206, + 147.91666666666666, + 404, + 161.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 206, + 161.5, + 404, + 175.08333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 206, + 175.08333333333334, + 404, + 188.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 206, + 188.66666666666669, + 404, + 202.25000000000003 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 206, + 202.25000000000003, + 404, + 215.83333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 206, + 215.83333333333337, + 404, + 229.4166666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 206, + 229.4166666666667, + 404, + 243.00000000000006 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 250, + 504, + 282 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 250, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 261 + ], + "score": 1.0, + "content": "Figure 2: An overview of our model. Architecture details are in Appendix C. Note that the modules", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 261, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 505, + 272 + ], + "score": 1.0, + "content": "do not share weights, and the dashed line indicates that it is a feed forward only path (no back", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 271, + 337, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 337, + 284 + ], + "score": 1.0, + "content": "propagation through this path to update the mind model).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + } + ], + "index": 9.25 + }, + { + "type": "text", + "bbox": [ + 107, + 305, + 505, + 390 + ], + "lines": [ + { + "bbox": [ + 106, + 305, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 506, + 318 + ], + "score": 1.0, + "content": "Our task-independent reward is related to the curiosity-driven reward applied to an RL agent for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 316, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 506, + 328 + ], + "score": 1.0, + "content": "encouraging exploration (Strehl & Littman, 2008; Bellemare et al., 2016; Tang et al., 2017; Pathak", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 327, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 505, + 339 + ], + "score": 1.0, + "content": "et al., 2017). Our probing framework differs from this in two ways: i) instead of exploring the world", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 337, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 506, + 349 + ], + "score": 1.0, + "content": "states, we encourage the learner to discover new behaviors of the demonstrator to learn a better", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 348, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 360 + ], + "score": 1.0, + "content": "model of its mind; ii) the curiosity-driven rewards in previous work only serve as auxiliary rewards", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "for achieving specific goals, whereas in our case, the sole motivation of our learner agent is from", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "score": 1.0, + "content": "curiosity, and we demonstrate that this type of pure curiosity-driven learning can actually yield rich", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 379, + 263, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 263, + 393 + ], + "score": 1.0, + "content": "behaviors and general agent modeling.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 305, + 506, + 393 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 396, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "There is certain similarity between active learning and our learning to prob mechanism. As Yang &", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 406, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 506, + 419 + ], + "score": 1.0, + "content": "Shafto (2017) shows, active learning is more effective than optimal teaching when the learner and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "teacher are not conceptually aligned, which is exactly the scenario in our problem setting (the learner", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 427, + 506, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 506, + 440 + ], + "score": 1.0, + "content": "does do not share any conceptual common ground with the demonstrator at the beginning). However,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 438, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 449 + ], + "score": 1.0, + "content": "active learning typically addresses problems such as classification (Tong & Koller, 2001; Kapoor", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 448, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 462 + ], + "score": 1.0, + "content": "et al., 2007) by generating queries to an oracle to get additional ground-truth supervision. There are", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 459, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 506, + 471 + ], + "score": 1.0, + "content": "have been work on active imitation learning (Shon et al., 2007; nd Geoffrey J. Gordon & Bagnell,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 468, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 506, + 483 + ], + "score": 1.0, + "content": "2011; Judah et al., 2012) and active inverse reinforcement learning (Lopes et al., 2009) utilizing the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 480, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 506, + 492 + ], + "score": 1.0, + "content": "similar concept, where the learner asks quires at certain states to a human oracle for guidance on what", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "actions to take at those states. In contrast, our work goes beyond the scope of the existing work on", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "active learning – we aim at training a learner agent to directly interact with the environment and with", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "the target agent in order to automatically diversify the task settings and learn a better agent model", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "without any task-dependent training objectives so that the learned agent models can be applied to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 533, + 342, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 342, + 545 + ], + "score": 1.0, + "content": "improve the learner’s performance in various applications.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 396, + 506, + 545 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 549, + 505, + 623 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "score": 1.0, + "content": "Lastly, our task-independent learning objective can also be connected with meta-learning (Wang et al.,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 558, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 573 + ], + "score": 1.0, + "content": "2016; Finn et al., 2017), which is to learn a meta strategy that can conduct efficient multi-task learning", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 570, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 506, + 582 + ], + "score": 1.0, + "content": "(Maclaurin et al., 2015; Duan et al., 2017; Hariharan & Girshick, 2017; Wichrowska et al., 2017;", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 580, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 506, + 593 + ], + "score": 1.0, + "content": "Yu et al., 2018; Baker et al., 2017) or adapt an agent’s policy to its opponent’s policy (Al-Shedivat", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 590, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 506, + 604 + ], + "score": 1.0, + "content": "et al., 2018) in a competitive setting. In this work, the purpose of our task-independent learning is", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 600, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 104, + 600, + 506, + 614 + ], + "score": 1.0, + "content": "to learn to probe a demonstrator for a better modeling of its mind, which is different from existing", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 612, + 214, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 214, + 624 + ], + "score": 1.0, + "content": "meta-learning approaches.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40, + "bbox_fs": [ + 104, + 547, + 506, + 624 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 640, + 182, + 653 + ], + "lines": [ + { + "bbox": [ + 104, + 638, + 185, + 656 + ], + "spans": [ + { + "bbox": [ + 104, + 638, + 185, + 656 + ], + "score": 1.0, + "content": "3 APPROACH", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "title", + "bbox": [ + 107, + 666, + 164, + 677 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 166, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 166, + 678 + ], + "score": 1.0, + "content": "3.1 MODEL", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 686, + 504, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 506, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 698 + ], + "score": 1.0, + "content": "We assume a Markov Decision Process (MDP) framework for both the demonstrator and the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 696, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 268, + 711 + ], + "score": 1.0, + "content": "learner, where their behaviors at time", + "type": "text" + }, + { + "bbox": [ + 268, + 698, + 273, + 707 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 696, + 453, + 711 + ], + "score": 1.0, + "content": "are denoted by a pair of state and action", + "type": "text" + }, + { + "bbox": [ + 453, + 697, + 485, + 709 + ], + "score": 0.93, + "content": "( s _ { d } ^ { t } , a _ { d } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 696, + 506, + 711 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 707, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 135, + 721 + ], + "score": 0.91, + "content": "( s _ { l } ^ { t } , a _ { l } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 707, + 373, + 723 + ], + "score": 1.0, + "content": "respectively. The history of their behaviors upon time", + "type": "text" + }, + { + "bbox": [ + 374, + 710, + 379, + 719 + ], + "score": 0.75, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 707, + 506, + 723 + ], + "score": 1.0, + "content": "is represented by trajectories", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 720, + 431, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 234, + 733 + ], + "score": 0.91, + "content": "\\Gamma _ { d } ^ { \\acute { t } } = \\big \\{ ( s _ { d } ^ { \\tau } , a _ { d } ^ { \\tau } ) : \\tau = 1 , \\cdot \\cdot \\cdot , t \\big \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 720, + 252, + 734 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 252, + 720, + 377, + 733 + ], + "score": 0.92, + "content": "\\Gamma _ { l } ^ { t } = \\{ ( s _ { l } ^ { \\tau } , a _ { l } ^ { \\tau } ) : \\tau = 1 , \\cdot \\cdot \\cdot , t \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 720, + 431, + 734 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 686, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "Our interactive agent modeling framework is illustrated in Figure 2, which consists of two parts:", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "i) learner’s estimation of the demonstrator’s model and ii) the learner’s probing policy for a better", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 282, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 282, + 115 + ], + "score": 1.0, + "content": "understanding of the demonstrator’s model.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 119, + 505, + 219 + ], + "lines": [ + { + "bbox": [ + 106, + 119, + 504, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 422, + 131 + ], + "score": 1.0, + "content": "To estimate the demonstrator’s model, the learner maintains a behavior tracker,", + "type": "text" + }, + { + "bbox": [ + 422, + 120, + 446, + 131 + ], + "score": 0.88, + "content": "\\mathcal { M } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 119, + 504, + 131 + ], + "score": 1.0, + "content": ", to encode the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 130, + 506, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 130, + 398, + 143 + ], + "score": 1.0, + "content": "observed trajectory of the demonstrator, which generates a latent vector,", + "type": "text" + }, + { + "bbox": [ + 399, + 131, + 455, + 143 + ], + "score": 0.91, + "content": "m ^ { t } = \\mathcal { M } ( \\Gamma _ { d } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 130, + 506, + 143 + ], + "score": 1.0, + "content": ". This latent", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 141, + 504, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 457, + 153 + ], + "score": 1.0, + "content": "vector can be viewed as a simplified representation of the demonstrator’s mind upon time", + "type": "text" + }, + { + "bbox": [ + 457, + 143, + 461, + 151 + ], + "score": 0.78, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 141, + 504, + 153 + ], + "score": 1.0, + "content": ", hence the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 103, + 149, + 507, + 168 + ], + "spans": [ + { + "bbox": [ + 103, + 149, + 342, + 168 + ], + "score": 1.0, + "content": "learner may use it to characterize the demonstrator’s policy,", + "type": "text" + }, + { + "bbox": [ + 342, + 151, + 410, + 164 + ], + "score": 0.92, + "content": "\\pi _ { d } ( a _ { d } ^ { t } \\vert s _ { d } ^ { t } , m ^ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 149, + 507, + 168 + ], + "score": 1.0, + "content": ", from which the learner", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 163, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 163, + 285, + 177 + ], + "score": 1.0, + "content": "may predict the demonstrator’s future action", + "type": "text" + }, + { + "bbox": [ + 286, + 163, + 297, + 175 + ], + "score": 0.89, + "content": "\\hat { a } _ { d } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 163, + 437, + 177 + ], + "score": 1.0, + "content": ". Note that for each demonstration,", + "type": "text" + }, + { + "bbox": [ + 437, + 163, + 450, + 174 + ], + "score": 0.88, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 163, + 506, + 177 + ], + "score": 1.0, + "content": "always starts", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 174, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 203, + 188 + ], + "score": 1.0, + "content": "from the same constant,", + "type": "text" + }, + { + "bbox": [ + 204, + 175, + 237, + 186 + ], + "score": 0.9, + "content": "{ \\bf m } ^ { 0 } = { \\bf 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 174, + 505, + 188 + ], + "score": 1.0, + "content": ". This particular definition of the demonstrator’s policy may also be", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 186, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 505, + 198 + ], + "score": 1.0, + "content": "connected with the option framework in hierarchical RL (Sutton et al., 1999), where the behavior", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 195, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 371, + 209 + ], + "score": 1.0, + "content": "tracker serves as a global policy to update the temporal abstraction", + "type": "text" + }, + { + "bbox": [ + 371, + 196, + 384, + 206 + ], + "score": 0.88, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 195, + 505, + 209 + ], + "score": 1.0, + "content": "and consequently changes the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 205, + 171, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 155, + 221 + ], + "score": 1.0, + "content": "local policy", + "type": "text" + }, + { + "bbox": [ + 156, + 209, + 167, + 218 + ], + "score": 0.84, + "content": "\\pi _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 205, + 171, + 221 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 505, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "In this work, we require a learner to interact with the environment and/or with the demonstrator", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 233, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 506, + 246 + ], + "score": 1.0, + "content": "instead of passively watching the demonstrations. We enable this by learning a probing policy for", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 243, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 155, + 258 + ], + "score": 1.0, + "content": "the learner,", + "type": "text" + }, + { + "bbox": [ + 155, + 244, + 218, + 257 + ], + "score": 0.92, + "content": "\\pi _ { l } ( a _ { l } ^ { t } | \\dot { s _ { l } ^ { t } } , m ^ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 243, + 250, + 258 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 250, + 244, + 274, + 255 + ], + "score": 0.91, + "content": "m ^ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 243, + 506, + 258 + ], + "score": 1.0, + "content": "is from the current demonstration. The main purpose of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 254, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 268 + ], + "score": 1.0, + "content": "the probing policy is to incite new behaviors of the demonstrator, thus we adopt a curiosity-driven", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 265, + 397, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 397, + 278 + ], + "score": 1.0, + "content": "reward to train this policy. Particularly, we define the reward function as", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 214, + 282, + 396, + 297 + ], + "lines": [ + { + "bbox": [ + 214, + 282, + 396, + 297 + ], + "spans": [ + { + "bbox": [ + 214, + 282, + 396, + 297 + ], + "score": 0.92, + "content": "\\begin{array} { r } { r ^ { t } = R ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } , m ^ { t } ) = | | m ^ { t } - m ^ { t - 1 } | | ^ { 2 } , } \\end{array}", + "type": "interline_equation", + "image_path": "270c26407b519468f6d4c4f996271ccacc00ce109eade27476175f74f1122f82.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 214, + 282, + 396, + 297 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 302, + 435, + 314 + ], + "lines": [ + { + "bbox": [ + 105, + 299, + 435, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 133, + 316 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 302, + 146, + 312 + ], + "score": 0.86, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 299, + 399, + 316 + ], + "score": 1.0, + "content": "is the successive output of the behavior tracker after observing", + "type": "text" + }, + { + "bbox": [ + 399, + 301, + 431, + 315 + ], + "score": 0.92, + "content": "( s _ { d } ^ { t } , a _ { d } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 299, + 435, + 316 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 318, + 503, + 341 + ], + "lines": [ + { + "bbox": [ + 106, + 318, + 505, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 505, + 332 + ], + "score": 1.0, + "content": "Finally, based on the probing policy, the learner can perform the probing as the rollout procedure", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 329, + 280, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 280, + 342 + ], + "score": 1.0, + "content": "outlined in Algorithm 1 (see Appendix A).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 105, + 345, + 478, + 357 + ], + "lines": [ + { + "bbox": [ + 104, + 343, + 479, + 361 + ], + "spans": [ + { + "bbox": [ + 104, + 343, + 479, + 361 + ], + "score": 1.0, + "content": "In summary, there are four key components in our probing-based interactive agent modeling:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 132, + 365, + 392, + 427 + ], + "lines": [ + { + "bbox": [ + 132, + 366, + 273, + 379 + ], + "spans": [ + { + "bbox": [ + 132, + 366, + 219, + 379 + ], + "score": 1.0, + "content": "• A behavior tracker", + "type": "text" + }, + { + "bbox": [ + 219, + 366, + 269, + 379 + ], + "score": 0.92, + "content": "\\mathcal { M } ( \\Gamma _ { d } ^ { t } ; \\theta _ { M } )", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 366, + 273, + 379 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 132, + 380, + 393, + 396 + ], + "spans": [ + { + "bbox": [ + 132, + 380, + 306, + 396 + ], + "score": 1.0, + "content": "• The approximated demonstrator’s policy", + "type": "text" + }, + { + "bbox": [ + 307, + 381, + 389, + 395 + ], + "score": 0.91, + "content": "\\pi _ { d } ( a _ { d } ^ { t } \\vert s _ { d } ^ { t } , m ^ { t - 1 } ; \\theta _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 380, + 393, + 396 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 132, + 397, + 352, + 411 + ], + "spans": [ + { + "bbox": [ + 132, + 397, + 271, + 411 + ], + "score": 1.0, + "content": "• A probing policy for the learner", + "type": "text" + }, + { + "bbox": [ + 272, + 397, + 348, + 411 + ], + "score": 0.92, + "content": "\\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 397, + 352, + 411 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 132, + 413, + 372, + 428 + ], + "spans": [ + { + "bbox": [ + 132, + 414, + 301, + 428 + ], + "score": 1.0, + "content": "• A value function for the probing policy", + "type": "text" + }, + { + "bbox": [ + 301, + 413, + 369, + 427 + ], + "score": 0.92, + "content": "V ( s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { V } )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 414, + 372, + 428 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 434, + 386, + 447 + ], + "lines": [ + { + "bbox": [ + 106, + 434, + 387, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 387, + 448 + ], + "score": 1.0, + "content": "Please refer to Appendix C for the details of the network architecture.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 107, + 459, + 178, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 459, + 178, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 178, + 472 + ], + "score": 1.0, + "content": "3.2 LEARNING", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 479, + 506, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 480, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 506, + 493 + ], + "score": 1.0, + "content": "As discussed above, we have two main learning objectives corresponding to the two parts in our", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 492, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 503 + ], + "score": 1.0, + "content": "model respectively: i) minimizing imitation error (i.e., cross-entropy loss for action prediction)", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "score": 1.0, + "content": "and ii) maximizing accumulated probing reward (i.e., probing policy optimization). Consequently,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 512, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 506, + 524 + ], + "score": 1.0, + "content": "our approach includes an imitation learning process for recovering demonstrator’s policy and a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 522, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 506, + 534 + ], + "score": 1.0, + "content": "reinforcement learning process for optimizing the probing policy. These two processes are intertwined", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 532, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 546 + ], + "score": 1.0, + "content": "and influenced by each other: the IL process provides the behavior tracker guiding the probing policy", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 542, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 213, + 557 + ], + "score": 1.0, + "content": "while the RL process helps", + "type": "text" + }, + { + "bbox": [ + 213, + 544, + 224, + 554 + ], + "score": 0.25, + "content": "\\mathrm { I L }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 542, + 506, + 557 + ], + "score": 1.0, + "content": "to observe more diverse behaviors from the demonstrator, thus enabling", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 554, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 506, + 567 + ], + "score": 1.0, + "content": "an interactive learning scheme. Algorithm 2 in Appendix A summarizes the overall learning approach,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 563, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 104, + 563, + 134, + 578 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 565, + 145, + 574 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 563, + 506, + 578 + ], + "score": 1.0, + "content": "is the total number of training iterations. The optimization details for the two learning", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 575, + 253, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 253, + 586 + ], + "score": 1.0, + "content": "processes are introduced as follows.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32.5 + }, + { + "type": "title", + "bbox": [ + 107, + 598, + 235, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 235, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 235, + 611 + ], + "score": 1.0, + "content": "3.2.1 IMITATION LEARNING", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 617, + 504, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 123, + 631 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 123, + 617, + 133, + 627 + ], + "score": 0.33, + "content": "\\mathrm { I L }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 615, + 505, + 631 + ], + "score": 1.0, + "content": ", we want to learn a good behavior tracker as well as the demonstrator’s policy. For this, we", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 628, + 380, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 380, + 640 + ], + "score": 1.0, + "content": "minimize a cross-entropy loss for predicting demonstrator’s actions:", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "interline_equation", + "bbox": [ + 221, + 644, + 389, + 660 + ], + "lines": [ + { + "bbox": [ + 221, + 644, + 389, + 660 + ], + "spans": [ + { + "bbox": [ + 221, + 644, + 389, + 660 + ], + "score": 0.92, + "content": "\\mathcal { L } ( \\theta _ { M } , \\theta _ { d } ) = \\mathbb { E } \\left[ - \\log \\pi _ { d } ( a _ { d } ^ { t } | s _ { d } ^ { t } , m ^ { t - 1 } ) \\right] .", + "type": "interline_equation", + "image_path": "b59c9a697f4aa739947d7d41b2f555f240ff19973d0ea14bac94c86cbc450414.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 221, + 644, + 389, + 660 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 669, + 263, + 681 + ], + "lines": [ + { + "bbox": [ + 105, + 669, + 264, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 264, + 682 + ], + "score": 1.0, + "content": "3.2.2 REINFORCEMENT LEARNING", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 689, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "The goal of RL is to train a good probing policy that will maximize the change of behavior and/or", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 700, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 711 + ], + "score": 1.0, + "content": "discover new behaviors of the demonstrator to facilitate the imitation learning. Based on the reward", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 107, + 710, + 505, + 739 + ], + "spans": [ + { + "bbox": [ + 107, + 720, + 178, + 734 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathbb { E } \\left[ \\sum _ { \\tau = 0 } ^ { \\infty } \\gamma ^ { \\tau } r ^ { t + \\tau } \\right] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 710, + 208, + 739 + ], + "score": 1.0, + "content": "n Eq. (, where", + "type": "text" + }, + { + "bbox": [ + 209, + 722, + 216, + 732 + ], + "score": 0.84, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 710, + 470, + 739 + ], + "score": 1.0, + "content": "this goal is equivalent to maximizing the accumulated reward, is the discounted factor.", + "type": "text" + }, + { + "bbox": [ + 470, + 710, + 505, + 722 + ], + "score": 0.91, + "content": "J ( \\theta _ { l } ) =", + "type": "inline_equation" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "Our interactive agent modeling framework is illustrated in Figure 2, which consists of two parts:", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "i) learner’s estimation of the demonstrator’s model and ii) the learner’s probing policy for a better", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 282, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 282, + 115 + ], + "score": 1.0, + "content": "understanding of the demonstrator’s model.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 506, + 115 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 119, + 505, + 219 + ], + "lines": [ + { + "bbox": [ + 106, + 119, + 504, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 422, + 131 + ], + "score": 1.0, + "content": "To estimate the demonstrator’s model, the learner maintains a behavior tracker,", + "type": "text" + }, + { + "bbox": [ + 422, + 120, + 446, + 131 + ], + "score": 0.88, + "content": "\\mathcal { M } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 119, + 504, + 131 + ], + "score": 1.0, + "content": ", to encode the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 130, + 506, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 130, + 398, + 143 + ], + "score": 1.0, + "content": "observed trajectory of the demonstrator, which generates a latent vector,", + "type": "text" + }, + { + "bbox": [ + 399, + 131, + 455, + 143 + ], + "score": 0.91, + "content": "m ^ { t } = \\mathcal { M } ( \\Gamma _ { d } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 130, + 506, + 143 + ], + "score": 1.0, + "content": ". This latent", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 141, + 504, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 457, + 153 + ], + "score": 1.0, + "content": "vector can be viewed as a simplified representation of the demonstrator’s mind upon time", + "type": "text" + }, + { + "bbox": [ + 457, + 143, + 461, + 151 + ], + "score": 0.78, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 141, + 504, + 153 + ], + "score": 1.0, + "content": ", hence the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 103, + 149, + 507, + 168 + ], + "spans": [ + { + "bbox": [ + 103, + 149, + 342, + 168 + ], + "score": 1.0, + "content": "learner may use it to characterize the demonstrator’s policy,", + "type": "text" + }, + { + "bbox": [ + 342, + 151, + 410, + 164 + ], + "score": 0.92, + "content": "\\pi _ { d } ( a _ { d } ^ { t } \\vert s _ { d } ^ { t } , m ^ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 149, + 507, + 168 + ], + "score": 1.0, + "content": ", from which the learner", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 163, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 163, + 285, + 177 + ], + "score": 1.0, + "content": "may predict the demonstrator’s future action", + "type": "text" + }, + { + "bbox": [ + 286, + 163, + 297, + 175 + ], + "score": 0.89, + "content": "\\hat { a } _ { d } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 163, + 437, + 177 + ], + "score": 1.0, + "content": ". Note that for each demonstration,", + "type": "text" + }, + { + "bbox": [ + 437, + 163, + 450, + 174 + ], + "score": 0.88, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 163, + 506, + 177 + ], + "score": 1.0, + "content": "always starts", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 174, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 203, + 188 + ], + "score": 1.0, + "content": "from the same constant,", + "type": "text" + }, + { + "bbox": [ + 204, + 175, + 237, + 186 + ], + "score": 0.9, + "content": "{ \\bf m } ^ { 0 } = { \\bf 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 174, + 505, + 188 + ], + "score": 1.0, + "content": ". This particular definition of the demonstrator’s policy may also be", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 186, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 505, + 198 + ], + "score": 1.0, + "content": "connected with the option framework in hierarchical RL (Sutton et al., 1999), where the behavior", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 195, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 371, + 209 + ], + "score": 1.0, + "content": "tracker serves as a global policy to update the temporal abstraction", + "type": "text" + }, + { + "bbox": [ + 371, + 196, + 384, + 206 + ], + "score": 0.88, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 195, + 505, + 209 + ], + "score": 1.0, + "content": "and consequently changes the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 205, + 171, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 155, + 221 + ], + "score": 1.0, + "content": "local policy", + "type": "text" + }, + { + "bbox": [ + 156, + 209, + 167, + 218 + ], + "score": 0.84, + "content": "\\pi _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 205, + 171, + 221 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7, + "bbox_fs": [ + 103, + 119, + 507, + 221 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 505, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "In this work, we require a learner to interact with the environment and/or with the demonstrator", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 233, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 506, + 246 + ], + "score": 1.0, + "content": "instead of passively watching the demonstrations. We enable this by learning a probing policy for", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 243, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 155, + 258 + ], + "score": 1.0, + "content": "the learner,", + "type": "text" + }, + { + "bbox": [ + 155, + 244, + 218, + 257 + ], + "score": 0.92, + "content": "\\pi _ { l } ( a _ { l } ^ { t } | \\dot { s _ { l } ^ { t } } , m ^ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 243, + 250, + 258 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 250, + 244, + 274, + 255 + ], + "score": 0.91, + "content": "m ^ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 243, + 506, + 258 + ], + "score": 1.0, + "content": "is from the current demonstration. The main purpose of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 254, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 268 + ], + "score": 1.0, + "content": "the probing policy is to incite new behaviors of the demonstrator, thus we adopt a curiosity-driven", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 265, + 397, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 397, + 278 + ], + "score": 1.0, + "content": "reward to train this policy. Particularly, we define the reward function as", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 223, + 506, + 278 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 214, + 282, + 396, + 297 + ], + "lines": [ + { + "bbox": [ + 214, + 282, + 396, + 297 + ], + "spans": [ + { + "bbox": [ + 214, + 282, + 396, + 297 + ], + "score": 0.92, + "content": "\\begin{array} { r } { r ^ { t } = R ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } , m ^ { t } ) = | | m ^ { t } - m ^ { t - 1 } | | ^ { 2 } , } \\end{array}", + "type": "interline_equation", + "image_path": "270c26407b519468f6d4c4f996271ccacc00ce109eade27476175f74f1122f82.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 214, + 282, + 396, + 297 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 302, + 435, + 314 + ], + "lines": [ + { + "bbox": [ + 105, + 299, + 435, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 133, + 316 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 302, + 146, + 312 + ], + "score": 0.86, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 299, + 399, + 316 + ], + "score": 1.0, + "content": "is the successive output of the behavior tracker after observing", + "type": "text" + }, + { + "bbox": [ + 399, + 301, + 431, + 315 + ], + "score": 0.92, + "content": "( s _ { d } ^ { t } , a _ { d } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 299, + 435, + 316 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 299, + 435, + 316 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 318, + 503, + 341 + ], + "lines": [ + { + "bbox": [ + 106, + 318, + 505, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 505, + 332 + ], + "score": 1.0, + "content": "Finally, based on the probing policy, the learner can perform the probing as the rollout procedure", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 329, + 280, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 280, + 342 + ], + "score": 1.0, + "content": "outlined in Algorithm 1 (see Appendix A).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 318, + 505, + 342 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 345, + 478, + 357 + ], + "lines": [ + { + "bbox": [ + 104, + 343, + 479, + 361 + ], + "spans": [ + { + "bbox": [ + 104, + 343, + 479, + 361 + ], + "score": 1.0, + "content": "In summary, there are four key components in our probing-based interactive agent modeling:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 104, + 343, + 479, + 361 + ] + }, + { + "type": "list", + "bbox": [ + 132, + 365, + 392, + 427 + ], + "lines": [ + { + "bbox": [ + 132, + 366, + 273, + 379 + ], + "spans": [ + { + "bbox": [ + 132, + 366, + 219, + 379 + ], + "score": 1.0, + "content": "• A behavior tracker", + "type": "text" + }, + { + "bbox": [ + 219, + 366, + 269, + 379 + ], + "score": 0.92, + "content": "\\mathcal { M } ( \\Gamma _ { d } ^ { t } ; \\theta _ { M } )", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 366, + 273, + 379 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 380, + 393, + 396 + ], + "spans": [ + { + "bbox": [ + 132, + 380, + 306, + 396 + ], + "score": 1.0, + "content": "• The approximated demonstrator’s policy", + "type": "text" + }, + { + "bbox": [ + 307, + 381, + 389, + 395 + ], + "score": 0.91, + "content": "\\pi _ { d } ( a _ { d } ^ { t } \\vert s _ { d } ^ { t } , m ^ { t - 1 } ; \\theta _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 380, + 393, + 396 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 397, + 352, + 411 + ], + "spans": [ + { + "bbox": [ + 132, + 397, + 271, + 411 + ], + "score": 1.0, + "content": "• A probing policy for the learner", + "type": "text" + }, + { + "bbox": [ + 272, + 397, + 348, + 411 + ], + "score": 0.92, + "content": "\\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 397, + 352, + 411 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 413, + 372, + 428 + ], + "spans": [ + { + "bbox": [ + 132, + 414, + 301, + 428 + ], + "score": 1.0, + "content": "• A value function for the probing policy", + "type": "text" + }, + { + "bbox": [ + 301, + 413, + 369, + 427 + ], + "score": 0.92, + "content": "V ( s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { V } )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 414, + 372, + 428 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 23.5, + "bbox_fs": [ + 132, + 366, + 393, + 428 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 434, + 386, + 447 + ], + "lines": [ + { + "bbox": [ + 106, + 434, + 387, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 387, + 448 + ], + "score": 1.0, + "content": "Please refer to Appendix C for the details of the network architecture.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 434, + 387, + 448 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 459, + 178, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 459, + 178, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 178, + 472 + ], + "score": 1.0, + "content": "3.2 LEARNING", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 479, + 506, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 480, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 506, + 493 + ], + "score": 1.0, + "content": "As discussed above, we have two main learning objectives corresponding to the two parts in our", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 492, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 503 + ], + "score": 1.0, + "content": "model respectively: i) minimizing imitation error (i.e., cross-entropy loss for action prediction)", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "score": 1.0, + "content": "and ii) maximizing accumulated probing reward (i.e., probing policy optimization). Consequently,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 512, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 506, + 524 + ], + "score": 1.0, + "content": "our approach includes an imitation learning process for recovering demonstrator’s policy and a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 522, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 506, + 534 + ], + "score": 1.0, + "content": "reinforcement learning process for optimizing the probing policy. These two processes are intertwined", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 532, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 546 + ], + "score": 1.0, + "content": "and influenced by each other: the IL process provides the behavior tracker guiding the probing policy", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 542, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 213, + 557 + ], + "score": 1.0, + "content": "while the RL process helps", + "type": "text" + }, + { + "bbox": [ + 213, + 544, + 224, + 554 + ], + "score": 0.25, + "content": "\\mathrm { I L }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 542, + 506, + 557 + ], + "score": 1.0, + "content": "to observe more diverse behaviors from the demonstrator, thus enabling", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 554, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 506, + 567 + ], + "score": 1.0, + "content": "an interactive learning scheme. Algorithm 2 in Appendix A summarizes the overall learning approach,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 563, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 104, + 563, + 134, + 578 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 565, + 145, + 574 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 563, + 506, + 578 + ], + "score": 1.0, + "content": "is the total number of training iterations. The optimization details for the two learning", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 575, + 253, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 253, + 586 + ], + "score": 1.0, + "content": "processes are introduced as follows.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32.5, + "bbox_fs": [ + 104, + 480, + 506, + 586 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 598, + 235, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 235, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 235, + 611 + ], + "score": 1.0, + "content": "3.2.1 IMITATION LEARNING", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 617, + 504, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 123, + 631 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 123, + 617, + 133, + 627 + ], + "score": 0.33, + "content": "\\mathrm { I L }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 615, + 505, + 631 + ], + "score": 1.0, + "content": ", we want to learn a good behavior tracker as well as the demonstrator’s policy. For this, we", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 628, + 380, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 380, + 640 + ], + "score": 1.0, + "content": "minimize a cross-entropy loss for predicting demonstrator’s actions:", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 615, + 505, + 640 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 221, + 644, + 389, + 660 + ], + "lines": [ + { + "bbox": [ + 221, + 644, + 389, + 660 + ], + "spans": [ + { + "bbox": [ + 221, + 644, + 389, + 660 + ], + "score": 0.92, + "content": "\\mathcal { L } ( \\theta _ { M } , \\theta _ { d } ) = \\mathbb { E } \\left[ - \\log \\pi _ { d } ( a _ { d } ^ { t } | s _ { d } ^ { t } , m ^ { t - 1 } ) \\right] .", + "type": "interline_equation", + "image_path": "b59c9a697f4aa739947d7d41b2f555f240ff19973d0ea14bac94c86cbc450414.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 221, + 644, + 389, + 660 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 669, + 263, + 681 + ], + "lines": [ + { + "bbox": [ + 105, + 669, + 264, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 264, + 682 + ], + "score": 1.0, + "content": "3.2.2 REINFORCEMENT LEARNING", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 689, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "The goal of RL is to train a good probing policy that will maximize the change of behavior and/or", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 700, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 711 + ], + "score": 1.0, + "content": "discover new behaviors of the demonstrator to facilitate the imitation learning. Based on the reward", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 107, + 710, + 505, + 739 + ], + "spans": [ + { + "bbox": [ + 107, + 720, + 178, + 734 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathbb { E } \\left[ \\sum _ { \\tau = 0 } ^ { \\infty } \\gamma ^ { \\tau } r ^ { t + \\tau } \\right] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 710, + 208, + 739 + ], + "score": 1.0, + "content": "n Eq. (, where", + "type": "text" + }, + { + "bbox": [ + 209, + 722, + 216, + 732 + ], + "score": 0.84, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 710, + 470, + 739 + ], + "score": 1.0, + "content": "this goal is equivalent to maximizing the accumulated reward, is the discounted factor.", + "type": "text" + }, + { + "bbox": [ + 470, + 710, + 505, + 722 + ], + "score": 0.91, + "content": "J ( \\theta _ { l } ) =", + "type": "inline_equation" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 689, + 505, + 739 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "For the policy optimization, we use Advantage Actor-Critic (A2C) (Mnih et al., 2016) to conduct", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 273, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 273, + 106 + ], + "score": 1.0, + "content": "on-policy training. The policy gradient is", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 135, + 109, + 475, + 125 + ], + "lines": [ + { + "bbox": [ + 135, + 109, + 475, + 125 + ], + "spans": [ + { + "bbox": [ + 135, + 109, + 475, + 125 + ], + "score": 0.9, + "content": "\\nabla _ { \\theta _ { l } } J ( \\theta _ { l } ) = \\nabla _ { \\theta _ { l } } \\left[ \\log \\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { l } ) A ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } ) + \\lambda \\mathcal { H } ( \\pi _ { l } ( \\cdot | s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { l } ) ) \\right] ,", + "type": "interline_equation", + "image_path": "94dedab7ea514b04f933d7460cb599c35bc4b9c5d7f1fb734fbed77af46661d2.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 135, + 109, + 475, + 125 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 506, + 166 + ], + "lines": [ + { + "bbox": [ + 102, + 128, + 506, + 148 + ], + "spans": [ + { + "bbox": [ + 102, + 128, + 134, + 148 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 131, + 198, + 144 + ], + "score": 0.92, + "content": "A ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 128, + 358, + 148 + ], + "score": 1.0, + "content": "is the advantage estimation defined as", + "type": "text" + }, + { + "bbox": [ + 358, + 131, + 506, + 144 + ], + "score": 0.92, + "content": "\\begin{array} { r } { A ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } ) = \\sum _ { \\tau = 0 } ^ { \\infty } \\gamma ^ { \\tau } r ^ { t + \\tau } \\ - } \\end{array}", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 141, + 507, + 158 + ], + "spans": [ + { + "bbox": [ + 107, + 144, + 158, + 156 + ], + "score": 0.91, + "content": "V ( s _ { l } ^ { t } , m ^ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 141, + 176, + 158 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 177, + 144, + 196, + 156 + ], + "score": 0.89, + "content": "\\mathcal { H } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 141, + 411, + 158 + ], + "score": 1.0, + "content": "is the entropy regularization weighted by the constant", + "type": "text" + }, + { + "bbox": [ + 412, + 145, + 450, + 154 + ], + "score": 0.88, + "content": "\\lambda = 0 . 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 141, + 507, + 158 + ], + "score": 1.0, + "content": "for encourag-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 154, + 400, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 400, + 167 + ], + "score": 1.0, + "content": "ing exploration. The value function is updated by the following gradient:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 171, + 396, + 207 + ], + "lines": [ + { + "bbox": [ + 215, + 171, + 396, + 207 + ], + "spans": [ + { + "bbox": [ + 215, + 171, + 396, + 207 + ], + "score": 0.93, + "content": "\\nabla _ { \\theta _ { V } } \\frac { 1 } { 2 } \\left( \\sum _ { \\tau = 0 } ^ { \\infty } \\gamma ^ { \\tau } r ^ { t + \\tau } - V ( s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { V } ) \\right) ^ { 2 } .", + "type": "interline_equation", + "image_path": "3e55479b0119c52ec1c9bebaff1d83382c9c087a98b80f79ba2c1efc6e84f2ff.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 215, + 171, + 396, + 189.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 215, + 189.0, + 396, + 207.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 218, + 505, + 261 + ], + "lines": [ + { + "bbox": [ + 105, + 217, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 506, + 231 + ], + "score": 1.0, + "content": "Note that when we update the probing policy and the value function, the behavior tracker is fixed", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 379, + 240 + ], + "score": 1.0, + "content": "(i.e., no back propagation through the dashed path in Figure 2). Thus", + "type": "text" + }, + { + "bbox": [ + 380, + 229, + 394, + 239 + ], + "score": 0.9, + "content": "\\theta _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "will only be updated by the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 239, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 318, + 251 + ], + "score": 1.0, + "content": "IL loss in Eq. (2). This is to ensure that the change of", + "type": "text" + }, + { + "bbox": [ + 318, + 239, + 331, + 249 + ], + "score": 0.88, + "content": "\\mathrm { \\Sigma } _ { m } \\bar { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 239, + 505, + 251 + ], + "score": 1.0, + "content": "is only caused by the change in policy or in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 248, + 409, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 390, + 263 + ], + "score": 1.0, + "content": "behaviors, and not by the change of the parameters of the mind model,", + "type": "text" + }, + { + "bbox": [ + 390, + 250, + 404, + 260 + ], + "score": 0.91, + "content": "\\theta _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 248, + 409, + 263 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 107, + 276, + 200, + 289 + ], + "lines": [ + { + "bbox": [ + 105, + 276, + 201, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 201, + 291 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 300, + 505, + 323 + ], + "lines": [ + { + "bbox": [ + 106, + 301, + 504, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 504, + 313 + ], + "score": 1.0, + "content": "To evaluate our approach, we introduce four tasks as shown in Figure 3, including three grid world", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 311, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 506, + 325 + ], + "score": 1.0, + "content": "tasks (passing through obstacles, maze navigation, construction) and an algorithmic problem (sorting).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 328, + 505, + 392 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 342 + ], + "score": 1.0, + "content": "In order to test the generalization ability of the learned agent model, we adopt a strict training", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 339, + 507, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 507, + 352 + ], + "score": 1.0, + "content": "procedure, where only one particular environment and task design is given during training. Specially,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "score": 1.0, + "content": "for grid world tasks, we fix the environment layout and/or item placement in each demonstration,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 358, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 374 + ], + "score": 1.0, + "content": "whereas for the sorting task, we use the exact same input array throughout the training. At testing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "score": 1.0, + "content": "time, we randomize the task settings to an extent to create novel environments/inputs that have never", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 381, + 403, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 403, + 393 + ], + "score": 1.0, + "content": "been seen during training. We provide the specific settings in Section 4.1.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 107, + 397, + 505, + 441 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 409 + ], + "score": 1.0, + "content": "We implement rule-based policies for the demonstrator i) by searching the best plan from the initial", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 407, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 420 + ], + "score": 1.0, + "content": "state to the goal state for the grid world tasks or ii) by the bubble sort algorithm for sorting. When", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 418, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 432 + ], + "score": 1.0, + "content": "there is no possible path to reach the goal (e.g., blocked by the learner), the demonstrator will stop", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 429, + 216, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 216, + 442 + ], + "score": 1.0, + "content": "until a viable path appears.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 107, + 453, + 160, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 453, + 161, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 161, + 466 + ], + "score": 1.0, + "content": "4.1 TASKS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "image", + "bbox": [ + 126, + 476, + 486, + 545 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 126, + 476, + 486, + 545 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 126, + 476, + 486, + 545 + ], + "spans": [ + { + "bbox": [ + 126, + 476, + 486, + 545 + ], + "score": 0.969, + "type": "image", + "image_path": "3b9d1a1dd367e5002b7172940644e658adf68fc36a8b0e845a272a5d536c86d3.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 126, + 476, + 486, + 499.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 126, + 499.0, + 486, + 522.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 126, + 522.0, + 486, + 545.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 219, + 552, + 393, + 564 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 216, + 551, + 393, + 564 + ], + "spans": [ + { + "bbox": [ + 216, + 551, + 393, + 564 + ], + "score": 1.0, + "content": "Figure 3: Illustration of the evaluated tasks.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + } + ], + "index": 28.0 + }, + { + "type": "text", + "bbox": [ + 106, + 577, + 505, + 652 + ], + "lines": [ + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "Passing. In this task modified from Baker et al. (2009), the demonstrator is initially located at the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 587, + 507, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 507, + 601 + ], + "score": 1.0, + "content": "bottom-right corner and is trying to pass through the closest gap to get into the upper part of the room.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 598, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 505, + 611 + ], + "score": 1.0, + "content": "The demonstrator can take 5 actions including moving in four directions and stopping, whereas the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 608, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 623 + ], + "score": 1.0, + "content": "learner can move in four directions, stop, and also pickup or put down a wall block. The training", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "environment is shown in Figure 3, where the gap is always located at the left end of the wall in the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "score": 1.0, + "content": "middle. In testing cases, we randomly place the location of the gap and the initial position of the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 641, + 164, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 164, + 653 + ], + "score": 1.0, + "content": "demonstrator.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 669 + ], + "score": 1.0, + "content": "Maze Navigation. Inspired by similar tasks in recent literature (Andreas et al., 2017), we place a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "few door blocks and tools (a key and a hammer) in a four-room maze, where the key can be used to", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "open the yellow door but has no effect on the blue door, which must be broken by the hammer. The", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "demonstrator is trying to go from the top-right room to the top-left room. The two agents share the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "score": 1.0, + "content": "same action space including moving in four directions, picking up an item, and putting down an item.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 711, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 506, + 722 + ], + "score": 1.0, + "content": "Also, they can only carry one item at a time. In the training setting, the initial positions of both agents", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "and the door blocks are fixed as shown in Figure 3, whereas the tools may be randomly placed at only", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "For the policy optimization, we use Advantage Actor-Critic (A2C) (Mnih et al., 2016) to conduct", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 273, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 273, + 106 + ], + "score": 1.0, + "content": "on-policy training. The policy gradient is", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 135, + 109, + 475, + 125 + ], + "lines": [ + { + "bbox": [ + 135, + 109, + 475, + 125 + ], + "spans": [ + { + "bbox": [ + 135, + 109, + 475, + 125 + ], + "score": 0.9, + "content": "\\nabla _ { \\theta _ { l } } J ( \\theta _ { l } ) = \\nabla _ { \\theta _ { l } } \\left[ \\log \\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { l } ) A ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } ) + \\lambda \\mathcal { H } ( \\pi _ { l } ( \\cdot | s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { l } ) ) \\right] ,", + "type": "interline_equation", + "image_path": "94dedab7ea514b04f933d7460cb599c35bc4b9c5d7f1fb734fbed77af46661d2.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 135, + 109, + 475, + 125 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 506, + 166 + ], + "lines": [ + { + "bbox": [ + 102, + 128, + 506, + 148 + ], + "spans": [ + { + "bbox": [ + 102, + 128, + 134, + 148 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 131, + 198, + 144 + ], + "score": 0.92, + "content": "A ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 128, + 358, + 148 + ], + "score": 1.0, + "content": "is the advantage estimation defined as", + "type": "text" + }, + { + "bbox": [ + 358, + 131, + 506, + 144 + ], + "score": 0.92, + "content": "\\begin{array} { r } { A ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } ) = \\sum _ { \\tau = 0 } ^ { \\infty } \\gamma ^ { \\tau } r ^ { t + \\tau } \\ - } \\end{array}", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 141, + 507, + 158 + ], + "spans": [ + { + "bbox": [ + 107, + 144, + 158, + 156 + ], + "score": 0.91, + "content": "V ( s _ { l } ^ { t } , m ^ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 141, + 176, + 158 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 177, + 144, + 196, + 156 + ], + "score": 0.89, + "content": "\\mathcal { H } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 141, + 411, + 158 + ], + "score": 1.0, + "content": "is the entropy regularization weighted by the constant", + "type": "text" + }, + { + "bbox": [ + 412, + 145, + 450, + 154 + ], + "score": 0.88, + "content": "\\lambda = 0 . 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 141, + 507, + 158 + ], + "score": 1.0, + "content": "for encourag-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 154, + 400, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 400, + 167 + ], + "score": 1.0, + "content": "ing exploration. The value function is updated by the following gradient:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 102, + 128, + 507, + 167 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 171, + 396, + 207 + ], + "lines": [ + { + "bbox": [ + 215, + 171, + 396, + 207 + ], + "spans": [ + { + "bbox": [ + 215, + 171, + 396, + 207 + ], + "score": 0.93, + "content": "\\nabla _ { \\theta _ { V } } \\frac { 1 } { 2 } \\left( \\sum _ { \\tau = 0 } ^ { \\infty } \\gamma ^ { \\tau } r ^ { t + \\tau } - V ( s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { V } ) \\right) ^ { 2 } .", + "type": "interline_equation", + "image_path": "3e55479b0119c52ec1c9bebaff1d83382c9c087a98b80f79ba2c1efc6e84f2ff.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 215, + 171, + 396, + 189.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 215, + 189.0, + 396, + 207.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 218, + 505, + 261 + ], + "lines": [ + { + "bbox": [ + 105, + 217, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 506, + 231 + ], + "score": 1.0, + "content": "Note that when we update the probing policy and the value function, the behavior tracker is fixed", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 379, + 240 + ], + "score": 1.0, + "content": "(i.e., no back propagation through the dashed path in Figure 2). Thus", + "type": "text" + }, + { + "bbox": [ + 380, + 229, + 394, + 239 + ], + "score": 0.9, + "content": "\\theta _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "will only be updated by the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 239, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 318, + 251 + ], + "score": 1.0, + "content": "IL loss in Eq. (2). This is to ensure that the change of", + "type": "text" + }, + { + "bbox": [ + 318, + 239, + 331, + 249 + ], + "score": 0.88, + "content": "\\mathrm { \\Sigma } _ { m } \\bar { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 239, + 505, + 251 + ], + "score": 1.0, + "content": "is only caused by the change in policy or in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 248, + 409, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 390, + 263 + ], + "score": 1.0, + "content": "behaviors, and not by the change of the parameters of the mind model,", + "type": "text" + }, + { + "bbox": [ + 390, + 250, + 404, + 260 + ], + "score": 0.91, + "content": "\\theta _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 248, + 409, + 263 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 217, + 506, + 263 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 276, + 200, + 289 + ], + "lines": [ + { + "bbox": [ + 105, + 276, + 201, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 201, + 291 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 300, + 505, + 323 + ], + "lines": [ + { + "bbox": [ + 106, + 301, + 504, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 504, + 313 + ], + "score": 1.0, + "content": "To evaluate our approach, we introduce four tasks as shown in Figure 3, including three grid world", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 311, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 506, + 325 + ], + "score": 1.0, + "content": "tasks (passing through obstacles, maze navigation, construction) and an algorithmic problem (sorting).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 301, + 506, + 325 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 328, + 505, + 392 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 342 + ], + "score": 1.0, + "content": "In order to test the generalization ability of the learned agent model, we adopt a strict training", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 339, + 507, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 507, + 352 + ], + "score": 1.0, + "content": "procedure, where only one particular environment and task design is given during training. Specially,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "score": 1.0, + "content": "for grid world tasks, we fix the environment layout and/or item placement in each demonstration,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 358, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 374 + ], + "score": 1.0, + "content": "whereas for the sorting task, we use the exact same input array throughout the training. At testing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "score": 1.0, + "content": "time, we randomize the task settings to an extent to create novel environments/inputs that have never", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 381, + 403, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 403, + 393 + ], + "score": 1.0, + "content": "been seen during training. We provide the specific settings in Section 4.1.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 326, + 507, + 393 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 397, + 505, + 441 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 409 + ], + "score": 1.0, + "content": "We implement rule-based policies for the demonstrator i) by searching the best plan from the initial", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 407, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 420 + ], + "score": 1.0, + "content": "state to the goal state for the grid world tasks or ii) by the bubble sort algorithm for sorting. When", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 418, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 432 + ], + "score": 1.0, + "content": "there is no possible path to reach the goal (e.g., blocked by the learner), the demonstrator will stop", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 429, + 216, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 216, + 442 + ], + "score": 1.0, + "content": "until a viable path appears.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 397, + 506, + 442 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 453, + 160, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 453, + 161, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 161, + 466 + ], + "score": 1.0, + "content": "4.1 TASKS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "image", + "bbox": [ + 126, + 476, + 486, + 545 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 126, + 476, + 486, + 545 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 126, + 476, + 486, + 545 + ], + "spans": [ + { + "bbox": [ + 126, + 476, + 486, + 545 + ], + "score": 0.969, + "type": "image", + "image_path": "3b9d1a1dd367e5002b7172940644e658adf68fc36a8b0e845a272a5d536c86d3.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 126, + 476, + 486, + 499.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 126, + 499.0, + 486, + 522.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 126, + 522.0, + 486, + 545.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 219, + 552, + 393, + 564 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 216, + 551, + 393, + 564 + ], + "spans": [ + { + "bbox": [ + 216, + 551, + 393, + 564 + ], + "score": 1.0, + "content": "Figure 3: Illustration of the evaluated tasks.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + } + ], + "index": 28.0 + }, + { + "type": "text", + "bbox": [ + 106, + 577, + 505, + 652 + ], + "lines": [ + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "Passing. In this task modified from Baker et al. (2009), the demonstrator is initially located at the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 587, + 507, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 507, + 601 + ], + "score": 1.0, + "content": "bottom-right corner and is trying to pass through the closest gap to get into the upper part of the room.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 598, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 505, + 611 + ], + "score": 1.0, + "content": "The demonstrator can take 5 actions including moving in four directions and stopping, whereas the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 608, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 623 + ], + "score": 1.0, + "content": "learner can move in four directions, stop, and also pickup or put down a wall block. The training", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "environment is shown in Figure 3, where the gap is always located at the left end of the wall in the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "score": 1.0, + "content": "middle. In testing cases, we randomly place the location of the gap and the initial position of the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 641, + 164, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 164, + 653 + ], + "score": 1.0, + "content": "demonstrator.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 578, + 507, + 653 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 669 + ], + "score": 1.0, + "content": "Maze Navigation. Inspired by similar tasks in recent literature (Andreas et al., 2017), we place a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "few door blocks and tools (a key and a hammer) in a four-room maze, where the key can be used to", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "open the yellow door but has no effect on the blue door, which must be broken by the hammer. The", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "demonstrator is trying to go from the top-right room to the top-left room. The two agents share the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "score": 1.0, + "content": "same action space including moving in four directions, picking up an item, and putting down an item.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 711, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 506, + 722 + ], + "score": 1.0, + "content": "Also, they can only carry one item at a time. In the training setting, the initial positions of both agents", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "and the door blocks are fixed as shown in Figure 3, whereas the tools may be randomly placed at only", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 82, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 94 + ], + "score": 1.0, + "content": "a few locations. The rules in this environment are in fact fairly complex compared to other grid world", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 506, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 506, + 105 + ], + "score": 1.0, + "content": "tasks in previous work, where multiple sub-goals such as getting the tools, getting the door blocks,", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 383, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 383, + 116 + ], + "score": 1.0, + "content": "placing the door blocks, and walking through the doors are involved.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 657, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 94 + ], + "score": 1.0, + "content": "a few locations. The rules in this environment are in fact fairly complex compared to other grid world", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 506, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 506, + 105 + ], + "score": 1.0, + "content": "tasks in previous work, where multiple sub-goals such as getting the tools, getting the door blocks,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 383, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 383, + 116 + ], + "score": 1.0, + "content": "placing the door blocks, and walking through the doors are involved.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 119, + 505, + 226 + ], + "lines": [ + { + "bbox": [ + 106, + 119, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 505, + 133 + ], + "score": 1.0, + "content": "Construction. We adapt the stacking tasks in Shu et al. (2018) into a grid world, where the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 129, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 505, + 145 + ], + "score": 1.0, + "content": "demonstrator has a latent goal invisible to the learner, which is to construct a new block by putting", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 141, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 505, + 154 + ], + "score": 1.0, + "content": "two blocks with a specific color combination together. Three items are present in a room and they", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 151, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 505, + 164 + ], + "score": 1.0, + "content": "are assigned with different colors randomly. In each episode, the demonstrator is randomly assigned", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 162, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 505, + 173 + ], + "score": 1.0, + "content": "with a goal (i.e., a pair of colors). It then seeks the needed blocks and puts one of them beside the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 172, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 506, + 185 + ], + "score": 1.0, + "content": "other one. In order to predict the demonstrator’s actions precisely, the learner must infer the correct", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "goal first, which requires a sophisticated and dynamic agent modeling. Both agents share the same", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 194, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 206 + ], + "score": 1.0, + "content": "action space as in Maze Navigation. In training, there are no obstacles in the room. To increase the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "difficulty of goal inference, in testing scenarios, we randomly place a few wall blocks as obstacles", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 215, + 214, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 214, + 226 + ], + "score": 1.0, + "content": "around the colored blocks.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 231, + 505, + 337 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "Sorting. Compared to a grid world, algorithmic problems are less visually informative and entail", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "more abstract reasoning. For this, we design a sorting task where an array with certain length is given", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 253, + 504, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 504, + 265 + ], + "score": 1.0, + "content": "at the beginning. In our experiments, we set the length to be 10 and restrain the size of numbers in", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 263, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 505, + 275 + ], + "score": 1.0, + "content": "the array to be 4 bits (i.e., from 0 to 15). The demonstrator is able to perform a bubble sort algorithm", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 285 + ], + "score": 1.0, + "content": "to rearrange the input array in an ascending order. Its action at each step is to select a pair of numbers", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 284, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 297 + ], + "score": 1.0, + "content": "to swap. For every 5 steps done by the demonstrator, the learner can select a number and flipping one", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "of the bit of that number. Both agents can choose to do nothing for a step. During training, we only", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 305, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 505, + 318 + ], + "score": 1.0, + "content": "provide one constant array so that the sorting always starts from the same initial array. This is a very", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 316, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 328 + ], + "score": 1.0, + "content": "challenging setting as only 10 out of 16 possible numbers are present in the training example and the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 325, + 498, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 498, + 339 + ], + "score": 1.0, + "content": "fixed ordering may also easily cause overfitting. For testing, we generate random arrays as inputs.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 379, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 341, + 380, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 380, + 356 + ], + "score": 1.0, + "content": "For more details about the task settings, please refer to Appendix D.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 107, + 367, + 330, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 365, + 331, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 331, + 380 + ], + "score": 1.0, + "content": "4.2 GENERALIZATION IN UNSEEN TASK SETTINGS", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "image", + "bbox": [ + 106, + 390, + 504, + 500 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 390, + 504, + 500 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 390, + 504, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 504, + 500 + ], + "score": 0.971, + "type": "image", + "image_path": "1871cb7eec22fea8ea3cee03fbce6bab4a89e5ce0e304bc11a26ace233854a63.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 106, + 390, + 504, + 426.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 106, + 426.6666666666667, + 504, + 463.33333333333337 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 106, + 463.33333333333337, + 504, + 500.00000000000006 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 508, + 502, + 520 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 507, + 504, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 504, + 522 + ], + "score": 1.0, + "content": "Figure 4: Action prediction accuracies in novel testing settings over numbers of training iterations.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + } + ], + "index": 27.0 + }, + { + "type": "image", + "bbox": [ + 156, + 537, + 455, + 644 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 156, + 537, + 455, + 644 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 156, + 537, + 455, + 644 + ], + "spans": [ + { + "bbox": [ + 156, + 537, + 455, + 644 + ], + "score": 0.968, + "type": "image", + "image_path": "013eb5aa25e3450135a48626efaa1b683544a12479c08644269d9f5f88ec7693.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 156, + 537, + 455, + 572.6666666666666 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 156, + 572.6666666666666, + 455, + 608.3333333333333 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 156, + 608.3333333333333, + 455, + 643.9999999999999 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 653, + 505, + 675 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 653, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 505, + 666 + ], + "score": 1.0, + "content": "Figure 5: Action prediction accuracies in novel testing settings over numbers of training iterations", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 663, + 212, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 126, + 675 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 127, + 664, + 146, + 674 + ], + "score": 0.86, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 663, + 212, + 675 + ], + "score": 1.0, + "content": "random actions.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + } + ], + "index": 31.25 + }, + { + "type": "text", + "bbox": [ + 107, + 689, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 506, + 703 + ], + "score": 1.0, + "content": "One of the main goals of learning to probe is to learn a good agent model that can be generalized to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "unseen scenarios. To evaluate how accurate our agent model is for approximating the true mind of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "the demonstrator, we may test the accuracy of predicting the demonstrator’s actions using the learned", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 722, + 118, + 732 + ], + "score": 0.85, + "content": "\\pi _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 720, + 204, + 734 + ], + "score": 1.0, + "content": "and behavior tracker", + "type": "text" + }, + { + "bbox": [ + 205, + 721, + 228, + 732 + ], + "score": 0.91, + "content": "\\mathcal { M } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "in testing task settings unseen by the learner during training. A high", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5 + } + ], + "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 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, + 115 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 105, + 82, + 506, + 116 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 119, + 505, + 226 + ], + "lines": [ + { + "bbox": [ + 106, + 119, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 505, + 133 + ], + "score": 1.0, + "content": "Construction. We adapt the stacking tasks in Shu et al. (2018) into a grid world, where the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 129, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 505, + 145 + ], + "score": 1.0, + "content": "demonstrator has a latent goal invisible to the learner, which is to construct a new block by putting", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 141, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 505, + 154 + ], + "score": 1.0, + "content": "two blocks with a specific color combination together. Three items are present in a room and they", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 151, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 505, + 164 + ], + "score": 1.0, + "content": "are assigned with different colors randomly. In each episode, the demonstrator is randomly assigned", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 162, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 505, + 173 + ], + "score": 1.0, + "content": "with a goal (i.e., a pair of colors). It then seeks the needed blocks and puts one of them beside the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 172, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 506, + 185 + ], + "score": 1.0, + "content": "other one. In order to predict the demonstrator’s actions precisely, the learner must infer the correct", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "goal first, which requires a sophisticated and dynamic agent modeling. Both agents share the same", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 194, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 206 + ], + "score": 1.0, + "content": "action space as in Maze Navigation. In training, there are no obstacles in the room. To increase the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "difficulty of goal inference, in testing scenarios, we randomly place a few wall blocks as obstacles", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 215, + 214, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 214, + 226 + ], + "score": 1.0, + "content": "around the colored blocks.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 119, + 506, + 226 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 231, + 505, + 337 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "Sorting. Compared to a grid world, algorithmic problems are less visually informative and entail", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "more abstract reasoning. For this, we design a sorting task where an array with certain length is given", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 253, + 504, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 504, + 265 + ], + "score": 1.0, + "content": "at the beginning. In our experiments, we set the length to be 10 and restrain the size of numbers in", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 263, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 505, + 275 + ], + "score": 1.0, + "content": "the array to be 4 bits (i.e., from 0 to 15). The demonstrator is able to perform a bubble sort algorithm", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 285 + ], + "score": 1.0, + "content": "to rearrange the input array in an ascending order. Its action at each step is to select a pair of numbers", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 284, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 297 + ], + "score": 1.0, + "content": "to swap. For every 5 steps done by the demonstrator, the learner can select a number and flipping one", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "of the bit of that number. Both agents can choose to do nothing for a step. During training, we only", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 305, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 505, + 318 + ], + "score": 1.0, + "content": "provide one constant array so that the sorting always starts from the same initial array. This is a very", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 316, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 328 + ], + "score": 1.0, + "content": "challenging setting as only 10 out of 16 possible numbers are present in the training example and the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 325, + 498, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 498, + 339 + ], + "score": 1.0, + "content": "fixed ordering may also easily cause overfitting. For testing, we generate random arrays as inputs.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 230, + 505, + 339 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 379, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 341, + 380, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 380, + 356 + ], + "score": 1.0, + "content": "For more details about the task settings, please refer to Appendix D.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 341, + 380, + 356 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 367, + 330, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 365, + 331, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 331, + 380 + ], + "score": 1.0, + "content": "4.2 GENERALIZATION IN UNSEEN TASK SETTINGS", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "image", + "bbox": [ + 106, + 390, + 504, + 500 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 390, + 504, + 500 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 390, + 504, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 504, + 500 + ], + "score": 0.971, + "type": "image", + "image_path": "1871cb7eec22fea8ea3cee03fbce6bab4a89e5ce0e304bc11a26ace233854a63.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 106, + 390, + 504, + 426.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 106, + 426.6666666666667, + 504, + 463.33333333333337 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 106, + 463.33333333333337, + 504, + 500.00000000000006 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 508, + 502, + 520 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 507, + 504, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 504, + 522 + ], + "score": 1.0, + "content": "Figure 4: Action prediction accuracies in novel testing settings over numbers of training iterations.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + } + ], + "index": 27.0 + }, + { + "type": "image", + "bbox": [ + 156, + 537, + 455, + 644 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 156, + 537, + 455, + 644 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 156, + 537, + 455, + 644 + ], + "spans": [ + { + "bbox": [ + 156, + 537, + 455, + 644 + ], + "score": 0.968, + "type": "image", + "image_path": "013eb5aa25e3450135a48626efaa1b683544a12479c08644269d9f5f88ec7693.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 156, + 537, + 455, + 572.6666666666666 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 156, + 572.6666666666666, + 455, + 608.3333333333333 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 156, + 608.3333333333333, + 455, + 643.9999999999999 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 653, + 505, + 675 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 653, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 505, + 666 + ], + "score": 1.0, + "content": "Figure 5: Action prediction accuracies in novel testing settings over numbers of training iterations", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 663, + 212, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 126, + 675 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 127, + 664, + 146, + 674 + ], + "score": 0.86, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 663, + 212, + 675 + ], + "score": 1.0, + "content": "random actions.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + } + ], + "index": 31.25 + }, + { + "type": "text", + "bbox": [ + 107, + 689, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 506, + 703 + ], + "score": 1.0, + "content": "One of the main goals of learning to probe is to learn a good agent model that can be generalized to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "unseen scenarios. To evaluate how accurate our agent model is for approximating the true mind of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "the demonstrator, we may test the accuracy of predicting the demonstrator’s actions using the learned", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 722, + 118, + 732 + ], + "score": 0.85, + "content": "\\pi _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 720, + 204, + 734 + ], + "score": 1.0, + "content": "and behavior tracker", + "type": "text" + }, + { + "bbox": [ + 205, + 721, + 228, + 732 + ], + "score": 0.91, + "content": "\\mathcal { M } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "in testing task settings unseen by the learner during training. A high", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5, + "bbox_fs": [ + 106, + 689, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 104 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "prediction accuracy in unseen settings will indicate good generalization of the learned agent model.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 500, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 500, + 107 + ], + "score": 1.0, + "content": "To eliminate the effects from probing, we remove the learner from the environment during testing.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 109, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 110, + 505, + 121 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 505, + 121 + ], + "score": 1.0, + "content": "We compare our model with six baselines: i) ToMnet in Rabinowitz et al. (2018), which learns the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 120, + 506, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 120, + 506, + 133 + ], + "score": 1.0, + "content": "demonstrator’s model by only observing the given demonstrations without interactions, ii) our model", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 131, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 505, + 142 + ], + "score": 1.0, + "content": "without training the probing policy using RL (i.e., the leaner always takes random actions), iii), ours", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 139, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 384, + 155 + ], + "score": 1.0, + "content": "without the attention-based fusion (concatenating state feature and", + "type": "text" + }, + { + "bbox": [ + 384, + 141, + 407, + 151 + ], + "score": 0.91, + "content": "m ^ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 139, + 506, + 155 + ], + "score": 1.0, + "content": "instead), iv) using two", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 151, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 506, + 164 + ], + "score": 1.0, + "content": "LSTMs for the estimated demonstrator’s policy and the probing policy respectively (Figure 16), v)", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 162, + 506, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 506, + 175 + ], + "score": 1.0, + "content": "using count-based bonus as reward (Strehl & Littman, 2008; Bellemare et al., 2016; Tang et al., 2017),", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 173, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 506, + 186 + ], + "score": 1.0, + "content": "and vi) using cross-entropy loss for action prediction as reward (i.e., exploration by self-supervised", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 181, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 104, + 181, + 506, + 198 + ], + "score": 1.0, + "content": "prediction in Pathak et al. (2017)). To ensure fair comparison, the training settings and the testing", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 194, + 474, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 474, + 207 + ], + "score": 1.0, + "content": "settings are shared by all methods. We provide more details of the baselines in Appendix E.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 210, + 505, + 337 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "Figure 4 shows the predication accuracy in testing settings of the three approaches based on the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 234 + ], + "score": 1.0, + "content": "models from different training iterations. It is clear that with more iterations, our probing policy can", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "score": 1.0, + "content": "greatly help increase the accuracy by discovering new behaviors, and consequently yields much higher", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "score": 1.0, + "content": "testing accuracy than the baselines do. The results of “ours w/o fusion” and “2-LSTM” baselines", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "further demonstrates the importance of our attention-based fusion layer and the use of a separate", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 262, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 240, + 276 + ], + "score": 1.0, + "content": "behavior tracker. By randomizing", + "type": "text" + }, + { + "bbox": [ + 240, + 263, + 259, + 273 + ], + "score": 0.86, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 262, + 505, + 276 + ], + "score": 1.0, + "content": "of demonstrator’s actions (Figure 5), we show that the probing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "policy can also handle stochastic and sub-optimal policies. It can be clearly seen from the results that", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 284, + 507, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 507, + 297 + ], + "score": 1.0, + "content": "the performance of the two baselines based on different curiosity rewards is clearly inferior to ours,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "which demonstrates the advantage of defining the behavioral change as the intrinsic reward for the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 305, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 104, + 305, + 506, + 318 + ], + "score": 1.0, + "content": "purpose of agent modeling. We have also evaluated the robustness of our approach by showing the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 314, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 506, + 329 + ], + "score": 1.0, + "content": "standard deviation from multiple runs as shown in Figure 9, which demonstrates a reasonably low", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 326, + 227, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 227, + 338 + ], + "score": 1.0, + "content": "variance across multiple runs.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 108, + 342, + 505, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 342, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 360, + 355 + ], + "score": 1.0, + "content": "We demonstrate the effect of dimensionality of the latent vector", + "type": "text" + }, + { + "bbox": [ + 360, + 342, + 373, + 353 + ], + "score": 0.88, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 342, + 505, + 355 + ], + "score": 1.0, + "content": "(i.e., the complexity of the agent", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 353, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 505, + 365 + ], + "score": 1.0, + "content": "model) in Figure 4. In simple environments, our approach still outperforms the baselines even when", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "the dimensionality is decreased from 8 to 2 or 4. In more complex tasks like Sorting, a higher", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 372, + 297, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 297, + 388 + ], + "score": 1.0, + "content": "dimension is necessary for the agent modeling.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + }, + { + "type": "title", + "bbox": [ + 107, + 398, + 331, + 409 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 332, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 332, + 411 + ], + "score": 1.0, + "content": "4.3 EVOLUTION OF LEARNED PROBING STRATEGY", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 418, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "As training progresses, we observe that our probing policy is able to progressively discover new", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "behaviors through interactions that are adapted to the demonstrator’s policy. For instance, in Maze", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "score": 1.0, + "content": "Navigation, we find that the learner first learns to place one door, then gradually learns to place two", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "doors at the appropriate moments to force the demonstrator to go back and forth to get the needed", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "tools for opening the doors. Finally, the probing policy will even blocks the demonstrator for a while", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 470, + 474, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 474, + 483 + ], + "score": 1.0, + "content": "before it goes through the last door. Due to the space limit, we show this in the demo video.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 108, + 487, + 503, + 509 + ], + "lines": [ + { + "bbox": [ + 106, + 486, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 505, + 500 + ], + "score": 1.0, + "content": "We also provide more analysis and visualization of the probing behavior and the resulting latent", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 498, + 284, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 284, + 509 + ], + "score": 1.0, + "content": "vectors in Appendix B.2 and Appendix B.3.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "title", + "bbox": [ + 108, + 521, + 385, + 532 + ], + "lines": [ + { + "bbox": [ + 105, + 521, + 386, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 386, + 533 + ], + "score": 1.0, + "content": "4.4 EMERGENCE OF OBSTRUCTIVE BEHAVIORS FROM PROBING", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 541, + 505, + 626 + ], + "lines": [ + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "Although we never explicitly set an adversarial goal for the learner, we do observe a natural emergence", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "score": 1.0, + "content": "of obstructive behaviors caused by the probing, which can be quantitatively measured by the success", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 104, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "rate of the demonstrator within a time limit as shown in Figure 6. This phenomenon is aligned with", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 573, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 585 + ], + "score": 1.0, + "content": "common sense that the optimal probing policy to discover new behaviors of the demonstrator should", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "constantly force the demonstrator to change its plan, which will eventually delay the time when the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "demonstrator finishes the task. Because of the reward defined in Eq. (1), the probing policy learned", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "from RL is also maximizing the accumulated behavioral change of the demonstrator just like the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 614, + 411, + 629 + ], + "spans": [ + { + "bbox": [ + 104, + 614, + 411, + 629 + ], + "score": 1.0, + "content": "common sense. This further justifies our simple yet effective reward design.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40.5 + }, + { + "type": "image", + "bbox": [ + 123, + 635, + 483, + 710 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 123, + 635, + 483, + 710 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 635, + 483, + 710 + ], + "spans": [ + { + "bbox": [ + 123, + 635, + 483, + 710 + ], + "score": 0.95, + "type": "image", + "image_path": "f79f849d4628693a408ffe9f369a47a5064b5907c7894cb647ef97d04aad2d23.jpg" + } + ] + } + ], + "index": 46, + "virtual_lines": [ + { + "bbox": [ + 123, + 635, + 483, + 660.0 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 123, + 660.0, + 483, + 685.0 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 123, + 685.0, + 483, + 710.0 + ], + "spans": [], + "index": 47 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 139, + 713, + 470, + 725 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 138, + 712, + 472, + 727 + ], + "spans": [ + { + "bbox": [ + 138, + 712, + 472, + 727 + ], + "score": 1.0, + "content": "Figure 6: The average success rate of the demonstrator within the given time limit.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 48 + } + ], + "index": 47.0 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 106, + 82, + 504, + 104 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "prediction accuracy in unseen settings will indicate good generalization of the learned agent model.", + "type": "text" + } + ], + "index": 0, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 91, + 500, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 500, + 107 + ], + "score": 1.0, + "content": "To eliminate the effects from probing, we remove the learner from the environment during testing.", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 506, + 107 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 109, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 110, + 505, + 121 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 505, + 121 + ], + "score": 1.0, + "content": "We compare our model with six baselines: i) ToMnet in Rabinowitz et al. (2018), which learns the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 120, + 506, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 120, + 506, + 133 + ], + "score": 1.0, + "content": "demonstrator’s model by only observing the given demonstrations without interactions, ii) our model", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 131, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 505, + 142 + ], + "score": 1.0, + "content": "without training the probing policy using RL (i.e., the leaner always takes random actions), iii), ours", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 139, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 384, + 155 + ], + "score": 1.0, + "content": "without the attention-based fusion (concatenating state feature and", + "type": "text" + }, + { + "bbox": [ + 384, + 141, + 407, + 151 + ], + "score": 0.91, + "content": "m ^ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 139, + 506, + 155 + ], + "score": 1.0, + "content": "instead), iv) using two", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 151, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 506, + 164 + ], + "score": 1.0, + "content": "LSTMs for the estimated demonstrator’s policy and the probing policy respectively (Figure 16), v)", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 162, + 506, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 506, + 175 + ], + "score": 1.0, + "content": "using count-based bonus as reward (Strehl & Littman, 2008; Bellemare et al., 2016; Tang et al., 2017),", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 173, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 506, + 186 + ], + "score": 1.0, + "content": "and vi) using cross-entropy loss for action prediction as reward (i.e., exploration by self-supervised", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 181, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 104, + 181, + 506, + 198 + ], + "score": 1.0, + "content": "prediction in Pathak et al. (2017)). To ensure fair comparison, the training settings and the testing", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 194, + 474, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 474, + 207 + ], + "score": 1.0, + "content": "settings are shared by all methods. We provide more details of the baselines in Appendix E.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6, + "bbox_fs": [ + 104, + 110, + 506, + 207 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 210, + 505, + 337 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "Figure 4 shows the predication accuracy in testing settings of the three approaches based on the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 234 + ], + "score": 1.0, + "content": "models from different training iterations. It is clear that with more iterations, our probing policy can", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "score": 1.0, + "content": "greatly help increase the accuracy by discovering new behaviors, and consequently yields much higher", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "score": 1.0, + "content": "testing accuracy than the baselines do. The results of “ours w/o fusion” and “2-LSTM” baselines", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "further demonstrates the importance of our attention-based fusion layer and the use of a separate", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 262, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 240, + 276 + ], + "score": 1.0, + "content": "behavior tracker. By randomizing", + "type": "text" + }, + { + "bbox": [ + 240, + 263, + 259, + 273 + ], + "score": 0.86, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 262, + 505, + 276 + ], + "score": 1.0, + "content": "of demonstrator’s actions (Figure 5), we show that the probing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "policy can also handle stochastic and sub-optimal policies. It can be clearly seen from the results that", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 284, + 507, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 507, + 297 + ], + "score": 1.0, + "content": "the performance of the two baselines based on different curiosity rewards is clearly inferior to ours,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "which demonstrates the advantage of defining the behavioral change as the intrinsic reward for the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 305, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 104, + 305, + 506, + 318 + ], + "score": 1.0, + "content": "purpose of agent modeling. We have also evaluated the robustness of our approach by showing the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 314, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 506, + 329 + ], + "score": 1.0, + "content": "standard deviation from multiple runs as shown in Figure 9, which demonstrates a reasonably low", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 326, + 227, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 227, + 338 + ], + "score": 1.0, + "content": "variance across multiple runs.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 16.5, + "bbox_fs": [ + 104, + 210, + 507, + 338 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 342, + 505, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 342, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 360, + 355 + ], + "score": 1.0, + "content": "We demonstrate the effect of dimensionality of the latent vector", + "type": "text" + }, + { + "bbox": [ + 360, + 342, + 373, + 353 + ], + "score": 0.88, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 342, + 505, + 355 + ], + "score": 1.0, + "content": "(i.e., the complexity of the agent", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 353, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 505, + 365 + ], + "score": 1.0, + "content": "model) in Figure 4. In simple environments, our approach still outperforms the baselines even when", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "the dimensionality is decreased from 8 to 2 or 4. In more complex tasks like Sorting, a higher", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 372, + 297, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 297, + 388 + ], + "score": 1.0, + "content": "dimension is necessary for the agent modeling.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 342, + 505, + 388 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 398, + 331, + 409 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 332, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 332, + 411 + ], + "score": 1.0, + "content": "4.3 EVOLUTION OF LEARNED PROBING STRATEGY", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 418, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "As training progresses, we observe that our probing policy is able to progressively discover new", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "behaviors through interactions that are adapted to the demonstrator’s policy. For instance, in Maze", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "score": 1.0, + "content": "Navigation, we find that the learner first learns to place one door, then gradually learns to place two", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "doors at the appropriate moments to force the demonstrator to go back and forth to get the needed", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "tools for opening the doors. Finally, the probing policy will even blocks the demonstrator for a while", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 470, + 474, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 474, + 483 + ], + "score": 1.0, + "content": "before it goes through the last door. Due to the space limit, we show this in the demo video.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 418, + 505, + 483 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 487, + 503, + 509 + ], + "lines": [ + { + "bbox": [ + 106, + 486, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 505, + 500 + ], + "score": 1.0, + "content": "We also provide more analysis and visualization of the probing behavior and the resulting latent", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 498, + 284, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 284, + 509 + ], + "score": 1.0, + "content": "vectors in Appendix B.2 and Appendix B.3.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 486, + 505, + 509 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 521, + 385, + 532 + ], + "lines": [ + { + "bbox": [ + 105, + 521, + 386, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 386, + 533 + ], + "score": 1.0, + "content": "4.4 EMERGENCE OF OBSTRUCTIVE BEHAVIORS FROM PROBING", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 541, + 505, + 626 + ], + "lines": [ + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "Although we never explicitly set an adversarial goal for the learner, we do observe a natural emergence", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "score": 1.0, + "content": "of obstructive behaviors caused by the probing, which can be quantitatively measured by the success", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 104, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "rate of the demonstrator within a time limit as shown in Figure 6. This phenomenon is aligned with", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 573, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 585 + ], + "score": 1.0, + "content": "common sense that the optimal probing policy to discover new behaviors of the demonstrator should", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "constantly force the demonstrator to change its plan, which will eventually delay the time when the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "demonstrator finishes the task. Because of the reward defined in Eq. (1), the probing policy learned", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "from RL is also maximizing the accumulated behavioral change of the demonstrator just like the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 614, + 411, + 629 + ], + "spans": [ + { + "bbox": [ + 104, + 614, + 411, + 629 + ], + "score": 1.0, + "content": "common sense. This further justifies our simple yet effective reward design.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40.5, + "bbox_fs": [ + 104, + 541, + 506, + 629 + ] + }, + { + "type": "image", + "bbox": [ + 123, + 635, + 483, + 710 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 123, + 635, + 483, + 710 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 635, + 483, + 710 + ], + "spans": [ + { + "bbox": [ + 123, + 635, + 483, + 710 + ], + "score": 0.95, + "type": "image", + "image_path": "f79f849d4628693a408ffe9f369a47a5064b5907c7894cb647ef97d04aad2d23.jpg" + } + ] + } + ], + "index": 46, + "virtual_lines": [ + { + "bbox": [ + 123, + 635, + 483, + 660.0 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 123, + 660.0, + 483, + 685.0 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 123, + 685.0, + 483, + 710.0 + ], + "spans": [], + "index": 47 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 139, + 713, + 470, + 725 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 138, + 712, + 472, + 727 + ], + "spans": [ + { + "bbox": [ + 138, + 712, + 472, + 727 + ], + "score": 1.0, + "content": "Figure 6: The average success rate of the demonstrator within the given time limit.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 48 + } + ], + "index": 47.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 156, + 83, + 288, + 172 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 156, + 83, + 288, + 172 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 156, + 83, + 288, + 172 + ], + "spans": [ + { + "bbox": [ + 156, + 83, + 288, + 172 + ], + "score": 0.96, + "type": "image", + "image_path": "22c56a09143e8dc063fbd0fed96feb71578073b1b84e64124f4c3a82addce74e.jpg" + } + ] + } + ], + "index": 1.0, + "virtual_lines": [ + { + "bbox": [ + 156, + 83, + 288, + 127.5 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 156, + 127.5, + 288, + 172.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 141, + 183, + 303, + 205 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 142, + 182, + 304, + 195 + ], + "spans": [ + { + "bbox": [ + 142, + 182, + 304, + 195 + ], + "score": 1.0, + "content": "Figure 7: The learning curves of the col-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 142, + 192, + 286, + 206 + ], + "spans": [ + { + "bbox": [ + 142, + 192, + 286, + 206 + ], + "score": 1.0, + "content": "laborative task (reward is rescaled).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.0 + } + ], + "index": 3.0 + }, + { + "type": "image", + "bbox": [ + 322, + 84, + 454, + 171 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 322, + 84, + 454, + 171 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 322, + 84, + 454, + 171 + ], + "spans": [ + { + "bbox": [ + 322, + 84, + 454, + 171 + ], + "score": 0.961, + "type": "image", + "image_path": "b2076ef0ebd4994b1be4f0abf9861f2baf22ffd6fcc9e875892dea55ad60f109.jpg" + } + ] + } + ], + "index": 2.0, + "virtual_lines": [ + { + "bbox": [ + 322, + 84, + 454, + 127.5 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 322, + 127.5, + 454, + 171.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 308, + 182, + 470, + 204 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 307, + 181, + 470, + 194 + ], + "spans": [ + { + "bbox": [ + 307, + 181, + 470, + 194 + ], + "score": 1.0, + "content": "Figure 8: The learning curves of the com-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 307, + 192, + 442, + 204 + ], + "spans": [ + { + "bbox": [ + 307, + 192, + 442, + 204 + ], + "score": 1.0, + "content": "petitive task (reward is rescaled).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.0 + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 107, + 226, + 408, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 226, + 409, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 409, + 239 + ], + "score": 1.0, + "content": "4.5 APPLICATION 1: DISTILLING OPTIMAL PLANS TO A POLICY NET", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "table", + "bbox": [ + 122, + 288, + 488, + 396 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 257, + 504, + 279 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 257, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 505, + 270 + ], + "score": 1.0, + "content": "Table 1: Success rates using the learned demonstrator’s policy in unseen tasking settings. Unless", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 267, + 474, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 474, + 280 + ], + "score": 1.0, + "content": "specified, the evaluated policies were learned from demonstrations without random actions.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "table_body", + "bbox": [ + 122, + 288, + 488, + 396 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 288, + 488, + 396 + ], + "spans": [ + { + "bbox": [ + 122, + 288, + 488, + 396 + ], + "score": 0.985, + "html": "
MethodPassingMaze NavigationConstructionSorting
Ours0.710.600.480.82
Ours (from sub-optimal demo)0.680.510.47N/A
Ours w/o RL0.130.310.230.80
Ours w/o fusion0.110.190.290.10
Ours (2-LSTM)0.170.020.170
Passive (ToMnet)0.1100.120
Count-based0.2200.310.39
Self-supervised0.2300.360.56
", + "type": "table", + "image_path": "025ab377f9282f75bdab2cdf094ee9670458eb994c66192879d47898c2ec9c32.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 122, + 288, + 488, + 324.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 122, + 324.0, + 488, + 360.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 122, + 360.0, + 488, + 396.0 + ], + "spans": [], + "index": 13 + } + ] + } + ], + "index": 10.75 + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 505, + 467 + ], + "lines": [ + { + "bbox": [ + 106, + 414, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 506, + 426 + ], + "score": 1.0, + "content": "Optimal planning sometimes requires a long computational time. For acceleration, it is common to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "score": 1.0, + "content": "distill the optimal plans to a policy net (Lazaric et al., 2010; Guo et al., 2014). However, the distilled", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "policy net may not generalize well in new scenarios if the training settings are not diverse enough.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 444, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 459 + ], + "score": 1.0, + "content": "Thus, the nature of our approach makes it suitable for improving the generalization without manually", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 455, + 287, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 287, + 469 + ], + "score": 1.0, + "content": "designing a large number of diverse settings.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 472, + 505, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 399, + 484 + ], + "score": 1.0, + "content": "For this, we evaluate the success rates when the learner directly uses", + "type": "text" + }, + { + "bbox": [ + 400, + 474, + 412, + 483 + ], + "score": 0.85, + "content": "\\pi _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 473, + 505, + 484 + ], + "score": 1.0, + "content": "(with an 8-dim latent", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 483, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 495 + ], + "score": 1.0, + "content": "vector) to perform tasks in testing settings without finetuning. The results summarized in Table 1", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 494, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 506, + 505 + ], + "score": 1.0, + "content": "are consistent with the findings based on action predictions. We have also tested the success rate of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 504, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 340, + 516 + ], + "score": 1.0, + "content": "the policy learned from sub-optimal demonstrations with", + "type": "text" + }, + { + "bbox": [ + 340, + 504, + 360, + 515 + ], + "score": 0.88, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 504, + 506, + 516 + ], + "score": 1.0, + "content": "random actions. Its performance is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "comparable to the one learned from perfect demonstrations by our approach. It also outperforms", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "the baselines trained from optimal demonstrations. We didn’t test the randomized demonstrations", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "for Sorting as it is unnecessary to randomize bubble sort algorithm. Note that since the learner is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 546, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 559 + ], + "score": 1.0, + "content": "unaware of the goal in Construction, we let the learner take over the task after the first block has been", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 556, + 151, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 151, + 570 + ], + "score": 1.0, + "content": "picked up.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 108, + 587, + 278, + 598 + ], + "lines": [ + { + "bbox": [ + 106, + 585, + 280, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 280, + 600 + ], + "score": 1.0, + "content": "4.6 APPLICATION 2: COLLABORATION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 609, + 505, + 684 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 623 + ], + "score": 1.0, + "content": "To test whether the improved agent modeling by learning a probing policy can facilitate multi-agent", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "score": 1.0, + "content": "collaboration, we modify the Construction task to be a collaborative task, where the learner is trying", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "score": 1.0, + "content": "to help the demonstrator (fixed policy) to finish the task. For every step the demonstrator takes, the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 175, + 654 + ], + "score": 1.0, + "content": "learner will get a", + "type": "text" + }, + { + "bbox": [ + 176, + 641, + 198, + 651 + ], + "score": 0.32, + "content": "- 0 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 640, + 506, + 654 + ], + "score": 1.0, + "content": "penalty. When the goal is reached, it will be given a reward of 1. This setting", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 650, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 104, + 650, + 505, + 664 + ], + "score": 1.0, + "content": "is difficult for training a collaborative policy since the demonstrator is capable of finishing the task by", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 662, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 506, + 675 + ], + "score": 1.0, + "content": "itself. In order to help finish the task faster, the learner must infer the true goal of the demonstrator", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 672, + 301, + 686 + ], + "spans": [ + { + "bbox": [ + 106, + 672, + 301, + 686 + ], + "score": 1.0, + "content": "quickly and shares part of the labor accordingly.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 689, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 248, + 701 + ], + "score": 1.0, + "content": "We fix the behavior tracker module,", + "type": "text" + }, + { + "bbox": [ + 248, + 689, + 271, + 701 + ], + "score": 0.9, + "content": "\\mathcal { M } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 688, + 505, + 701 + ], + "score": 1.0, + "content": ", trained from our interactive agent modeling and retrain the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 699, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 169, + 712 + ], + "score": 1.0, + "content": "learner’s policy", + "type": "text" + }, + { + "bbox": [ + 169, + 701, + 179, + 711 + ], + "score": 0.84, + "content": "\\pi _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 699, + 507, + 712 + ], + "score": 1.0, + "content": "using the task reward defined above. For comparison, we implement two baselines:", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 157, + 723 + ], + "score": 1.0, + "content": "i) retraining", + "type": "text" + }, + { + "bbox": [ + 157, + 712, + 168, + 721 + ], + "score": 0.84, + "content": "\\pi _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 710, + 208, + 723 + ], + "score": 1.0, + "content": "based on", + "type": "text" + }, + { + "bbox": [ + 208, + 711, + 221, + 720 + ], + "score": 0.83, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "learned from passive agent modeling (i.e., ToMnet) and ii) training a", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 720, + 306, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 251, + 734 + ], + "score": 1.0, + "content": "policy without agent modeling, i.e.,", + "type": "text" + }, + { + "bbox": [ + 251, + 721, + 301, + 733 + ], + "score": 0.93, + "content": "\\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , s _ { d } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 720, + 306, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 156, + 83, + 288, + 172 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 156, + 83, + 288, + 172 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 156, + 83, + 288, + 172 + ], + "spans": [ + { + "bbox": [ + 156, + 83, + 288, + 172 + ], + "score": 0.96, + "type": "image", + "image_path": "22c56a09143e8dc063fbd0fed96feb71578073b1b84e64124f4c3a82addce74e.jpg" + } + ] + } + ], + "index": 1.0, + "virtual_lines": [ + { + "bbox": [ + 156, + 83, + 288, + 127.5 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 156, + 127.5, + 288, + 172.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 141, + 183, + 303, + 205 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 142, + 182, + 304, + 195 + ], + "spans": [ + { + "bbox": [ + 142, + 182, + 304, + 195 + ], + "score": 1.0, + "content": "Figure 7: The learning curves of the col-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 142, + 192, + 286, + 206 + ], + "spans": [ + { + "bbox": [ + 142, + 192, + 286, + 206 + ], + "score": 1.0, + "content": "laborative task (reward is rescaled).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.0 + } + ], + "index": 3.0 + }, + { + "type": "image", + "bbox": [ + 322, + 84, + 454, + 171 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 322, + 84, + 454, + 171 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 322, + 84, + 454, + 171 + ], + "spans": [ + { + "bbox": [ + 322, + 84, + 454, + 171 + ], + "score": 0.961, + "type": "image", + "image_path": "b2076ef0ebd4994b1be4f0abf9861f2baf22ffd6fcc9e875892dea55ad60f109.jpg" + } + ] + } + ], + "index": 2.0, + "virtual_lines": [ + { + "bbox": [ + 322, + 84, + 454, + 127.5 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 322, + 127.5, + 454, + 171.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 308, + 182, + 470, + 204 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 307, + 181, + 470, + 194 + ], + "spans": [ + { + "bbox": [ + 307, + 181, + 470, + 194 + ], + "score": 1.0, + "content": "Figure 8: The learning curves of the com-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 307, + 192, + 442, + 204 + ], + "spans": [ + { + "bbox": [ + 307, + 192, + 442, + 204 + ], + "score": 1.0, + "content": "petitive task (reward is rescaled).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.0 + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 107, + 226, + 408, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 226, + 409, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 409, + 239 + ], + "score": 1.0, + "content": "4.5 APPLICATION 1: DISTILLING OPTIMAL PLANS TO A POLICY NET", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 226, + 409, + 239 + ] + }, + { + "type": "table", + "bbox": [ + 122, + 288, + 488, + 396 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 257, + 504, + 279 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 257, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 505, + 270 + ], + "score": 1.0, + "content": "Table 1: Success rates using the learned demonstrator’s policy in unseen tasking settings. Unless", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 267, + 474, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 474, + 280 + ], + "score": 1.0, + "content": "specified, the evaluated policies were learned from demonstrations without random actions.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "table_body", + "bbox": [ + 122, + 288, + 488, + 396 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 288, + 488, + 396 + ], + "spans": [ + { + "bbox": [ + 122, + 288, + 488, + 396 + ], + "score": 0.985, + "html": "
MethodPassingMaze NavigationConstructionSorting
Ours0.710.600.480.82
Ours (from sub-optimal demo)0.680.510.47N/A
Ours w/o RL0.130.310.230.80
Ours w/o fusion0.110.190.290.10
Ours (2-LSTM)0.170.020.170
Passive (ToMnet)0.1100.120
Count-based0.2200.310.39
Self-supervised0.2300.360.56
", + "type": "table", + "image_path": "025ab377f9282f75bdab2cdf094ee9670458eb994c66192879d47898c2ec9c32.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 122, + 288, + 488, + 324.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 122, + 324.0, + 488, + 360.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 122, + 360.0, + 488, + 396.0 + ], + "spans": [], + "index": 13 + } + ] + } + ], + "index": 10.75 + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 505, + 467 + ], + "lines": [ + { + "bbox": [ + 106, + 414, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 506, + 426 + ], + "score": 1.0, + "content": "Optimal planning sometimes requires a long computational time. For acceleration, it is common to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "score": 1.0, + "content": "distill the optimal plans to a policy net (Lazaric et al., 2010; Guo et al., 2014). However, the distilled", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "policy net may not generalize well in new scenarios if the training settings are not diverse enough.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 444, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 459 + ], + "score": 1.0, + "content": "Thus, the nature of our approach makes it suitable for improving the generalization without manually", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 455, + 287, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 287, + 469 + ], + "score": 1.0, + "content": "designing a large number of diverse settings.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 414, + 506, + 469 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 472, + 505, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 399, + 484 + ], + "score": 1.0, + "content": "For this, we evaluate the success rates when the learner directly uses", + "type": "text" + }, + { + "bbox": [ + 400, + 474, + 412, + 483 + ], + "score": 0.85, + "content": "\\pi _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 473, + 505, + 484 + ], + "score": 1.0, + "content": "(with an 8-dim latent", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 483, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 495 + ], + "score": 1.0, + "content": "vector) to perform tasks in testing settings without finetuning. The results summarized in Table 1", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 494, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 506, + 505 + ], + "score": 1.0, + "content": "are consistent with the findings based on action predictions. We have also tested the success rate of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 504, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 340, + 516 + ], + "score": 1.0, + "content": "the policy learned from sub-optimal demonstrations with", + "type": "text" + }, + { + "bbox": [ + 340, + 504, + 360, + 515 + ], + "score": 0.88, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 504, + 506, + 516 + ], + "score": 1.0, + "content": "random actions. Its performance is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "comparable to the one learned from perfect demonstrations by our approach. It also outperforms", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "the baselines trained from optimal demonstrations. We didn’t test the randomized demonstrations", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "for Sorting as it is unnecessary to randomize bubble sort algorithm. Note that since the learner is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 546, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 559 + ], + "score": 1.0, + "content": "unaware of the goal in Construction, we let the learner take over the task after the first block has been", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 556, + 151, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 151, + 570 + ], + "score": 1.0, + "content": "picked up.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 473, + 506, + 570 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 587, + 278, + 598 + ], + "lines": [ + { + "bbox": [ + 106, + 585, + 280, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 280, + 600 + ], + "score": 1.0, + "content": "4.6 APPLICATION 2: COLLABORATION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 609, + 505, + 684 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 623 + ], + "score": 1.0, + "content": "To test whether the improved agent modeling by learning a probing policy can facilitate multi-agent", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "score": 1.0, + "content": "collaboration, we modify the Construction task to be a collaborative task, where the learner is trying", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "score": 1.0, + "content": "to help the demonstrator (fixed policy) to finish the task. For every step the demonstrator takes, the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 175, + 654 + ], + "score": 1.0, + "content": "learner will get a", + "type": "text" + }, + { + "bbox": [ + 176, + 641, + 198, + 651 + ], + "score": 0.32, + "content": "- 0 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 640, + 506, + 654 + ], + "score": 1.0, + "content": "penalty. When the goal is reached, it will be given a reward of 1. This setting", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 650, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 104, + 650, + 505, + 664 + ], + "score": 1.0, + "content": "is difficult for training a collaborative policy since the demonstrator is capable of finishing the task by", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 662, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 506, + 675 + ], + "score": 1.0, + "content": "itself. In order to help finish the task faster, the learner must infer the true goal of the demonstrator", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 672, + 301, + 686 + ], + "spans": [ + { + "bbox": [ + 106, + 672, + 301, + 686 + ], + "score": 1.0, + "content": "quickly and shares part of the labor accordingly.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32, + "bbox_fs": [ + 104, + 608, + 506, + 686 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 689, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 248, + 701 + ], + "score": 1.0, + "content": "We fix the behavior tracker module,", + "type": "text" + }, + { + "bbox": [ + 248, + 689, + 271, + 701 + ], + "score": 0.9, + "content": "\\mathcal { M } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 688, + 505, + 701 + ], + "score": 1.0, + "content": ", trained from our interactive agent modeling and retrain the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 699, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 169, + 712 + ], + "score": 1.0, + "content": "learner’s policy", + "type": "text" + }, + { + "bbox": [ + 169, + 701, + 179, + 711 + ], + "score": 0.84, + "content": "\\pi _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 699, + 507, + 712 + ], + "score": 1.0, + "content": "using the task reward defined above. For comparison, we implement two baselines:", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 157, + 723 + ], + "score": 1.0, + "content": "i) retraining", + "type": "text" + }, + { + "bbox": [ + 157, + 712, + 168, + 721 + ], + "score": 0.84, + "content": "\\pi _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 710, + 208, + 723 + ], + "score": 1.0, + "content": "based on", + "type": "text" + }, + { + "bbox": [ + 208, + 711, + 221, + 720 + ], + "score": 0.83, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "learned from passive agent modeling (i.e., ToMnet) and ii) training a", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 720, + 306, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 251, + 734 + ], + "score": 1.0, + "content": "policy without agent modeling, i.e.,", + "type": "text" + }, + { + "bbox": [ + 251, + 721, + 301, + 733 + ], + "score": 0.93, + "content": "\\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , s _ { d } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 720, + 306, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 688, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Figure 7 demonstrates the learning curves, where the reward is rescaled so that the theoretical", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "maximum reward from a perfect policy is 1. From the curves, we may see that the policy trained with", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 423, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 423, + 116 + ], + "score": 1.0, + "content": "our interactively learned agent model significantly outperforms both baselines.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "title", + "bbox": [ + 108, + 128, + 264, + 139 + ], + "lines": [ + { + "bbox": [ + 105, + 127, + 267, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 267, + 141 + ], + "score": 1.0, + "content": "4.7 APPLICATION 3: COMPETITION", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 148, + 505, + 201 + ], + "lines": [ + { + "bbox": [ + 106, + 147, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 147, + 506, + 161 + ], + "score": 1.0, + "content": "Similar to Section 4.6, we design a competitive task based on the Construction task, where the learner", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "score": 1.0, + "content": "gets a 0.05 reward for every step and a -1.0 penalty if the opponent achieves its goal. We adopt the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 169, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 506, + 182 + ], + "score": 1.0, + "content": "same training procedure as in Section 4.6, and also rescale the reward according to the maximum", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 179, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 505, + 194 + ], + "score": 1.0, + "content": "reward. As Figure 8 shows, the mind model learned by our approach improves the learning efficiency", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 190, + 285, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 285, + 203 + ], + "score": 1.0, + "content": "and the converged reward by a large margin.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 108, + 217, + 201, + 230 + ], + "lines": [ + { + "bbox": [ + 104, + 214, + 203, + 233 + ], + "spans": [ + { + "bbox": [ + 104, + 214, + 203, + 233 + ], + "score": 1.0, + "content": "5 CONCLUSIONS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 241, + 505, + 337 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "score": 1.0, + "content": "In this work, we have proposed a novel agent modeling approach, i.e., probing-based interactive agent", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 252, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 506, + 265 + ], + "score": 1.0, + "content": "modeling. The core idea is to learn a probing policy using only a curiosity-driven reward, which is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 261, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 506, + 276 + ], + "score": 1.0, + "content": "able to discover new behaviors of the target agent. We achieve this by incorporating two learning", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 151, + 286 + ], + "score": 1.0, + "content": "processes", + "type": "text" + }, + { + "bbox": [ + 152, + 274, + 163, + 284 + ], + "score": 0.28, + "content": "\\mathrm { I L }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "and RL) together. We are able to validate our approach in four distinct tasks. The", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 283, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 506, + 298 + ], + "score": 1.0, + "content": "results show that by learning a probing policy, the learner in our approach can build a more accurate", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "agent model of the demonstrator. Thanks to this interactively learned agent model, the learner is able", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 305, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 505, + 317 + ], + "score": 1.0, + "content": "to i) approximate the demonstrator’s policy more accurately in unseen settings compared to passive", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 315, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 328 + ], + "score": 1.0, + "content": "agent modeling, ii) efficiently learn a good collaborative policy to help the demonstrator, and iii)", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 326, + 363, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 363, + 339 + ], + "score": 1.0, + "content": "develop an adversarial policy to compete with the demonstrator.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 342, + 503, + 364 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 356 + ], + "score": 1.0, + "content": "In the future, we can extend this framework to simultaneous agent modeling and world modeling", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 353, + 277, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 277, + 365 + ], + "score": 1.0, + "content": "with a more complex mind representation.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 107, + 380, + 175, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 379, + 176, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 176, + 394 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 105, + 397, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 399, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 506, + 410 + ], + "score": 1.0, + "content": "Maruan Al-Shedivat, Trapit Bansal, Yuri Burda, Ilya Sutskever, Igor Mordatch, and Pieter Abbeel.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 409, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 116, + 409, + 506, + 422 + ], + "score": 1.0, + "content": "Continuous adaptation via meta-learning in nonstationary and competitive environments. In The", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 420, + 418, + 433 + ], + "spans": [ + { + "bbox": [ + 115, + 420, + 418, + 433 + ], + "score": 1.0, + "content": "Sixth International Conference on Learning Representations (ICLR), 2018.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "score": 1.0, + "content": "Stefano V Albrecht and Peter Stone. Autonomous agents modelling other agents: A comprehensive", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 448, + 396, + 460 + ], + "spans": [ + { + "bbox": [ + 115, + 448, + 396, + 460 + ], + "score": 1.0, + "content": "survey and open problems. Artificial Intelligence, (258):66–95, 2018.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 465, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 104, + 465, + 506, + 481 + ], + "score": 1.0, + "content": "Jacob Andreas, Dan Klein, and Sergey Levine. Modular multitask reinforcement learning with policy", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 477, + 420, + 490 + ], + "spans": [ + { + "bbox": [ + 116, + 477, + 420, + 490 + ], + "score": 1.0, + "content": "sketches. In International Conference on Machine Learning (ICML), 2017.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "Bowen Baker, Otkrist Gupta, Nikhil Naik, and Ramesh Raskar. Designing neural network ar-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 505, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 115, + 505, + 505, + 520 + ], + "score": 1.0, + "content": "chitectures using reinforcement learning. In The Fifth International Conference on Learning", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 516, + 241, + 529 + ], + "spans": [ + { + "bbox": [ + 115, + 516, + 241, + 529 + ], + "score": 1.0, + "content": "Representations (ICLR), 2017.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 533, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 506, + 549 + ], + "score": 1.0, + "content": "Chris L Baker, Rebecca Saxe, and Joshua B Tenenbaum. Action understanding as inverse planning.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 545, + 255, + 558 + ], + "spans": [ + { + "bbox": [ + 116, + 545, + 255, + 558 + ], + "score": 1.0, + "content": "Cognition, 113(3):329–349, 2009.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 562, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 577 + ], + "score": 1.0, + "content": "Marc Bellemare, Sriram Srinivasan, Georg Ostrovski, Tom Schaul, David Saxton, and Remi Munos.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 573, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 115, + 573, + 506, + 588 + ], + "score": 1.0, + "content": "Unifying count-based exploration and intrinsic motivation. In Advances in Neural Information", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 585, + 319, + 597 + ], + "spans": [ + { + "bbox": [ + 116, + 585, + 319, + 597 + ], + "score": 1.0, + "content": "Processing Systems (NIPS), pp. 1471–1479, 2016.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 603, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 506, + 616 + ], + "score": 1.0, + "content": "Lucian Busoniu, Robert Babuska, and Bart De Schutter. A comprehensive survey of multiagent", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 613, + 507, + 626 + ], + "spans": [ + { + "bbox": [ + 115, + 613, + 507, + 626 + ], + "score": 1.0, + "content": "reinforcement learning. IEEE Trans. Systems, Man, and Cybernetics, Part C, 38(2):156–172, 2008.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "Devendra Singh Chaplot, Kanthashree Mysore Sathyendra, Rama Kumar Pasumarthi, Dheeraj", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 114, + 641, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 114, + 641, + 506, + 657 + ], + "score": 1.0, + "content": "Rajagopal, and Ruslan Salakhutdinov. Gated-attention architectures for task-oriented language", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 653, + 321, + 665 + ], + "spans": [ + { + "bbox": [ + 115, + 653, + 321, + 665 + ], + "score": 1.0, + "content": "grounding. arXiv preprint arXiv:1706.0723, 2017.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "Caroline Claus and Craig Boutilier. The dynamics of reinforcement learning in cooperative multiagent", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 681, + 507, + 694 + ], + "spans": [ + { + "bbox": [ + 115, + 681, + 507, + 694 + ], + "score": 1.0, + "content": "systems. The Fifteenth National Conference on Artificial Intelligence (AAAI), 1998:746–752, 1998.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "Yan Duan, Marcin Andrychowicz, Bradly Stadie, Jonathan Ho, Jonas Schneider, Ilya Sutskever, Pieter", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 506, + 724 + ], + "score": 1.0, + "content": "Abbeel, and Wojciech Zaremba. One-shot imitation learning. In Advances in neural information", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 721, + 317, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 317, + 733 + ], + "score": 1.0, + "content": "processing systems (NIPS), pp. 1087–1098, 2017.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 34 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Figure 7 demonstrates the learning curves, where the reward is rescaled so that the theoretical", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "maximum reward from a perfect policy is 1. From the curves, we may see that the policy trained with", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 423, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 423, + 116 + ], + "score": 1.0, + "content": "our interactively learned agent model significantly outperforms both baselines.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 505, + 116 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 128, + 264, + 139 + ], + "lines": [ + { + "bbox": [ + 105, + 127, + 267, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 267, + 141 + ], + "score": 1.0, + "content": "4.7 APPLICATION 3: COMPETITION", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 148, + 505, + 201 + ], + "lines": [ + { + "bbox": [ + 106, + 147, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 147, + 506, + 161 + ], + "score": 1.0, + "content": "Similar to Section 4.6, we design a competitive task based on the Construction task, where the learner", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "score": 1.0, + "content": "gets a 0.05 reward for every step and a -1.0 penalty if the opponent achieves its goal. We adopt the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 169, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 506, + 182 + ], + "score": 1.0, + "content": "same training procedure as in Section 4.6, and also rescale the reward according to the maximum", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 179, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 505, + 194 + ], + "score": 1.0, + "content": "reward. As Figure 8 shows, the mind model learned by our approach improves the learning efficiency", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 190, + 285, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 285, + 203 + ], + "score": 1.0, + "content": "and the converged reward by a large margin.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 147, + 506, + 203 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 217, + 201, + 230 + ], + "lines": [ + { + "bbox": [ + 104, + 214, + 203, + 233 + ], + "spans": [ + { + "bbox": [ + 104, + 214, + 203, + 233 + ], + "score": 1.0, + "content": "5 CONCLUSIONS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 241, + 505, + 337 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "score": 1.0, + "content": "In this work, we have proposed a novel agent modeling approach, i.e., probing-based interactive agent", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 252, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 506, + 265 + ], + "score": 1.0, + "content": "modeling. The core idea is to learn a probing policy using only a curiosity-driven reward, which is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 261, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 506, + 276 + ], + "score": 1.0, + "content": "able to discover new behaviors of the target agent. We achieve this by incorporating two learning", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 151, + 286 + ], + "score": 1.0, + "content": "processes", + "type": "text" + }, + { + "bbox": [ + 152, + 274, + 163, + 284 + ], + "score": 0.28, + "content": "\\mathrm { I L }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "and RL) together. We are able to validate our approach in four distinct tasks. The", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 283, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 506, + 298 + ], + "score": 1.0, + "content": "results show that by learning a probing policy, the learner in our approach can build a more accurate", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "agent model of the demonstrator. Thanks to this interactively learned agent model, the learner is able", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 305, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 505, + 317 + ], + "score": 1.0, + "content": "to i) approximate the demonstrator’s policy more accurately in unseen settings compared to passive", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 315, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 328 + ], + "score": 1.0, + "content": "agent modeling, ii) efficiently learn a good collaborative policy to help the demonstrator, and iii)", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 326, + 363, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 363, + 339 + ], + "score": 1.0, + "content": "develop an adversarial policy to compete with the demonstrator.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 241, + 506, + 339 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 342, + 503, + 364 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 356 + ], + "score": 1.0, + "content": "In the future, we can extend this framework to simultaneous agent modeling and world modeling", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 353, + 277, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 277, + 365 + ], + "score": 1.0, + "content": "with a more complex mind representation.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 340, + 505, + 365 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 380, + 175, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 379, + 176, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 176, + 394 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "list", + "bbox": [ + 105, + 397, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 399, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 506, + 410 + ], + "score": 1.0, + "content": "Maruan Al-Shedivat, Trapit Bansal, Yuri Burda, Ilya Sutskever, Igor Mordatch, and Pieter Abbeel.", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 409, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 116, + 409, + 506, + 422 + ], + "score": 1.0, + "content": "Continuous adaptation via meta-learning in nonstationary and competitive environments. In The", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 420, + 418, + 433 + ], + "spans": [ + { + "bbox": [ + 115, + 420, + 418, + 433 + ], + "score": 1.0, + "content": "Sixth International Conference on Learning Representations (ICLR), 2018.", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "score": 1.0, + "content": "Stefano V Albrecht and Peter Stone. Autonomous agents modelling other agents: A comprehensive", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 448, + 396, + 460 + ], + "spans": [ + { + "bbox": [ + 115, + 448, + 396, + 460 + ], + "score": 1.0, + "content": "survey and open problems. Artificial Intelligence, (258):66–95, 2018.", + "type": "text" + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 465, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 104, + 465, + 506, + 481 + ], + "score": 1.0, + "content": "Jacob Andreas, Dan Klein, and Sergey Levine. Modular multitask reinforcement learning with policy", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 477, + 420, + 490 + ], + "spans": [ + { + "bbox": [ + 116, + 477, + 420, + 490 + ], + "score": 1.0, + "content": "sketches. In International Conference on Machine Learning (ICML), 2017.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "Bowen Baker, Otkrist Gupta, Nikhil Naik, and Ramesh Raskar. Designing neural network ar-", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 505, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 115, + 505, + 505, + 520 + ], + "score": 1.0, + "content": "chitectures using reinforcement learning. In The Fifth International Conference on Learning", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 516, + 241, + 529 + ], + "spans": [ + { + "bbox": [ + 115, + 516, + 241, + 529 + ], + "score": 1.0, + "content": "Representations (ICLR), 2017.", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 533, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 506, + 549 + ], + "score": 1.0, + "content": "Chris L Baker, Rebecca Saxe, and Joshua B Tenenbaum. Action understanding as inverse planning.", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 545, + 255, + 558 + ], + "spans": [ + { + "bbox": [ + 116, + 545, + 255, + 558 + ], + "score": 1.0, + "content": "Cognition, 113(3):329–349, 2009.", + "type": "text" + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 562, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 577 + ], + "score": 1.0, + "content": "Marc Bellemare, Sriram Srinivasan, Georg Ostrovski, Tom Schaul, David Saxton, and Remi Munos.", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 573, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 115, + 573, + 506, + 588 + ], + "score": 1.0, + "content": "Unifying count-based exploration and intrinsic motivation. In Advances in Neural Information", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 585, + 319, + 597 + ], + "spans": [ + { + "bbox": [ + 116, + 585, + 319, + 597 + ], + "score": 1.0, + "content": "Processing Systems (NIPS), pp. 1471–1479, 2016.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 603, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 506, + 616 + ], + "score": 1.0, + "content": "Lucian Busoniu, Robert Babuska, and Bart De Schutter. A comprehensive survey of multiagent", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 613, + 507, + 626 + ], + "spans": [ + { + "bbox": [ + 115, + 613, + 507, + 626 + ], + "score": 1.0, + "content": "reinforcement learning. IEEE Trans. Systems, Man, and Cybernetics, Part C, 38(2):156–172, 2008.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "Devendra Singh Chaplot, Kanthashree Mysore Sathyendra, Rama Kumar Pasumarthi, Dheeraj", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 641, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 114, + 641, + 506, + 657 + ], + "score": 1.0, + "content": "Rajagopal, and Ruslan Salakhutdinov. Gated-attention architectures for task-oriented language", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 653, + 321, + 665 + ], + "spans": [ + { + "bbox": [ + 115, + 653, + 321, + 665 + ], + "score": 1.0, + "content": "grounding. arXiv preprint arXiv:1706.0723, 2017.", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "Caroline Claus and Craig Boutilier. The dynamics of reinforcement learning in cooperative multiagent", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 681, + 507, + 694 + ], + "spans": [ + { + "bbox": [ + 115, + 681, + 507, + 694 + ], + "score": 1.0, + "content": "systems. The Fifteenth National Conference on Artificial Intelligence (AAAI), 1998:746–752, 1998.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "Yan Duan, Marcin Andrychowicz, Bradly Stadie, Jonathan Ho, Jonas Schneider, Ilya Sutskever, Pieter", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 506, + 724 + ], + "score": 1.0, + "content": "Abbeel, and Wojciech Zaremba. One-shot imitation learning. In Advances in neural information", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 721, + 317, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 317, + 733 + ], + "score": 1.0, + "content": "processing systems (NIPS), pp. 1087–1098, 2017.", + "type": "text" + } + ], + "index": 46, + "is_list_end_line": true + } + ], + "index": 34, + "bbox_fs": [ + 104, + 399, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model-agnostic meta-learning for fast adaptation of", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 444, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 444, + 105 + ], + "score": 1.0, + "content": "deep networks. In International Conference on Machine Learning (ICML), 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 108, + 111, + 503, + 144 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "score": 1.0, + "content": "Jakob N Foerster, Richard Y Chen, Maruan Al-Shedivat, Shimon Whiteson, Pieter Abbeel, and Igor", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 506, + 134 + ], + "score": 1.0, + "content": "Mordatch. Learning with opponent-learning awareness. In The 17th International Conference on", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 132, + 363, + 145 + ], + "spans": [ + { + "bbox": [ + 115, + 132, + 363, + 145 + ], + "score": 1.0, + "content": "Autonomous Agents and Multiagent Systems (AAMAS), 2018.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 108, + 149, + 504, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 148, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 506, + 164 + ], + "score": 1.0, + "content": "Xiaoxiao Guo, Satinder P. Singh, Honglak Lee, Richard L. Lewis, and Xiaoshi Wang. Deep learning", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 161, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 115, + 161, + 505, + 173 + ], + "score": 1.0, + "content": "for realtime atari game play using offline monte-carlo tree search planning. In Advances in Neural", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 171, + 304, + 183 + ], + "spans": [ + { + "bbox": [ + 115, + 171, + 304, + 183 + ], + "score": 1.0, + "content": "Information Processing Systems (NIPS), 2014.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 108, + 189, + 503, + 212 + ], + "lines": [ + { + "bbox": [ + 106, + 188, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 505, + 203 + ], + "score": 1.0, + "content": "Bharath Hariharan and Ross Girshick. Low-shot visual recognition by shrinking and hallucinating", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 199, + 434, + 213 + ], + "spans": [ + { + "bbox": [ + 115, + 199, + 434, + 213 + ], + "score": 1.0, + "content": "features. In IEEE International Conference on Computer Vision (ICCV), 2017.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 217, + 504, + 240 + ], + "lines": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "Johannes Heinrich and David Silver. Deep reinforcement learning from self-play in imperfect-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 228, + 360, + 240 + ], + "spans": [ + { + "bbox": [ + 115, + 228, + 360, + 240 + ], + "score": 1.0, + "content": "information games. arXiv preprint arXiv:1603.01121, 2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 108, + 246, + 504, + 269 + ], + "lines": [ + { + "bbox": [ + 105, + 246, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 505, + 259 + ], + "score": 1.0, + "content": "Johannes Heinrich, Marc Lanctot, and David Silver. Fictitious self-play in extensive-form games. In", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 257, + 423, + 270 + ], + "spans": [ + { + "bbox": [ + 115, + 257, + 423, + 270 + ], + "score": 1.0, + "content": "International Conference on Machine Learning (ICML), pp. 805–813, 2015.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 274, + 503, + 298 + ], + "lines": [ + { + "bbox": [ + 106, + 275, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 505, + 288 + ], + "score": 1.0, + "content": "Junling Hu and Michael P Wellman. Nash q-learning for general-sum stochastic games. In The 15th", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 285, + 424, + 298 + ], + "spans": [ + { + "bbox": [ + 115, + 285, + 424, + 298 + ], + "score": 1.0, + "content": "International Conference on Machine Learning (ICML), pp. 242–250, 2003.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 303, + 504, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 303, + 504, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 504, + 316 + ], + "score": 1.0, + "content": "Kshitij Judah, Alan Fern, and Thomas G. Dietterich. Active imitation learning via reduction to i.i.d.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 314, + 470, + 327 + ], + "spans": [ + { + "bbox": [ + 116, + 314, + 470, + 327 + ], + "score": 1.0, + "content": "active learning. In The Conference on Uncertainty in Artificial Intelligence (UAI), 2012.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 331, + 505, + 354 + ], + "lines": [ + { + "bbox": [ + 106, + 332, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 505, + 345 + ], + "score": 1.0, + "content": "Ashish Kapoor, Kristen Grauman, Raquel Urtasun, and Trevor Darrell. Active learning with gaussian", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 343, + 507, + 356 + ], + "spans": [ + { + "bbox": [ + 115, + 343, + 507, + 356 + ], + "score": 1.0, + "content": "processes for object categorization. In International Conference on Computer Vision (ICCV), 2007.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 109, + 360, + 504, + 394 + ], + "lines": [ + { + "bbox": [ + 106, + 360, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 506, + 374 + ], + "score": 1.0, + "content": "Marc Lanctot, Vinicius Zambaldi, Audrunas Gruslys, Angeliki Lazaridou, Julien Perolat, David", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 371, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 116, + 371, + 505, + 384 + ], + "score": 1.0, + "content": "Silver, Thore Graepel, et al. A unified game-theoretic approach to multiagent reinforcement", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 382, + 500, + 394 + ], + "spans": [ + { + "bbox": [ + 116, + 382, + 500, + 394 + ], + "score": 1.0, + "content": "learning. In Advances in Neural Information Processing Systems (NIPS), pp. 4193–4206, 2017.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 399, + 504, + 423 + ], + "lines": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "Alessandro Lazaric, Mohammad Ghavamzadeh, and Remi Munos. Analysis of a classification-based", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 410, + 487, + 423 + ], + "spans": [ + { + "bbox": [ + 115, + 410, + 487, + 423 + ], + "score": 1.0, + "content": "policy iteration algorithm. In International Conference on Machine Learning (ICML), 2010.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 105, + 428, + 504, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "Michael L Littman. Markov games as a framework for multi-agent reinforcement learning. In The", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 439, + 443, + 451 + ], + "spans": [ + { + "bbox": [ + 115, + 439, + 443, + 451 + ], + "score": 1.0, + "content": "11th International Conference on Machine Learning (ICML), pp. 157–163, 1994.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 108, + 457, + 503, + 489 + ], + "lines": [ + { + "bbox": [ + 106, + 456, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 505, + 470 + ], + "score": 1.0, + "content": "Manuel Lopes, Francisco Melo, and Luis Montesano. Active learning for reward estimation in inverse", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 467, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 115, + 467, + 505, + 481 + ], + "score": 1.0, + "content": "reinforcement learning. In Joint European Conference on Machine Learning and Knowledge", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 478, + 241, + 490 + ], + "spans": [ + { + "bbox": [ + 116, + 478, + 241, + 490 + ], + "score": 1.0, + "content": "Discovery in Databases, 2009.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 504, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 496, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 505, + 508 + ], + "score": 1.0, + "content": "Ryan Lowe, Yi Wu, Aviv Tamar, Jean Harb, Pieter Abbeel, and Igor Mordatch. Multi-agent actor-critic", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 506, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 115, + 506, + 506, + 520 + ], + "score": 1.0, + "content": "for mixed cooperative-competitive environments. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 517, + 205, + 529 + ], + "spans": [ + { + "bbox": [ + 115, + 517, + 205, + 529 + ], + "score": 1.0, + "content": "Systems (NIPS, 2017.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 504, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 506, + 548 + ], + "score": 1.0, + "content": "Dougal Maclaurin, David Duvenaud, and Ryan P. Adams. Gradient-based hyperparameter opti-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 546, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 115, + 546, + 506, + 559 + ], + "score": 1.0, + "content": "mization through reversible learning. In International Conference on Machine Learning (ICML),", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 556, + 142, + 569 + ], + "spans": [ + { + "bbox": [ + 114, + 556, + 142, + 569 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 574, + 504, + 607 + ], + "lines": [ + { + "bbox": [ + 106, + 573, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 587 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Adria Puigdomenech Badia, Mehdi Mirza, Alex Graves, Timothy Lillicrap, Tim", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 585, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 115, + 585, + 506, + 597 + ], + "score": 1.0, + "content": "Harley, David Silver, and Koray Kavukcuoglu. Asynchronous methods for deep reinforcement", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 596, + 417, + 608 + ], + "spans": [ + { + "bbox": [ + 116, + 596, + 417, + 608 + ], + "score": 1.0, + "content": "learning. In International Conference on Machine Learning (ICML), 2016.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 105, + 613, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 106, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 505, + 627 + ], + "score": 1.0, + "content": "Igor Mordatch and Pieter Abbeel. Emergence of grounded compositional language in multi-agent", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 624, + 487, + 637 + ], + "spans": [ + { + "bbox": [ + 115, + 624, + 487, + 637 + ], + "score": 1.0, + "content": "populations. In The Thirty-Second AAAI Conference on Artificial Intelligence (AAAI), 2018.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 108, + 641, + 504, + 675 + ], + "lines": [ + { + "bbox": [ + 105, + 641, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 506, + 655 + ], + "score": 1.0, + "content": "Stephane Ross nd Geoffrey J. Gordon and J. Andrew Bagnell. A reduction of imitation learning ´", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 653, + 505, + 665 + ], + "spans": [ + { + "bbox": [ + 116, + 653, + 505, + 665 + ], + "score": 1.0, + "content": "and structured prediction to no-regret online learning. In International Conference on Artificial", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 663, + 294, + 676 + ], + "spans": [ + { + "bbox": [ + 115, + 663, + 294, + 676 + ], + "score": 1.0, + "content": "Intelligence and Statistics (AISTATS), 2011.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 681, + 504, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "score": 1.0, + "content": "Deepak Pathak, Pulkit Agrawal, Alexei A Efros, and Trevor Darrell. Curiosity-driven exploration by", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 692, + 489, + 705 + ], + "spans": [ + { + "bbox": [ + 116, + 692, + 489, + 705 + ], + "score": 1.0, + "content": "self-supervised prediction. In International Conference on Machine Learning (ICML), 2017.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "Rob Powers and Yoav Shoham. New criteria and a new algorithm for learning in multi-agent systems.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 720, + 457, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 457, + 733 + ], + "score": 1.0, + "content": "In Advances in neural information processing systems (NIPS), pp. 1089–1096, 2005.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model-agnostic meta-learning for fast adaptation of", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 444, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 444, + 105 + ], + "score": 1.0, + "content": "deep networks. In International Conference on Machine Learning (ICML), 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 81, + 506, + 105 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 111, + 503, + 144 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "score": 1.0, + "content": "Jakob N Foerster, Richard Y Chen, Maruan Al-Shedivat, Shimon Whiteson, Pieter Abbeel, and Igor", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 506, + 134 + ], + "score": 1.0, + "content": "Mordatch. Learning with opponent-learning awareness. In The 17th International Conference on", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 132, + 363, + 145 + ], + "spans": [ + { + "bbox": [ + 115, + 132, + 363, + 145 + ], + "score": 1.0, + "content": "Autonomous Agents and Multiagent Systems (AAMAS), 2018.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 110, + 506, + 145 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 149, + 504, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 148, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 506, + 164 + ], + "score": 1.0, + "content": "Xiaoxiao Guo, Satinder P. Singh, Honglak Lee, Richard L. Lewis, and Xiaoshi Wang. Deep learning", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 161, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 115, + 161, + 505, + 173 + ], + "score": 1.0, + "content": "for realtime atari game play using offline monte-carlo tree search planning. In Advances in Neural", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 171, + 304, + 183 + ], + "spans": [ + { + "bbox": [ + 115, + 171, + 304, + 183 + ], + "score": 1.0, + "content": "Information Processing Systems (NIPS), 2014.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 148, + 506, + 183 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 189, + 503, + 212 + ], + "lines": [ + { + "bbox": [ + 106, + 188, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 505, + 203 + ], + "score": 1.0, + "content": "Bharath Hariharan and Ross Girshick. Low-shot visual recognition by shrinking and hallucinating", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 199, + 434, + 213 + ], + "spans": [ + { + "bbox": [ + 115, + 199, + 434, + 213 + ], + "score": 1.0, + "content": "features. In IEEE International Conference on Computer Vision (ICCV), 2017.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 188, + 505, + 213 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 217, + 504, + 240 + ], + "lines": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "Johannes Heinrich and David Silver. Deep reinforcement learning from self-play in imperfect-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 228, + 360, + 240 + ], + "spans": [ + { + "bbox": [ + 115, + 228, + 360, + 240 + ], + "score": 1.0, + "content": "information games. arXiv preprint arXiv:1603.01121, 2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 217, + 505, + 240 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 246, + 504, + 269 + ], + "lines": [ + { + "bbox": [ + 105, + 246, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 505, + 259 + ], + "score": 1.0, + "content": "Johannes Heinrich, Marc Lanctot, and David Silver. Fictitious self-play in extensive-form games. In", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 257, + 423, + 270 + ], + "spans": [ + { + "bbox": [ + 115, + 257, + 423, + 270 + ], + "score": 1.0, + "content": "International Conference on Machine Learning (ICML), pp. 805–813, 2015.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 246, + 505, + 270 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 274, + 503, + 298 + ], + "lines": [ + { + "bbox": [ + 106, + 275, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 505, + 288 + ], + "score": 1.0, + "content": "Junling Hu and Michael P Wellman. Nash q-learning for general-sum stochastic games. In The 15th", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 285, + 424, + 298 + ], + "spans": [ + { + "bbox": [ + 115, + 285, + 424, + 298 + ], + "score": 1.0, + "content": "International Conference on Machine Learning (ICML), pp. 242–250, 2003.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 275, + 505, + 298 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 303, + 504, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 303, + 504, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 504, + 316 + ], + "score": 1.0, + "content": "Kshitij Judah, Alan Fern, and Thomas G. Dietterich. Active imitation learning via reduction to i.i.d.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 314, + 470, + 327 + ], + "spans": [ + { + "bbox": [ + 116, + 314, + 470, + 327 + ], + "score": 1.0, + "content": "active learning. In The Conference on Uncertainty in Artificial Intelligence (UAI), 2012.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 303, + 504, + 327 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 331, + 505, + 354 + ], + "lines": [ + { + "bbox": [ + 106, + 332, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 505, + 345 + ], + "score": 1.0, + "content": "Ashish Kapoor, Kristen Grauman, Raquel Urtasun, and Trevor Darrell. Active learning with gaussian", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 343, + 507, + 356 + ], + "spans": [ + { + "bbox": [ + 115, + 343, + 507, + 356 + ], + "score": 1.0, + "content": "processes for object categorization. In International Conference on Computer Vision (ICCV), 2007.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 332, + 507, + 356 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 360, + 504, + 394 + ], + "lines": [ + { + "bbox": [ + 106, + 360, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 506, + 374 + ], + "score": 1.0, + "content": "Marc Lanctot, Vinicius Zambaldi, Audrunas Gruslys, Angeliki Lazaridou, Julien Perolat, David", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 371, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 116, + 371, + 505, + 384 + ], + "score": 1.0, + "content": "Silver, Thore Graepel, et al. A unified game-theoretic approach to multiagent reinforcement", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 382, + 500, + 394 + ], + "spans": [ + { + "bbox": [ + 116, + 382, + 500, + 394 + ], + "score": 1.0, + "content": "learning. In Advances in Neural Information Processing Systems (NIPS), pp. 4193–4206, 2017.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 360, + 506, + 394 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 399, + 504, + 423 + ], + "lines": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "Alessandro Lazaric, Mohammad Ghavamzadeh, and Remi Munos. Analysis of a classification-based", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 410, + 487, + 423 + ], + "spans": [ + { + "bbox": [ + 115, + 410, + 487, + 423 + ], + "score": 1.0, + "content": "policy iteration algorithm. In International Conference on Machine Learning (ICML), 2010.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 400, + 505, + 423 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 428, + 504, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "Michael L Littman. Markov games as a framework for multi-agent reinforcement learning. In The", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 439, + 443, + 451 + ], + "spans": [ + { + "bbox": [ + 115, + 439, + 443, + 451 + ], + "score": 1.0, + "content": "11th International Conference on Machine Learning (ICML), pp. 157–163, 1994.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 428, + 505, + 451 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 457, + 503, + 489 + ], + "lines": [ + { + "bbox": [ + 106, + 456, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 505, + 470 + ], + "score": 1.0, + "content": "Manuel Lopes, Francisco Melo, and Luis Montesano. Active learning for reward estimation in inverse", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 467, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 115, + 467, + 505, + 481 + ], + "score": 1.0, + "content": "reinforcement learning. In Joint European Conference on Machine Learning and Knowledge", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 478, + 241, + 490 + ], + "spans": [ + { + "bbox": [ + 116, + 478, + 241, + 490 + ], + "score": 1.0, + "content": "Discovery in Databases, 2009.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 456, + 505, + 490 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 504, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 496, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 505, + 508 + ], + "score": 1.0, + "content": "Ryan Lowe, Yi Wu, Aviv Tamar, Jean Harb, Pieter Abbeel, and Igor Mordatch. Multi-agent actor-critic", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 506, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 115, + 506, + 506, + 520 + ], + "score": 1.0, + "content": "for mixed cooperative-competitive environments. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 517, + 205, + 529 + ], + "spans": [ + { + "bbox": [ + 115, + 517, + 205, + 529 + ], + "score": 1.0, + "content": "Systems (NIPS, 2017.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 496, + 506, + 529 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 504, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 506, + 548 + ], + "score": 1.0, + "content": "Dougal Maclaurin, David Duvenaud, and Ryan P. Adams. Gradient-based hyperparameter opti-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 546, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 115, + 546, + 506, + 559 + ], + "score": 1.0, + "content": "mization through reversible learning. In International Conference on Machine Learning (ICML),", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 556, + 142, + 569 + ], + "spans": [ + { + "bbox": [ + 114, + 556, + 142, + 569 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 534, + 506, + 569 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 574, + 504, + 607 + ], + "lines": [ + { + "bbox": [ + 106, + 573, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 587 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Adria Puigdomenech Badia, Mehdi Mirza, Alex Graves, Timothy Lillicrap, Tim", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 585, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 115, + 585, + 506, + 597 + ], + "score": 1.0, + "content": "Harley, David Silver, and Koray Kavukcuoglu. Asynchronous methods for deep reinforcement", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 596, + 417, + 608 + ], + "spans": [ + { + "bbox": [ + 116, + 596, + 417, + 608 + ], + "score": 1.0, + "content": "learning. In International Conference on Machine Learning (ICML), 2016.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 106, + 573, + 506, + 608 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 613, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 106, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 505, + 627 + ], + "score": 1.0, + "content": "Igor Mordatch and Pieter Abbeel. Emergence of grounded compositional language in multi-agent", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 624, + 487, + 637 + ], + "spans": [ + { + "bbox": [ + 115, + 624, + 487, + 637 + ], + "score": 1.0, + "content": "populations. In The Thirty-Second AAAI Conference on Artificial Intelligence (AAAI), 2018.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 106, + 614, + 505, + 637 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 641, + 504, + 675 + ], + "lines": [ + { + "bbox": [ + 105, + 641, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 506, + 655 + ], + "score": 1.0, + "content": "Stephane Ross nd Geoffrey J. Gordon and J. Andrew Bagnell. A reduction of imitation learning ´", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 653, + 505, + 665 + ], + "spans": [ + { + "bbox": [ + 116, + 653, + 505, + 665 + ], + "score": 1.0, + "content": "and structured prediction to no-regret online learning. In International Conference on Artificial", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 663, + 294, + 676 + ], + "spans": [ + { + "bbox": [ + 115, + 663, + 294, + 676 + ], + "score": 1.0, + "content": "Intelligence and Statistics (AISTATS), 2011.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 641, + 506, + 676 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 681, + 504, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "score": 1.0, + "content": "Deepak Pathak, Pulkit Agrawal, Alexei A Efros, and Trevor Darrell. Curiosity-driven exploration by", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 692, + 489, + 705 + ], + "spans": [ + { + "bbox": [ + 116, + 692, + 489, + 705 + ], + "score": 1.0, + "content": "self-supervised prediction. In International Conference on Machine Learning (ICML), 2017.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 680, + 505, + 705 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "Rob Powers and Yoav Shoham. New criteria and a new algorithm for learning in multi-agent systems.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 720, + 457, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 457, + 733 + ], + "score": 1.0, + "content": "In Advances in neural information processing systems (NIPS), pp. 1089–1096, 2005.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 709, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 104 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "David Premack and Guy Woodruff. Does the chimpanzee have a theory of mind? Behavioral and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 263, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 263, + 105 + ], + "score": 1.0, + "content": "brain sciences, 1(4):515–526, 1978.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 105, + 111, + 503, + 134 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 124 + ], + "score": 1.0, + "content": "Neil C. Rabinowitz, Frank Perbet, H. Francis Song, Chiyuan Zhang, S.M. Ali Eslami, and Matthew", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 426, + 134 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 426, + 134 + ], + "score": 1.0, + "content": "Botvinick. Machine theory of mind. arXiv preprint arXiv:1802.07740, 2018.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 105, + 140, + 504, + 163 + ], + "lines": [ + { + "bbox": [ + 106, + 140, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 505, + 153 + ], + "score": 1.0, + "content": "Aaron P. Shon, Deepak Verma, and Rajesh PN Rao. Active imitation learning. In The AAAI", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 151, + 322, + 163 + ], + "spans": [ + { + "bbox": [ + 116, + 151, + 322, + 163 + ], + "score": 1.0, + "content": "Conference on Artificial Intelligence (AAAI), 2007.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 169, + 503, + 202 + ], + "lines": [ + { + "bbox": [ + 106, + 169, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 505, + 182 + ], + "score": 1.0, + "content": "Tianmin Shu, Caiming Xiong, and Richard Socher. Hierarchical and interpretable skill acquisi-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 178, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 115, + 178, + 505, + 194 + ], + "score": 1.0, + "content": "tion in multi-task reinforcement learning. In The Sixth International Conference on Learning", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 191, + 240, + 203 + ], + "spans": [ + { + "bbox": [ + 116, + 191, + 240, + 203 + ], + "score": 1.0, + "content": "Representations (ICLR), 2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 108, + 209, + 502, + 232 + ], + "lines": [ + { + "bbox": [ + 106, + 208, + 504, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 504, + 222 + ], + "score": 1.0, + "content": "A. L. Strehl and M. L. Littman. An analysis of model-based interval estimation for markov decision", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 220, + 433, + 232 + ], + "spans": [ + { + "bbox": [ + 115, + 220, + 433, + 232 + ], + "score": 1.0, + "content": "processes. Journal of Computer and System Sciences, 74(8):1309–1331, 2008.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 237, + 504, + 260 + ], + "lines": [ + { + "bbox": [ + 106, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "Richard S Sutton, Doina Precup, and Satinder Singh. Between mdps and semi-mdps: A framework", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 116, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "for temporal abstraction in reinforcement learning. Artificial intelligence, 112(1-2):181–211, 1999.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 266, + 506, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 507, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 507, + 280 + ], + "score": 1.0, + "content": "Haoran Tang, Rein Houthooft, Davis Foote, Adam Stooke, Xi Chen, Yan Duan, John Schulman,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 275, + 506, + 292 + ], + "spans": [ + { + "bbox": [ + 115, + 275, + 506, + 292 + ], + "score": 1.0, + "content": "Filip De Turck, and Pieter Abbeel. #exploration: A study of count-based exploration for deep", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 288, + 507, + 301 + ], + "spans": [ + { + "bbox": [ + 115, + 288, + 507, + 301 + ], + "score": 1.0, + "content": "reinforcement learning. In 31st Conference on Neural Information Processing Systems (NIPS),", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 297, + 142, + 311 + ], + "spans": [ + { + "bbox": [ + 115, + 297, + 142, + 311 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 317, + 504, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 506, + 330 + ], + "score": 1.0, + "content": "Gerald Tesauro. Extending q-learning to general adaptive multi-agent systems. In Advances in neural", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 327, + 357, + 340 + ], + "spans": [ + { + "bbox": [ + 115, + 327, + 357, + 340 + ], + "score": 1.0, + "content": "information processing systems (NIPS), pp. 871–878, 2004.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 504, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 506, + 360 + ], + "score": 1.0, + "content": "Tijmen Tieleman and Geoffrey Hinto. Lecture 6.5—rmsprop: Divide the gradient by a running", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 357, + 490, + 369 + ], + "spans": [ + { + "bbox": [ + 116, + 357, + 490, + 369 + ], + "score": 1.0, + "content": "average of its recent magnitude. COURSERA: Neural Networks for Machine Learning, 2012.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 375, + 504, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "score": 1.0, + "content": "Simon Tong and Daphne Koller. Support vector machine active learning with applications to text", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 385, + 406, + 397 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 406, + 397 + ], + "score": 1.0, + "content": "classification. Journal of Machine Learning Research, pp. 45–66, 2001.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 505, + 437 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 417 + ], + "score": 1.0, + "content": "Jane X Wang, Zeb Kurth-Nelson, Dhruva Tirumala, Hubert Soyer, Joel Z Leibo, Remi Munos,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 415, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 116, + 415, + 505, + 426 + ], + "score": 1.0, + "content": "Charles Blundell, Dharshan Kumaran, and Matt Botvinick. Learning to reinforcement learn. arXiv", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 426, + 253, + 437 + ], + "spans": [ + { + "bbox": [ + 115, + 426, + 253, + 437 + ], + "score": 1.0, + "content": "preprint arXiv:1611.05763, 2016.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 443, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "Olga Wichrowska, Niru Maheswaranathan, Matthew W Hoffman, Sergio Gomez Colmenarejo, Misha", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 455, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 116, + 455, + 506, + 466 + ], + "score": 1.0, + "content": "Denil, Nando de Freitas, and Jascha Sohl-Dickstein. Learned optimizers that scale and generalize.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 464, + 280, + 478 + ], + "spans": [ + { + "bbox": [ + 116, + 464, + 280, + 478 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1703.04813, 2017.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 483, + 504, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 496 + ], + "score": 1.0, + "content": "Scott Cheng-Hsin Yang and Patrick Shafto. Teaching versus active learning: A computational analysis", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 493, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 116, + 493, + 506, + 506 + ], + "score": 1.0, + "content": "of conditions that affect learning. In The AAAI Conference on Artificial Intelligence (AAAI), 2017.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 512, + 506, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 525 + ], + "score": 1.0, + "content": "Tianhe Yu, Chelsea Finn, Annie Xie, Sudeep Dasari, Pieter Abbeel, and Sergey Levine. One-shot", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 523, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 115, + 523, + 505, + 535 + ], + "score": 1.0, + "content": "imitation from observing humans via domain-adaptive meta-learning. In Robotics: Science and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 533, + 203, + 545 + ], + "spans": [ + { + "bbox": [ + 115, + 533, + 203, + 545 + ], + "score": 1.0, + "content": "Systems (RSS), 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 104 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "David Premack and Guy Woodruff. Does the chimpanzee have a theory of mind? Behavioral and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 263, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 263, + 105 + ], + "score": 1.0, + "content": "brain sciences, 1(4):515–526, 1978.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 105 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 111, + 503, + 134 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 124 + ], + "score": 1.0, + "content": "Neil C. Rabinowitz, Frank Perbet, H. Francis Song, Chiyuan Zhang, S.M. Ali Eslami, and Matthew", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 426, + 134 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 426, + 134 + ], + "score": 1.0, + "content": "Botvinick. Machine theory of mind. arXiv preprint arXiv:1802.07740, 2018.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 111, + 505, + 134 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 140, + 504, + 163 + ], + "lines": [ + { + "bbox": [ + 106, + 140, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 505, + 153 + ], + "score": 1.0, + "content": "Aaron P. Shon, Deepak Verma, and Rajesh PN Rao. Active imitation learning. In The AAAI", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 151, + 322, + 163 + ], + "spans": [ + { + "bbox": [ + 116, + 151, + 322, + 163 + ], + "score": 1.0, + "content": "Conference on Artificial Intelligence (AAAI), 2007.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 140, + 505, + 163 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 169, + 503, + 202 + ], + "lines": [ + { + "bbox": [ + 106, + 169, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 505, + 182 + ], + "score": 1.0, + "content": "Tianmin Shu, Caiming Xiong, and Richard Socher. Hierarchical and interpretable skill acquisi-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 178, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 115, + 178, + 505, + 194 + ], + "score": 1.0, + "content": "tion in multi-task reinforcement learning. In The Sixth International Conference on Learning", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 191, + 240, + 203 + ], + "spans": [ + { + "bbox": [ + 116, + 191, + 240, + 203 + ], + "score": 1.0, + "content": "Representations (ICLR), 2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 169, + 505, + 203 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 209, + 502, + 232 + ], + "lines": [ + { + "bbox": [ + 106, + 208, + 504, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 504, + 222 + ], + "score": 1.0, + "content": "A. L. Strehl and M. L. Littman. An analysis of model-based interval estimation for markov decision", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 220, + 433, + 232 + ], + "spans": [ + { + "bbox": [ + 115, + 220, + 433, + 232 + ], + "score": 1.0, + "content": "processes. Journal of Computer and System Sciences, 74(8):1309–1331, 2008.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 208, + 504, + 232 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 237, + 504, + 260 + ], + "lines": [ + { + "bbox": [ + 106, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "Richard S Sutton, Doina Precup, and Satinder Singh. Between mdps and semi-mdps: A framework", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 116, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "for temporal abstraction in reinforcement learning. Artificial intelligence, 112(1-2):181–211, 1999.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 237, + 505, + 261 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 266, + 506, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 507, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 507, + 280 + ], + "score": 1.0, + "content": "Haoran Tang, Rein Houthooft, Davis Foote, Adam Stooke, Xi Chen, Yan Duan, John Schulman,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 275, + 506, + 292 + ], + "spans": [ + { + "bbox": [ + 115, + 275, + 506, + 292 + ], + "score": 1.0, + "content": "Filip De Turck, and Pieter Abbeel. #exploration: A study of count-based exploration for deep", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 288, + 507, + 301 + ], + "spans": [ + { + "bbox": [ + 115, + 288, + 507, + 301 + ], + "score": 1.0, + "content": "reinforcement learning. In 31st Conference on Neural Information Processing Systems (NIPS),", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 297, + 142, + 311 + ], + "spans": [ + { + "bbox": [ + 115, + 297, + 142, + 311 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 267, + 507, + 311 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 317, + 504, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 506, + 330 + ], + "score": 1.0, + "content": "Gerald Tesauro. Extending q-learning to general adaptive multi-agent systems. In Advances in neural", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 327, + 357, + 340 + ], + "spans": [ + { + "bbox": [ + 115, + 327, + 357, + 340 + ], + "score": 1.0, + "content": "information processing systems (NIPS), pp. 871–878, 2004.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 106, + 316, + 506, + 340 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 504, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 506, + 360 + ], + "score": 1.0, + "content": "Tijmen Tieleman and Geoffrey Hinto. Lecture 6.5—rmsprop: Divide the gradient by a running", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 357, + 490, + 369 + ], + "spans": [ + { + "bbox": [ + 116, + 357, + 490, + 369 + ], + "score": 1.0, + "content": "average of its recent magnitude. COURSERA: Neural Networks for Machine Learning, 2012.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 344, + 506, + 369 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 375, + 504, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "score": 1.0, + "content": "Simon Tong and Daphne Koller. Support vector machine active learning with applications to text", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 385, + 406, + 397 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 406, + 397 + ], + "score": 1.0, + "content": "classification. Journal of Machine Learning Research, pp. 45–66, 2001.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 374, + 506, + 397 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 505, + 437 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 417 + ], + "score": 1.0, + "content": "Jane X Wang, Zeb Kurth-Nelson, Dhruva Tirumala, Hubert Soyer, Joel Z Leibo, Remi Munos,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 415, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 116, + 415, + 505, + 426 + ], + "score": 1.0, + "content": "Charles Blundell, Dharshan Kumaran, and Matt Botvinick. Learning to reinforcement learn. arXiv", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 426, + 253, + 437 + ], + "spans": [ + { + "bbox": [ + 115, + 426, + 253, + 437 + ], + "score": 1.0, + "content": "preprint arXiv:1611.05763, 2016.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 403, + 506, + 437 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 443, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "Olga Wichrowska, Niru Maheswaranathan, Matthew W Hoffman, Sergio Gomez Colmenarejo, Misha", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 455, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 116, + 455, + 506, + 466 + ], + "score": 1.0, + "content": "Denil, Nando de Freitas, and Jascha Sohl-Dickstein. Learned optimizers that scale and generalize.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 464, + 280, + 478 + ], + "spans": [ + { + "bbox": [ + 116, + 464, + 280, + 478 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1703.04813, 2017.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 443, + 506, + 478 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 483, + 504, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 496 + ], + "score": 1.0, + "content": "Scott Cheng-Hsin Yang and Patrick Shafto. Teaching versus active learning: A computational analysis", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 493, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 116, + 493, + 506, + 506 + ], + "score": 1.0, + "content": "of conditions that affect learning. In The AAAI Conference on Artificial Intelligence (AAAI), 2017.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 482, + 506, + 506 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 512, + 506, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 525 + ], + "score": 1.0, + "content": "Tianhe Yu, Chelsea Finn, Annie Xie, Sudeep Dasari, Pieter Abbeel, and Sergey Levine. One-shot", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 523, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 115, + 523, + 505, + 535 + ], + "score": 1.0, + "content": "imitation from observing humans via domain-adaptive meta-learning. In Robotics: Science and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 533, + 203, + 545 + ], + "spans": [ + { + "bbox": [ + 115, + 533, + 203, + 545 + ], + "score": 1.0, + "content": "Systems (RSS), 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 511, + 505, + 545 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 321, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 322, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 322, + 96 + ], + "score": 1.0, + "content": "A PSEUDO CODE OF OUR ALGORITHMS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 107, + 109, + 217, + 120 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 216, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 193, + 123 + ], + "score": 1.0, + "content": "Algorithm 1 Rollout", + "type": "text" + }, + { + "bbox": [ + 193, + 109, + 216, + 120 + ], + "score": 0.5, + "content": " { T _ { \\mathrm { m a x } } } )", + "type": "inline_equation" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 124, + 417, + 236 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 213, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 195, + 136 + ], + "score": 1.0, + "content": "Input: Maximum steps", + "type": "text" + }, + { + "bbox": [ + 196, + 124, + 213, + 134 + ], + "score": 0.86, + "content": "T _ { \\mathrm { m a x } }", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 133, + 418, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 198, + 146 + ], + "score": 1.0, + "content": "Output: Episode length", + "type": "text" + }, + { + "bbox": [ + 198, + 135, + 206, + 144 + ], + "score": 0.75, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 133, + 251, + 146 + ], + "score": 1.0, + "content": ", trajectories", + "type": "text" + }, + { + "bbox": [ + 252, + 133, + 264, + 145 + ], + "score": 0.9, + "content": "\\Gamma _ { d } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 133, + 280, + 146 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 280, + 133, + 293, + 145 + ], + "score": 0.89, + "content": "\\Gamma _ { l } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 133, + 407, + 146 + ], + "score": 1.0, + "content": ", and the latent vector sequence", + "type": "text" + }, + { + "bbox": [ + 407, + 135, + 418, + 144 + ], + "score": 0.51, + "content": "M", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 110, + 144, + 220, + 155 + ], + "spans": [ + { + "bbox": [ + 110, + 144, + 220, + 155 + ], + "score": 1.0, + "content": "1: Initialize the environment", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 109, + 151, + 282, + 166 + ], + "spans": [ + { + "bbox": [ + 109, + 151, + 123, + 166 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 124, + 153, + 282, + 164 + ], + "score": 0.88, + "content": "\\Gamma _ { d } ^ { 0 } \\gets \\emptyset , \\Gamma _ { l } ^ { 0 } \\gets \\emptyset , M \\gets \\emptyset , m ^ { 0 } \\gets \\mathbf { 0 } , t \\gets 0", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 110, + 163, + 152, + 174 + ], + "spans": [ + { + "bbox": [ + 110, + 163, + 122, + 174 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 121, + 164, + 152, + 174 + ], + "score": 1.0, + "content": "repeat", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 110, + 173, + 176, + 183 + ], + "spans": [ + { + "bbox": [ + 110, + 173, + 121, + 183 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 137, + 173, + 176, + 182 + ], + "score": 0.62, + "content": "t \\gets t + 1", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 110, + 182, + 289, + 194 + ], + "spans": [ + { + "bbox": [ + 110, + 182, + 121, + 193 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 136, + 182, + 169, + 194 + ], + "score": 1.0, + "content": "Observe", + "type": "text" + }, + { + "bbox": [ + 169, + 182, + 179, + 193 + ], + "score": 0.83, + "content": "s _ { d } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 182, + 195, + 194 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 195, + 182, + 205, + 193 + ], + "score": 0.89, + "content": "a _ { d } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 182, + 289, + 194 + ], + "score": 1.0, + "content": "from the demonstrator", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 110, + 192, + 259, + 203 + ], + "spans": [ + { + "bbox": [ + 110, + 192, + 121, + 203 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 136, + 192, + 169, + 203 + ], + "score": 1.0, + "content": "Observe", + "type": "text" + }, + { + "bbox": [ + 169, + 193, + 178, + 203 + ], + "score": 0.8, + "content": "s _ { l } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 192, + 259, + 203 + ], + "score": 1.0, + "content": "from the environment", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 110, + 200, + 350, + 214 + ], + "spans": [ + { + "bbox": [ + 110, + 201, + 121, + 212 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 135, + 200, + 281, + 214 + ], + "score": 1.0, + "content": "Sample and execute the learner’s action", + "type": "text" + }, + { + "bbox": [ + 281, + 201, + 350, + 212 + ], + "score": 0.88, + "content": "a _ { l } ^ { t } \\sim \\pi _ { l } ( s _ { l } ^ { t } , m ^ { t - 1 } )", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 110, + 212, + 322, + 224 + ], + "spans": [ + { + "bbox": [ + 110, + 212, + 121, + 223 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 136, + 212, + 322, + 224 + ], + "score": 0.76, + "content": "\\Gamma _ { d } ^ { t } \\Gamma _ { d } ^ { t - 1 } \\cup \\{ ( s _ { d } ^ { t } , a _ { d } ^ { t } ) \\} , \\Gamma _ { l } ^ { t } \\Gamma _ { l } ^ { t - 1 } \\cup \\{ ( s _ { l } ^ { t } , a _ { l } ^ { t } ) \\}", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 110, + 223, + 262, + 235 + ], + "spans": [ + { + "bbox": [ + 110, + 223, + 121, + 234 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 137, + 224, + 262, + 235 + ], + "score": 0.59, + "content": "m ^ { t } \\gets \\mathcal { M } ( \\Gamma _ { d } ^ { t } ) , M \\gets M \\cup \\{ m ^ { t } \\}", + "type": "inline_equation" + } + ], + "index": 12 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 107, + 271, + 242, + 282 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 243, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 243, + 286 + ], + "score": 1.0, + "content": "Algorithm 2 Learning Algorithm", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 110, + 286, + 433, + 379 + ], + "lines": [ + { + "bbox": [ + 111, + 287, + 278, + 298 + ], + "spans": [ + { + "bbox": [ + 111, + 287, + 199, + 298 + ], + "score": 1.0, + "content": "1: Initialize parameters", + "type": "text" + }, + { + "bbox": [ + 199, + 287, + 278, + 298 + ], + "score": 0.89, + "content": "\\Theta = \\left. \\theta _ { M } , \\theta _ { b } , \\theta _ { l } , \\theta _ { V } \\right.", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 109, + 295, + 433, + 308 + ], + "spans": [ + { + "bbox": [ + 109, + 295, + 137, + 308 + ], + "score": 1.0, + "content": "2: Set", + "type": "text" + }, + { + "bbox": [ + 137, + 297, + 154, + 306 + ], + "score": 0.83, + "content": "T _ { \\mathrm { m a x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 295, + 298, + 308 + ], + "score": 1.0, + "content": "(the maximum steps in an episode) and", + "type": "text" + }, + { + "bbox": [ + 298, + 297, + 308, + 306 + ], + "score": 0.82, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 295, + 433, + 308 + ], + "score": 1.0, + "content": "(the number of training iterations)", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 109, + 304, + 150, + 318 + ], + "spans": [ + { + "bbox": [ + 109, + 304, + 123, + 318 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 123, + 307, + 147, + 316 + ], + "score": 0.73, + "content": "i \\gets 1", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 304, + 150, + 318 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 111, + 315, + 151, + 327 + ], + "spans": [ + { + "bbox": [ + 111, + 316, + 122, + 326 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 119, + 315, + 151, + 327 + ], + "score": 1.0, + "content": "repeat", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 110, + 325, + 254, + 338 + ], + "spans": [ + { + "bbox": [ + 110, + 325, + 122, + 338 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 136, + 325, + 254, + 337 + ], + "score": 0.6, + "content": "T , \\Gamma _ { d } ^ { T } , \\Gamma _ { l } ^ { T } , M \\gets \\mathrm { R o l l o u t } ( T _ { \\mathrm { m a x } } )", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 110, + 333, + 315, + 353 + ], + "spans": [ + { + "bbox": [ + 110, + 337, + 121, + 348 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 133, + 333, + 178, + 353 + ], + "score": 1.0, + "content": "IL: Update", + "type": "text" + }, + { + "bbox": [ + 178, + 338, + 192, + 347 + ], + "score": 0.86, + "content": "\\theta _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 333, + 208, + 353 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 208, + 338, + 218, + 347 + ], + "score": 0.86, + "content": "\\theta _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 333, + 302, + 353 + ], + "score": 1.0, + "content": "based on Eq. (2) using", + "type": "text" + }, + { + "bbox": [ + 302, + 336, + 315, + 348 + ], + "score": 0.87, + "content": "\\Gamma _ { d } ^ { T }", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 110, + 347, + 429, + 360 + ], + "spans": [ + { + "bbox": [ + 110, + 347, + 122, + 359 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 135, + 347, + 181, + 360 + ], + "score": 1.0, + "content": "RL: Update", + "type": "text" + }, + { + "bbox": [ + 181, + 349, + 189, + 358 + ], + "score": 0.85, + "content": "\\theta _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 347, + 205, + 360 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 206, + 349, + 217, + 358 + ], + "score": 0.88, + "content": "\\theta _ { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 347, + 385, + 360 + ], + "score": 1.0, + "content": "based on Eq. (3 and Eq. (4) respectively using", + "type": "text" + }, + { + "bbox": [ + 386, + 347, + 398, + 359 + ], + "score": 0.9, + "content": "\\Gamma _ { l } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 347, + 417, + 360 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 417, + 348, + 429, + 357 + ], + "score": 0.66, + "content": "M", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 110, + 357, + 175, + 369 + ], + "spans": [ + { + "bbox": [ + 110, + 357, + 122, + 369 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 137, + 358, + 175, + 367 + ], + "score": 0.53, + "content": "i \\gets i + 1", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 111, + 367, + 169, + 378 + ], + "spans": [ + { + "bbox": [ + 111, + 367, + 143, + 378 + ], + "score": 1.0, + "content": "9: until", + "type": "text" + }, + { + "bbox": [ + 144, + 368, + 169, + 377 + ], + "score": 0.43, + "content": "i = N", + "type": "inline_equation" + } + ], + "index": 24 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 108, + 401, + 208, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 210, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 210, + 416 + ], + "score": 1.0, + "content": "B MORE RESULTS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 108, + 425, + 248, + 437 + ], + "lines": [ + { + "bbox": [ + 105, + 424, + 249, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 249, + 438 + ], + "score": 1.0, + "content": "B.1 ROBUSTNESS EVALUATION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 445, + 505, + 468 + ], + "lines": [ + { + "bbox": [ + 106, + 445, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 505, + 458 + ], + "score": 1.0, + "content": "We show the mean and standard deviation of the prediction accuracy from 5 runs by our full model in", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 455, + 398, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 398, + 469 + ], + "score": 1.0, + "content": "Figure 9 for Maze Navigation to validate the robustness of our approach.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "image", + "bbox": [ + 231, + 481, + 370, + 578 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 108, + 234, + 256, + 252 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 233, + 256, + 244 + ], + "spans": [ + { + "bbox": [ + 108, + 233, + 144, + 244 + ], + "score": 1.0, + "content": "10: until", + "type": "text" + }, + { + "bbox": [ + 144, + 234, + 176, + 243 + ], + "score": 0.87, + "content": "t = T _ { \\operatorname* { m a x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 233, + 256, + 244 + ], + "score": 1.0, + "content": "or the task is finished", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 242, + 149, + 253 + ], + "spans": [ + { + "bbox": [ + 107, + 242, + 123, + 253 + ], + "score": 1.0, + "content": "11:", + "type": "text" + }, + { + "bbox": [ + 123, + 243, + 149, + 252 + ], + "score": 0.74, + "content": "T \\gets t", + "type": "inline_equation" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "image_body", + "bbox": [ + 231, + 481, + 370, + 578 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 231, + 481, + 370, + 578 + ], + "spans": [ + { + "bbox": [ + 231, + 481, + 370, + 578 + ], + "score": 0.965, + "type": "image", + "image_path": "d3766e4783ca2f1226bf81c173ed6690f9a07ff438e980d834c86b081f958f61.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 231, + 481, + 370, + 529.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 231, + 529.5, + 370, + 578.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 152, + 585, + 458, + 597 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 151, + 585, + 459, + 599 + ], + "spans": [ + { + "bbox": [ + 151, + 585, + 459, + 599 + ], + "score": 1.0, + "content": "Figure 9: Mean and standard deviation of multiple runs in Maze Navigation.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 108, + 614, + 295, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 613, + 297, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 297, + 627 + ], + "score": 1.0, + "content": "B.2 VISUALIZATION OF LATENT VECTORS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 635, + 506, + 677 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 648 + ], + "score": 1.0, + "content": "Figure 10 visualizes the latent vectors obtained from demonstrations with probing and without probing,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 646, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 505, + 657 + ], + "score": 1.0, + "content": "where the latent vectors were computed by the same behavior tracker in both cases. This provides", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "empirical evidences that by finding new latent vectors, we are able to discover new demonstrations", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 663, + 163, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 163, + 681 + ], + "score": 1.0, + "content": "with probing.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + }, + { + "type": "title", + "bbox": [ + 107, + 689, + 429, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 430, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 288, + 703 + ], + "score": 1.0, + "content": "B.3 VISUALIZATION OF THE CHANGE IN", + "type": "text" + }, + { + "bbox": [ + 288, + 690, + 301, + 700 + ], + "score": 0.86, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 688, + 430, + 703 + ], + "score": 1.0, + "content": "AND THE CHANGE IN POLICY", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 710, + 507, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 216, + 722 + ], + "score": 1.0, + "content": "To show that the change in", + "type": "text" + }, + { + "bbox": [ + 216, + 710, + 229, + 720 + ], + "score": 0.88, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "indeed indicates the change in policy, we compute the correlation of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 107, + 718, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 107, + 720, + 167, + 732 + ], + "score": 0.92, + "content": "| | m ^ { t } - m ^ { t - 1 } | | ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 718, + 183, + 734 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 184, + 720, + 340, + 732 + ], + "score": 0.91, + "content": "\\tilde { K L } ( \\pi _ { d } ( \\cdot | s ^ { t + 1 } , m ^ { t } ) | | \\pi _ { d } ( \\cdot | s ^ { t + 1 } , m ^ { t - 1 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 718, + 506, + 734 + ], + "score": 1.0, + "content": "(i.e., how different the policy conditioned", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 321, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 322, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 322, + 96 + ], + "score": 1.0, + "content": "A PSEUDO CODE OF OUR ALGORITHMS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 107, + 109, + 217, + 120 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 216, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 193, + 123 + ], + "score": 1.0, + "content": "Algorithm 1 Rollout", + "type": "text" + }, + { + "bbox": [ + 193, + 109, + 216, + 120 + ], + "score": 0.5, + "content": " { T _ { \\mathrm { m a x } } } )", + "type": "inline_equation" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "index", + "bbox": [ + 107, + 124, + 417, + 236 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 213, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 195, + 136 + ], + "score": 1.0, + "content": "Input: Maximum steps", + "type": "text" + }, + { + "bbox": [ + 196, + 124, + 213, + 134 + ], + "score": 0.86, + "content": "T _ { \\mathrm { m a x } }", + "type": "inline_equation" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 133, + 418, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 198, + 146 + ], + "score": 1.0, + "content": "Output: Episode length", + "type": "text" + }, + { + "bbox": [ + 198, + 135, + 206, + 144 + ], + "score": 0.75, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 133, + 251, + 146 + ], + "score": 1.0, + "content": ", trajectories", + "type": "text" + }, + { + "bbox": [ + 252, + 133, + 264, + 145 + ], + "score": 0.9, + "content": "\\Gamma _ { d } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 133, + 280, + 146 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 280, + 133, + 293, + 145 + ], + "score": 0.89, + "content": "\\Gamma _ { l } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 133, + 407, + 146 + ], + "score": 1.0, + "content": ", and the latent vector sequence", + "type": "text" + }, + { + "bbox": [ + 407, + 135, + 418, + 144 + ], + "score": 0.51, + "content": "M", + "type": "inline_equation" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 144, + 220, + 155 + ], + "spans": [ + { + "bbox": [ + 110, + 144, + 220, + 155 + ], + "score": 1.0, + "content": "1: Initialize the environment", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 151, + 282, + 166 + ], + "spans": [ + { + "bbox": [ + 109, + 151, + 123, + 166 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 124, + 153, + 282, + 164 + ], + "score": 0.88, + "content": "\\Gamma _ { d } ^ { 0 } \\gets \\emptyset , \\Gamma _ { l } ^ { 0 } \\gets \\emptyset , M \\gets \\emptyset , m ^ { 0 } \\gets \\mathbf { 0 } , t \\gets 0", + "type": "inline_equation" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 163, + 152, + 174 + ], + "spans": [ + { + "bbox": [ + 110, + 163, + 122, + 174 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 121, + 164, + 152, + 174 + ], + "score": 1.0, + "content": "repeat", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 173, + 176, + 183 + ], + "spans": [ + { + "bbox": [ + 110, + 173, + 121, + 183 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 137, + 173, + 176, + 182 + ], + "score": 0.62, + "content": "t \\gets t + 1", + "type": "inline_equation" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 182, + 289, + 194 + ], + "spans": [ + { + "bbox": [ + 110, + 182, + 121, + 193 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 136, + 182, + 169, + 194 + ], + "score": 1.0, + "content": "Observe", + "type": "text" + }, + { + "bbox": [ + 169, + 182, + 179, + 193 + ], + "score": 0.83, + "content": "s _ { d } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 182, + 195, + 194 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 195, + 182, + 205, + 193 + ], + "score": 0.89, + "content": "a _ { d } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 182, + 289, + 194 + ], + "score": 1.0, + "content": "from the demonstrator", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 192, + 259, + 203 + ], + "spans": [ + { + "bbox": [ + 110, + 192, + 121, + 203 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 136, + 192, + 169, + 203 + ], + "score": 1.0, + "content": "Observe", + "type": "text" + }, + { + "bbox": [ + 169, + 193, + 178, + 203 + ], + "score": 0.8, + "content": "s _ { l } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 192, + 259, + 203 + ], + "score": 1.0, + "content": "from the environment", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 200, + 350, + 214 + ], + "spans": [ + { + "bbox": [ + 110, + 201, + 121, + 212 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 135, + 200, + 281, + 214 + ], + "score": 1.0, + "content": "Sample and execute the learner’s action", + "type": "text" + }, + { + "bbox": [ + 281, + 201, + 350, + 212 + ], + "score": 0.88, + "content": "a _ { l } ^ { t } \\sim \\pi _ { l } ( s _ { l } ^ { t } , m ^ { t - 1 } )", + "type": "inline_equation" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 212, + 322, + 224 + ], + "spans": [ + { + "bbox": [ + 110, + 212, + 121, + 223 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 136, + 212, + 322, + 224 + ], + "score": 0.76, + "content": "\\Gamma _ { d } ^ { t } \\Gamma _ { d } ^ { t - 1 } \\cup \\{ ( s _ { d } ^ { t } , a _ { d } ^ { t } ) \\} , \\Gamma _ { l } ^ { t } \\Gamma _ { l } ^ { t - 1 } \\cup \\{ ( s _ { l } ^ { t } , a _ { l } ^ { t } ) \\}", + "type": "inline_equation" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 223, + 262, + 235 + ], + "spans": [ + { + "bbox": [ + 110, + 223, + 121, + 234 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 137, + 224, + 262, + 235 + ], + "score": 0.59, + "content": "m ^ { t } \\gets \\mathcal { M } ( \\Gamma _ { d } ^ { t } ) , M \\gets M \\cup \\{ m ^ { t } \\}", + "type": "inline_equation" + } + ], + "index": 12, + "is_list_start_line": true + } + ], + "index": 7, + "bbox_fs": [ + 105, + 123, + 418, + 235 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 271, + 242, + 282 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 243, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 243, + 286 + ], + "score": 1.0, + "content": "Algorithm 2 Learning Algorithm", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "index", + "bbox": [ + 110, + 286, + 433, + 379 + ], + "lines": [ + { + "bbox": [ + 111, + 287, + 278, + 298 + ], + "spans": [ + { + "bbox": [ + 111, + 287, + 199, + 298 + ], + "score": 1.0, + "content": "1: Initialize parameters", + "type": "text" + }, + { + "bbox": [ + 199, + 287, + 278, + 298 + ], + "score": 0.89, + "content": "\\Theta = \\left. \\theta _ { M } , \\theta _ { b } , \\theta _ { l } , \\theta _ { V } \\right.", + "type": "inline_equation" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 295, + 433, + 308 + ], + "spans": [ + { + "bbox": [ + 109, + 295, + 137, + 308 + ], + "score": 1.0, + "content": "2: Set", + "type": "text" + }, + { + "bbox": [ + 137, + 297, + 154, + 306 + ], + "score": 0.83, + "content": "T _ { \\mathrm { m a x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 295, + 298, + 308 + ], + "score": 1.0, + "content": "(the maximum steps in an episode) and", + "type": "text" + }, + { + "bbox": [ + 298, + 297, + 308, + 306 + ], + "score": 0.82, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 295, + 433, + 308 + ], + "score": 1.0, + "content": "(the number of training iterations)", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 304, + 150, + 318 + ], + "spans": [ + { + "bbox": [ + 109, + 304, + 123, + 318 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 123, + 307, + 147, + 316 + ], + "score": 0.73, + "content": "i \\gets 1", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 304, + 150, + 318 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 315, + 151, + 327 + ], + "spans": [ + { + "bbox": [ + 111, + 316, + 122, + 326 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 119, + 315, + 151, + 327 + ], + "score": 1.0, + "content": "repeat", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 325, + 254, + 338 + ], + "spans": [ + { + "bbox": [ + 110, + 325, + 122, + 338 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 136, + 325, + 254, + 337 + ], + "score": 0.6, + "content": "T , \\Gamma _ { d } ^ { T } , \\Gamma _ { l } ^ { T } , M \\gets \\mathrm { R o l l o u t } ( T _ { \\mathrm { m a x } } )", + "type": "inline_equation" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 333, + 315, + 353 + ], + "spans": [ + { + "bbox": [ + 110, + 337, + 121, + 348 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 133, + 333, + 178, + 353 + ], + "score": 1.0, + "content": "IL: Update", + "type": "text" + }, + { + "bbox": [ + 178, + 338, + 192, + 347 + ], + "score": 0.86, + "content": "\\theta _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 333, + 208, + 353 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 208, + 338, + 218, + 347 + ], + "score": 0.86, + "content": "\\theta _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 333, + 302, + 353 + ], + "score": 1.0, + "content": "based on Eq. (2) using", + "type": "text" + }, + { + "bbox": [ + 302, + 336, + 315, + 348 + ], + "score": 0.87, + "content": "\\Gamma _ { d } ^ { T }", + "type": "inline_equation" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 347, + 429, + 360 + ], + "spans": [ + { + "bbox": [ + 110, + 347, + 122, + 359 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 135, + 347, + 181, + 360 + ], + "score": 1.0, + "content": "RL: Update", + "type": "text" + }, + { + "bbox": [ + 181, + 349, + 189, + 358 + ], + "score": 0.85, + "content": "\\theta _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 347, + 205, + 360 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 206, + 349, + 217, + 358 + ], + "score": 0.88, + "content": "\\theta _ { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 347, + 385, + 360 + ], + "score": 1.0, + "content": "based on Eq. (3 and Eq. (4) respectively using", + "type": "text" + }, + { + "bbox": [ + 386, + 347, + 398, + 359 + ], + "score": 0.9, + "content": "\\Gamma _ { l } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 347, + 417, + 360 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 417, + 348, + 429, + 357 + ], + "score": 0.66, + "content": "M", + "type": "inline_equation" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 357, + 175, + 369 + ], + "spans": [ + { + "bbox": [ + 110, + 357, + 122, + 369 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 137, + 358, + 175, + 367 + ], + "score": 0.53, + "content": "i \\gets i + 1", + "type": "inline_equation" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 367, + 169, + 378 + ], + "spans": [ + { + "bbox": [ + 111, + 367, + 143, + 378 + ], + "score": 1.0, + "content": "9: until", + "type": "text" + }, + { + "bbox": [ + 144, + 368, + 169, + 377 + ], + "score": 0.43, + "content": "i = N", + "type": "inline_equation" + } + ], + "index": 24, + "is_list_start_line": true + } + ], + "index": 20, + "bbox_fs": [ + 109, + 287, + 433, + 378 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 401, + 208, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 210, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 210, + 416 + ], + "score": 1.0, + "content": "B MORE RESULTS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 108, + 425, + 248, + 437 + ], + "lines": [ + { + "bbox": [ + 105, + 424, + 249, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 249, + 438 + ], + "score": 1.0, + "content": "B.1 ROBUSTNESS EVALUATION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 445, + 505, + 468 + ], + "lines": [ + { + "bbox": [ + 106, + 445, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 505, + 458 + ], + "score": 1.0, + "content": "We show the mean and standard deviation of the prediction accuracy from 5 runs by our full model in", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 455, + 398, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 398, + 469 + ], + "score": 1.0, + "content": "Figure 9 for Maze Navigation to validate the robustness of our approach.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 445, + 505, + 469 + ] + }, + { + "type": "image", + "bbox": [ + 231, + 481, + 370, + 578 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 108, + 234, + 256, + 252 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 233, + 256, + 244 + ], + "spans": [ + { + "bbox": [ + 108, + 233, + 144, + 244 + ], + "score": 1.0, + "content": "10: until", + "type": "text" + }, + { + "bbox": [ + 144, + 234, + 176, + 243 + ], + "score": 0.87, + "content": "t = T _ { \\operatorname* { m a x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 233, + 256, + 244 + ], + "score": 1.0, + "content": "or the task is finished", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 242, + 149, + 253 + ], + "spans": [ + { + "bbox": [ + 107, + 242, + 123, + 253 + ], + "score": 1.0, + "content": "11:", + "type": "text" + }, + { + "bbox": [ + 123, + 243, + 149, + 252 + ], + "score": 0.74, + "content": "T \\gets t", + "type": "inline_equation" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "image_body", + "bbox": [ + 231, + 481, + 370, + 578 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 231, + 481, + 370, + 578 + ], + "spans": [ + { + "bbox": [ + 231, + 481, + 370, + 578 + ], + "score": 0.965, + "type": "image", + "image_path": "d3766e4783ca2f1226bf81c173ed6690f9a07ff438e980d834c86b081f958f61.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 231, + 481, + 370, + 529.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 231, + 529.5, + 370, + 578.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 152, + 585, + 458, + 597 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 151, + 585, + 459, + 599 + ], + "spans": [ + { + "bbox": [ + 151, + 585, + 459, + 599 + ], + "score": 1.0, + "content": "Figure 9: Mean and standard deviation of multiple runs in Maze Navigation.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 108, + 614, + 295, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 613, + 297, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 297, + 627 + ], + "score": 1.0, + "content": "B.2 VISUALIZATION OF LATENT VECTORS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 635, + 506, + 677 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 648 + ], + "score": 1.0, + "content": "Figure 10 visualizes the latent vectors obtained from demonstrations with probing and without probing,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 646, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 505, + 657 + ], + "score": 1.0, + "content": "where the latent vectors were computed by the same behavior tracker in both cases. This provides", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "empirical evidences that by finding new latent vectors, we are able to discover new demonstrations", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 663, + 163, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 163, + 681 + ], + "score": 1.0, + "content": "with probing.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 633, + 506, + 681 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 689, + 429, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 430, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 288, + 703 + ], + "score": 1.0, + "content": "B.3 VISUALIZATION OF THE CHANGE IN", + "type": "text" + }, + { + "bbox": [ + 288, + 690, + 301, + 700 + ], + "score": 0.86, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 688, + 430, + 703 + ], + "score": 1.0, + "content": "AND THE CHANGE IN POLICY", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 710, + 507, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 216, + 722 + ], + "score": 1.0, + "content": "To show that the change in", + "type": "text" + }, + { + "bbox": [ + 216, + 710, + 229, + 720 + ], + "score": 0.88, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "indeed indicates the change in policy, we compute the correlation of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 107, + 718, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 107, + 720, + 167, + 732 + ], + "score": 0.92, + "content": "| | m ^ { t } - m ^ { t - 1 } | | ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 718, + 183, + 734 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 184, + 720, + 340, + 732 + ], + "score": 0.91, + "content": "\\tilde { K L } ( \\pi _ { d } ( \\cdot | s ^ { t + 1 } , m ^ { t } ) | | \\pi _ { d } ( \\cdot | s ^ { t + 1 } , m ^ { t - 1 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 718, + 506, + 734 + ], + "score": 1.0, + "content": "(i.e., how different the policy conditioned", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 311, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 209, + 325 + ], + "score": 1.0, + "content": "on the new latent vector", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 210, + 312, + 223, + 322 + ], + "score": 0.88, + "content": "m ^ { t }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 223, + 311, + 429, + 325 + ], + "score": 1.0, + "content": "is compared to the one with the old latent vector", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 430, + 312, + 453, + 322 + ], + "score": 0.89, + "content": "m ^ { t - 1 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 454, + 311, + 505, + 325 + ], + "score": 1.0, + "content": "). Figure 11", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 317, + 335 + ], + "score": 1.0, + "content": "demonstrates the correlation between the change in", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 317, + 322, + 331, + 333 + ], + "score": 0.88, + "content": "m ^ { t }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 331, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "and the corresponding change in policy in", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 332, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 506, + 346 + ], + "score": 1.0, + "content": "testing settings. The high correlation validates our hypothesis that the distance between consecutive", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 342, + 405, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 162, + 357 + ], + "score": 1.0, + "content": "latent vectors", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 162, + 344, + 176, + 354 + ], + "score": 0.89, + "content": "m ^ { t }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 176, + 342, + 194, + 357 + ], + "score": 1.0, + "content": "and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 194, + 343, + 217, + 354 + ], + "score": 0.9, + "content": "\\bar { m } ^ { t - 1 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 218, + 342, + 405, + 357 + ], + "score": 1.0, + "content": "reflects the policy change of the demonstrator.", + "type": "text", + "cross_page": true + } + ], + "index": 12 + } + ], + "index": 38.5, + "bbox_fs": [ + 106, + 709, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 79, + 504, + 154 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 79, + 504, + 154 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 79, + 504, + 154 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 504, + 154 + ], + "score": 0.947, + "type": "image", + "image_path": "f82b7a583fb0ccf3c5a6ef501adc2d8413d68eb07d6414f87e572db80aaacff7.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 79, + 504, + 104.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 104.0, + 504, + 129.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 129.0, + 504, + 154.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 232, + 163, + 378, + 174 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 231, + 162, + 379, + 176 + ], + "spans": [ + { + "bbox": [ + 231, + 162, + 362, + 176 + ], + "score": 1.0, + "content": "Figure 10: t-SNE embedding of", + "type": "text" + }, + { + "bbox": [ + 362, + 163, + 375, + 173 + ], + "score": 0.87, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 162, + 379, + 176 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 107, + 189, + 504, + 255 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 189, + 504, + 255 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 189, + 504, + 255 + ], + "spans": [ + { + "bbox": [ + 107, + 189, + 504, + 255 + ], + "score": 0.953, + "type": "image", + "image_path": "069435882d499904bb6f9b71b6a7dc219cc94a8b05cbac2d28d7728bc6f34cb1.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 107, + 189, + 504, + 211.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 107, + 211.0, + 504, + 233.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 233.0, + 504, + 255.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 265, + 505, + 287 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 263, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 294, + 279 + ], + "score": 1.0, + "content": "Figure 11: Correlation between the change in", + "type": "text" + }, + { + "bbox": [ + 294, + 264, + 308, + 275 + ], + "score": 0.88, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 263, + 488, + 279 + ], + "score": 1.0, + "content": "and the change in policy in testing settings", + "type": "text" + }, + { + "bbox": [ + 488, + 267, + 495, + 275 + ], + "score": 0.71, + "content": "\\dot { \\boldsymbol { r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 263, + 506, + 279 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 275, + 235, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 235, + 287 + ], + "score": 1.0, + "content": "Pearson correlation coefficient).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + } + ], + "index": 6.25 + }, + { + "type": "text", + "bbox": [ + 107, + 312, + 505, + 355 + ], + "lines": [ + { + "bbox": [ + 105, + 311, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 209, + 325 + ], + "score": 1.0, + "content": "on the new latent vector", + "type": "text" + }, + { + "bbox": [ + 210, + 312, + 223, + 322 + ], + "score": 0.88, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 311, + 429, + 325 + ], + "score": 1.0, + "content": "is compared to the one with the old latent vector", + "type": "text" + }, + { + "bbox": [ + 430, + 312, + 453, + 322 + ], + "score": 0.89, + "content": "m ^ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 311, + 505, + 325 + ], + "score": 1.0, + "content": "). Figure 11", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 317, + 335 + ], + "score": 1.0, + "content": "demonstrates the correlation between the change in", + "type": "text" + }, + { + "bbox": [ + 317, + 322, + 331, + 333 + ], + "score": 0.88, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "and the corresponding change in policy in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 332, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 506, + 346 + ], + "score": 1.0, + "content": "testing settings. The high correlation validates our hypothesis that the distance between consecutive", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 342, + 405, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 162, + 357 + ], + "score": 1.0, + "content": "latent vectors", + "type": "text" + }, + { + "bbox": [ + 162, + 344, + 176, + 354 + ], + "score": 0.89, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 342, + 194, + 357 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 194, + 343, + 217, + 354 + ], + "score": 0.9, + "content": "\\bar { m } ^ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 342, + 405, + 357 + ], + "score": 1.0, + "content": "reflects the policy change of the demonstrator.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 107, + 375, + 351, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 374, + 353, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 353, + 389 + ], + "score": 1.0, + "content": "C NETWORK ARCHITECTURE OF OUR MODEL", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 505, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "score": 1.0, + "content": "State Encoder. The input of the state encoder is a multi-channel tensor. For the grid world case, the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 412, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 181, + 425 + ], + "score": 1.0, + "content": "input dimension is", + "type": "text" + }, + { + "bbox": [ + 182, + 412, + 278, + 424 + ], + "score": 0.92, + "content": "1 1 \\bar { \\times } 1 1 \\times ( N _ { \\mathrm { b l o c k s } } + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 412, + 308, + 425 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 309, + 413, + 342, + 423 + ], + "score": 0.91, + "content": "1 1 \\times 1 1", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 412, + 455, + 425 + ], + "score": 1.0, + "content": "is the size of the grid world,", + "type": "text" + }, + { + "bbox": [ + 456, + 412, + 480, + 424 + ], + "score": 0.91, + "content": "N _ { \\mathrm { i t e m s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 412, + 506, + 425 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 421, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 104, + 421, + 506, + 437 + ], + "score": 1.0, + "content": "number of types of blocks, and the additional channel is to show the position of the corresponding", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 433, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 289, + 447 + ], + "score": 1.0, + "content": "agent, i.e., the position of the demonstrator for", + "type": "text" + }, + { + "bbox": [ + 290, + 434, + 300, + 446 + ], + "score": 0.89, + "content": "s _ { d } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 433, + 428, + 447 + ], + "score": 1.0, + "content": "or the position of the learner for", + "type": "text" + }, + { + "bbox": [ + 428, + 433, + 437, + 446 + ], + "score": 0.87, + "content": "s _ { l } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 433, + 506, + 447 + ], + "score": 1.0, + "content": ". The other agent", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "score": 1.0, + "content": "is treated as an obstacle and its position is encoded into the channel corresponded to the wall block.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 452, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 104, + 452, + 308, + 469 + ], + "score": 1.0, + "content": "In the case of Sorting task, the input dimension is", + "type": "text" + }, + { + "bbox": [ + 308, + 455, + 354, + 465 + ], + "score": 0.92, + "content": "1 0 \\times 1 \\times 4", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 452, + 506, + 469 + ], + "score": 1.0, + "content": ", representing 10 numbers in an array", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 464, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 505, + 478 + ], + "score": 1.0, + "content": "where the size of each number is 4 bits. The state encoder has one convolutional layer which consists", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 476, + 318, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 231, + 487 + ], + "score": 1.0, + "content": "of 32 filters with kernel size of", + "type": "text" + }, + { + "bbox": [ + 231, + 476, + 255, + 486 + ], + "score": 0.9, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 476, + 318, + 487 + ], + "score": 1.0, + "content": "and stride of 1.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 304, + 505 + ], + "score": 1.0, + "content": "Behavior Tracker. Assuming the action space is", + "type": "text" + }, + { + "bbox": [ + 304, + 493, + 313, + 502 + ], + "score": 0.77, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 491, + 505, + 505 + ], + "score": 1.0, + "content": ", we combine the state input and the action input", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 503, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 248, + 515 + ], + "score": 1.0, + "content": "by augmenting the state input with", + "type": "text" + }, + { + "bbox": [ + 249, + 503, + 257, + 513 + ], + "score": 0.71, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 503, + 505, + 515 + ], + "score": 1.0, + "content": "channels, each of which corresponds to an action. We set the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 513, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 372, + 525 + ], + "score": 1.0, + "content": "channel of the observed action to be all ones and set the remaining", + "type": "text" + }, + { + "bbox": [ + 372, + 514, + 398, + 523 + ], + "score": 0.89, + "content": "A - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 513, + 505, + 525 + ], + "score": 1.0, + "content": "channels to be zeros. This", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 524, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 505, + 536 + ], + "score": 1.0, + "content": "combined state and action input is then fed into a convolutional layer with 32 filters (the kernel size is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 129, + 545 + ], + "score": 0.89, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "and the stride is 1). The output is flatten into a vector and passed through two fully connected", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "score": 1.0, + "content": "(FC) layers (all have 128 dimensions). The resulting 128-dim vector serves as the input of an LSTM", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 555, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 505, + 567 + ], + "score": 1.0, + "content": "with 128 hidden units. Finally, an FC layer takes in the hidden state from the LSTM and outputs the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 565, + 282, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 158, + 578 + ], + "score": 1.0, + "content": "latent vector", + "type": "text" + }, + { + "bbox": [ + 158, + 565, + 172, + 576 + ], + "score": 0.89, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 565, + 282, + 578 + ], + "score": 1.0, + "content": "as the mind representation.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5 + }, + { + "type": "image", + "bbox": [ + 226, + 591, + 370, + 710 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 226, + 591, + 370, + 710 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 226, + 591, + 370, + 710 + ], + "spans": [ + { + "bbox": [ + 226, + 591, + 370, + 710 + ], + "score": 0.953, + "type": "image", + "image_path": "9601707c6b27d9000ede144af1654db03552ded43028f6a05face04cd1b1a543.jpg" + } + ] + } + ], + "index": 30.5, + "virtual_lines": [ + { + "bbox": [ + 226, + 591, + 370, + 650.5 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 226, + 650.5, + 370, + 710.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 212, + 717, + 399, + 729 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 210, + 717, + 399, + 730 + ], + "spans": [ + { + "bbox": [ + 210, + 717, + 399, + 730 + ], + "score": 1.0, + "content": "Figure 12: The attention-based fusion module.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + } + ], + "index": 31.25 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 79, + 504, + 154 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 79, + 504, + 154 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 79, + 504, + 154 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 504, + 154 + ], + "score": 0.947, + "type": "image", + "image_path": "f82b7a583fb0ccf3c5a6ef501adc2d8413d68eb07d6414f87e572db80aaacff7.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 79, + 504, + 104.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 104.0, + 504, + 129.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 129.0, + 504, + 154.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 232, + 163, + 378, + 174 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 231, + 162, + 379, + 176 + ], + "spans": [ + { + "bbox": [ + 231, + 162, + 362, + 176 + ], + "score": 1.0, + "content": "Figure 10: t-SNE embedding of", + "type": "text" + }, + { + "bbox": [ + 362, + 163, + 375, + 173 + ], + "score": 0.87, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 162, + 379, + 176 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 107, + 189, + 504, + 255 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 189, + 504, + 255 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 189, + 504, + 255 + ], + "spans": [ + { + "bbox": [ + 107, + 189, + 504, + 255 + ], + "score": 0.953, + "type": "image", + "image_path": "069435882d499904bb6f9b71b6a7dc219cc94a8b05cbac2d28d7728bc6f34cb1.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 107, + 189, + 504, + 211.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 107, + 211.0, + 504, + 233.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 233.0, + 504, + 255.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 265, + 505, + 287 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 263, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 294, + 279 + ], + "score": 1.0, + "content": "Figure 11: Correlation between the change in", + "type": "text" + }, + { + "bbox": [ + 294, + 264, + 308, + 275 + ], + "score": 0.88, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 263, + 488, + 279 + ], + "score": 1.0, + "content": "and the change in policy in testing settings", + "type": "text" + }, + { + "bbox": [ + 488, + 267, + 495, + 275 + ], + "score": 0.71, + "content": "\\dot { \\boldsymbol { r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 263, + 506, + 279 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 275, + 235, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 235, + 287 + ], + "score": 1.0, + "content": "Pearson correlation coefficient).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + } + ], + "index": 6.25 + }, + { + "type": "text", + "bbox": [ + 107, + 312, + 505, + 355 + ], + "lines": [], + "index": 10.5, + "bbox_fs": [ + 105, + 311, + 506, + 357 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 375, + 351, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 374, + 353, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 353, + 389 + ], + "score": 1.0, + "content": "C NETWORK ARCHITECTURE OF OUR MODEL", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 505, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "score": 1.0, + "content": "State Encoder. The input of the state encoder is a multi-channel tensor. For the grid world case, the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 412, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 181, + 425 + ], + "score": 1.0, + "content": "input dimension is", + "type": "text" + }, + { + "bbox": [ + 182, + 412, + 278, + 424 + ], + "score": 0.92, + "content": "1 1 \\bar { \\times } 1 1 \\times ( N _ { \\mathrm { b l o c k s } } + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 412, + 308, + 425 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 309, + 413, + 342, + 423 + ], + "score": 0.91, + "content": "1 1 \\times 1 1", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 412, + 455, + 425 + ], + "score": 1.0, + "content": "is the size of the grid world,", + "type": "text" + }, + { + "bbox": [ + 456, + 412, + 480, + 424 + ], + "score": 0.91, + "content": "N _ { \\mathrm { i t e m s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 412, + 506, + 425 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 421, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 104, + 421, + 506, + 437 + ], + "score": 1.0, + "content": "number of types of blocks, and the additional channel is to show the position of the corresponding", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 433, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 289, + 447 + ], + "score": 1.0, + "content": "agent, i.e., the position of the demonstrator for", + "type": "text" + }, + { + "bbox": [ + 290, + 434, + 300, + 446 + ], + "score": 0.89, + "content": "s _ { d } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 433, + 428, + 447 + ], + "score": 1.0, + "content": "or the position of the learner for", + "type": "text" + }, + { + "bbox": [ + 428, + 433, + 437, + 446 + ], + "score": 0.87, + "content": "s _ { l } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 433, + 506, + 447 + ], + "score": 1.0, + "content": ". The other agent", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "score": 1.0, + "content": "is treated as an obstacle and its position is encoded into the channel corresponded to the wall block.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 452, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 104, + 452, + 308, + 469 + ], + "score": 1.0, + "content": "In the case of Sorting task, the input dimension is", + "type": "text" + }, + { + "bbox": [ + 308, + 455, + 354, + 465 + ], + "score": 0.92, + "content": "1 0 \\times 1 \\times 4", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 452, + 506, + 469 + ], + "score": 1.0, + "content": ", representing 10 numbers in an array", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 464, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 505, + 478 + ], + "score": 1.0, + "content": "where the size of each number is 4 bits. The state encoder has one convolutional layer which consists", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 476, + 318, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 231, + 487 + ], + "score": 1.0, + "content": "of 32 filters with kernel size of", + "type": "text" + }, + { + "bbox": [ + 231, + 476, + 255, + 486 + ], + "score": 0.9, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 476, + 318, + 487 + ], + "score": 1.0, + "content": "and stride of 1.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17.5, + "bbox_fs": [ + 104, + 402, + 506, + 487 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 304, + 505 + ], + "score": 1.0, + "content": "Behavior Tracker. Assuming the action space is", + "type": "text" + }, + { + "bbox": [ + 304, + 493, + 313, + 502 + ], + "score": 0.77, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 491, + 505, + 505 + ], + "score": 1.0, + "content": ", we combine the state input and the action input", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 503, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 248, + 515 + ], + "score": 1.0, + "content": "by augmenting the state input with", + "type": "text" + }, + { + "bbox": [ + 249, + 503, + 257, + 513 + ], + "score": 0.71, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 503, + 505, + 515 + ], + "score": 1.0, + "content": "channels, each of which corresponds to an action. We set the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 513, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 372, + 525 + ], + "score": 1.0, + "content": "channel of the observed action to be all ones and set the remaining", + "type": "text" + }, + { + "bbox": [ + 372, + 514, + 398, + 523 + ], + "score": 0.89, + "content": "A - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 513, + 505, + 525 + ], + "score": 1.0, + "content": "channels to be zeros. This", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 524, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 505, + 536 + ], + "score": 1.0, + "content": "combined state and action input is then fed into a convolutional layer with 32 filters (the kernel size is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 129, + 545 + ], + "score": 0.89, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "and the stride is 1). The output is flatten into a vector and passed through two fully connected", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "score": 1.0, + "content": "(FC) layers (all have 128 dimensions). The resulting 128-dim vector serves as the input of an LSTM", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 555, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 505, + 567 + ], + "score": 1.0, + "content": "with 128 hidden units. Finally, an FC layer takes in the hidden state from the LSTM and outputs the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 565, + 282, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 158, + 578 + ], + "score": 1.0, + "content": "latent vector", + "type": "text" + }, + { + "bbox": [ + 158, + 565, + 172, + 576 + ], + "score": 0.89, + "content": "m ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 565, + 282, + 578 + ], + "score": 1.0, + "content": "as the mind representation.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 491, + 506, + 578 + ] + }, + { + "type": "image", + "bbox": [ + 226, + 591, + 370, + 710 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 226, + 591, + 370, + 710 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 226, + 591, + 370, + 710 + ], + "spans": [ + { + "bbox": [ + 226, + 591, + 370, + 710 + ], + "score": 0.953, + "type": "image", + "image_path": "9601707c6b27d9000ede144af1654db03552ded43028f6a05face04cd1b1a543.jpg" + } + ] + } + ], + "index": 30.5, + "virtual_lines": [ + { + "bbox": [ + 226, + 591, + 370, + 650.5 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 226, + 650.5, + 370, + 710.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 212, + 717, + 399, + 729 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 210, + 717, + 399, + 730 + ], + "spans": [ + { + "bbox": [ + 210, + 717, + 399, + 730 + ], + "score": 1.0, + "content": "Figure 12: The attention-based fusion module.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + } + ], + "index": 31.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 180 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "Fusion. As shown in Figure 12, we design our fusion module using an attention based mechanism", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 434, + 105 + ], + "score": 1.0, + "content": "similar to the one introduced by Chaplot et al. (2017), where the latent vector", + "type": "text" + }, + { + "bbox": [ + 434, + 92, + 458, + 103 + ], + "score": 0.91, + "content": "m ^ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 92, + 505, + 105 + ], + "score": 1.0, + "content": "is fed into", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 214, + 117 + ], + "score": 1.0, + "content": "an FC layer outputting an", + "type": "text" + }, + { + "bbox": [ + 214, + 104, + 225, + 114 + ], + "score": 0.82, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 103, + 506, + 117 + ], + "score": 1.0, + "content": "-dim attention vector (each element is from 0 to 1) corresponding to", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 113, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 122, + 127 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 122, + 115, + 132, + 124 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 113, + 306, + 127 + ], + "score": 1.0, + "content": "feature maps from the state encoder (here", + "type": "text" + }, + { + "bbox": [ + 306, + 115, + 341, + 124 + ], + "score": 0.88, + "content": "N = 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 113, + 506, + 127 + ], + "score": 1.0, + "content": "). Formally, we have an attention vector", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 122, + 507, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 190, + 136 + ], + "score": 0.92, + "content": "h = \\sigma ( m ^ { t - 1 } ) \\in \\dot { \\mathbb { R } } ^ { 3 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 122, + 222, + 139 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 222, + 125, + 239, + 136 + ], + "score": 0.89, + "content": "\\sigma ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 122, + 399, + 139 + ], + "score": 1.0, + "content": "is an FC layer with sigmoid activation.", + "type": "text" + }, + { + "bbox": [ + 399, + 125, + 407, + 135 + ], + "score": 0.74, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 122, + 507, + 139 + ], + "score": 1.0, + "content": "is spatially expanded to", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 133, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 104, + 133, + 114, + 150 + ], + "score": 1.0, + "content": "a", + "type": "text" + }, + { + "bbox": [ + 114, + 137, + 170, + 147 + ], + "score": 0.89, + "content": "H \\times W \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 133, + 200, + 150 + ], + "score": 1.0, + "content": "tensor,", + "type": "text" + }, + { + "bbox": [ + 201, + 136, + 282, + 148 + ], + "score": 0.92, + "content": "\\pmb { H } ( h ) \\in \\mathbb { R } ^ { H \\times W \\times 3 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 133, + 378, + 150 + ], + "score": 1.0, + "content": ", where the elements in", + "type": "text" + }, + { + "bbox": [ + 378, + 137, + 385, + 147 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 133, + 506, + 150 + ], + "score": 1.0, + "content": "-th channel correspond to the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 107, + 147, + 113, + 157 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 146, + 168, + 159 + ], + "score": 1.0, + "content": "-th element in", + "type": "text" + }, + { + "bbox": [ + 169, + 147, + 176, + 157 + ], + "score": 0.78, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 146, + 505, + 159 + ], + "score": 1.0, + "content": ". We then reweight each feature maps using the attention vector, which becomes the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 155, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 182, + 171 + ], + "score": 1.0, + "content": "fusion output. I.e.,", + "type": "text" + }, + { + "bbox": [ + 182, + 156, + 347, + 169 + ], + "score": 0.93, + "content": "f ( \\phi ( s ^ { t } ) , m ^ { t - \\tilde { 1 } } ) = \\phi ( s ^ { t } ) \\odot H ( \\sigma \\tilde { ( } m ^ { t - 1 } ) \\mathbf { \\tilde { ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 155, + 377, + 171 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 378, + 157, + 400, + 169 + ], + "score": 0.93, + "content": "\\phi ( s ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 155, + 506, + 171 + ], + "score": 1.0, + "content": "are the feature maps from", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 167, + 401, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 178, + 181 + ], + "score": 1.0, + "content": "the state encoder,", + "type": "text" + }, + { + "bbox": [ + 178, + 169, + 196, + 180 + ], + "score": 0.9, + "content": "f ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 167, + 289, + 181 + ], + "score": 1.0, + "content": "is the fusion layer, and", + "type": "text" + }, + { + "bbox": [ + 290, + 170, + 299, + 178 + ], + "score": 0.83, + "content": "\\odot", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 167, + 401, + 181 + ], + "score": 1.0, + "content": "is element-wise product.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 184, + 505, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 506, + 196 + ], + "score": 1.0, + "content": "Policy. The input of this module is the flattened output from the fusion module, and is fed to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 195, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 506, + 207 + ], + "score": 1.0, + "content": "an LSTM with 128 hidden units followed by an FC layer with softmax activation. The result-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 205, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 385, + 218 + ], + "score": 1.0, + "content": "ing output is an action distribution representing the policy (either", + "type": "text" + }, + { + "bbox": [ + 385, + 207, + 397, + 217 + ], + "score": 0.85, + "content": "\\pi _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 205, + 411, + 218 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 412, + 207, + 422, + 217 + ], + "score": 0.8, + "content": "\\pi _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 205, + 506, + 218 + ], + "score": 1.0, + "content": "). For Sorting task,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 216, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 506, + 228 + ], + "score": 1.0, + "content": "we slightly modify the output to fit the problem. We decompose the demonstrator’s policy as", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 222, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 351, + 242 + ], + "score": 0.9, + "content": "{ \\pi } _ { d } ( a _ { d } ^ { t } \\vert s _ { d } ^ { t } , m ^ { t - 1 } ) ~ = ~ { \\pi } _ { d } ^ { ( 1 ) } ( a _ { d } ^ { \\bar { t } , 1 } \\vert s _ { d } ^ { t } , m ^ { t - 1 } ) { \\pi } _ { d } ^ { ( 2 ) } ( a _ { d } ^ { t , 2 } \\vert s _ { d } ^ { t } , m ^ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 222, + 384, + 248 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 384, + 227, + 401, + 242 + ], + "score": 0.91, + "content": "a _ { d } ^ { t , 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 222, + 422, + 248 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 422, + 227, + 439, + 242 + ], + "score": 0.91, + "content": "a _ { d } ^ { t , 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 222, + 505, + 248 + ], + "score": 1.0, + "content": "are the indices", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "score": 1.0, + "content": "of the numbers the demonstrator chooses to swap. For the learner’s policy, it is decomposed as", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 246, + 509, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 333, + 266 + ], + "score": 0.89, + "content": "\\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , m ^ { t - 1 } ) = \\pi _ { l } ^ { \\mathrm { i d } } ( a _ { l } ^ { t , 1 } | s _ { l } ^ { t } , m ^ { t - 1 } ) \\pi _ { l } ^ { \\mathrm { b i t } } ( a _ { l } ^ { t , 2 } | s _ { l } ^ { t } , m ^ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 246, + 398, + 272 + ], + "score": 1.0, + "content": "instead, where", + "type": "text" + }, + { + "bbox": [ + 398, + 251, + 415, + 265 + ], + "score": 0.92, + "content": "a _ { l } ^ { t , 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 246, + 509, + 272 + ], + "score": 1.0, + "content": "indicates the number", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 103, + 260, + 504, + 282 + ], + "spans": [ + { + "bbox": [ + 103, + 260, + 252, + 282 + ], + "score": 1.0, + "content": "that the learner selects to change and", + "type": "text" + }, + { + "bbox": [ + 253, + 264, + 268, + 279 + ], + "score": 0.9, + "content": "a _ { l } ^ { t , 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 260, + 487, + 282 + ], + "score": 1.0, + "content": "is the bit of that number that needs to be flipped. When", + "type": "text" + }, + { + "bbox": [ + 487, + 264, + 504, + 279 + ], + "score": 0.9, + "content": "a _ { d } ^ { t , 1 }", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 102, + 274, + 507, + 294 + ], + "spans": [ + { + "bbox": [ + 102, + 274, + 117, + 294 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 117, + 277, + 133, + 291 + ], + "score": 0.93, + "content": "a _ { l } ^ { t , 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 274, + 507, + 294 + ], + "score": 1.0, + "content": "is larger than the length of the array, it means that the demonstrator or the learner is choosing", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 289, + 214, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 214, + 303 + ], + "score": 1.0, + "content": "to do nothing respectively.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 306, + 506, + 339 + ], + "lines": [ + { + "bbox": [ + 105, + 305, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 506, + 319 + ], + "score": 1.0, + "content": "Value. We also have a value net designed for training the learner’s policy using A2C (i.e.,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 315, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 107, + 316, + 161, + 329 + ], + "score": 0.91, + "content": "V ( s _ { l } ^ { t } , m ^ { t - 1 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 315, + 506, + 330 + ], + "score": 1.0, + "content": ", which takes in the hidden state from the LSTM in the learner’s policy module and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 327, + 267, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 267, + 340 + ], + "score": 1.0, + "content": "outputs a scalar value after an FC layer.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 108, + 343, + 504, + 366 + ], + "lines": [ + { + "bbox": [ + 107, + 344, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 107, + 344, + 506, + 356 + ], + "score": 1.0, + "content": "The network is trained with RMSProp (Tieleman & Hinto, 2012) using a learning rate of 0.001.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 354, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 173, + 367 + ], + "score": 1.0, + "content": "During training,", + "type": "text" + }, + { + "bbox": [ + 173, + 356, + 178, + 365 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 354, + 349, + 367 + ], + "score": 1.0, + "content": "-greedy is applied to the rollout, where the", + "type": "text" + }, + { + "bbox": [ + 349, + 356, + 355, + 364 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 354, + 506, + 367 + ], + "score": 1.0, + "content": "gradually decreases from 0.1 to 0.01.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 108, + 380, + 211, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 379, + 213, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 213, + 396 + ], + "score": 1.0, + "content": "D TASK SETTINGS", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 405, + 504, + 427 + ], + "lines": [ + { + "bbox": [ + 106, + 406, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 417 + ], + "score": 1.0, + "content": "We assume full observations of the world state for both agents in all tasks but the internal state of an", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 416, + 491, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 448, + 428 + ], + "score": 1.0, + "content": "agent (e.g., goals) is unobservable to another agent. The discounted factor is set to be", + "type": "text" + }, + { + "bbox": [ + 448, + 416, + 487, + 426 + ], + "score": 0.88, + "content": "\\Gamma = 0 . 9 5", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 416, + 491, + 428 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 432, + 505, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 433, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 505, + 445 + ], + "score": 1.0, + "content": "For the demonstrator in the grid world tasks, we implemented search based path planning and used", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "simple heuristics to perform branch and bound for acceleration. In particular, the state for the search", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "score": 1.0, + "content": "algorithm in Passing is the map status, whereas the state in Maze Navigation and Construction is the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 463, + 350, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 350, + 478 + ], + "score": 1.0, + "content": "combination of map status and the demonstrator’s inventory.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5 + }, + { + "type": "title", + "bbox": [ + 107, + 488, + 171, + 500 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 172, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 172, + 501 + ], + "score": 1.0, + "content": "D.1 PASSING", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "image", + "bbox": [ + 145, + 510, + 465, + 591 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 145, + 510, + 465, + 591 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 510, + 465, + 591 + ], + "spans": [ + { + "bbox": [ + 145, + 510, + 465, + 591 + ], + "score": 0.97, + "type": "image", + "image_path": "104fb1162f260d597db6e2b8b643e42e84d9eb60187fab5116d2e2aba9e01f85.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 145, + 510, + 465, + 537.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 145, + 537.0, + 465, + 564.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 145, + 564.0, + 465, + 591.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 153, + 598, + 456, + 610 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 152, + 596, + 458, + 613 + ], + "spans": [ + { + "bbox": [ + 152, + 596, + 458, + 613 + ], + "score": 1.0, + "content": "Figure 13: The training setting and examples of testing settings for Passing.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + } + ], + "index": 34.0 + }, + { + "type": "text", + "bbox": [ + 106, + 623, + 505, + 666 + ], + "lines": [ + { + "bbox": [ + 106, + 624, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 505, + 636 + ], + "score": 1.0, + "content": "Figure 13 shows the training setting where the locations of the gap and the staring point of the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "demonstrator are fixed, and the examples of testing settings where the placement of the gap and the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "initial position of the demonstrator is randomized. We terminate a training episode if the demonstrator", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 655, + 274, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 274, + 667 + ], + "score": 1.0, + "content": "has not passed the obstacle after 15 steps.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5 + }, + { + "type": "title", + "bbox": [ + 107, + 679, + 217, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 219, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 219, + 692 + ], + "score": 1.0, + "content": "D.2 MAZE NAVIGATION", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "The training setting in Maze Navigation is designed as shown in Figure 14a, where the placement of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "the tools is restrained in the purple region, and the positions of the demonstrator’s starting point and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "the doors are fixed. For testing, we randomly put one or two doors to fill the gaps; the demonstrator", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 752, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 180 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "Fusion. As shown in Figure 12, we design our fusion module using an attention based mechanism", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 434, + 105 + ], + "score": 1.0, + "content": "similar to the one introduced by Chaplot et al. (2017), where the latent vector", + "type": "text" + }, + { + "bbox": [ + 434, + 92, + 458, + 103 + ], + "score": 0.91, + "content": "m ^ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 92, + 505, + 105 + ], + "score": 1.0, + "content": "is fed into", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 214, + 117 + ], + "score": 1.0, + "content": "an FC layer outputting an", + "type": "text" + }, + { + "bbox": [ + 214, + 104, + 225, + 114 + ], + "score": 0.82, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 103, + 506, + 117 + ], + "score": 1.0, + "content": "-dim attention vector (each element is from 0 to 1) corresponding to", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 113, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 122, + 127 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 122, + 115, + 132, + 124 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 113, + 306, + 127 + ], + "score": 1.0, + "content": "feature maps from the state encoder (here", + "type": "text" + }, + { + "bbox": [ + 306, + 115, + 341, + 124 + ], + "score": 0.88, + "content": "N = 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 113, + 506, + 127 + ], + "score": 1.0, + "content": "). Formally, we have an attention vector", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 122, + 507, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 190, + 136 + ], + "score": 0.92, + "content": "h = \\sigma ( m ^ { t - 1 } ) \\in \\dot { \\mathbb { R } } ^ { 3 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 122, + 222, + 139 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 222, + 125, + 239, + 136 + ], + "score": 0.89, + "content": "\\sigma ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 122, + 399, + 139 + ], + "score": 1.0, + "content": "is an FC layer with sigmoid activation.", + "type": "text" + }, + { + "bbox": [ + 399, + 125, + 407, + 135 + ], + "score": 0.74, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 122, + 507, + 139 + ], + "score": 1.0, + "content": "is spatially expanded to", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 133, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 104, + 133, + 114, + 150 + ], + "score": 1.0, + "content": "a", + "type": "text" + }, + { + "bbox": [ + 114, + 137, + 170, + 147 + ], + "score": 0.89, + "content": "H \\times W \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 133, + 200, + 150 + ], + "score": 1.0, + "content": "tensor,", + "type": "text" + }, + { + "bbox": [ + 201, + 136, + 282, + 148 + ], + "score": 0.92, + "content": "\\pmb { H } ( h ) \\in \\mathbb { R } ^ { H \\times W \\times 3 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 133, + 378, + 150 + ], + "score": 1.0, + "content": ", where the elements in", + "type": "text" + }, + { + "bbox": [ + 378, + 137, + 385, + 147 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 133, + 506, + 150 + ], + "score": 1.0, + "content": "-th channel correspond to the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 107, + 147, + 113, + 157 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 146, + 168, + 159 + ], + "score": 1.0, + "content": "-th element in", + "type": "text" + }, + { + "bbox": [ + 169, + 147, + 176, + 157 + ], + "score": 0.78, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 146, + 505, + 159 + ], + "score": 1.0, + "content": ". We then reweight each feature maps using the attention vector, which becomes the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 155, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 182, + 171 + ], + "score": 1.0, + "content": "fusion output. I.e.,", + "type": "text" + }, + { + "bbox": [ + 182, + 156, + 347, + 169 + ], + "score": 0.93, + "content": "f ( \\phi ( s ^ { t } ) , m ^ { t - \\tilde { 1 } } ) = \\phi ( s ^ { t } ) \\odot H ( \\sigma \\tilde { ( } m ^ { t - 1 } ) \\mathbf { \\tilde { ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 155, + 377, + 171 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 378, + 157, + 400, + 169 + ], + "score": 0.93, + "content": "\\phi ( s ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 155, + 506, + 171 + ], + "score": 1.0, + "content": "are the feature maps from", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 167, + 401, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 178, + 181 + ], + "score": 1.0, + "content": "the state encoder,", + "type": "text" + }, + { + "bbox": [ + 178, + 169, + 196, + 180 + ], + "score": 0.9, + "content": "f ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 167, + 289, + 181 + ], + "score": 1.0, + "content": "is the fusion layer, and", + "type": "text" + }, + { + "bbox": [ + 290, + 170, + 299, + 178 + ], + "score": 0.83, + "content": "\\odot", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 167, + 401, + 181 + ], + "score": 1.0, + "content": "is element-wise product.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4, + "bbox_fs": [ + 104, + 81, + 507, + 181 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 184, + 505, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 506, + 196 + ], + "score": 1.0, + "content": "Policy. The input of this module is the flattened output from the fusion module, and is fed to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 195, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 506, + 207 + ], + "score": 1.0, + "content": "an LSTM with 128 hidden units followed by an FC layer with softmax activation. The result-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 205, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 385, + 218 + ], + "score": 1.0, + "content": "ing output is an action distribution representing the policy (either", + "type": "text" + }, + { + "bbox": [ + 385, + 207, + 397, + 217 + ], + "score": 0.85, + "content": "\\pi _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 205, + 411, + 218 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 412, + 207, + 422, + 217 + ], + "score": 0.8, + "content": "\\pi _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 205, + 506, + 218 + ], + "score": 1.0, + "content": "). For Sorting task,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 216, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 506, + 228 + ], + "score": 1.0, + "content": "we slightly modify the output to fit the problem. We decompose the demonstrator’s policy as", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 222, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 351, + 242 + ], + "score": 0.9, + "content": "{ \\pi } _ { d } ( a _ { d } ^ { t } \\vert s _ { d } ^ { t } , m ^ { t - 1 } ) ~ = ~ { \\pi } _ { d } ^ { ( 1 ) } ( a _ { d } ^ { \\bar { t } , 1 } \\vert s _ { d } ^ { t } , m ^ { t - 1 } ) { \\pi } _ { d } ^ { ( 2 ) } ( a _ { d } ^ { t , 2 } \\vert s _ { d } ^ { t } , m ^ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 222, + 384, + 248 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 384, + 227, + 401, + 242 + ], + "score": 0.91, + "content": "a _ { d } ^ { t , 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 222, + 422, + 248 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 422, + 227, + 439, + 242 + ], + "score": 0.91, + "content": "a _ { d } ^ { t , 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 222, + 505, + 248 + ], + "score": 1.0, + "content": "are the indices", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "score": 1.0, + "content": "of the numbers the demonstrator chooses to swap. For the learner’s policy, it is decomposed as", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 246, + 509, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 333, + 266 + ], + "score": 0.89, + "content": "\\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , m ^ { t - 1 } ) = \\pi _ { l } ^ { \\mathrm { i d } } ( a _ { l } ^ { t , 1 } | s _ { l } ^ { t } , m ^ { t - 1 } ) \\pi _ { l } ^ { \\mathrm { b i t } } ( a _ { l } ^ { t , 2 } | s _ { l } ^ { t } , m ^ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 246, + 398, + 272 + ], + "score": 1.0, + "content": "instead, where", + "type": "text" + }, + { + "bbox": [ + 398, + 251, + 415, + 265 + ], + "score": 0.92, + "content": "a _ { l } ^ { t , 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 246, + 509, + 272 + ], + "score": 1.0, + "content": "indicates the number", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 103, + 260, + 504, + 282 + ], + "spans": [ + { + "bbox": [ + 103, + 260, + 252, + 282 + ], + "score": 1.0, + "content": "that the learner selects to change and", + "type": "text" + }, + { + "bbox": [ + 253, + 264, + 268, + 279 + ], + "score": 0.9, + "content": "a _ { l } ^ { t , 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 260, + 487, + 282 + ], + "score": 1.0, + "content": "is the bit of that number that needs to be flipped. When", + "type": "text" + }, + { + "bbox": [ + 487, + 264, + 504, + 279 + ], + "score": 0.9, + "content": "a _ { d } ^ { t , 1 }", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 102, + 274, + 507, + 294 + ], + "spans": [ + { + "bbox": [ + 102, + 274, + 117, + 294 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 117, + 277, + 133, + 291 + ], + "score": 0.93, + "content": "a _ { l } ^ { t , 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 274, + 507, + 294 + ], + "score": 1.0, + "content": "is larger than the length of the array, it means that the demonstrator or the learner is choosing", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 289, + 214, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 214, + 303 + ], + "score": 1.0, + "content": "to do nothing respectively.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 13.5, + "bbox_fs": [ + 102, + 184, + 509, + 303 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 306, + 506, + 339 + ], + "lines": [ + { + "bbox": [ + 105, + 305, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 506, + 319 + ], + "score": 1.0, + "content": "Value. We also have a value net designed for training the learner’s policy using A2C (i.e.,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 315, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 107, + 316, + 161, + 329 + ], + "score": 0.91, + "content": "V ( s _ { l } ^ { t } , m ^ { t - 1 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 315, + 506, + 330 + ], + "score": 1.0, + "content": ", which takes in the hidden state from the LSTM in the learner’s policy module and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 327, + 267, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 267, + 340 + ], + "score": 1.0, + "content": "outputs a scalar value after an FC layer.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 305, + 506, + 340 + ] + }, + { + "type": "list", + "bbox": [ + 108, + 343, + 504, + 366 + ], + "lines": [ + { + "bbox": [ + 107, + 344, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 107, + 344, + 506, + 356 + ], + "score": 1.0, + "content": "The network is trained with RMSProp (Tieleman & Hinto, 2012) using a learning rate of 0.001.", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 354, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 173, + 367 + ], + "score": 1.0, + "content": "During training,", + "type": "text" + }, + { + "bbox": [ + 173, + 356, + 178, + 365 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 354, + 349, + 367 + ], + "score": 1.0, + "content": "-greedy is applied to the rollout, where the", + "type": "text" + }, + { + "bbox": [ + 349, + 356, + 355, + 364 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 354, + 506, + 367 + ], + "score": 1.0, + "content": "gradually decreases from 0.1 to 0.01.", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 344, + 506, + 367 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 380, + 211, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 379, + 213, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 213, + 396 + ], + "score": 1.0, + "content": "D TASK SETTINGS", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 405, + 504, + 427 + ], + "lines": [ + { + "bbox": [ + 106, + 406, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 417 + ], + "score": 1.0, + "content": "We assume full observations of the world state for both agents in all tasks but the internal state of an", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 416, + 491, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 448, + 428 + ], + "score": 1.0, + "content": "agent (e.g., goals) is unobservable to another agent. The discounted factor is set to be", + "type": "text" + }, + { + "bbox": [ + 448, + 416, + 487, + 426 + ], + "score": 0.88, + "content": "\\Gamma = 0 . 9 5", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 416, + 491, + 428 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 406, + 505, + 428 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 432, + 505, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 433, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 505, + 445 + ], + "score": 1.0, + "content": "For the demonstrator in the grid world tasks, we implemented search based path planning and used", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "simple heuristics to perform branch and bound for acceleration. In particular, the state for the search", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "score": 1.0, + "content": "algorithm in Passing is the map status, whereas the state in Maze Navigation and Construction is the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 463, + 350, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 350, + 478 + ], + "score": 1.0, + "content": "combination of map status and the demonstrator’s inventory.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 433, + 505, + 478 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 488, + 171, + 500 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 172, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 172, + 501 + ], + "score": 1.0, + "content": "D.1 PASSING", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "image", + "bbox": [ + 145, + 510, + 465, + 591 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 145, + 510, + 465, + 591 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 510, + 465, + 591 + ], + "spans": [ + { + "bbox": [ + 145, + 510, + 465, + 591 + ], + "score": 0.97, + "type": "image", + "image_path": "104fb1162f260d597db6e2b8b643e42e84d9eb60187fab5116d2e2aba9e01f85.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 145, + 510, + 465, + 537.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 145, + 537.0, + 465, + 564.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 145, + 564.0, + 465, + 591.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 153, + 598, + 456, + 610 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 152, + 596, + 458, + 613 + ], + "spans": [ + { + "bbox": [ + 152, + 596, + 458, + 613 + ], + "score": 1.0, + "content": "Figure 13: The training setting and examples of testing settings for Passing.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + } + ], + "index": 34.0 + }, + { + "type": "text", + "bbox": [ + 106, + 623, + 505, + 666 + ], + "lines": [ + { + "bbox": [ + 106, + 624, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 505, + 636 + ], + "score": 1.0, + "content": "Figure 13 shows the training setting where the locations of the gap and the staring point of the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "demonstrator are fixed, and the examples of testing settings where the placement of the gap and the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "initial position of the demonstrator is randomized. We terminate a training episode if the demonstrator", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 655, + 274, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 274, + 667 + ], + "score": 1.0, + "content": "has not passed the obstacle after 15 steps.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5, + "bbox_fs": [ + 106, + 624, + 505, + 667 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 679, + 217, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 219, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 219, + 692 + ], + "score": 1.0, + "content": "D.2 MAZE NAVIGATION", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "The training setting in Maze Navigation is designed as shown in Figure 14a, where the placement of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "the tools is restrained in the purple region, and the positions of the demonstrator’s starting point and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "the doors are fixed. For testing, we randomly put one or two doors to fill the gaps; the demonstrator", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 699, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 146, + 78, + 465, + 178 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 146, + 78, + 465, + 178 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 146, + 78, + 465, + 178 + ], + "spans": [ + { + "bbox": [ + 146, + 78, + 465, + 178 + ], + "score": 0.96, + "type": "image", + "image_path": "7e7f142e00277a702495ff544dfc962f5c601cf88c03a1f6483f2f64ce64d982.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 146, + 78, + 465, + 111.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 146, + 111.33333333333334, + 465, + 144.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 146, + 144.66666666666669, + 465, + 178.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 133, + 186, + 475, + 198 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 133, + 186, + 476, + 200 + ], + "spans": [ + { + "bbox": [ + 133, + 186, + 476, + 200 + ], + "score": 1.0, + "content": "Figure 14: The training setting and examples of testing settings for Maze Navigation.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 107, + 219, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "score": 1.0, + "content": "and the tools can be randomly placed in the purple region. The demonstrator is always guaranteed to", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "be able to find a path from its starting point to the destination (the top-left room). A training episode", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 240, + 219, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 219, + 254 + ], + "score": 1.0, + "content": "has a time limit of 60 steps.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 107, + 266, + 203, + 278 + ], + "lines": [ + { + "bbox": [ + 105, + 265, + 204, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 204, + 280 + ], + "score": 1.0, + "content": "D.3 CONSTRUCTION", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "image", + "bbox": [ + 145, + 290, + 465, + 370 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 145, + 290, + 465, + 370 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 145, + 290, + 465, + 370 + ], + "spans": [ + { + "bbox": [ + 145, + 290, + 465, + 370 + ], + "score": 0.967, + "type": "image", + "image_path": "16b7b3aa92dee0ccd1525db6154d8b34c50807af6f08c7694f6469a3309c6d55.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 145, + 290, + 465, + 316.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 145, + 316.6666666666667, + 465, + 343.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 145, + 343.33333333333337, + 465, + 370.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 142, + 378, + 467, + 390 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 142, + 377, + 468, + 391 + ], + "spans": [ + { + "bbox": [ + 142, + 377, + 468, + 391 + ], + "score": 1.0, + "content": "Figure 15: The training setting and examples of testing settings for Construction.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + } + ], + "index": 10.0 + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 504, + 447 + ], + "lines": [ + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "score": 1.0, + "content": "The room layout in training setting is fixed and shown in Figure 15a. In testing settings, we randomly", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "score": 1.0, + "content": "put six wall blocks around the three colored blocks to create obstacles. Figure 15b displays a few", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 423, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 439 + ], + "score": 1.0, + "content": "examples of testing scenarios. Note that in both training and testing, we allow randomized coloring", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 435, + 250, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 250, + 448 + ], + "score": 1.0, + "content": "as long as the goal can be achieved.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 108, + 452, + 504, + 474 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "score": 1.0, + "content": "For each episode, we assign a random goal (a pair of colors) for the demonstrator. The maximum", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 462, + 275, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 275, + 476 + ], + "score": 1.0, + "content": "episode length is 30 steps during training.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 107, + 488, + 173, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 173, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 173, + 500 + ], + "score": 1.0, + "content": "D.4 SORTING", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 107, + 514, + 249, + 526 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 251, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 251, + 527 + ], + "score": 1.0, + "content": "Algorithm 3 Modified Bubble Sort", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 529, + 397, + 684 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 344, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 179, + 541 + ], + "score": 1.0, + "content": "Input: Initial array", + "type": "text" + }, + { + "bbox": [ + 179, + 529, + 261, + 541 + ], + "score": 0.93, + "content": "X = [ x _ { 1 } , x _ { 2 } , \\cdot \\cdot \\cdot , x _ { n } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 529, + 288, + 541 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 288, + 532, + 295, + 539 + ], + "score": 0.73, + "content": "_ n", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 529, + 344, + 541 + ], + "score": 1.0, + "content": "is the length.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 538, + 189, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 189, + 551 + ], + "score": 1.0, + "content": "Output: Sorted array", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 548, + 191, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 167, + 560 + ], + "score": 1.0, + "content": "1: Last position", + "type": "text" + }, + { + "bbox": [ + 167, + 550, + 191, + 558 + ], + "score": 0.84, + "content": "i \\gets 0", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 557, + 164, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 140, + 570 + ], + "score": 1.0, + "content": "2: Steps", + "type": "text" + }, + { + "bbox": [ + 140, + 559, + 164, + 568 + ], + "score": 0.85, + "content": "t \\gets 0", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 567, + 265, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 141, + 579 + ], + "score": 1.0, + "content": "3: while", + "type": "text" + }, + { + "bbox": [ + 141, + 569, + 150, + 577 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 567, + 265, + 579 + ], + "score": 1.0, + "content": "is not in an ascending order do", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 107, + 577, + 156, + 587 + ], + "spans": [ + { + "bbox": [ + 107, + 577, + 118, + 587 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 132, + 578, + 156, + 587 + ], + "score": 0.81, + "content": "c \\gets 0", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 586, + 206, + 597 + ], + "spans": [ + { + "bbox": [ + 107, + 586, + 118, + 597 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 131, + 587, + 154, + 597 + ], + "score": 1.0, + "content": "while", + "type": "text" + }, + { + "bbox": [ + 154, + 588, + 193, + 597 + ], + "score": 0.77, + "content": "c < n - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 587, + 206, + 597 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 596, + 213, + 607 + ], + "spans": [ + { + "bbox": [ + 107, + 596, + 118, + 607 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 144, + 597, + 153, + 607 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 153, + 598, + 192, + 607 + ], + "score": 0.86, + "content": "x _ { i } > x _ { i + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 597, + 213, + 607 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 107, + 606, + 395, + 618 + ], + "spans": [ + { + "bbox": [ + 107, + 606, + 118, + 617 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 157, + 606, + 181, + 618 + ], + "score": 1.0, + "content": "Swap", + "type": "text" + }, + { + "bbox": [ + 181, + 608, + 190, + 616 + ], + "score": 0.84, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 606, + 207, + 618 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 207, + 608, + 225, + 617 + ], + "score": 0.87, + "content": "x _ { i + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 606, + 313, + 618 + ], + "score": 1.0, + "content": ", i.e., the demonstrator’s", + "type": "text" + }, + { + "bbox": [ + 313, + 608, + 317, + 615 + ], + "score": 0.71, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 606, + 361, + 618 + ], + "score": 1.0, + "content": "-th action is", + "type": "text" + }, + { + "bbox": [ + 361, + 606, + 395, + 617 + ], + "score": 0.89, + "content": "( i , i + 1 )", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 615, + 197, + 626 + ], + "spans": [ + { + "bbox": [ + 107, + 615, + 118, + 626 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 158, + 616, + 197, + 626 + ], + "score": 0.61, + "content": "t \\gets \\bar { t } + 1", + "type": "inline_equation", + "image_path": "2d1ee5d133da3204c3eaaa2868ecdceb6ee9f9727af94f262110241a4820adfc.jpg" + } + ], + "index": 29 + }, + { + "bbox": [ + 107, + 625, + 182, + 636 + ], + "spans": [ + { + "bbox": [ + 107, + 625, + 118, + 636 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 157, + 625, + 182, + 636 + ], + "score": 1.0, + "content": "break", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 634, + 174, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 121, + 646 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 147, + 635, + 174, + 645 + ], + "score": 1.0, + "content": "end if", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 644, + 231, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 120, + 655 + ], + "score": 1.0, + "content": "11:", + "type": "text" + }, + { + "bbox": [ + 147, + 644, + 231, + 666 + ], + "score": 0.44, + "content": "\\begin{array} { l } { c c + 1 } \\\\ { i ( i + 1 ) \\% ( n - 1 ) } \\end{array}", + "type": "inline_equation", + "image_path": "1435433eefb81edee6c53d8675a47662c03d692926be781f8631fed2179bcb43.jpg" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 654, + 121, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 121, + 664 + ], + "score": 1.0, + "content": "12:", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 663, + 174, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 122, + 674 + ], + "score": 1.0, + "content": "13:", + "type": "text" + }, + { + "bbox": [ + 133, + 663, + 174, + 674 + ], + "score": 1.0, + "content": "end while", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 673, + 160, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 160, + 683 + ], + "score": 1.0, + "content": "14: end while", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "In training, there is only one sequence as the initial state, i.e., [2, 0, 5, 12, 14, 10, 3, 11, 9, 7]. The", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "testing settings include 100 randomly generated initial sequences. Training episodes have a 30-step", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 720, + 151, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 151, + 732 + ], + "score": 1.0, + "content": "time limit.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 146, + 78, + 465, + 178 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 146, + 78, + 465, + 178 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 146, + 78, + 465, + 178 + ], + "spans": [ + { + "bbox": [ + 146, + 78, + 465, + 178 + ], + "score": 0.96, + "type": "image", + "image_path": "7e7f142e00277a702495ff544dfc962f5c601cf88c03a1f6483f2f64ce64d982.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 146, + 78, + 465, + 111.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 146, + 111.33333333333334, + 465, + 144.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 146, + 144.66666666666669, + 465, + 178.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 133, + 186, + 475, + 198 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 133, + 186, + 476, + 200 + ], + "spans": [ + { + "bbox": [ + 133, + 186, + 476, + 200 + ], + "score": 1.0, + "content": "Figure 14: The training setting and examples of testing settings for Maze Navigation.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 107, + 219, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "score": 1.0, + "content": "and the tools can be randomly placed in the purple region. The demonstrator is always guaranteed to", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "be able to find a path from its starting point to the destination (the top-left room). A training episode", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 240, + 219, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 219, + 254 + ], + "score": 1.0, + "content": "has a time limit of 60 steps.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 219, + 505, + 254 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 266, + 203, + 278 + ], + "lines": [ + { + "bbox": [ + 105, + 265, + 204, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 204, + 280 + ], + "score": 1.0, + "content": "D.3 CONSTRUCTION", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "image", + "bbox": [ + 145, + 290, + 465, + 370 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 145, + 290, + 465, + 370 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 145, + 290, + 465, + 370 + ], + "spans": [ + { + "bbox": [ + 145, + 290, + 465, + 370 + ], + "score": 0.967, + "type": "image", + "image_path": "16b7b3aa92dee0ccd1525db6154d8b34c50807af6f08c7694f6469a3309c6d55.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 145, + 290, + 465, + 316.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 145, + 316.6666666666667, + 465, + 343.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 145, + 343.33333333333337, + 465, + 370.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 142, + 378, + 467, + 390 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 142, + 377, + 468, + 391 + ], + "spans": [ + { + "bbox": [ + 142, + 377, + 468, + 391 + ], + "score": 1.0, + "content": "Figure 15: The training setting and examples of testing settings for Construction.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + } + ], + "index": 10.0 + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 504, + 447 + ], + "lines": [ + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "score": 1.0, + "content": "The room layout in training setting is fixed and shown in Figure 15a. In testing settings, we randomly", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "score": 1.0, + "content": "put six wall blocks around the three colored blocks to create obstacles. Figure 15b displays a few", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 423, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 439 + ], + "score": 1.0, + "content": "examples of testing scenarios. Note that in both training and testing, we allow randomized coloring", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 435, + 250, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 250, + 448 + ], + "score": 1.0, + "content": "as long as the goal can be achieved.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 404, + 506, + 448 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 452, + 504, + 474 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "score": 1.0, + "content": "For each episode, we assign a random goal (a pair of colors) for the demonstrator. The maximum", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 462, + 275, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 275, + 476 + ], + "score": 1.0, + "content": "episode length is 30 steps during training.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 452, + 505, + 476 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 488, + 173, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 173, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 173, + 500 + ], + "score": 1.0, + "content": "D.4 SORTING", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 107, + 514, + 249, + 526 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 251, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 251, + 527 + ], + "score": 1.0, + "content": "Algorithm 3 Modified Bubble Sort", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "index", + "bbox": [ + 107, + 529, + 397, + 684 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 344, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 179, + 541 + ], + "score": 1.0, + "content": "Input: Initial array", + "type": "text" + }, + { + "bbox": [ + 179, + 529, + 261, + 541 + ], + "score": 0.93, + "content": "X = [ x _ { 1 } , x _ { 2 } , \\cdot \\cdot \\cdot , x _ { n } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 529, + 288, + 541 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 288, + 532, + 295, + 539 + ], + "score": 0.73, + "content": "_ n", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 529, + 344, + 541 + ], + "score": 1.0, + "content": "is the length.", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 538, + 189, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 189, + 551 + ], + "score": 1.0, + "content": "Output: Sorted array", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 548, + 191, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 167, + 560 + ], + "score": 1.0, + "content": "1: Last position", + "type": "text" + }, + { + "bbox": [ + 167, + 550, + 191, + 558 + ], + "score": 0.84, + "content": "i \\gets 0", + "type": "inline_equation" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 557, + 164, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 140, + 570 + ], + "score": 1.0, + "content": "2: Steps", + "type": "text" + }, + { + "bbox": [ + 140, + 559, + 164, + 568 + ], + "score": 0.85, + "content": "t \\gets 0", + "type": "inline_equation" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 567, + 265, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 141, + 579 + ], + "score": 1.0, + "content": "3: while", + "type": "text" + }, + { + "bbox": [ + 141, + 569, + 150, + 577 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 567, + 265, + 579 + ], + "score": 1.0, + "content": "is not in an ascending order do", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 107, + 577, + 156, + 587 + ], + "spans": [ + { + "bbox": [ + 107, + 577, + 118, + 587 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 132, + 578, + 156, + 587 + ], + "score": 0.81, + "content": "c \\gets 0", + "type": "inline_equation" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 107, + 586, + 206, + 597 + ], + "spans": [ + { + "bbox": [ + 107, + 586, + 118, + 597 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 131, + 587, + 154, + 597 + ], + "score": 1.0, + "content": "while", + "type": "text" + }, + { + "bbox": [ + 154, + 588, + 193, + 597 + ], + "score": 0.77, + "content": "c < n - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 587, + 206, + 597 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 107, + 596, + 213, + 607 + ], + "spans": [ + { + "bbox": [ + 107, + 596, + 118, + 607 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 144, + 597, + 153, + 607 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 153, + 598, + 192, + 607 + ], + "score": 0.86, + "content": "x _ { i } > x _ { i + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 597, + 213, + 607 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 107, + 606, + 395, + 618 + ], + "spans": [ + { + "bbox": [ + 107, + 606, + 118, + 617 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 157, + 606, + 181, + 618 + ], + "score": 1.0, + "content": "Swap", + "type": "text" + }, + { + "bbox": [ + 181, + 608, + 190, + 616 + ], + "score": 0.84, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 606, + 207, + 618 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 207, + 608, + 225, + 617 + ], + "score": 0.87, + "content": "x _ { i + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 606, + 313, + 618 + ], + "score": 1.0, + "content": ", i.e., the demonstrator’s", + "type": "text" + }, + { + "bbox": [ + 313, + 608, + 317, + 615 + ], + "score": 0.71, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 606, + 361, + 618 + ], + "score": 1.0, + "content": "-th action is", + "type": "text" + }, + { + "bbox": [ + 361, + 606, + 395, + 617 + ], + "score": 0.89, + "content": "( i , i + 1 )", + "type": "inline_equation" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 107, + 615, + 197, + 626 + ], + "spans": [ + { + "bbox": [ + 107, + 615, + 118, + 626 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 158, + 616, + 197, + 626 + ], + "score": 0.61, + "content": "t \\gets \\bar { t } + 1", + "type": "inline_equation", + "image_path": "2d1ee5d133da3204c3eaaa2868ecdceb6ee9f9727af94f262110241a4820adfc.jpg" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 107, + 625, + 182, + 636 + ], + "spans": [ + { + "bbox": [ + 107, + 625, + 118, + 636 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 157, + 625, + 182, + 636 + ], + "score": 1.0, + "content": "break", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 634, + 174, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 121, + 646 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 147, + 635, + 174, + 645 + ], + "score": 1.0, + "content": "end if", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 644, + 231, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 120, + 655 + ], + "score": 1.0, + "content": "11:", + "type": "text" + }, + { + "bbox": [ + 147, + 644, + 231, + 666 + ], + "score": 0.44, + "content": "\\begin{array} { l } { c c + 1 } \\\\ { i ( i + 1 ) \\% ( n - 1 ) } \\end{array}", + "type": "inline_equation", + "image_path": "1435433eefb81edee6c53d8675a47662c03d692926be781f8631fed2179bcb43.jpg" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 654, + 121, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 121, + 664 + ], + "score": 1.0, + "content": "12:", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 663, + 174, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 122, + 674 + ], + "score": 1.0, + "content": "13:", + "type": "text" + }, + { + "bbox": [ + 133, + 663, + 174, + 674 + ], + "score": 1.0, + "content": "end while", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 673, + 160, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 160, + 683 + ], + "score": 1.0, + "content": "14: end while", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 529, + 395, + 683 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "In training, there is only one sequence as the initial state, i.e., [2, 0, 5, 12, 14, 10, 3, 11, 9, 7]. The", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "testing settings include 100 randomly generated initial sequences. Training episodes have a 30-step", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 720, + 151, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 151, + 732 + ], + "score": 1.0, + "content": "time limit.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 699, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Since the learner may change certain numbers during the process of sorting, the original bubble sort", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "may fail to finish the sorting successfully since it will not look back at the sorted part of the array. To", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "address this, we modify the original bubble sort algorithm so that it will continue to sort the sequence", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 490, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 490, + 126 + ], + "score": 1.0, + "content": "until it is in an ascending order. Algorithm 3 outlines how the demonstrator swaps the numbers.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "title", + "bbox": [ + 108, + 141, + 250, + 154 + ], + "lines": [ + { + "bbox": [ + 105, + 139, + 251, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 251, + 155 + ], + "score": 1.0, + "content": "E DETAILS OF BASELINES", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 108, + 165, + 286, + 177 + ], + "lines": [ + { + "bbox": [ + 106, + 165, + 288, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 288, + 178 + ], + "score": 1.0, + "content": "E.1 REWARD FUNCTIONS IN BASELINES", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 185, + 505, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 505, + 199 + ], + "score": 1.0, + "content": "We define the reward functions used for baselines, count-based reward and self-supervised prediction", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 194, + 131, + 210 + ], + "spans": [ + { + "bbox": [ + 104, + 194, + 131, + 210 + ], + "score": 1.0, + "content": "here.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "title", + "bbox": [ + 107, + 213, + 198, + 224 + ], + "lines": [ + { + "bbox": [ + 107, + 212, + 199, + 225 + ], + "spans": [ + { + "bbox": [ + 107, + 212, + 199, + 225 + ], + "score": 1.0, + "content": "Count-based reward:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 254, + 220, + 357, + 249 + ], + "lines": [ + { + "bbox": [ + 254, + 220, + 357, + 249 + ], + "spans": [ + { + "bbox": [ + 254, + 220, + 357, + 249 + ], + "score": 0.95, + "content": "r ^ { t } = R ( s _ { d } ^ { t } ) = \\frac { \\beta } { \\sqrt { N ( s _ { d } ^ { t } ) } } ,", + "type": "interline_equation", + "image_path": "050cbea808e73c012f9caec3a2ab7290b761ffdca5b30ab847c0b97247f62dae.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 254, + 220, + 357, + 234.5 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 254, + 234.5, + 357, + 249.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 251, + 505, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 251, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 133, + 265 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 253, + 141, + 263 + ], + "score": 0.84, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 251, + 225, + 265 + ], + "score": 1.0, + "content": "is a constant (we set", + "type": "text" + }, + { + "bbox": [ + 225, + 252, + 250, + 263 + ], + "score": 0.9, + "content": "\\beta = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 251, + 467, + 265 + ], + "score": 1.0, + "content": ", which gives the best results in our experiments), and", + "type": "text" + }, + { + "bbox": [ + 468, + 251, + 494, + 264 + ], + "score": 0.92, + "content": "N ( s _ { d } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 251, + 505, + 265 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 261, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 275 + ], + "score": 1.0, + "content": "the counts of state visitation. In our experiments, the counting can be efficiently implemented by", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 505, + 285 + ], + "score": 1.0, + "content": "hashing. This reward encourages the learner to push the demonstrator to new states in order to incite", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 282, + 192, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 192, + 296 + ], + "score": 1.0, + "content": "new demonstrations.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 107, + 300, + 221, + 311 + ], + "lines": [ + { + "bbox": [ + 106, + 299, + 222, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 222, + 313 + ], + "score": 1.0, + "content": "Self-supervised prediction:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 316, + 403, + 331 + ], + "lines": [ + { + "bbox": [ + 207, + 316, + 403, + 331 + ], + "spans": [ + { + "bbox": [ + 207, + 316, + 403, + 331 + ], + "score": 0.91, + "content": "\\begin{array} { r } { r ^ { t } = R ( s _ { d } ^ { t } , m ^ { t - 1 } , a _ { d } ^ { t } ) = - \\log \\pi _ { d } ( a _ { d } ^ { t } | s _ { d } ^ { t } , m ^ { t - 1 } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "149ec5b46e4be798ebbdfe6cbadc40e61d530a6a4ef523c79444671eb4c45609.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 207, + 316, + 403, + 331 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 336, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 133, + 349 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 336, + 144, + 348 + ], + "score": 0.87, + "content": "a _ { d } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 335, + 505, + 349 + ], + "score": 1.0, + "content": "is the ground-truth action from the demonstrator. This reward essentially measures action", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 347, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 505, + 358 + ], + "score": 1.0, + "content": "prediction loss of the estimated demonstrator’s policy, which is designed to encourage the learner to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 356, + 482, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 482, + 369 + ], + "score": 1.0, + "content": "find new scenarios where the previously learned demonstrator’s policy becomes less accurate.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 381, + 368, + 393 + ], + "lines": [ + { + "bbox": [ + 106, + 380, + 369, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 369, + 394 + ], + "score": 1.0, + "content": "E.2 NETWORK ARCHITECTURE OF THE 2-LSTM BASELINE", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "image", + "bbox": [ + 205, + 403, + 406, + 545 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 205, + 403, + 406, + 545 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 205, + 403, + 406, + 545 + ], + "spans": [ + { + "bbox": [ + 205, + 403, + 406, + 545 + ], + "score": 0.964, + "type": "image", + "image_path": "4d94346a5d39928d4bc7f89cf3ad6b330ebd1c289bd68248bddb18577350c585.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 205, + 403, + 406, + 417.2 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 205, + 417.2, + 406, + 431.4 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 205, + 431.4, + 406, + 445.59999999999997 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 205, + 445.59999999999997, + 406, + 459.79999999999995 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 205, + 459.79999999999995, + 406, + 473.99999999999994 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 205, + 473.99999999999994, + 406, + 488.19999999999993 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 205, + 488.19999999999993, + 406, + 502.3999999999999 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 205, + 502.3999999999999, + 406, + 516.5999999999999 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 205, + 516.5999999999999, + 406, + 530.8 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 205, + 530.8, + 406, + 545.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 181, + 551, + 429, + 563 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 181, + 550, + 429, + 564 + ], + "spans": [ + { + "bbox": [ + 181, + 550, + 429, + 564 + ], + "score": 1.0, + "content": "Figure 16: The network architecture of the 2-LSTM baseline.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + } + ], + "index": 28.25 + }, + { + "type": "text", + "bbox": [ + 103, + 576, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 589 + ], + "score": 1.0, + "content": "Figure 16 illustrates the network architecture of the 2-LSTM baseline, where two LSTMs all have", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 586, + 177, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 177, + 599 + ], + "score": 1.0, + "content": "128 hidden units.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Since the learner may change certain numbers during the process of sorting, the original bubble sort", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "may fail to finish the sorting successfully since it will not look back at the sorted part of the array. To", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "address this, we modify the original bubble sort algorithm so that it will continue to sort the sequence", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 490, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 490, + 126 + ], + "score": 1.0, + "content": "until it is in an ascending order. Algorithm 3 outlines how the demonstrator swaps the numbers.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 506, + 126 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 141, + 250, + 154 + ], + "lines": [ + { + "bbox": [ + 105, + 139, + 251, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 251, + 155 + ], + "score": 1.0, + "content": "E DETAILS OF BASELINES", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 108, + 165, + 286, + 177 + ], + "lines": [ + { + "bbox": [ + 106, + 165, + 288, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 288, + 178 + ], + "score": 1.0, + "content": "E.1 REWARD FUNCTIONS IN BASELINES", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 185, + 505, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 505, + 199 + ], + "score": 1.0, + "content": "We define the reward functions used for baselines, count-based reward and self-supervised prediction", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 194, + 131, + 210 + ], + "spans": [ + { + "bbox": [ + 104, + 194, + 131, + 210 + ], + "score": 1.0, + "content": "here.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 104, + 184, + 505, + 210 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 213, + 198, + 224 + ], + "lines": [ + { + "bbox": [ + 107, + 212, + 199, + 225 + ], + "spans": [ + { + "bbox": [ + 107, + 212, + 199, + 225 + ], + "score": 1.0, + "content": "Count-based reward:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 254, + 220, + 357, + 249 + ], + "lines": [ + { + "bbox": [ + 254, + 220, + 357, + 249 + ], + "spans": [ + { + "bbox": [ + 254, + 220, + 357, + 249 + ], + "score": 0.95, + "content": "r ^ { t } = R ( s _ { d } ^ { t } ) = \\frac { \\beta } { \\sqrt { N ( s _ { d } ^ { t } ) } } ,", + "type": "interline_equation", + "image_path": "050cbea808e73c012f9caec3a2ab7290b761ffdca5b30ab847c0b97247f62dae.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 254, + 220, + 357, + 234.5 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 254, + 234.5, + 357, + 249.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 251, + 505, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 251, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 133, + 265 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 253, + 141, + 263 + ], + "score": 0.84, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 251, + 225, + 265 + ], + "score": 1.0, + "content": "is a constant (we set", + "type": "text" + }, + { + "bbox": [ + 225, + 252, + 250, + 263 + ], + "score": 0.9, + "content": "\\beta = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 251, + 467, + 265 + ], + "score": 1.0, + "content": ", which gives the best results in our experiments), and", + "type": "text" + }, + { + "bbox": [ + 468, + 251, + 494, + 264 + ], + "score": 0.92, + "content": "N ( s _ { d } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 251, + 505, + 265 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 261, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 275 + ], + "score": 1.0, + "content": "the counts of state visitation. In our experiments, the counting can be efficiently implemented by", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 505, + 285 + ], + "score": 1.0, + "content": "hashing. This reward encourages the learner to push the demonstrator to new states in order to incite", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 282, + 192, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 192, + 296 + ], + "score": 1.0, + "content": "new demonstrations.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 251, + 505, + 296 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 300, + 221, + 311 + ], + "lines": [ + { + "bbox": [ + 106, + 299, + 222, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 222, + 313 + ], + "score": 1.0, + "content": "Self-supervised prediction:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 316, + 403, + 331 + ], + "lines": [ + { + "bbox": [ + 207, + 316, + 403, + 331 + ], + "spans": [ + { + "bbox": [ + 207, + 316, + 403, + 331 + ], + "score": 0.91, + "content": "\\begin{array} { r } { r ^ { t } = R ( s _ { d } ^ { t } , m ^ { t - 1 } , a _ { d } ^ { t } ) = - \\log \\pi _ { d } ( a _ { d } ^ { t } | s _ { d } ^ { t } , m ^ { t - 1 } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "149ec5b46e4be798ebbdfe6cbadc40e61d530a6a4ef523c79444671eb4c45609.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 207, + 316, + 403, + 331 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 336, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 133, + 349 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 336, + 144, + 348 + ], + "score": 0.87, + "content": "a _ { d } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 335, + 505, + 349 + ], + "score": 1.0, + "content": "is the ground-truth action from the demonstrator. This reward essentially measures action", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 347, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 505, + 358 + ], + "score": 1.0, + "content": "prediction loss of the estimated demonstrator’s policy, which is designed to encourage the learner to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 356, + 482, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 482, + 369 + ], + "score": 1.0, + "content": "find new scenarios where the previously learned demonstrator’s policy becomes less accurate.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 335, + 505, + 369 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 381, + 368, + 393 + ], + "lines": [ + { + "bbox": [ + 106, + 380, + 369, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 369, + 394 + ], + "score": 1.0, + "content": "E.2 NETWORK ARCHITECTURE OF THE 2-LSTM BASELINE", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 380, + 369, + 394 + ] + }, + { + "type": "image", + "bbox": [ + 205, + 403, + 406, + 545 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 205, + 403, + 406, + 545 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 205, + 403, + 406, + 545 + ], + "spans": [ + { + "bbox": [ + 205, + 403, + 406, + 545 + ], + "score": 0.964, + "type": "image", + "image_path": "4d94346a5d39928d4bc7f89cf3ad6b330ebd1c289bd68248bddb18577350c585.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 205, + 403, + 406, + 417.2 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 205, + 417.2, + 406, + 431.4 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 205, + 431.4, + 406, + 445.59999999999997 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 205, + 445.59999999999997, + 406, + 459.79999999999995 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 205, + 459.79999999999995, + 406, + 473.99999999999994 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 205, + 473.99999999999994, + 406, + 488.19999999999993 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 205, + 488.19999999999993, + 406, + 502.3999999999999 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 205, + 502.3999999999999, + 406, + 516.5999999999999 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 205, + 516.5999999999999, + 406, + 530.8 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 205, + 530.8, + 406, + 545.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 181, + 551, + 429, + 563 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 181, + 550, + 429, + 564 + ], + "spans": [ + { + "bbox": [ + 181, + 550, + 429, + 564 + ], + "score": 1.0, + "content": "Figure 16: The network architecture of the 2-LSTM baseline.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + } + ], + "index": 28.25 + }, + { + "type": "text", + "bbox": [ + 103, + 576, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 589 + ], + "score": 1.0, + "content": "Figure 16 illustrates the network architecture of the 2-LSTM baseline, where two LSTMs all have", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 586, + 177, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 177, + 599 + ], + "score": 1.0, + "content": "128 hidden units.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 576, + 505, + 599 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/SJl98sR5tX/SJl98sR5tX_model.json b/parse/train/SJl98sR5tX/SJl98sR5tX_model.json new file mode 100644 index 0000000000000000000000000000000000000000..3bb1d328208779fabecf577b4d852485839c61fd --- /dev/null +++ b/parse/train/SJl98sR5tX/SJl98sR5tX_model.json @@ -0,0 +1,25538 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 581, + 1303, + 581, + 1303, + 1140, + 398, + 1140 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1489, + 1404, + 1489, + 1404, + 1813, + 298, + 1813 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1268, + 1404, + 1268, + 1404, + 1474, + 299, + 1474 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1827, + 1403, + 1827, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 0, + "poly": [ + 300, + 220, + 1400, + 220, + 1400, + 320, + 300, + 320 + ], + "score": 0.959 + }, + { + "category_id": 0, + "poly": [ + 303, + 1199, + 573, + 1199, + 573, + 1234, + 303, + 1234 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 773, + 515, + 927, + 515, + 927, + 548, + 773, + 548 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.877 + }, + { + "category_id": 1, + "poly": [ + 313, + 375, + 680, + 375, + 680, + 435, + 313, + 435 + ], + "score": 0.83 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 856, + 2089, + 856, + 2112, + 841, + 2112 + ], + "score": 0.718 + }, + { + "category_id": 13, + "poly": [ + 1012, + 1112, + 1047, + 1112, + 1047, + 1138, + 1012, + 1138 + ], + "score": 0.64, + "latex": "= 0" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 216.0, + 1404.0, + 216.0, + 1404.0, + 274.0, + 293.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 271.0, + 447.0, + 271.0, + 447.0, + 327.0, + 293.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1195.0, + 579.0, + 1195.0, + 579.0, + 1242.0, + 294.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 511.0, + 934.0, + 511.0, + 934.0, + 554.0, + 768.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 859.0, + 2088.0, + 859.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 581.0, + 1305.0, + 581.0, + 1305.0, + 620.0, + 394.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 612.0, + 1306.0, + 612.0, + 1306.0, + 647.0, + 394.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 641.0, + 1309.0, + 641.0, + 1309.0, + 676.0, + 392.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 673.0, + 1305.0, + 673.0, + 1305.0, + 705.0, + 393.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 701.0, + 1306.0, + 701.0, + 1306.0, + 735.0, + 394.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 731.0, + 1306.0, + 731.0, + 1306.0, + 766.0, + 393.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 756.0, + 1307.0, + 756.0, + 1307.0, + 796.0, + 392.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 788.0, + 1306.0, + 788.0, + 1306.0, + 822.0, + 393.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 818.0, + 1306.0, + 818.0, + 1306.0, + 850.0, + 393.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 846.0, + 1307.0, + 846.0, + 1307.0, + 881.0, + 392.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 876.0, + 1306.0, + 876.0, + 1306.0, + 911.0, + 393.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 905.0, + 1305.0, + 905.0, + 1305.0, + 937.0, + 394.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 936.0, + 1305.0, + 936.0, + 1305.0, + 968.0, + 393.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 966.0, + 1305.0, + 966.0, + 1305.0, + 996.0, + 394.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 993.0, + 1308.0, + 993.0, + 1308.0, + 1028.0, + 393.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1023.0, + 1304.0, + 1023.0, + 1304.0, + 1055.0, + 395.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1052.0, + 1308.0, + 1052.0, + 1308.0, + 1086.0, + 394.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1081.0, + 1306.0, + 1081.0, + 1306.0, + 1116.0, + 394.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1111.0, + 1011.0, + 1111.0, + 1011.0, + 1143.0, + 397.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1111.0, + 1059.0, + 1111.0, + 1059.0, + 1143.0, + 1048.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1488.0, + 1406.0, + 1488.0, + 1406.0, + 1526.0, + 294.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1520.0, + 1406.0, + 1520.0, + 1406.0, + 1553.0, + 294.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1547.0, + 1407.0, + 1547.0, + 1407.0, + 1584.0, + 292.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1574.0, + 1406.0, + 1574.0, + 1406.0, + 1616.0, + 292.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1608.0, + 1405.0, + 1608.0, + 1405.0, + 1641.0, + 294.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1637.0, + 1406.0, + 1637.0, + 1406.0, + 1670.0, + 294.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1663.0, + 1408.0, + 1663.0, + 1408.0, + 1699.0, + 293.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1693.0, + 1408.0, + 1693.0, + 1408.0, + 1729.0, + 293.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1722.0, + 1405.0, + 1722.0, + 1405.0, + 1759.0, + 293.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1752.0, + 1406.0, + 1752.0, + 1406.0, + 1790.0, + 293.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1782.0, + 1160.0, + 1782.0, + 1160.0, + 1816.0, + 294.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1269.0, + 1405.0, + 1269.0, + 1405.0, + 1303.0, + 295.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1297.0, + 1404.0, + 1297.0, + 1404.0, + 1333.0, + 294.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1326.0, + 1405.0, + 1326.0, + 1405.0, + 1363.0, + 293.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1357.0, + 1409.0, + 1357.0, + 1409.0, + 1390.0, + 295.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1384.0, + 1404.0, + 1384.0, + 1404.0, + 1421.0, + 293.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1415.0, + 1404.0, + 1415.0, + 1404.0, + 1449.0, + 294.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1444.0, + 1003.0, + 1444.0, + 1003.0, + 1477.0, + 295.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1826.0, + 1408.0, + 1826.0, + 1408.0, + 1863.0, + 294.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1857.0, + 1405.0, + 1857.0, + 1405.0, + 1891.0, + 294.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1886.0, + 1405.0, + 1886.0, + 1405.0, + 1920.0, + 294.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1917.0, + 1404.0, + 1917.0, + 1404.0, + 1947.0, + 296.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1945.0, + 1405.0, + 1945.0, + 1405.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1407.0, + 1974.0, + 1407.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2004.0, + 1405.0, + 2004.0, + 1405.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 376.0, + 560.0, + 376.0, + 560.0, + 408.0, + 315.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 404.0, + 681.0, + 404.0, + 681.0, + 439.0, + 312.0, + 439.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1255, + 1405, + 1255, + 1405, + 1726, + 298, + 1726 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1738, + 1404, + 1738, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 716, + 1404, + 716, + 1404, + 953, + 298, + 953 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 967, + 1404, + 967, + 1404, + 1144, + 298, + 1144 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 459, + 222, + 1238, + 222, + 1238, + 411, + 459, + 411 + ], + "score": 0.964 + }, + { + "category_id": 4, + "poly": [ + 297, + 434, + 1405, + 434, + 1405, + 554, + 297, + 554 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 299, + 611, + 1399, + 611, + 1399, + 701, + 299, + 701 + ], + "score": 0.96 + }, + { + "category_id": 0, + "poly": [ + 301, + 1187, + 587, + 1187, + 587, + 1222, + 301, + 1222 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 297, + 76, + 857, + 76, + 857, + 104, + 297, + 104 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2112, + 841, + 2112 + ], + "score": 0.714 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.142 + }, + { + "category_id": 15, + "poly": [ + 480.0, + 267.0, + 501.0, + 267.0, + 501.0, + 282.0, + 480.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 259.0, + 624.0, + 259.0, + 624.0, + 285.0, + 506.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 297.0, + 577.0, + 297.0, + 577.0, + 326.0, + 508.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 303.0, + 499.0, + 303.0, + 499.0, + 315.0, + 481.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 333.0, + 551.0, + 333.0, + 551.0, + 362.0, + 505.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 346.0, + 1158.0, + 346.0, + 1158.0, + 365.0, + 1138.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 386.0, + 815.0, + 386.0, + 815.0, + 411.0, + 648.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 383.0, + 1081.0, + 383.0, + 1081.0, + 415.0, + 1008.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 435.0, + 1405.0, + 435.0, + 1405.0, + 469.0, + 296.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 462.0, + 1402.0, + 462.0, + 1402.0, + 497.0, + 295.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 493.0, + 1405.0, + 493.0, + 1405.0, + 527.0, + 296.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 520.0, + 1127.0, + 520.0, + 1127.0, + 560.0, + 292.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1184.0, + 593.0, + 1184.0, + 593.0, + 1228.0, + 292.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2121.0, + 839.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1253.0, + 1406.0, + 1253.0, + 1406.0, + 1292.0, + 293.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1283.0, + 1406.0, + 1283.0, + 1406.0, + 1321.0, + 293.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1313.0, + 1408.0, + 1313.0, + 1408.0, + 1350.0, + 292.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1337.0, + 1406.0, + 1337.0, + 1406.0, + 1384.0, + 292.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1369.0, + 1406.0, + 1369.0, + 1406.0, + 1412.0, + 290.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1401.0, + 1405.0, + 1401.0, + 1405.0, + 1437.0, + 295.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1428.0, + 1406.0, + 1428.0, + 1406.0, + 1468.0, + 292.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1461.0, + 1405.0, + 1461.0, + 1405.0, + 1493.0, + 295.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1489.0, + 1407.0, + 1489.0, + 1407.0, + 1525.0, + 295.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1516.0, + 1407.0, + 1516.0, + 1407.0, + 1557.0, + 291.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1548.0, + 1407.0, + 1548.0, + 1407.0, + 1584.0, + 295.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1575.0, + 1407.0, + 1575.0, + 1407.0, + 1617.0, + 291.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1605.0, + 1407.0, + 1605.0, + 1407.0, + 1643.0, + 289.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1636.0, + 1405.0, + 1636.0, + 1405.0, + 1671.0, + 295.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1661.0, + 1405.0, + 1661.0, + 1405.0, + 1703.0, + 292.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1694.0, + 1263.0, + 1694.0, + 1263.0, + 1730.0, + 295.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1738.0, + 1407.0, + 1738.0, + 1407.0, + 1775.0, + 293.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1768.0, + 1407.0, + 1768.0, + 1407.0, + 1806.0, + 293.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1797.0, + 1405.0, + 1797.0, + 1405.0, + 1834.0, + 292.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1827.0, + 1407.0, + 1827.0, + 1407.0, + 1864.0, + 292.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1856.0, + 1405.0, + 1856.0, + 1405.0, + 1891.0, + 294.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1886.0, + 1406.0, + 1886.0, + 1406.0, + 1919.0, + 293.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1914.0, + 1407.0, + 1914.0, + 1407.0, + 1952.0, + 292.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1945.0, + 1404.0, + 1945.0, + 1404.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1406.0, + 1974.0, + 1406.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1051.0, + 2002.0, + 1051.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 716.0, + 1408.0, + 716.0, + 1408.0, + 753.0, + 293.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 742.0, + 1406.0, + 742.0, + 1406.0, + 781.0, + 293.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 777.0, + 1405.0, + 777.0, + 1405.0, + 809.0, + 294.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 803.0, + 1406.0, + 803.0, + 1406.0, + 840.0, + 294.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 833.0, + 1404.0, + 833.0, + 1404.0, + 870.0, + 294.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 861.0, + 1405.0, + 861.0, + 1405.0, + 900.0, + 293.0, + 900.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, + 920.0, + 1163.0, + 920.0, + 1163.0, + 958.0, + 295.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 965.0, + 1408.0, + 965.0, + 1408.0, + 1002.0, + 293.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 995.0, + 1409.0, + 995.0, + 1409.0, + 1032.0, + 293.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1023.0, + 1405.0, + 1023.0, + 1405.0, + 1060.0, + 292.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1054.0, + 1404.0, + 1054.0, + 1404.0, + 1089.0, + 294.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1081.0, + 1405.0, + 1081.0, + 1405.0, + 1120.0, + 293.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1114.0, + 537.0, + 1114.0, + 537.0, + 1148.0, + 294.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 611.0, + 1404.0, + 611.0, + 1404.0, + 646.0, + 293.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 642.0, + 1403.0, + 642.0, + 1403.0, + 675.0, + 295.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 671.0, + 653.0, + 671.0, + 653.0, + 705.0, + 295.0, + 705.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1100, + 1405, + 1100, + 1405, + 1512, + 298, + 1512 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 848, + 1403, + 848, + 1403, + 1086, + 298, + 1086 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1525, + 1404, + 1525, + 1404, + 1733, + 298, + 1733 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1908, + 1402, + 1908, + 1402, + 2037, + 298, + 2037 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 573, + 224, + 1124, + 224, + 1124, + 675, + 573, + 675 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 296, + 695, + 1401, + 695, + 1401, + 786, + 296, + 786 + ], + "score": 0.953 + }, + { + "category_id": 0, + "poly": [ + 299, + 1850, + 456, + 1850, + 456, + 1882, + 299, + 1882 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 300, + 1780, + 508, + 1780, + 508, + 1816, + 300, + 1816 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.567 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 859, + 2088, + 859, + 2112, + 842, + 2112 + ], + "score": 0.497 + }, + { + "category_id": 2, + "poly": [ + 297, + 76, + 857, + 76, + 857, + 104, + 297, + 104 + ], + "score": 0.467 + }, + { + "category_id": 2, + "poly": [ + 297, + 76, + 857, + 76, + 857, + 104, + 297, + 104 + ], + "score": 0.42 + }, + { + "category_id": 13, + "poly": [ + 1260, + 1937, + 1349, + 1937, + 1349, + 1972, + 1260, + 1972 + ], + "score": 0.93, + "latex": "( s _ { d } ^ { t } , a _ { d } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 701, + 2001, + 1049, + 2001, + 1049, + 2037, + 701, + 2037 + ], + "score": 0.92, + "latex": "\\Gamma _ { l } ^ { t } = \\{ ( s _ { l } ^ { \\tau } , a _ { l } ^ { \\tau } ) : \\tau = 1 , \\cdot \\cdot \\cdot , t \\}" + }, + { + "category_id": 13, + "poly": [ + 297, + 2001, + 650, + 2001, + 650, + 2038, + 297, + 2038 + ], + "score": 0.91, + "latex": "\\Gamma _ { d } ^ { \\acute { t } } = \\big \\{ ( s _ { d } ^ { \\tau } , a _ { d } ^ { \\tau } ) : \\tau = 1 , \\cdot \\cdot \\cdot , t \\big \\}" + }, + { + "category_id": 13, + "poly": [ + 296, + 1968, + 377, + 1968, + 377, + 2003, + 296, + 2003 + ], + "score": 0.91, + "latex": "( s _ { l } ^ { t } , a _ { l } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 1039, + 1974, + 1055, + 1974, + 1055, + 1998, + 1039, + 1998 + ], + "score": 0.75, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 747, + 1941, + 761, + 1941, + 761, + 1965, + 747, + 1965 + ], + "score": 0.72, + "latex": "t" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 226.0, + 992.0, + 226.0, + 992.0, + 261.0, + 706.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 258.0, + 833.0, + 258.0, + 833.0, + 315.0, + 597.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 268.0, + 1079.0, + 268.0, + 1079.0, + 304.0, + 905.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 312.0, + 646.0, + 312.0, + 646.0, + 329.0, + 617.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 314.0, + 732.0, + 314.0, + 732.0, + 353.0, + 650.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 309.0, + 922.0, + 309.0, + 922.0, + 329.0, + 906.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 316.0, + 1082.0, + 316.0, + 1082.0, + 341.0, + 1058.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 344.0, + 1074.0, + 344.0, + 1074.0, + 352.0, + 1066.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 375.0, + 729.0, + 375.0, + 729.0, + 397.0, + 606.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 380.0, + 1000.0, + 380.0, + 1000.0, + 412.0, + 879.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 382.0, + 1096.0, + 382.0, + 1096.0, + 410.0, + 1044.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 458.0, + 697.0, + 458.0, + 697.0, + 485.0, + 638.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 443.0, + 951.0, + 443.0, + 951.0, + 483.0, + 819.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 459.0, + 1035.0, + 459.0, + 1035.0, + 486.0, + 973.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 492.0, + 821.0, + 492.0, + 821.0, + 521.0, + 744.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 512.0, + 817.0, + 512.0, + 817.0, + 540.0, + 750.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 549.0, + 787.0, + 549.0, + 787.0, + 556.0, + 777.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 568.0, + 723.0, + 568.0, + 723.0, + 594.0, + 611.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 568.0, + 1062.0, + 568.0, + 1062.0, + 594.0, + 946.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 614.0, + 672.0, + 614.0, + 672.0, + 624.0, + 663.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 611.0, + 1010.0, + 611.0, + 1010.0, + 627.0, + 999.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 623.0, + 696.0, + 623.0, + 696.0, + 682.0, + 648.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 636.0, + 746.0, + 636.0, + 746.0, + 651.0, + 735.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 638.0, + 772.0, + 638.0, + 772.0, + 646.0, + 765.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 635.0, + 819.0, + 635.0, + 819.0, + 652.0, + 804.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 621.0, + 1032.0, + 621.0, + 1032.0, + 682.0, + 992.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 644.0, + 741.0, + 644.0, + 741.0, + 670.0, + 716.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 654.0, + 751.0, + 654.0, + 751.0, + 672.0, + 734.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 656.0, + 786.0, + 656.0, + 786.0, + 669.0, + 775.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 321.5, + 650.0, + 321.5, + 650.0, + 352.0, + 615.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.75, + 321.5, + 917.75, + 321.5, + 917.75, + 347.5, + 892.75, + 347.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 315.5, + 996.0, + 315.5, + 996.0, + 348.5, + 925.0, + 348.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 391.0, + 695.0, + 391.0, + 695.0, + 418.0, + 639.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 431.5, + 838.0, + 431.5, + 838.0, + 473.5, + 743.0, + 473.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 646.0, + 823.0, + 646.0, + 823.0, + 674.5, + 785.0, + 674.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 695.0, + 1405.0, + 695.0, + 1405.0, + 727.0, + 294.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 726.0, + 1403.0, + 726.0, + 1403.0, + 756.0, + 296.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 755.0, + 937.0, + 755.0, + 937.0, + 789.0, + 292.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1848.0, + 463.0, + 1848.0, + 463.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1774.0, + 514.0, + 1774.0, + 514.0, + 1823.0, + 291.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1100.0, + 1405.0, + 1100.0, + 1405.0, + 1135.0, + 295.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1130.0, + 1406.0, + 1130.0, + 1406.0, + 1164.0, + 295.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1158.0, + 1407.0, + 1158.0, + 1407.0, + 1194.0, + 293.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1187.0, + 1408.0, + 1187.0, + 1408.0, + 1224.0, + 293.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1217.0, + 1407.0, + 1217.0, + 1407.0, + 1249.0, + 292.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1246.0, + 1407.0, + 1246.0, + 1407.0, + 1284.0, + 292.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1275.0, + 1407.0, + 1275.0, + 1407.0, + 1310.0, + 293.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1301.0, + 1406.0, + 1301.0, + 1406.0, + 1342.0, + 292.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1334.0, + 1406.0, + 1334.0, + 1406.0, + 1369.0, + 295.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1364.0, + 1405.0, + 1364.0, + 1405.0, + 1398.0, + 295.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1393.0, + 1405.0, + 1393.0, + 1405.0, + 1428.0, + 295.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1422.0, + 1405.0, + 1422.0, + 1405.0, + 1456.0, + 295.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1451.0, + 1405.0, + 1451.0, + 1405.0, + 1486.0, + 295.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1482.0, + 950.0, + 1482.0, + 950.0, + 1516.0, + 296.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 848.0, + 1407.0, + 848.0, + 1407.0, + 885.0, + 296.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 879.0, + 1407.0, + 879.0, + 1407.0, + 913.0, + 292.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 909.0, + 1404.0, + 909.0, + 1404.0, + 942.0, + 294.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 937.0, + 1407.0, + 937.0, + 1407.0, + 972.0, + 292.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 967.0, + 1404.0, + 967.0, + 1404.0, + 1000.0, + 294.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 995.0, + 1405.0, + 995.0, + 1405.0, + 1032.0, + 294.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1025.0, + 1405.0, + 1025.0, + 1405.0, + 1062.0, + 293.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1053.0, + 733.0, + 1053.0, + 733.0, + 1093.0, + 293.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1522.0, + 1408.0, + 1522.0, + 1408.0, + 1560.0, + 293.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1552.0, + 1406.0, + 1552.0, + 1406.0, + 1592.0, + 292.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1584.0, + 1406.0, + 1584.0, + 1406.0, + 1618.0, + 294.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1612.0, + 1406.0, + 1612.0, + 1406.0, + 1648.0, + 293.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1640.0, + 1408.0, + 1640.0, + 1408.0, + 1680.0, + 292.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1669.0, + 1406.0, + 1669.0, + 1406.0, + 1708.0, + 291.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1702.0, + 596.0, + 1702.0, + 596.0, + 1736.0, + 294.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1907.0, + 1406.0, + 1907.0, + 1406.0, + 1940.0, + 294.0, + 1940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1934.0, + 746.0, + 1934.0, + 746.0, + 1975.0, + 292.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1934.0, + 1259.0, + 1934.0, + 1259.0, + 1975.0, + 762.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 1934.0, + 1407.0, + 1934.0, + 1407.0, + 1975.0, + 1350.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1965.0, + 295.0, + 1965.0, + 295.0, + 2009.0, + 291.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1965.0, + 1038.0, + 1965.0, + 1038.0, + 2009.0, + 378.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 1965.0, + 1408.0, + 1965.0, + 1408.0, + 2009.0, + 1056.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 296.0, + 2000.0, + 296.0, + 2040.0, + 293.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 2000.0, + 700.0, + 2000.0, + 700.0, + 2040.0, + 651.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 2000.0, + 1199.0, + 2000.0, + 1199.0, + 2040.0, + 1050.0, + 2040.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1333, + 1406, + 1333, + 1406, + 1630, + 297, + 1630 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 333, + 1404, + 333, + 1404, + 609, + 297, + 609 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 620, + 1403, + 620, + 1403, + 770, + 297, + 770 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1914, + 1403, + 1914, + 1403, + 2035, + 298, + 2035 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 229, + 1400, + 229, + 1400, + 320, + 300, + 320 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 369, + 1015, + 1090, + 1015, + 1090, + 1187, + 369, + 1187 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 295, + 1714, + 1400, + 1714, + 1400, + 1776, + 295, + 1776 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 297, + 886, + 1399, + 886, + 1399, + 948, + 297, + 948 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 618, + 1792, + 1083, + 1792, + 1083, + 1834, + 618, + 1834 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 593, + 785, + 1102, + 785, + 1102, + 828, + 593, + 828 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 294, + 960, + 1328, + 960, + 1328, + 994, + 294, + 994 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 300, + 840, + 1209, + 840, + 1209, + 873, + 300, + 873 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 299, + 1662, + 653, + 1662, + 653, + 1694, + 299, + 1694 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 300, + 1861, + 732, + 1861, + 732, + 1893, + 300, + 1893 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 298, + 1208, + 1073, + 1208, + 1073, + 1242, + 298, + 1242 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 298, + 1277, + 496, + 1277, + 496, + 1309, + 298, + 1309 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1799, + 1400, + 1799, + 1400, + 1828, + 1366, + 1828 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 857, + 2089, + 857, + 2111, + 840, + 2111 + ], + "score": 0.79 + }, + { + "category_id": 9, + "poly": [ + 1366, + 793, + 1400, + 793, + 1400, + 822, + 1366, + 822 + ], + "score": 0.623 + }, + { + "category_id": 9, + "poly": [ + 1366, + 792, + 1399, + 792, + 1399, + 822, + 1366, + 822 + ], + "score": 0.373 + }, + { + "category_id": 13, + "poly": [ + 298, + 2002, + 496, + 2002, + 496, + 2039, + 298, + 2039 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\mathbb { E } \\left[ \\sum _ { \\tau = 0 } ^ { \\infty } \\gamma ^ { \\tau } r ^ { t + \\tau } \\right] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 611, + 1017, + 748, + 1017, + 748, + 1053, + 611, + 1053 + ], + "score": 0.92, + "latex": "\\mathcal { M } ( \\Gamma _ { d } ^ { t } ; \\theta _ { M } )" + }, + { + "category_id": 14, + "poly": [ + 614, + 1791, + 1083, + 1791, + 1083, + 1834, + 614, + 1834 + ], + "score": 0.92, + "latex": "\\mathcal { L } ( \\theta _ { M } , \\theta _ { d } ) = \\mathbb { E } \\left[ - \\log \\pi _ { d } ( a _ { d } ^ { t } | s _ { d } ^ { t } , m ^ { t - 1 } ) \\right] ." + }, + { + "category_id": 13, + "poly": [ + 1111, + 838, + 1199, + 838, + 1199, + 876, + 1111, + 876 + ], + "score": 0.92, + "latex": "( s _ { d } ^ { t } , a _ { d } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 838, + 1149, + 1026, + 1149, + 1026, + 1187, + 838, + 1187 + ], + "score": 0.92, + "latex": "V ( s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { V } )" + }, + { + "category_id": 13, + "poly": [ + 951, + 422, + 1139, + 422, + 1139, + 457, + 951, + 457 + ], + "score": 0.92, + "latex": "\\pi _ { d } ( a _ { d } ^ { t } \\vert s _ { d } ^ { t } , m ^ { t - 1 } )" + }, + { + "category_id": 14, + "poly": [ + 595, + 784, + 1102, + 784, + 1102, + 826, + 595, + 826 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { r ^ { t } = R ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } , m ^ { t } ) = | | m ^ { t } - m ^ { t - 1 } | | ^ { 2 } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 432, + 680, + 608, + 680, + 608, + 714, + 432, + 714 + ], + "score": 0.92, + "latex": "\\pi _ { l } ( a _ { l } ^ { t } | \\dot { s _ { l } ^ { t } } , m ^ { t - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 756, + 1104, + 968, + 1104, + 968, + 1142, + 756, + 1142 + ], + "score": 0.92, + "latex": "\\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { l } )" + }, + { + "category_id": 13, + "poly": [ + 1109, + 365, + 1266, + 365, + 1266, + 398, + 1109, + 398 + ], + "score": 0.91, + "latex": "m ^ { t } = \\mathcal { M } ( \\Gamma _ { d } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 1308, + 1973, + 1405, + 1973, + 1405, + 2007, + 1308, + 2007 + ], + "score": 0.91, + "latex": "J ( \\theta _ { l } ) =" + }, + { + "category_id": 13, + "poly": [ + 853, + 1061, + 1081, + 1061, + 1081, + 1098, + 853, + 1098 + ], + "score": 0.91, + "latex": "\\pi _ { d } ( a _ { d } ^ { t } \\vert s _ { d } ^ { t } , m ^ { t - 1 } ; \\theta _ { d } )" + }, + { + "category_id": 13, + "poly": [ + 697, + 679, + 762, + 679, + 762, + 709, + 697, + 709 + ], + "score": 0.91, + "latex": "m ^ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 567, + 487, + 659, + 487, + 659, + 517, + 567, + 517 + ], + "score": 0.9, + "latex": "{ \\bf m } ^ { 0 } = { \\bf 0 }" + }, + { + "category_id": 13, + "poly": [ + 795, + 455, + 825, + 455, + 825, + 488, + 795, + 488 + ], + "score": 0.89, + "latex": "\\hat { a } _ { d } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1032, + 547, + 1068, + 547, + 1068, + 574, + 1032, + 574 + ], + "score": 0.88, + "latex": "m ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1174, + 334, + 1239, + 334, + 1239, + 366, + 1174, + 366 + ], + "score": 0.88, + "latex": "\\mathcal { M } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1215, + 455, + 1252, + 455, + 1252, + 484, + 1215, + 484 + ], + "score": 0.88, + "latex": "m ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 372, + 840, + 407, + 840, + 407, + 868, + 372, + 868 + ], + "score": 0.86, + "latex": "m ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 434, + 581, + 465, + 581, + 465, + 607, + 434, + 607 + ], + "score": 0.84, + "latex": "\\pi _ { d }" + }, + { + "category_id": 13, + "poly": [ + 581, + 2008, + 602, + 2008, + 602, + 2035, + 581, + 2035 + ], + "score": 0.84, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 374, + 1570, + 403, + 1570, + 403, + 1596, + 374, + 1596 + ], + "score": 0.8, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 1271, + 399, + 1283, + 399, + 1283, + 421, + 1271, + 421 + ], + "score": 0.78, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 343, + 1716, + 372, + 1716, + 372, + 1744, + 343, + 1744 + ], + "score": 0.33, + "latex": "\\mathrm { I L }" + }, + { + "category_id": 13, + "poly": [ + 593, + 1512, + 624, + 1512, + 624, + 1539, + 593, + 1539 + ], + "score": 0.25, + "latex": "\\mathrm { I L }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1659.0, + 654.0, + 1659.0, + 654.0, + 1698.0, + 294.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1859.0, + 735.0, + 1859.0, + 735.0, + 1897.0, + 294.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1277.0, + 497.0, + 1277.0, + 497.0, + 1313.0, + 294.0, + 1313.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": [ + 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, + 1334.0, + 1407.0, + 1334.0, + 1407.0, + 1372.0, + 292.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1367.0, + 1404.0, + 1367.0, + 1404.0, + 1398.0, + 295.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1393.0, + 1407.0, + 1393.0, + 1407.0, + 1429.0, + 294.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1423.0, + 1408.0, + 1423.0, + 1408.0, + 1458.0, + 295.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1452.0, + 1406.0, + 1452.0, + 1406.0, + 1485.0, + 292.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1478.0, + 1406.0, + 1478.0, + 1406.0, + 1519.0, + 292.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1508.0, + 592.0, + 1508.0, + 592.0, + 1549.0, + 292.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1508.0, + 1406.0, + 1508.0, + 1406.0, + 1549.0, + 625.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1539.0, + 1408.0, + 1539.0, + 1408.0, + 1575.0, + 294.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1565.0, + 373.0, + 1565.0, + 373.0, + 1607.0, + 291.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1565.0, + 1407.0, + 1565.0, + 1407.0, + 1607.0, + 404.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1599.0, + 703.0, + 1599.0, + 703.0, + 1630.0, + 294.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 333.0, + 1173.0, + 333.0, + 1173.0, + 365.0, + 296.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 333.0, + 1402.0, + 333.0, + 1402.0, + 365.0, + 1240.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 363.0, + 1108.0, + 363.0, + 1108.0, + 399.0, + 295.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 363.0, + 1406.0, + 363.0, + 1406.0, + 399.0, + 1267.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 393.0, + 1270.0, + 393.0, + 1270.0, + 425.0, + 294.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 393.0, + 1402.0, + 393.0, + 1402.0, + 425.0, + 1284.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 414.0, + 950.0, + 414.0, + 950.0, + 467.0, + 288.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 414.0, + 1411.0, + 414.0, + 1411.0, + 467.0, + 1140.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 455.0, + 794.0, + 455.0, + 794.0, + 492.0, + 295.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 455.0, + 1214.0, + 455.0, + 1214.0, + 492.0, + 826.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 455.0, + 1406.0, + 455.0, + 1406.0, + 492.0, + 1253.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 485.0, + 566.0, + 485.0, + 566.0, + 523.0, + 294.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 485.0, + 1405.0, + 485.0, + 1405.0, + 523.0, + 660.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 518.0, + 1405.0, + 518.0, + 1405.0, + 551.0, + 295.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 544.0, + 1031.0, + 544.0, + 1031.0, + 582.0, + 292.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 544.0, + 1405.0, + 544.0, + 1405.0, + 582.0, + 1069.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 571.0, + 433.0, + 571.0, + 433.0, + 615.0, + 293.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 571.0, + 477.0, + 571.0, + 477.0, + 615.0, + 466.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 622.0, + 1405.0, + 622.0, + 1405.0, + 655.0, + 295.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 648.0, + 1407.0, + 648.0, + 1407.0, + 686.0, + 294.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 677.0, + 431.0, + 677.0, + 431.0, + 717.0, + 293.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 677.0, + 696.0, + 677.0, + 696.0, + 717.0, + 609.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 677.0, + 1408.0, + 677.0, + 1408.0, + 717.0, + 763.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 708.0, + 1405.0, + 708.0, + 1405.0, + 746.0, + 294.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 738.0, + 1105.0, + 738.0, + 1105.0, + 773.0, + 292.0, + 773.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": [ + 296.0, + 1945.0, + 1405.0, + 1945.0, + 1405.0, + 1977.0, + 296.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 1973.0, + 297.0, + 1973.0, + 297.0, + 2054.0, + 281.0, + 2054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 1973.0, + 580.0, + 1973.0, + 580.0, + 2054.0, + 497.0, + 2054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 1973.0, + 1307.0, + 1973.0, + 1307.0, + 2054.0, + 603.0, + 2054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 227.0, + 1406.0, + 227.0, + 1406.0, + 266.0, + 293.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 294.0, + 295.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 290.0, + 786.0, + 290.0, + 786.0, + 321.0, + 295.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1017.0, + 610.0, + 1017.0, + 610.0, + 1054.0, + 369.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 1017.0, + 759.0, + 1017.0, + 759.0, + 1054.0, + 749.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1056.0, + 852.0, + 1056.0, + 852.0, + 1102.0, + 367.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1056.0, + 1093.0, + 1056.0, + 1093.0, + 1102.0, + 1082.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1105.0, + 755.0, + 1105.0, + 755.0, + 1142.0, + 369.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1105.0, + 979.0, + 1105.0, + 979.0, + 1142.0, + 969.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1150.0, + 837.0, + 1150.0, + 837.0, + 1190.0, + 367.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 1150.0, + 1036.0, + 1150.0, + 1036.0, + 1190.0, + 1027.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1711.0, + 342.0, + 1711.0, + 342.0, + 1753.0, + 293.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1711.0, + 1405.0, + 1711.0, + 1405.0, + 1753.0, + 373.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1745.0, + 1057.0, + 1745.0, + 1057.0, + 1779.0, + 293.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 884.0, + 1404.0, + 884.0, + 1404.0, + 923.0, + 295.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 916.0, + 778.0, + 916.0, + 778.0, + 951.0, + 295.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 955.0, + 1333.0, + 955.0, + 1333.0, + 1003.0, + 290.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 833.0, + 371.0, + 833.0, + 371.0, + 879.0, + 293.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 833.0, + 1110.0, + 833.0, + 1110.0, + 879.0, + 408.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 833.0, + 1210.0, + 833.0, + 1210.0, + 879.0, + 1200.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1206.0, + 1075.0, + 1206.0, + 1075.0, + 1245.0, + 295.0, + 1245.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1605, + 1405, + 1605, + 1405, + 1813, + 297, + 1813 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1826, + 1404, + 1826, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 912, + 1404, + 912, + 1404, + 1091, + 298, + 1091 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 606, + 1404, + 606, + 1404, + 726, + 297, + 726 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1104, + 1403, + 1104, + 1403, + 1225, + 298, + 1225 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 365, + 1406, + 365, + 1406, + 462, + 297, + 462 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 350, + 1324, + 1352, + 1324, + 1352, + 1514, + 350, + 1514 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 600, + 479, + 1093, + 479, + 1093, + 576, + 600, + 576 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 298, + 836, + 1404, + 836, + 1404, + 899, + 298, + 899 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 295, + 229, + 1404, + 229, + 1404, + 292, + 295, + 292 + ], + "score": 0.931 + }, + { + "category_id": 8, + "poly": [ + 372, + 305, + 1322, + 305, + 1322, + 350, + 372, + 350 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 857, + 74, + 857, + 105, + 297, + 105 + ], + "score": 0.919 + }, + { + "category_id": 4, + "poly": [ + 609, + 1535, + 1092, + 1535, + 1092, + 1567, + 609, + 1567 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 299, + 769, + 558, + 769, + 558, + 804, + 299, + 804 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 298, + 1261, + 445, + 1261, + 445, + 1291, + 298, + 1291 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1366, + 513, + 1400, + 513, + 1400, + 543, + 1366, + 543 + ], + "score": 0.876 + }, + { + "category_id": 9, + "poly": [ + 1366, + 313, + 1400, + 313, + 1400, + 344, + 1366, + 344 + ], + "score": 0.86 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.741 + }, + { + "category_id": 14, + "poly": [ + 599, + 477, + 1100, + 477, + 1100, + 577, + 599, + 577 + ], + "score": 0.93, + "latex": "\\nabla _ { \\theta _ { V } } \\frac { 1 } { 2 } \\left( \\sum _ { \\tau = 0 } ^ { \\infty } \\gamma ^ { \\tau } r ^ { t + \\tau } - V ( s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { V } ) \\right) ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 374, + 365, + 551, + 365, + 551, + 401, + 374, + 401 + ], + "score": 0.92, + "latex": "A ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 996, + 364, + 1407, + 364, + 1407, + 402, + 996, + 402 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { A ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } ) = \\sum _ { \\tau = 0 } ^ { \\infty } \\gamma ^ { \\tau } r ^ { t + \\tau } \\ - } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 400, + 441, + 400, + 441, + 434, + 298, + 434 + ], + "score": 0.91, + "latex": "V ( s _ { l } ^ { t } , m ^ { t - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1085, + 695, + 1124, + 695, + 1124, + 724, + 1085, + 724 + ], + "score": 0.91, + "latex": "\\theta _ { M }" + }, + { + "category_id": 14, + "poly": [ + 376, + 305, + 1321, + 305, + 1321, + 349, + 376, + 349 + ], + "score": 0.9, + "latex": "\\nabla _ { \\theta _ { l } } J ( \\theta _ { l } ) = \\nabla _ { \\theta _ { l } } \\left[ \\log \\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { l } ) A ( s _ { l } ^ { t } , m ^ { t - 1 } , a _ { l } ^ { t } ) + \\lambda \\mathcal { H } ( \\pi _ { l } ( \\cdot | s _ { l } ^ { t } , m ^ { t - 1 } ; \\theta _ { l } ) ) \\right] ," + }, + { + "category_id": 13, + "poly": [ + 1056, + 637, + 1095, + 637, + 1095, + 666, + 1056, + 666 + ], + "score": 0.9, + "latex": "\\theta _ { M }" + }, + { + "category_id": 13, + "poly": [ + 492, + 402, + 547, + 402, + 547, + 434, + 492, + 434 + ], + "score": 0.89, + "latex": "\\mathcal { H } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1145, + 403, + 1250, + 403, + 1250, + 430, + 1145, + 430 + ], + "score": 0.88, + "latex": "\\lambda = 0 . 0 1" + }, + { + "category_id": 13, + "poly": [ + 885, + 664, + 922, + 664, + 922, + 692, + 885, + 692 + ], + "score": 0.88, + "latex": "\\mathrm { \\Sigma } _ { m } \\bar { t }" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1351.0, + 497.0, + 1351.0, + 497.0, + 1376.0, + 388.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 1349.0, + 525.0, + 1349.0, + 525.0, + 1363.0, + 511.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 1350.0, + 579.0, + 1350.0, + 579.0, + 1377.0, + 528.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1343.0, + 945.0, + 1343.0, + 945.0, + 1362.0, + 927.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 1344.0, + 1060.0, + 1344.0, + 1060.0, + 1363.0, + 1042.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 1352.0, + 1180.0, + 1352.0, + 1180.0, + 1368.0, + 1166.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1361.0, + 385.0, + 1361.0, + 385.0, + 1374.0, + 365.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1368.0, + 716.0, + 1368.0, + 716.0, + 1380.0, + 699.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1368.0, + 903.0, + 1368.0, + 903.0, + 1382.0, + 889.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1380.0, + 457.0, + 1380.0, + 457.0, + 1433.0, + 388.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1397.0, + 589.0, + 1397.0, + 589.0, + 1427.0, + 527.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1386.0, + 900.0, + 1386.0, + 900.0, + 1394.0, + 891.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1391.0, + 1168.0, + 1391.0, + 1168.0, + 1412.0, + 1148.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 1391.0, + 1200.0, + 1391.0, + 1200.0, + 1413.0, + 1176.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1388.0, + 1261.0, + 1388.0, + 1261.0, + 1438.0, + 1203.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1394.0, + 1281.0, + 1394.0, + 1281.0, + 1408.0, + 1262.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1392.0, + 1310.0, + 1392.0, + 1310.0, + 1412.0, + 1292.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1433.0, + 385.0, + 1433.0, + 385.0, + 1469.0, + 365.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1436.0, + 445.0, + 1436.0, + 445.0, + 1469.0, + 389.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1442.0, + 597.0, + 1442.0, + 597.0, + 1471.0, + 501.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1438.0, + 752.0, + 1438.0, + 752.0, + 1458.0, + 734.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1454.0, + 835.0, + 1454.0, + 835.0, + 1473.0, + 814.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1459.0, + 1015.0, + 1459.0, + 1015.0, + 1471.0, + 999.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1439.0, + 1056.0, + 1439.0, + 1056.0, + 1450.0, + 1045.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1439.0, + 1223.0, + 1439.0, + 1223.0, + 1460.0, + 1205.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 1486.0, + 755.0, + 1486.0, + 755.0, + 1515.0, + 656.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1486.0, + 965.0, + 1486.0, + 965.0, + 1514.0, + 794.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 1487.0, + 1120.0, + 1487.0, + 1120.0, + 1513.0, + 981.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1484.0, + 1290.0, + 1484.0, + 1290.0, + 1515.0, + 1194.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 1368.5, + 531.0, + 1368.5, + 531.0, + 1380.5, + 499.0, + 1380.5 + ], + "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": [ + 602.0, + 1531.0, + 1094.0, + 1531.0, + 1094.0, + 1568.0, + 602.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 769.0, + 561.0, + 769.0, + 561.0, + 809.0, + 294.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1259.0, + 449.0, + 1259.0, + 449.0, + 1295.0, + 294.0, + 1295.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, + 1606.0, + 1405.0, + 1606.0, + 1405.0, + 1639.0, + 295.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1633.0, + 1410.0, + 1633.0, + 1410.0, + 1672.0, + 294.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1662.0, + 1405.0, + 1662.0, + 1405.0, + 1699.0, + 292.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1691.0, + 1406.0, + 1691.0, + 1406.0, + 1731.0, + 292.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1722.0, + 1405.0, + 1722.0, + 1405.0, + 1758.0, + 292.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1750.0, + 1405.0, + 1750.0, + 1405.0, + 1787.0, + 292.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1781.0, + 456.0, + 1781.0, + 456.0, + 1814.0, + 295.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1825.0, + 1407.0, + 1825.0, + 1407.0, + 1861.0, + 294.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1855.0, + 1406.0, + 1855.0, + 1406.0, + 1890.0, + 294.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1885.0, + 1405.0, + 1885.0, + 1405.0, + 1919.0, + 294.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1914.0, + 1404.0, + 1914.0, + 1404.0, + 1950.0, + 294.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1946.0, + 1407.0, + 1946.0, + 1407.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1975.0, + 1406.0, + 1975.0, + 1406.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 1404.0, + 2001.0, + 1404.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 908.0, + 1405.0, + 908.0, + 1405.0, + 952.0, + 292.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 942.0, + 1409.0, + 942.0, + 1409.0, + 980.0, + 293.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 972.0, + 1408.0, + 972.0, + 1408.0, + 1006.0, + 294.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 996.0, + 1405.0, + 996.0, + 1405.0, + 1039.0, + 292.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1030.0, + 1406.0, + 1030.0, + 1406.0, + 1065.0, + 294.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1060.0, + 1120.0, + 1060.0, + 1120.0, + 1094.0, + 293.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 603.0, + 1406.0, + 603.0, + 1406.0, + 643.0, + 292.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 634.0, + 1055.0, + 634.0, + 1055.0, + 669.0, + 295.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 634.0, + 1404.0, + 634.0, + 1404.0, + 669.0, + 1096.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 665.0, + 884.0, + 665.0, + 884.0, + 699.0, + 295.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 665.0, + 1405.0, + 665.0, + 1405.0, + 699.0, + 923.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 689.0, + 1084.0, + 689.0, + 1084.0, + 731.0, + 292.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 689.0, + 1137.0, + 689.0, + 1137.0, + 731.0, + 1125.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1105.0, + 1404.0, + 1105.0, + 1404.0, + 1137.0, + 294.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1133.0, + 1407.0, + 1133.0, + 1407.0, + 1168.0, + 292.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1162.0, + 1405.0, + 1162.0, + 1405.0, + 1200.0, + 292.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1192.0, + 602.0, + 1192.0, + 602.0, + 1228.0, + 295.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 357.0, + 373.0, + 357.0, + 373.0, + 413.0, + 285.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 357.0, + 995.0, + 357.0, + 995.0, + 413.0, + 552.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 393.0, + 297.0, + 393.0, + 297.0, + 441.0, + 291.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 393.0, + 491.0, + 393.0, + 491.0, + 441.0, + 442.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 393.0, + 1144.0, + 393.0, + 1144.0, + 441.0, + 548.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 393.0, + 1409.0, + 393.0, + 1409.0, + 441.0, + 1251.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 430.0, + 1112.0, + 430.0, + 1112.0, + 466.0, + 292.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 838.0, + 1402.0, + 838.0, + 1402.0, + 870.0, + 297.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 866.0, + 1408.0, + 866.0, + 1408.0, + 903.0, + 295.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 259.0, + 761.0, + 259.0, + 761.0, + 295.0, + 294.0, + 295.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 643, + 1404, + 643, + 1404, + 938, + 297, + 938 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 333, + 1403, + 333, + 1403, + 628, + 298, + 628 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1915, + 1403, + 1915, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 297, + 1086, + 1402, + 1086, + 1402, + 1389, + 297, + 1389 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 434, + 1494, + 1265, + 1494, + 1265, + 1790, + 434, + 1790 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1402, + 229, + 1402, + 321, + 299, + 321 + ], + "score": 0.955 + }, + { + "category_id": 4, + "poly": [ + 299, + 1815, + 1403, + 1815, + 1403, + 1875, + 299, + 1875 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 298, + 953, + 1053, + 953, + 1053, + 984, + 298, + 984 + ], + "score": 0.91 + }, + { + "category_id": 4, + "poly": [ + 301, + 1413, + 1397, + 1413, + 1397, + 1447, + 301, + 1447 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.828 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.786 + }, + { + "category_id": 0, + "poly": [ + 298, + 1020, + 919, + 1020, + 919, + 1051, + 298, + 1051 + ], + "score": 0.426 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 855, + 76, + 855, + 104, + 300, + 104 + ], + "score": 0.263 + }, + { + "category_id": 4, + "poly": [ + 298, + 1020, + 919, + 1020, + 919, + 1051, + 298, + 1051 + ], + "score": 0.213 + }, + { + "category_id": 13, + "poly": [ + 570, + 2003, + 634, + 2003, + 634, + 2036, + 570, + 2036 + ], + "score": 0.91, + "latex": "\\mathcal { M } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 353, + 1845, + 407, + 1845, + 407, + 1874, + 353, + 1874 + ], + "score": 0.86, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 297, + 2007, + 330, + 2007, + 330, + 2034, + 297, + 2034 + ], + "score": 0.85, + "latex": "\\pi _ { d }" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1091.0, + 550.0, + 1091.0, + 550.0, + 1112.0, + 438.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 1091.0, + 676.0, + 1091.0, + 676.0, + 1112.0, + 596.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1091.0, + 908.0, + 1091.0, + 908.0, + 1112.0, + 767.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1091.0, + 1109.0, + 1091.0, + 1109.0, + 1112.0, + 956.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1091.0, + 1298.0, + 1091.0, + 1298.0, + 1112.0, + 1156.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1107.0, + 552.0, + 1107.0, + 552.0, + 1130.0, + 470.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1108.0, + 720.0, + 1108.0, + 720.0, + 1128.0, + 597.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1108.0, + 821.0, + 1108.0, + 821.0, + 1128.0, + 765.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1110.0, + 1080.0, + 1110.0, + 1080.0, + 1127.0, + 957.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1126.0, + 492.0, + 1126.0, + 492.0, + 1151.0, + 421.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1129.0, + 801.0, + 1129.0, + 801.0, + 1149.0, + 661.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1125.0, + 1062.0, + 1125.0, + 1062.0, + 1152.0, + 949.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 1125.0, + 1316.0, + 1125.0, + 1316.0, + 1153.0, + 1246.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1156.0, + 341.0, + 1156.0, + 341.0, + 1337.0, + 299.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1153.0, + 619.0, + 1153.0, + 619.0, + 1205.0, + 592.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1154.0, + 893.0, + 1154.0, + 893.0, + 1205.0, + 867.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 1154.0, + 1170.0, + 1154.0, + 1170.0, + 1205.0, + 1142.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1219.0, + 340.0, + 1219.0, + 340.0, + 1234.0, + 320.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1217.0, + 617.0, + 1217.0, + 617.0, + 1236.0, + 593.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1216.0, + 892.0, + 1216.0, + 892.0, + 1236.0, + 867.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1217.0, + 1170.0, + 1217.0, + 1170.0, + 1236.0, + 1143.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 1244.0, + 979.0, + 1244.0, + 979.0, + 1253.0, + 962.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1251.0, + 341.0, + 1251.0, + 341.0, + 1266.0, + 320.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1249.0, + 619.0, + 1249.0, + 619.0, + 1268.0, + 593.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1259.0, + 635.0, + 1259.0, + 635.0, + 1270.0, + 626.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1249.0, + 892.0, + 1249.0, + 892.0, + 1268.0, + 868.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1249.0, + 1168.0, + 1249.0, + 1168.0, + 1268.0, + 1143.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1282.0, + 340.0, + 1282.0, + 340.0, + 1297.0, + 320.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1280.0, + 617.0, + 1280.0, + 617.0, + 1299.0, + 593.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1280.0, + 893.0, + 1280.0, + 893.0, + 1299.0, + 868.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1280.0, + 1168.0, + 1280.0, + 1168.0, + 1298.0, + 1143.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1314.0, + 341.0, + 1314.0, + 341.0, + 1328.0, + 320.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1312.0, + 619.0, + 1312.0, + 619.0, + 1331.0, + 593.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1312.0, + 893.0, + 1312.0, + 893.0, + 1331.0, + 867.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1313.0, + 1170.0, + 1313.0, + 1170.0, + 1331.0, + 1143.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1340.0, + 670.0, + 1340.0, + 670.0, + 1350.0, + 659.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1338.0, + 1203.0, + 1338.0, + 1203.0, + 1347.0, + 1193.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1345.0, + 341.0, + 1345.0, + 341.0, + 1360.0, + 321.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 1351.0, + 406.0, + 1351.0, + 406.0, + 1370.0, + 385.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1351.0, + 465.0, + 1351.0, + 465.0, + 1370.0, + 438.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 1351.0, + 519.0, + 1351.0, + 519.0, + 1370.0, + 493.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1351.0, + 573.0, + 1351.0, + 573.0, + 1370.0, + 546.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1352.0, + 666.0, + 1352.0, + 666.0, + 1367.0, + 646.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 1351.0, + 706.0, + 1351.0, + 706.0, + 1368.0, + 678.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1351.0, + 743.0, + 1351.0, + 743.0, + 1368.0, + 713.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 1351.0, + 778.0, + 1351.0, + 778.0, + 1368.0, + 749.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1351.0, + 813.0, + 1351.0, + 813.0, + 1368.0, + 784.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1350.0, + 848.0, + 1350.0, + 848.0, + 1368.0, + 822.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1351.0, + 960.0, + 1351.0, + 960.0, + 1368.0, + 932.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1351.0, + 1003.0, + 1351.0, + 1003.0, + 1368.0, + 975.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 1351.0, + 1047.0, + 1351.0, + 1047.0, + 1368.0, + 1018.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1351.0, + 1089.0, + 1351.0, + 1089.0, + 1368.0, + 1060.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 1351.0, + 1132.0, + 1351.0, + 1132.0, + 1368.0, + 1104.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1345.0, + 1182.0, + 1345.0, + 1182.0, + 1367.0, + 1143.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 1351.0, + 1225.0, + 1351.0, + 1225.0, + 1368.0, + 1198.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 1351.0, + 1264.0, + 1351.0, + 1264.0, + 1368.0, + 1236.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1351.0, + 1303.0, + 1351.0, + 1303.0, + 1368.0, + 1274.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1313.0, + 1351.0, + 1340.0, + 1351.0, + 1340.0, + 1368.0, + 1313.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 1351.0, + 1379.0, + 1351.0, + 1379.0, + 1368.0, + 1352.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1362.0, + 914.0, + 1362.0, + 914.0, + 1390.0, + 822.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.75, + 1341.5, + 625.75, + 1341.5, + 625.75, + 1367.5, + 597.75, + 1367.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.25, + 1342.0, + 912.25, + 1342.0, + 912.25, + 1368.5, + 868.25, + 1368.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1499.0, + 605.0, + 1499.0, + 605.0, + 1519.0, + 526.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1501.0, + 830.0, + 1501.0, + 830.0, + 1517.0, + 693.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1499.0, + 1027.0, + 1499.0, + 1027.0, + 1518.0, + 879.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 1499.0, + 1213.0, + 1499.0, + 1213.0, + 1518.0, + 1074.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1512.0, + 647.0, + 1512.0, + 647.0, + 1537.0, + 526.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1515.0, + 745.0, + 1515.0, + 745.0, + 1536.0, + 692.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1514.0, + 1002.0, + 1514.0, + 1002.0, + 1536.0, + 878.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1546.0, + 480.0, + 1546.0, + 480.0, + 1562.0, + 457.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 1535.0, + 627.0, + 1535.0, + 627.0, + 1558.0, + 558.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1545.0, + 755.0, + 1545.0, + 755.0, + 1564.0, + 729.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1534.0, + 934.0, + 1534.0, + 934.0, + 1559.0, + 797.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 1545.0, + 1028.0, + 1545.0, + 1028.0, + 1564.0, + 1001.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 1534.0, + 1193.0, + 1534.0, + 1193.0, + 1559.0, + 1085.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 1569.0, + 462.0, + 1569.0, + 462.0, + 1739.0, + 436.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1578.0, + 754.0, + 1578.0, + 754.0, + 1597.0, + 729.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1578.0, + 1027.0, + 1578.0, + 1027.0, + 1597.0, + 1002.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1580.0, + 479.0, + 1580.0, + 479.0, + 1596.0, + 457.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1613.0, + 478.0, + 1613.0, + 478.0, + 1630.0, + 457.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1612.0, + 754.0, + 1612.0, + 754.0, + 1631.0, + 729.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1612.0, + 1026.0, + 1612.0, + 1026.0, + 1631.0, + 1002.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1647.0, + 479.0, + 1647.0, + 479.0, + 1663.0, + 456.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1645.0, + 754.0, + 1645.0, + 754.0, + 1664.0, + 729.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1645.0, + 1026.0, + 1645.0, + 1026.0, + 1665.0, + 1002.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1680.0, + 478.0, + 1680.0, + 478.0, + 1696.0, + 457.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1679.0, + 753.0, + 1679.0, + 753.0, + 1698.0, + 729.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1679.0, + 1026.0, + 1679.0, + 1026.0, + 1698.0, + 1002.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1714.0, + 479.0, + 1714.0, + 479.0, + 1729.0, + 457.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1712.0, + 753.0, + 1712.0, + 753.0, + 1731.0, + 729.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1712.0, + 1027.0, + 1712.0, + 1027.0, + 1732.0, + 1002.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 1747.0, + 479.0, + 1747.0, + 479.0, + 1762.0, + 458.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1754.0, + 543.0, + 1754.0, + 543.0, + 1770.0, + 522.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1750.0, + 601.0, + 1750.0, + 601.0, + 1773.0, + 574.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 1752.0, + 656.0, + 1752.0, + 656.0, + 1771.0, + 628.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 1753.0, + 710.0, + 1753.0, + 710.0, + 1771.0, + 682.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1754.0, + 800.0, + 1754.0, + 800.0, + 1770.0, + 780.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1754.0, + 838.0, + 1754.0, + 838.0, + 1770.0, + 813.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1753.0, + 877.0, + 1753.0, + 877.0, + 1771.0, + 848.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1753.0, + 912.0, + 1753.0, + 912.0, + 1771.0, + 883.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1753.0, + 948.0, + 1753.0, + 948.0, + 1771.0, + 919.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1753.0, + 983.0, + 1753.0, + 983.0, + 1771.0, + 955.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1746.0, + 1049.0, + 1746.0, + 1049.0, + 1771.0, + 1002.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1754.0, + 1091.0, + 1754.0, + 1091.0, + 1770.0, + 1066.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1754.0, + 1134.0, + 1754.0, + 1134.0, + 1770.0, + 1109.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 1753.0, + 1179.0, + 1753.0, + 1179.0, + 1771.0, + 1150.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1753.0, + 1222.0, + 1753.0, + 1222.0, + 1771.0, + 1194.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1754.0, + 1263.0, + 1754.0, + 1263.0, + 1770.0, + 1239.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1766.0, + 909.0, + 1766.0, + 909.0, + 1792.0, + 822.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 1744.5, + 762.0, + 1744.5, + 762.0, + 1769.5, + 732.0, + 1769.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1815.0, + 1403.0, + 1815.0, + 1403.0, + 1850.0, + 295.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1844.0, + 352.0, + 1844.0, + 352.0, + 1875.0, + 295.0, + 1875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1844.0, + 591.0, + 1844.0, + 591.0, + 1875.0, + 408.0, + 1875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1409.0, + 1401.0, + 1409.0, + 1401.0, + 1451.0, + 297.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1016.0, + 920.0, + 1016.0, + 920.0, + 1056.0, + 292.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 859.0, + 73.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1016.0, + 920.0, + 1016.0, + 920.0, + 1056.0, + 292.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 640.0, + 1405.0, + 640.0, + 1405.0, + 679.0, + 292.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 673.0, + 1404.0, + 673.0, + 1404.0, + 708.0, + 294.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 703.0, + 1402.0, + 703.0, + 1402.0, + 737.0, + 295.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 731.0, + 1404.0, + 731.0, + 1404.0, + 766.0, + 295.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 761.0, + 1404.0, + 761.0, + 1404.0, + 794.0, + 292.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 789.0, + 1405.0, + 789.0, + 1405.0, + 825.0, + 292.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 818.0, + 1404.0, + 818.0, + 1404.0, + 855.0, + 294.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 849.0, + 1404.0, + 849.0, + 1404.0, + 884.0, + 292.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 878.0, + 1405.0, + 878.0, + 1405.0, + 913.0, + 295.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 905.0, + 1386.0, + 905.0, + 1386.0, + 944.0, + 294.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 331.0, + 1405.0, + 331.0, + 1405.0, + 371.0, + 296.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 361.0, + 1405.0, + 361.0, + 1405.0, + 403.0, + 292.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 394.0, + 1404.0, + 394.0, + 1404.0, + 429.0, + 294.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 422.0, + 1405.0, + 422.0, + 1405.0, + 457.0, + 294.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 452.0, + 1403.0, + 452.0, + 1403.0, + 483.0, + 296.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 479.0, + 1407.0, + 479.0, + 1407.0, + 515.0, + 293.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 511.0, + 1405.0, + 511.0, + 1405.0, + 545.0, + 293.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 540.0, + 1404.0, + 540.0, + 1404.0, + 574.0, + 294.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 567.0, + 1405.0, + 567.0, + 1405.0, + 603.0, + 293.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 599.0, + 597.0, + 599.0, + 597.0, + 630.0, + 296.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1914.0, + 1407.0, + 1914.0, + 1407.0, + 1953.0, + 295.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1944.0, + 1405.0, + 1944.0, + 1405.0, + 1979.0, + 297.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2007.0, + 297.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 2002.0, + 569.0, + 2002.0, + 569.0, + 2040.0, + 331.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2040.0, + 635.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 263.0, + 294.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 258.0, + 1408.0, + 258.0, + 1408.0, + 294.0, + 294.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 289.0, + 1065.0, + 289.0, + 1065.0, + 323.0, + 294.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 948.0, + 1057.0, + 948.0, + 1057.0, + 989.0, + 294.0, + 989.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 585, + 1404, + 585, + 1404, + 938, + 298, + 938 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1504, + 1404, + 1504, + 1404, + 1741, + 298, + 1741 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 304, + 1405, + 304, + 1405, + 571, + 298, + 571 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1162, + 1403, + 1162, + 1403, + 1340, + 298, + 1340 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 300, + 952, + 1403, + 952, + 1403, + 1072, + 300, + 1072 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 344, + 1764, + 1343, + 1764, + 1343, + 1974, + 344, + 1974 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 300, + 1354, + 1399, + 1354, + 1399, + 1414, + 300, + 1414 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 295, + 230, + 1402, + 230, + 1402, + 290, + 295, + 290 + ], + "score": 0.947 + }, + { + "category_id": 4, + "poly": [ + 387, + 1983, + 1308, + 1983, + 1308, + 2015, + 387, + 2015 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 299, + 1106, + 920, + 1106, + 920, + 1137, + 299, + 1137 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 300, + 1449, + 1071, + 1449, + 1071, + 1480, + 300, + 1480 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.866 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 857, + 2088, + 857, + 2111, + 841, + 2111 + ], + "score": 0.762 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 855, + 76, + 855, + 104, + 300, + 104 + ], + "score": 0.109 + }, + { + "category_id": 13, + "poly": [ + 1068, + 392, + 1133, + 392, + 1133, + 422, + 1068, + 422 + ], + "score": 0.91, + "latex": "m ^ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1001, + 952, + 1038, + 952, + 1038, + 981, + 1001, + 981 + ], + "score": 0.88, + "latex": "m ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 669, + 732, + 721, + 732, + 721, + 761, + 669, + 761 + ], + "score": 0.86, + "latex": "10 \\%" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1763.0, + 518.0, + 1763.0, + 518.0, + 1789.0, + 451.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1765.0, + 795.0, + 1765.0, + 795.0, + 1787.0, + 671.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1763.0, + 1033.0, + 1763.0, + 1033.0, + 1789.0, + 932.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 1762.0, + 1263.0, + 1762.0, + 1263.0, + 1789.0, + 1200.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1779.0, + 386.0, + 1779.0, + 386.0, + 1801.0, + 356.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1779.0, + 635.0, + 1779.0, + 635.0, + 1801.0, + 604.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1778.0, + 884.0, + 1778.0, + 884.0, + 1796.0, + 855.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1789.0, + 901.0, + 1789.0, + 901.0, + 1798.0, + 888.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 1777.0, + 1135.0, + 1777.0, + 1135.0, + 1798.0, + 1103.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1793.0, + 921.0, + 1793.0, + 921.0, + 1804.0, + 910.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1799.0, + 928.0, + 1799.0, + 928.0, + 1807.0, + 919.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1810.0, + 395.0, + 1810.0, + 395.0, + 1923.0, + 334.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1806.0, + 633.0, + 1806.0, + 633.0, + 1828.0, + 604.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1808.0, + 884.0, + 1808.0, + 884.0, + 1831.0, + 854.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1816.0, + 956.0, + 1816.0, + 956.0, + 1827.0, + 947.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 1816.0, + 1132.0, + 1816.0, + 1132.0, + 1838.0, + 1103.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1833.0, + 634.0, + 1833.0, + 634.0, + 1854.0, + 604.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1842.0, + 885.0, + 1842.0, + 885.0, + 1865.0, + 854.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1859.0, + 633.0, + 1859.0, + 633.0, + 1881.0, + 604.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 1853.0, + 1132.0, + 1853.0, + 1132.0, + 1876.0, + 1103.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1876.0, + 882.0, + 1876.0, + 882.0, + 1899.0, + 854.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1905.0, + 383.0, + 1905.0, + 383.0, + 1927.0, + 356.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 1894.0, + 521.0, + 1894.0, + 521.0, + 1921.0, + 484.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1886.0, + 633.0, + 1886.0, + 633.0, + 1933.0, + 604.0, + 1933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1910.0, + 884.0, + 1910.0, + 884.0, + 1932.0, + 854.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1907.0, + 1079.0, + 1907.0, + 1079.0, + 1922.0, + 1064.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 1892.0, + 1132.0, + 1892.0, + 1132.0, + 1915.0, + 1103.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1932.0, + 581.0, + 1932.0, + 581.0, + 1945.0, + 564.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 1932.0, + 1133.0, + 1932.0, + 1133.0, + 1954.0, + 1103.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 1941.0, + 404.0, + 1941.0, + 404.0, + 1967.0, + 376.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1946.0, + 452.0, + 1946.0, + 452.0, + 1965.0, + 423.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 1945.0, + 500.0, + 1945.0, + 500.0, + 1966.0, + 468.0, + 1966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1946.0, + 547.0, + 1946.0, + 547.0, + 1965.0, + 518.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1945.0, + 593.0, + 1945.0, + 593.0, + 1963.0, + 564.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 1945.0, + 651.0, + 1945.0, + 651.0, + 1965.0, + 628.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 1944.0, + 719.0, + 1944.0, + 719.0, + 1966.0, + 687.0, + 1966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1944.0, + 782.0, + 1944.0, + 782.0, + 1966.0, + 750.0, + 1966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 1945.0, + 842.0, + 1945.0, + 842.0, + 1963.0, + 815.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1945.0, + 901.0, + 1945.0, + 901.0, + 1963.0, + 877.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 1946.0, + 942.0, + 1946.0, + 942.0, + 1963.0, + 912.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 1946.0, + 979.0, + 1946.0, + 979.0, + 1963.0, + 950.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1946.0, + 1016.0, + 1946.0, + 1016.0, + 1963.0, + 988.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 1946.0, + 1055.0, + 1946.0, + 1055.0, + 1963.0, + 1026.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1946.0, + 1091.0, + 1946.0, + 1091.0, + 1963.0, + 1062.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1945.0, + 1149.0, + 1945.0, + 1149.0, + 1965.0, + 1127.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1944.0, + 1222.0, + 1944.0, + 1222.0, + 1966.0, + 1192.0, + 1966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 1941.0, + 1292.0, + 1941.0, + 1292.0, + 1967.0, + 1260.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1956.0, + 892.0, + 1956.0, + 892.0, + 1976.0, + 825.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1801.5, + 452.0, + 1801.5, + 452.0, + 1842.0, + 444.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1838.0, + 783.0, + 1838.0, + 783.0, + 1872.0, + 780.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1907.5, + 1063.0, + 1907.5, + 1063.0, + 1931.5, + 1045.0, + 1931.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1978.0, + 1312.0, + 1978.0, + 1312.0, + 2020.0, + 386.0, + 2020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1102.0, + 924.0, + 1102.0, + 924.0, + 1142.0, + 293.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1448.0, + 1074.0, + 1448.0, + 1074.0, + 1483.0, + 294.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 859.0, + 73.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 584.0, + 1404.0, + 584.0, + 1404.0, + 620.0, + 294.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 613.0, + 1404.0, + 613.0, + 1404.0, + 651.0, + 293.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 642.0, + 1407.0, + 642.0, + 1407.0, + 679.0, + 292.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 671.0, + 1406.0, + 671.0, + 1406.0, + 707.0, + 292.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 702.0, + 1405.0, + 702.0, + 1405.0, + 738.0, + 293.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 729.0, + 668.0, + 729.0, + 668.0, + 768.0, + 293.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 729.0, + 1405.0, + 729.0, + 1405.0, + 768.0, + 722.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 760.0, + 1407.0, + 760.0, + 1407.0, + 795.0, + 293.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 789.0, + 1409.0, + 789.0, + 1409.0, + 826.0, + 293.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 818.0, + 1405.0, + 818.0, + 1405.0, + 854.0, + 294.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 848.0, + 1406.0, + 848.0, + 1406.0, + 885.0, + 291.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 873.0, + 1406.0, + 873.0, + 1406.0, + 915.0, + 292.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 908.0, + 632.0, + 908.0, + 632.0, + 940.0, + 296.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1504.0, + 1405.0, + 1504.0, + 1405.0, + 1540.0, + 295.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1532.0, + 1406.0, + 1532.0, + 1406.0, + 1570.0, + 293.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1562.0, + 1405.0, + 1562.0, + 1405.0, + 1597.0, + 291.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1592.0, + 1404.0, + 1592.0, + 1404.0, + 1625.0, + 293.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1621.0, + 1404.0, + 1621.0, + 1404.0, + 1658.0, + 294.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1651.0, + 1406.0, + 1651.0, + 1406.0, + 1688.0, + 294.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1678.0, + 1405.0, + 1678.0, + 1405.0, + 1717.0, + 293.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1707.0, + 1144.0, + 1707.0, + 1144.0, + 1749.0, + 291.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 306.0, + 1403.0, + 306.0, + 1403.0, + 338.0, + 296.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 334.0, + 1406.0, + 334.0, + 1406.0, + 370.0, + 295.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 365.0, + 1403.0, + 365.0, + 1403.0, + 397.0, + 296.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 388.0, + 1067.0, + 388.0, + 1067.0, + 431.0, + 292.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 388.0, + 1408.0, + 388.0, + 1408.0, + 431.0, + 1134.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 421.0, + 1408.0, + 421.0, + 1408.0, + 458.0, + 293.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 452.0, + 1407.0, + 452.0, + 1407.0, + 487.0, + 295.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 481.0, + 1407.0, + 481.0, + 1407.0, + 517.0, + 295.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 505.0, + 1407.0, + 505.0, + 1407.0, + 551.0, + 291.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 539.0, + 1318.0, + 539.0, + 1318.0, + 575.0, + 295.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1163.0, + 1405.0, + 1163.0, + 1405.0, + 1198.0, + 293.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1191.0, + 1405.0, + 1191.0, + 1405.0, + 1226.0, + 293.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1219.0, + 1405.0, + 1219.0, + 1405.0, + 1256.0, + 292.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1250.0, + 1405.0, + 1250.0, + 1405.0, + 1285.0, + 294.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1280.0, + 1405.0, + 1280.0, + 1405.0, + 1314.0, + 294.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1308.0, + 1317.0, + 1308.0, + 1317.0, + 1343.0, + 294.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 950.0, + 1000.0, + 950.0, + 1000.0, + 987.0, + 295.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 950.0, + 1405.0, + 950.0, + 1405.0, + 987.0, + 1039.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 982.0, + 1404.0, + 982.0, + 1404.0, + 1016.0, + 296.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1011.0, + 1405.0, + 1011.0, + 1405.0, + 1045.0, + 296.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1035.0, + 825.0, + 1035.0, + 825.0, + 1079.0, + 294.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1352.0, + 1404.0, + 1352.0, + 1404.0, + 1390.0, + 295.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1384.0, + 789.0, + 1384.0, + 789.0, + 1416.0, + 294.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 230.0, + 1407.0, + 230.0, + 1407.0, + 264.0, + 294.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 255.0, + 1389.0, + 255.0, + 1389.0, + 298.0, + 294.0, + 298.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 341, + 800, + 1356, + 800, + 1356, + 1101, + 341, + 1101 + ], + "score": 0.985, + "html": "
MethodPassingMaze NavigationConstructionSorting
Ours0.710.600.480.82
Ours (from sub-optimal demo)0.680.510.47N/A
Ours w/o RL0.130.310.230.80
Ours w/o fusion0.110.190.290.10
Ours (2-LSTM)0.170.020.170
Passive (ToMnet)0.1100.120
Count-based0.2200.310.39
Self-supervised0.2300.360.56
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1313, + 1405, + 1313, + 1405, + 1579, + 297, + 1579 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1694, + 1404, + 1694, + 1404, + 1902, + 297, + 1902 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1151, + 1405, + 1151, + 1405, + 1299, + 298, + 1299 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1915, + 1403, + 1915, + 1403, + 2037, + 299, + 2037 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 896, + 234, + 1263, + 234, + 1263, + 477, + 896, + 477 + ], + "score": 0.961 + }, + { + "category_id": 3, + "poly": [ + 435, + 232, + 802, + 232, + 802, + 480, + 435, + 480 + ], + "score": 0.96 + }, + { + "category_id": 6, + "poly": [ + 297, + 715, + 1401, + 715, + 1401, + 777, + 297, + 777 + ], + "score": 0.943 + }, + { + "category_id": 4, + "poly": [ + 858, + 507, + 1306, + 507, + 1306, + 568, + 858, + 568 + ], + "score": 0.94 + }, + { + "category_id": 4, + "poly": [ + 394, + 509, + 844, + 509, + 844, + 570, + 394, + 570 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 302, + 1631, + 773, + 1631, + 773, + 1662, + 302, + 1662 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.837 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.79 + }, + { + "category_id": 1, + "poly": [ + 299, + 630, + 1134, + 630, + 1134, + 661, + 299, + 661 + ], + "score": 0.424 + }, + { + "category_id": 0, + "poly": [ + 299, + 630, + 1134, + 630, + 1134, + 661, + 299, + 661 + ], + "score": 0.355 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 854, + 76, + 854, + 104, + 299, + 104 + ], + "score": 0.152 + }, + { + "category_id": 13, + "poly": [ + 699, + 2004, + 838, + 2004, + 838, + 2037, + 699, + 2037 + ], + "score": 0.93, + "latex": "\\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , s _ { d } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 690, + 1916, + 754, + 1916, + 754, + 1948, + 690, + 1948 + ], + "score": 0.9, + "latex": "\\mathcal { M } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 947, + 1402, + 1002, + 1402, + 1002, + 1431, + 947, + 1431 + ], + "score": 0.88, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 1112, + 1319, + 1145, + 1319, + 1145, + 1344, + 1112, + 1344 + ], + "score": 0.85, + "latex": "\\pi _ { d }" + }, + { + "category_id": 13, + "poly": [ + 471, + 1949, + 499, + 1949, + 499, + 1975, + 471, + 1975 + ], + "score": 0.84, + "latex": "\\pi _ { l }" + }, + { + "category_id": 13, + "poly": [ + 438, + 1978, + 467, + 1978, + 467, + 2004, + 438, + 2004 + ], + "score": 0.84, + "latex": "\\pi _ { l }" + }, + { + "category_id": 13, + "poly": [ + 579, + 1975, + 615, + 1975, + 615, + 2002, + 579, + 2002 + ], + "score": 0.83, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 489, + 1782, + 550, + 1782, + 550, + 1811, + 489, + 1811 + ], + "score": 0.32, + "latex": "- 0 . 0 5" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 238.0, + 942.0, + 238.0, + 942.0, + 260.0, + 912.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 240.0, + 1015.0, + 240.0, + 1015.0, + 264.0, + 975.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 262.0, + 941.0, + 262.0, + 941.0, + 283.0, + 912.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 261.0, + 1029.0, + 261.0, + 1029.0, + 280.0, + 977.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 285.0, + 941.0, + 285.0, + 941.0, + 308.0, + 912.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 278.0, + 1094.0, + 278.0, + 1094.0, + 299.0, + 976.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 308.0, + 921.0, + 308.0, + 921.0, + 375.0, + 895.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 311.0, + 940.0, + 311.0, + 940.0, + 332.0, + 912.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 333.0, + 940.0, + 333.0, + 940.0, + 356.0, + 913.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 354.0, + 941.0, + 354.0, + 941.0, + 379.0, + 913.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 381.0, + 940.0, + 381.0, + 940.0, + 403.0, + 912.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 402.0, + 942.0, + 402.0, + 942.0, + 427.0, + 913.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 430.0, + 940.0, + 430.0, + 940.0, + 448.0, + 913.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 440.0, + 1267.0, + 440.0, + 1267.0, + 461.0, + 929.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 456.0, + 1132.0, + 456.0, + 1132.0, + 478.0, + 1061.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 233.0, + 482.0, + 233.0, + 482.0, + 259.0, + 450.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 240.0, + 556.0, + 240.0, + 556.0, + 264.0, + 515.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 259.0, + 571.0, + 259.0, + 571.0, + 279.0, + 518.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 279.0, + 486.0, + 279.0, + 486.0, + 304.0, + 451.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 275.0, + 637.0, + 275.0, + 637.0, + 300.0, + 517.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 307.0, + 460.0, + 307.0, + 460.0, + 375.0, + 434.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 324.0, + 479.0, + 324.0, + 479.0, + 347.0, + 452.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 368.0, + 480.0, + 368.0, + 480.0, + 392.0, + 452.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 413.0, + 481.0, + 413.0, + 481.0, + 435.0, + 452.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 441.0, + 795.0, + 441.0, + 795.0, + 466.0, + 469.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 460.0, + 676.0, + 460.0, + 676.0, + 483.0, + 603.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 714.0, + 1405.0, + 714.0, + 1405.0, + 750.0, + 295.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 744.0, + 1318.0, + 744.0, + 1318.0, + 780.0, + 293.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 505.0, + 1308.0, + 505.0, + 1308.0, + 540.0, + 855.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 536.0, + 1228.0, + 536.0, + 1228.0, + 568.0, + 854.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 508.0, + 847.0, + 508.0, + 847.0, + 543.0, + 395.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 535.0, + 795.0, + 535.0, + 795.0, + 573.0, + 395.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1626.0, + 780.0, + 1626.0, + 780.0, + 1667.0, + 295.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 629.0, + 1138.0, + 629.0, + 1138.0, + 664.0, + 295.0, + 664.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": [ + 296.0, + 1314.0, + 1111.0, + 1314.0, + 1111.0, + 1346.0, + 296.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 1314.0, + 1405.0, + 1314.0, + 1405.0, + 1346.0, + 1146.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1343.0, + 1407.0, + 1343.0, + 1407.0, + 1376.0, + 292.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1374.0, + 1406.0, + 1374.0, + 1406.0, + 1405.0, + 295.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1400.0, + 946.0, + 1400.0, + 946.0, + 1436.0, + 295.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1400.0, + 1406.0, + 1400.0, + 1406.0, + 1436.0, + 1003.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1429.0, + 1403.0, + 1429.0, + 1403.0, + 1465.0, + 294.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1460.0, + 1403.0, + 1460.0, + 1403.0, + 1492.0, + 296.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1489.0, + 1406.0, + 1489.0, + 1406.0, + 1525.0, + 294.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1518.0, + 1406.0, + 1518.0, + 1406.0, + 1553.0, + 292.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1546.0, + 421.0, + 1546.0, + 421.0, + 1585.0, + 294.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1691.0, + 1406.0, + 1691.0, + 1406.0, + 1731.0, + 292.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1721.0, + 1405.0, + 1721.0, + 1405.0, + 1761.0, + 292.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1751.0, + 1405.0, + 1751.0, + 1405.0, + 1788.0, + 294.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1780.0, + 488.0, + 1780.0, + 488.0, + 1818.0, + 292.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1780.0, + 1406.0, + 1780.0, + 1406.0, + 1818.0, + 551.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1808.0, + 1405.0, + 1808.0, + 1405.0, + 1847.0, + 291.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1839.0, + 1406.0, + 1839.0, + 1406.0, + 1875.0, + 294.0, + 1875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1869.0, + 838.0, + 1869.0, + 838.0, + 1906.0, + 295.0, + 1906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1150.0, + 1406.0, + 1150.0, + 1406.0, + 1186.0, + 296.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1179.0, + 1406.0, + 1179.0, + 1406.0, + 1215.0, + 293.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1209.0, + 1407.0, + 1209.0, + 1407.0, + 1246.0, + 293.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1234.0, + 1406.0, + 1234.0, + 1406.0, + 1275.0, + 292.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1265.0, + 798.0, + 1265.0, + 798.0, + 1305.0, + 293.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 689.0, + 1912.0, + 689.0, + 1949.0, + 293.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1949.0, + 755.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 470.0, + 1942.0, + 470.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1942.0, + 1409.0, + 1942.0, + 1409.0, + 1979.0, + 500.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1973.0, + 437.0, + 1973.0, + 437.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 1973.0, + 578.0, + 1973.0, + 578.0, + 2010.0, + 468.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 1973.0, + 1408.0, + 1973.0, + 1408.0, + 2010.0, + 616.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 698.0, + 2001.0, + 698.0, + 2041.0, + 293.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2001.0, + 851.0, + 2001.0, + 851.0, + 2041.0, + 839.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 629.0, + 1138.0, + 629.0, + 1138.0, + 664.0, + 295.0, + 664.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 672, + 1403, + 672, + 1403, + 938, + 298, + 938 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 412, + 1403, + 412, + 1403, + 561, + 299, + 561 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 230, + 1400, + 230, + 1400, + 321, + 298, + 321 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 299, + 952, + 1399, + 952, + 1399, + 1013, + 299, + 1013 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 299, + 1058, + 488, + 1058, + 488, + 1090, + 299, + 1090 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.888 + }, + { + "category_id": 0, + "poly": [ + 301, + 604, + 560, + 604, + 560, + 639, + 301, + 639 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 302, + 356, + 736, + 356, + 736, + 388, + 302, + 388 + ], + "score": 0.836 + }, + { + "category_id": 1, + "poly": [ + 292, + 1105, + 1408, + 1105, + 1408, + 2035, + 292, + 2035 + ], + "score": 0.779 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.771 + }, + { + "category_id": 13, + "poly": [ + 423, + 762, + 454, + 762, + 454, + 789, + 423, + 789 + ], + "score": 0.28, + "latex": "\\mathrm { I L }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1055.0, + 491.0, + 1055.0, + 491.0, + 1095.0, + 296.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 597.0, + 566.0, + 597.0, + 566.0, + 648.0, + 291.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 353.0, + 742.0, + 353.0, + 742.0, + 393.0, + 294.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 670.0, + 1407.0, + 670.0, + 1407.0, + 708.0, + 292.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 702.0, + 1407.0, + 702.0, + 1407.0, + 738.0, + 294.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 726.0, + 1407.0, + 726.0, + 1407.0, + 769.0, + 292.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 759.0, + 422.0, + 759.0, + 422.0, + 796.0, + 292.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 759.0, + 1406.0, + 759.0, + 1406.0, + 796.0, + 455.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 788.0, + 1408.0, + 788.0, + 1408.0, + 828.0, + 292.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 819.0, + 1405.0, + 819.0, + 1405.0, + 852.0, + 293.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 849.0, + 1404.0, + 849.0, + 1404.0, + 881.0, + 296.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 875.0, + 1408.0, + 875.0, + 1408.0, + 912.0, + 292.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 907.0, + 1011.0, + 907.0, + 1011.0, + 942.0, + 294.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 411.0, + 1407.0, + 411.0, + 1407.0, + 448.0, + 295.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 441.0, + 1407.0, + 441.0, + 1407.0, + 479.0, + 292.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 471.0, + 1407.0, + 471.0, + 1407.0, + 506.0, + 293.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 498.0, + 1405.0, + 498.0, + 1405.0, + 540.0, + 292.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 528.0, + 793.0, + 528.0, + 793.0, + 566.0, + 294.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 1404.0, + 230.0, + 1404.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 260.0, + 1404.0, + 260.0, + 1404.0, + 293.0, + 294.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 290.0, + 1175.0, + 290.0, + 1175.0, + 323.0, + 294.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 947.0, + 1405.0, + 947.0, + 1405.0, + 990.0, + 293.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 981.0, + 772.0, + 981.0, + 772.0, + 1016.0, + 295.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1109.0, + 1407.0, + 1109.0, + 1407.0, + 1141.0, + 295.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1137.0, + 1406.0, + 1137.0, + 1406.0, + 1173.0, + 323.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1167.0, + 1162.0, + 1167.0, + 1162.0, + 1203.0, + 322.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1215.0, + 1405.0, + 1215.0, + 1405.0, + 1253.0, + 294.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1247.0, + 1102.0, + 1247.0, + 1102.0, + 1280.0, + 322.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1292.0, + 1406.0, + 1292.0, + 1406.0, + 1337.0, + 291.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1327.0, + 1167.0, + 1327.0, + 1167.0, + 1363.0, + 323.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1376.0, + 1407.0, + 1376.0, + 1407.0, + 1413.0, + 294.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1403.0, + 1405.0, + 1403.0, + 1405.0, + 1446.0, + 321.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1435.0, + 670.0, + 1435.0, + 670.0, + 1471.0, + 322.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1482.0, + 1406.0, + 1482.0, + 1406.0, + 1525.0, + 295.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1516.0, + 709.0, + 1516.0, + 709.0, + 1551.0, + 323.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1562.0, + 1407.0, + 1562.0, + 1407.0, + 1603.0, + 293.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1593.0, + 1406.0, + 1593.0, + 1406.0, + 1636.0, + 322.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1625.0, + 887.0, + 1625.0, + 887.0, + 1661.0, + 323.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1677.0, + 1406.0, + 1677.0, + 1406.0, + 1713.0, + 294.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1705.0, + 1409.0, + 1705.0, + 1409.0, + 1740.0, + 321.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1757.0, + 1405.0, + 1757.0, + 1405.0, + 1793.0, + 295.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1782.0, + 1406.0, + 1782.0, + 1406.0, + 1825.0, + 319.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1816.0, + 893.0, + 1816.0, + 893.0, + 1849.0, + 322.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1865.0, + 1406.0, + 1865.0, + 1406.0, + 1901.0, + 294.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1893.0, + 1409.0, + 1893.0, + 1409.0, + 1930.0, + 320.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1945.0, + 1405.0, + 1945.0, + 1405.0, + 1981.0, + 296.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2012.0, + 322.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 2005.0, + 883.0, + 2005.0, + 883.0, + 2037.0, + 320.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 300, + 684, + 1400, + 684, + 1400, + 749, + 300, + 749 + ], + "score": 0.702 + }, + { + "category_id": 1, + "poly": [ + 299, + 763, + 1398, + 763, + 1398, + 828, + 299, + 828 + ], + "score": 0.701 + }, + { + "category_id": 1, + "poly": [ + 298, + 1486, + 1402, + 1486, + 1402, + 1579, + 298, + 1579 + ], + "score": 0.7 + }, + { + "category_id": 1, + "poly": [ + 297, + 1378, + 1401, + 1378, + 1401, + 1470, + 297, + 1470 + ], + "score": 0.695 + }, + { + "category_id": 1, + "poly": [ + 298, + 843, + 1400, + 843, + 1400, + 907, + 298, + 907 + ], + "score": 0.694 + }, + { + "category_id": 1, + "poly": [ + 303, + 1001, + 1402, + 1001, + 1402, + 1096, + 303, + 1096 + ], + "score": 0.688 + }, + { + "category_id": 1, + "poly": [ + 301, + 1270, + 1399, + 1270, + 1399, + 1361, + 301, + 1361 + ], + "score": 0.667 + }, + { + "category_id": 1, + "poly": [ + 294, + 1191, + 1400, + 1191, + 1400, + 1255, + 294, + 1255 + ], + "score": 0.666 + }, + { + "category_id": 1, + "poly": [ + 296, + 1110, + 1402, + 1110, + 1402, + 1175, + 296, + 1175 + ], + "score": 0.654 + }, + { + "category_id": 1, + "poly": [ + 294, + 1705, + 1403, + 1705, + 1403, + 1768, + 294, + 1768 + ], + "score": 0.651 + }, + { + "category_id": 1, + "poly": [ + 299, + 1595, + 1402, + 1595, + 1402, + 1688, + 299, + 1688 + ], + "score": 0.641 + }, + { + "category_id": 1, + "poly": [ + 297, + 922, + 1403, + 922, + 1403, + 986, + 297, + 986 + ], + "score": 0.636 + }, + { + "category_id": 1, + "poly": [ + 301, + 1972, + 1403, + 1972, + 1403, + 2035, + 301, + 2035 + ], + "score": 0.63 + }, + { + "category_id": 1, + "poly": [ + 298, + 604, + 1400, + 604, + 1400, + 668, + 298, + 668 + ], + "score": 0.629 + }, + { + "category_id": 1, + "poly": [ + 300, + 1783, + 1402, + 1783, + 1402, + 1876, + 300, + 1876 + ], + "score": 0.608 + }, + { + "category_id": 1, + "poly": [ + 299, + 1892, + 1401, + 1892, + 1401, + 1956, + 299, + 1956 + ], + "score": 0.596 + }, + { + "category_id": 1, + "poly": [ + 300, + 526, + 1398, + 526, + 1398, + 589, + 300, + 589 + ], + "score": 0.592 + }, + { + "category_id": 1, + "poly": [ + 293, + 229, + 1401, + 229, + 1401, + 292, + 293, + 292 + ], + "score": 0.588 + }, + { + "category_id": 1, + "poly": [ + 301, + 416, + 1401, + 416, + 1401, + 509, + 301, + 509 + ], + "score": 0.575 + }, + { + "category_id": 1, + "poly": [ + 301, + 309, + 1398, + 309, + 1398, + 401, + 301, + 401 + ], + "score": 0.552 + }, + { + "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, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 686.0, + 1404.0, + 686.0, + 1404.0, + 722.0, + 294.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 714.0, + 1177.0, + 714.0, + 1177.0, + 750.0, + 321.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 765.0, + 1404.0, + 765.0, + 1404.0, + 801.0, + 295.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 793.0, + 1178.0, + 793.0, + 1178.0, + 829.0, + 321.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1485.0, + 1407.0, + 1485.0, + 1407.0, + 1524.0, + 293.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1517.0, + 1407.0, + 1517.0, + 1407.0, + 1553.0, + 321.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1545.0, + 397.0, + 1545.0, + 397.0, + 1581.0, + 318.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1380.0, + 1403.0, + 1380.0, + 1403.0, + 1413.0, + 296.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1406.0, + 1406.0, + 1406.0, + 1406.0, + 1447.0, + 320.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1438.0, + 572.0, + 1438.0, + 572.0, + 1472.0, + 322.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 844.0, + 1402.0, + 844.0, + 1402.0, + 880.0, + 294.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 874.0, + 1307.0, + 874.0, + 1307.0, + 910.0, + 323.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1001.0, + 1406.0, + 1001.0, + 1406.0, + 1039.0, + 295.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1033.0, + 1403.0, + 1033.0, + 1403.0, + 1067.0, + 324.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1063.0, + 1390.0, + 1063.0, + 1390.0, + 1097.0, + 324.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1269.0, + 1404.0, + 1269.0, + 1404.0, + 1306.0, + 296.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1299.0, + 1404.0, + 1299.0, + 1404.0, + 1337.0, + 320.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1330.0, + 670.0, + 1330.0, + 670.0, + 1363.0, + 323.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1190.0, + 1404.0, + 1190.0, + 1404.0, + 1227.0, + 294.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1220.0, + 1233.0, + 1220.0, + 1233.0, + 1255.0, + 321.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1113.0, + 1404.0, + 1113.0, + 1404.0, + 1145.0, + 296.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1140.0, + 1354.0, + 1140.0, + 1354.0, + 1177.0, + 321.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1706.0, + 1404.0, + 1706.0, + 1404.0, + 1742.0, + 296.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1734.0, + 1353.0, + 1734.0, + 1353.0, + 1771.0, + 321.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1594.0, + 1404.0, + 1594.0, + 1404.0, + 1633.0, + 295.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1625.0, + 1406.0, + 1625.0, + 1406.0, + 1661.0, + 322.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1656.0, + 1161.0, + 1656.0, + 1161.0, + 1690.0, + 323.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 923.0, + 1404.0, + 923.0, + 1404.0, + 959.0, + 296.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 953.0, + 1411.0, + 953.0, + 1411.0, + 990.0, + 320.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1408.0, + 1972.0, + 1408.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2001.0, + 1270.0, + 2001.0, + 1270.0, + 2037.0, + 321.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 605.0, + 1404.0, + 605.0, + 1404.0, + 641.0, + 294.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 635.0, + 1002.0, + 635.0, + 1002.0, + 669.0, + 322.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1781.0, + 1406.0, + 1781.0, + 1406.0, + 1822.0, + 294.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1815.0, + 1404.0, + 1815.0, + 1404.0, + 1849.0, + 323.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1842.0, + 818.0, + 1842.0, + 818.0, + 1880.0, + 321.0, + 1880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1891.0, + 1405.0, + 1891.0, + 1405.0, + 1932.0, + 294.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1923.0, + 1360.0, + 1923.0, + 1360.0, + 1959.0, + 323.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 523.0, + 1403.0, + 523.0, + 1403.0, + 564.0, + 295.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 554.0, + 1207.0, + 554.0, + 1207.0, + 593.0, + 321.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 227.0, + 1406.0, + 227.0, + 1406.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 258.0, + 1235.0, + 258.0, + 1235.0, + 292.0, + 322.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 412.0, + 1406.0, + 412.0, + 1406.0, + 457.0, + 294.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 448.0, + 1405.0, + 448.0, + 1405.0, + 482.0, + 322.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 477.0, + 847.0, + 477.0, + 847.0, + 511.0, + 322.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 306.0, + 1404.0, + 306.0, + 1404.0, + 347.0, + 292.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 339.0, + 1406.0, + 339.0, + 1406.0, + 374.0, + 321.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 369.0, + 1010.0, + 369.0, + 1010.0, + 403.0, + 320.0, + 403.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.897 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 862, + 2088, + 862, + 2113, + 835, + 2113 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 296, + 1342, + 1401, + 1342, + 1401, + 1406, + 296, + 1406 + ], + "score": 0.705 + }, + { + "category_id": 1, + "poly": [ + 297, + 1042, + 1402, + 1042, + 1402, + 1105, + 297, + 1105 + ], + "score": 0.626 + }, + { + "category_id": 1, + "poly": [ + 299, + 960, + 1401, + 960, + 1401, + 1025, + 299, + 1025 + ], + "score": 0.616 + }, + { + "category_id": 1, + "poly": [ + 299, + 1123, + 1403, + 1123, + 1403, + 1214, + 299, + 1214 + ], + "score": 0.61 + }, + { + "category_id": 1, + "poly": [ + 298, + 660, + 1400, + 660, + 1400, + 724, + 298, + 724 + ], + "score": 0.593 + }, + { + "category_id": 1, + "poly": [ + 297, + 881, + 1402, + 881, + 1402, + 944, + 297, + 944 + ], + "score": 0.593 + }, + { + "category_id": 1, + "poly": [ + 295, + 741, + 1407, + 741, + 1407, + 861, + 295, + 861 + ], + "score": 0.545 + }, + { + "category_id": 1, + "poly": [ + 299, + 1424, + 1407, + 1424, + 1407, + 1515, + 299, + 1515 + ], + "score": 0.523 + }, + { + "category_id": 1, + "poly": [ + 293, + 229, + 1402, + 229, + 1402, + 291, + 293, + 291 + ], + "score": 0.519 + }, + { + "category_id": 1, + "poly": [ + 297, + 1232, + 1405, + 1232, + 1405, + 1324, + 297, + 1324 + ], + "score": 0.502 + }, + { + "category_id": 1, + "poly": [ + 300, + 581, + 1396, + 581, + 1396, + 645, + 300, + 645 + ], + "score": 0.499 + }, + { + "category_id": 1, + "poly": [ + 299, + 471, + 1399, + 471, + 1399, + 562, + 299, + 562 + ], + "score": 0.463 + }, + { + "category_id": 1, + "poly": [ + 293, + 309, + 1399, + 309, + 1399, + 373, + 293, + 373 + ], + "score": 0.451 + }, + { + "category_id": 1, + "poly": [ + 294, + 389, + 1400, + 389, + 1400, + 453, + 294, + 453 + ], + "score": 0.436 + }, + { + "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": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1341.0, + 1405.0, + 1341.0, + 1405.0, + 1378.0, + 295.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1371.0, + 1407.0, + 1371.0, + 1407.0, + 1407.0, + 323.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1039.0, + 1406.0, + 1039.0, + 1406.0, + 1081.0, + 294.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1071.0, + 1129.0, + 1071.0, + 1129.0, + 1105.0, + 322.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 958.0, + 1406.0, + 958.0, + 1406.0, + 1002.0, + 294.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 993.0, + 1363.0, + 993.0, + 1363.0, + 1026.0, + 323.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1121.0, + 1408.0, + 1121.0, + 1408.0, + 1160.0, + 292.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1153.0, + 1405.0, + 1153.0, + 1405.0, + 1186.0, + 324.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1184.0, + 705.0, + 1184.0, + 705.0, + 1215.0, + 320.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 661.0, + 1404.0, + 661.0, + 1404.0, + 697.0, + 296.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 691.0, + 1404.0, + 691.0, + 1404.0, + 727.0, + 324.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 878.0, + 1406.0, + 878.0, + 1406.0, + 919.0, + 295.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 910.0, + 993.0, + 910.0, + 993.0, + 946.0, + 322.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 742.0, + 1409.0, + 742.0, + 1409.0, + 778.0, + 294.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 765.0, + 1407.0, + 765.0, + 1407.0, + 812.0, + 320.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 800.0, + 1409.0, + 800.0, + 1409.0, + 838.0, + 321.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 825.0, + 397.0, + 825.0, + 397.0, + 866.0, + 321.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1421.0, + 1405.0, + 1421.0, + 1405.0, + 1459.0, + 294.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1454.0, + 1405.0, + 1454.0, + 1405.0, + 1487.0, + 322.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1483.0, + 565.0, + 1483.0, + 565.0, + 1516.0, + 322.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1405.0, + 230.0, + 1405.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 259.0, + 732.0, + 259.0, + 732.0, + 294.0, + 322.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1231.0, + 1405.0, + 1231.0, + 1405.0, + 1268.0, + 296.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1264.0, + 1408.0, + 1264.0, + 1408.0, + 1297.0, + 324.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1291.0, + 778.0, + 1291.0, + 778.0, + 1328.0, + 323.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 580.0, + 1402.0, + 580.0, + 1402.0, + 617.0, + 295.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 612.0, + 1204.0, + 612.0, + 1204.0, + 645.0, + 320.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 472.0, + 1403.0, + 472.0, + 1403.0, + 506.0, + 296.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 497.0, + 1404.0, + 497.0, + 1404.0, + 539.0, + 320.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 531.0, + 668.0, + 531.0, + 668.0, + 564.0, + 323.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 310.0, + 1404.0, + 310.0, + 1404.0, + 346.0, + 295.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 340.0, + 1186.0, + 340.0, + 1186.0, + 374.0, + 322.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 390.0, + 1405.0, + 390.0, + 1405.0, + 426.0, + 297.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 420.0, + 896.0, + 420.0, + 896.0, + 454.0, + 323.0, + 454.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1764, + 1406, + 1764, + 1406, + 1883, + 297, + 1883 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 643, + 1338, + 1030, + 1338, + 1030, + 1606, + 643, + 1606 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 307, + 796, + 1204, + 796, + 1204, + 1053, + 307, + 1053 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 298, + 1238, + 1403, + 1238, + 1403, + 1300, + 298, + 1300 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 298, + 1973, + 1409, + 1973, + 1409, + 2037, + 298, + 2037 + ], + "score": 0.941 + }, + { + "category_id": 4, + "poly": [ + 424, + 1627, + 1273, + 1627, + 1273, + 1660, + 424, + 1660 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 301, + 1183, + 691, + 1183, + 691, + 1214, + 301, + 1214 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 300, + 1116, + 580, + 1116, + 580, + 1151, + 300, + 1151 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 298, + 753, + 673, + 753, + 673, + 786, + 298, + 786 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 300, + 1708, + 822, + 1708, + 822, + 1738, + 300, + 1738 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 300, + 226, + 892, + 226, + 892, + 262, + 300, + 262 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 299, + 1915, + 1193, + 1915, + 1193, + 1949, + 299, + 1949 + ], + "score": 0.862 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.854 + }, + { + "category_id": 0, + "poly": [ + 299, + 303, + 605, + 303, + 605, + 336, + 299, + 336 + ], + "score": 0.852 + }, + { + "category_id": 1, + "poly": [ + 298, + 345, + 1161, + 345, + 1161, + 656, + 298, + 656 + ], + "score": 0.814 + }, + { + "category_id": 7, + "poly": [ + 302, + 651, + 713, + 651, + 713, + 701, + 302, + 701 + ], + "score": 0.562 + }, + { + "category_id": 13, + "poly": [ + 299, + 2002, + 464, + 2002, + 464, + 2036, + 299, + 2036 + ], + "score": 0.92, + "latex": "| | m ^ { t } - m ^ { t - 1 } | | ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 512, + 2001, + 947, + 2001, + 947, + 2036, + 512, + 2036 + ], + "score": 0.91, + "latex": "\\tilde { K L } ( \\pi _ { d } ( \\cdot | s ^ { t + 1 } , m ^ { t } ) | | \\pi _ { d } ( \\cdot | s ^ { t + 1 } , m ^ { t - 1 } ) )" + }, + { + "category_id": 13, + "poly": [ + 700, + 372, + 734, + 372, + 734, + 405, + 700, + 405 + ], + "score": 0.9, + "latex": "\\Gamma _ { d } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 1073, + 966, + 1108, + 966, + 1108, + 998, + 1073, + 998 + ], + "score": 0.9, + "latex": "\\Gamma _ { l } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 555, + 798, + 773, + 798, + 773, + 829, + 555, + 829 + ], + "score": 0.89, + "latex": "\\Theta = \\left. \\theta _ { M } , \\theta _ { b } , \\theta _ { l } , \\theta _ { V } \\right." + }, + { + "category_id": 13, + "poly": [ + 780, + 372, + 815, + 372, + 815, + 405, + 780, + 405 + ], + "score": 0.89, + "latex": "\\Gamma _ { l } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 543, + 507, + 572, + 507, + 572, + 537, + 543, + 537 + ], + "score": 0.89, + "latex": "a _ { d } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 573, + 970, + 605, + 970, + 605, + 996, + 573, + 996 + ], + "score": 0.88, + "latex": "\\theta _ { V }" + }, + { + "category_id": 13, + "poly": [ + 783, + 559, + 974, + 559, + 974, + 591, + 783, + 591 + ], + "score": 0.88, + "latex": "a _ { l } ^ { t } \\sim \\pi _ { l } ( s _ { l } ^ { t } , m ^ { t - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 345, + 427, + 786, + 427, + 786, + 458, + 345, + 458 + ], + "score": 0.88, + "latex": "\\Gamma _ { d } ^ { 0 } \\gets \\emptyset , \\Gamma _ { l } ^ { 0 } \\gets \\emptyset , M \\gets \\emptyset , m ^ { 0 } \\gets \\mathbf { 0 } , t \\gets 0" + }, + { + "category_id": 13, + "poly": [ + 601, + 1974, + 637, + 1974, + 637, + 2001, + 601, + 2001 + ], + "score": 0.88, + "latex": "m ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 401, + 651, + 491, + 651, + 491, + 677, + 401, + 677 + ], + "score": 0.87, + "latex": "t = T _ { \\operatorname* { m a x } }" + }, + { + "category_id": 13, + "poly": [ + 840, + 935, + 875, + 935, + 875, + 968, + 840, + 968 + ], + "score": 0.87, + "latex": "\\Gamma _ { d } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 545, + 347, + 593, + 347, + 593, + 373, + 545, + 373 + ], + "score": 0.86, + "latex": "T _ { \\mathrm { m a x } }" + }, + { + "category_id": 13, + "poly": [ + 580, + 940, + 607, + 940, + 607, + 966, + 580, + 966 + ], + "score": 0.86, + "latex": "\\theta _ { d }" + }, + { + "category_id": 13, + "poly": [ + 802, + 1919, + 837, + 1919, + 837, + 1945, + 802, + 1945 + ], + "score": 0.86, + "latex": "m ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 496, + 939, + 534, + 939, + 534, + 966, + 496, + 966 + ], + "score": 0.86, + "latex": "\\theta _ { M }" + }, + { + "category_id": 13, + "poly": [ + 505, + 970, + 527, + 970, + 527, + 996, + 505, + 996 + ], + "score": 0.85, + "latex": "\\theta _ { l }" + }, + { + "category_id": 13, + "poly": [ + 382, + 826, + 430, + 826, + 430, + 852, + 382, + 852 + ], + "score": 0.83, + "latex": "T _ { \\mathrm { m a x } }" + }, + { + "category_id": 13, + "poly": [ + 471, + 508, + 498, + 508, + 498, + 537, + 471, + 537 + ], + "score": 0.83, + "latex": "s _ { d } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 830, + 826, + 857, + 826, + 857, + 850, + 830, + 850 + ], + "score": 0.82, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 471, + 537, + 495, + 537, + 495, + 564, + 471, + 564 + ], + "score": 0.8, + "latex": "s _ { l } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 379, + 589, + 897, + 589, + 897, + 623, + 379, + 623 + ], + "score": 0.76, + "latex": "\\Gamma _ { d } ^ { t } \\Gamma _ { d } ^ { t - 1 } \\cup \\{ ( s _ { d } ^ { t } , a _ { d } ^ { t } ) \\} , \\Gamma _ { l } ^ { t } \\Gamma _ { l } ^ { t - 1 } \\cup \\{ ( s _ { l } ^ { t } , a _ { l } ^ { t } ) \\}" + }, + { + "category_id": 13, + "poly": [ + 552, + 377, + 574, + 377, + 574, + 401, + 552, + 401 + ], + "score": 0.75, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 344, + 677, + 416, + 677, + 416, + 702, + 344, + 702 + ], + "score": 0.74, + "latex": "T \\gets t" + }, + { + "category_id": 13, + "poly": [ + 344, + 853, + 410, + 853, + 410, + 878, + 344, + 878 + ], + "score": 0.73, + "latex": "i \\gets 1" + }, + { + "category_id": 13, + "poly": [ + 1161, + 969, + 1192, + 969, + 1192, + 994, + 1161, + 994 + ], + "score": 0.66, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 382, + 483, + 489, + 483, + 489, + 508, + 382, + 508 + ], + "score": 0.62, + "latex": "t \\gets t + 1" + }, + { + "category_id": 13, + "poly": [ + 380, + 904, + 708, + 904, + 708, + 937, + 380, + 937 + ], + "score": 0.6, + "latex": "T , \\Gamma _ { d } ^ { T } , \\Gamma _ { l } ^ { T } , M \\gets \\mathrm { R o l l o u t } ( T _ { \\mathrm { m a x } } )" + }, + { + "category_id": 13, + "poly": [ + 382, + 623, + 728, + 623, + 728, + 653, + 382, + 653 + ], + "score": 0.59, + "latex": "m ^ { t } \\gets \\mathcal { M } ( \\Gamma _ { d } ^ { t } ) , M \\gets M \\cup \\{ m ^ { t } \\}" + }, + { + "category_id": 13, + "poly": [ + 381, + 997, + 487, + 997, + 487, + 1022, + 381, + 1022 + ], + "score": 0.53, + "latex": "i \\gets i + 1" + }, + { + "category_id": 13, + "poly": [ + 1132, + 375, + 1163, + 375, + 1163, + 402, + 1132, + 402 + ], + "score": 0.51, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 538, + 305, + 602, + 305, + 602, + 335, + 538, + 335 + ], + "score": 0.5, + "latex": " { T _ { \\mathrm { m a x } } } )" + }, + { + "category_id": 13, + "poly": [ + 400, + 1023, + 471, + 1023, + 471, + 1048, + 400, + 1048 + ], + "score": 0.43, + "latex": "i = N" + }, + { + "category_id": 14, + "poly": [ + 380, + 589, + 896, + 589, + 896, + 623, + 380, + 623 + ], + "score": 0.26, + "latex": "\\Gamma _ { d } ^ { t } \\Gamma _ { d } ^ { t - 1 } \\cup \\{ ( s _ { d } ^ { t } , a _ { d } ^ { t } ) \\} , \\Gamma _ { l } ^ { t } \\Gamma _ { l } ^ { t - 1 } \\cup \\{ ( s _ { l } ^ { t } , a _ { l } ^ { t } ) \\}" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1351.0, + 686.0, + 1351.0, + 686.0, + 1369.0, + 659.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1338.0, + 934.0, + 1338.0, + 934.0, + 1362.0, + 779.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 1381.0, + 667.0, + 1381.0, + 667.0, + 1549.0, + 641.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1382.0, + 685.0, + 1382.0, + 685.0, + 1400.0, + 659.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1412.0, + 685.0, + 1412.0, + 685.0, + 1431.0, + 660.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1442.0, + 684.0, + 1442.0, + 684.0, + 1461.0, + 660.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1473.0, + 685.0, + 1473.0, + 685.0, + 1491.0, + 660.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1503.0, + 684.0, + 1503.0, + 684.0, + 1522.0, + 660.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1511.0, + 715.0, + 1511.0, + 715.0, + 1520.0, + 708.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 1531.0, + 686.0, + 1531.0, + 686.0, + 1552.0, + 658.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 1562.0, + 702.0, + 1562.0, + 702.0, + 1590.0, + 658.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 1572.0, + 755.0, + 1572.0, + 755.0, + 1591.0, + 732.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1568.0, + 814.0, + 1568.0, + 814.0, + 1592.0, + 781.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 1571.0, + 866.0, + 1571.0, + 866.0, + 1592.0, + 835.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1573.0, + 919.0, + 1573.0, + 919.0, + 1591.0, + 889.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 1571.0, + 973.0, + 1571.0, + 973.0, + 1592.0, + 941.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 1573.0, + 1025.0, + 1573.0, + 1025.0, + 1591.0, + 996.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1584.0, + 898.0, + 1584.0, + 898.0, + 1608.0, + 814.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1402.5, + 804.0, + 1402.5, + 804.0, + 1408.5, + 787.0, + 1408.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 1425.5, + 811.0, + 1425.5, + 811.0, + 1456.5, + 682.0, + 1456.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 1625.0, + 1275.0, + 1625.0, + 1275.0, + 1664.0, + 422.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1180.0, + 694.0, + 1180.0, + 694.0, + 1218.0, + 294.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1113.0, + 584.0, + 1113.0, + 584.0, + 1157.0, + 293.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 744.0, + 677.0, + 744.0, + 677.0, + 796.0, + 293.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1703.0, + 827.0, + 1703.0, + 827.0, + 1744.0, + 292.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 224.0, + 895.0, + 224.0, + 895.0, + 267.0, + 295.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 801.0, + 1912.0, + 801.0, + 1953.0, + 293.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 1912.0, + 1196.0, + 1912.0, + 1196.0, + 1953.0, + 838.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 296.0, + 537.0, + 296.0, + 537.0, + 344.0, + 294.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 296.0, + 606.0, + 296.0, + 606.0, + 344.0, + 603.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 649.0, + 400.0, + 649.0, + 400.0, + 679.0, + 300.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 649.0, + 713.0, + 649.0, + 713.0, + 679.0, + 492.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 674.0, + 343.0, + 674.0, + 343.0, + 704.0, + 298.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 674.0, + 424.0, + 674.0, + 424.0, + 704.0, + 417.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1761.0, + 1408.0, + 1761.0, + 1408.0, + 1802.0, + 294.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1795.0, + 1403.0, + 1795.0, + 1403.0, + 1825.0, + 296.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1821.0, + 1406.0, + 1821.0, + 1406.0, + 1856.0, + 294.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1844.0, + 454.0, + 1844.0, + 454.0, + 1894.0, + 292.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 798.0, + 554.0, + 798.0, + 554.0, + 829.0, + 309.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 820.0, + 381.0, + 820.0, + 381.0, + 858.0, + 305.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 820.0, + 829.0, + 820.0, + 829.0, + 858.0, + 431.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 820.0, + 1205.0, + 820.0, + 1205.0, + 858.0, + 858.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 845.0, + 343.0, + 845.0, + 343.0, + 884.0, + 304.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 845.0, + 418.0, + 845.0, + 418.0, + 884.0, + 411.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 876.0, + 422.0, + 876.0, + 422.0, + 909.0, + 333.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 878.0, + 340.0, + 878.0, + 340.0, + 906.0, + 309.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 904.0, + 340.0, + 904.0, + 340.0, + 939.0, + 307.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 900.0, + 379.0, + 900.0, + 379.0, + 942.0, + 376.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 938.0, + 338.0, + 938.0, + 338.0, + 968.0, + 308.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 927.0, + 495.0, + 927.0, + 495.0, + 981.0, + 372.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 927.0, + 579.0, + 927.0, + 579.0, + 981.0, + 535.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 927.0, + 839.0, + 927.0, + 839.0, + 981.0, + 608.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 927.0, + 883.0, + 927.0, + 883.0, + 981.0, + 876.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 966.0, + 339.0, + 966.0, + 339.0, + 998.0, + 308.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 964.0, + 504.0, + 964.0, + 504.0, + 1002.0, + 376.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 964.0, + 572.0, + 964.0, + 572.0, + 1002.0, + 528.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 964.0, + 1072.0, + 964.0, + 1072.0, + 1002.0, + 606.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 964.0, + 1160.0, + 964.0, + 1160.0, + 1002.0, + 1109.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 964.0, + 1196.0, + 964.0, + 1196.0, + 1002.0, + 1193.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 993.0, + 339.0, + 993.0, + 339.0, + 1025.0, + 308.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 995.0, + 380.0, + 995.0, + 380.0, + 1025.0, + 376.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 995.0, + 492.0, + 995.0, + 492.0, + 1025.0, + 488.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1021.0, + 399.0, + 1021.0, + 399.0, + 1050.0, + 309.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1237.0, + 1404.0, + 1237.0, + 1404.0, + 1273.0, + 296.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1266.0, + 1108.0, + 1266.0, + 1108.0, + 1304.0, + 292.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 600.0, + 1972.0, + 600.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2008.0, + 638.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1996.0, + 298.0, + 1996.0, + 298.0, + 2040.0, + 295.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 1996.0, + 511.0, + 1996.0, + 511.0, + 2040.0, + 465.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1996.0, + 1407.0, + 1996.0, + 1407.0, + 2040.0, + 948.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 342.0, + 544.0, + 342.0, + 544.0, + 379.0, + 294.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 371.0, + 551.0, + 371.0, + 551.0, + 408.0, + 295.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 371.0, + 699.0, + 371.0, + 699.0, + 408.0, + 575.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 371.0, + 779.0, + 371.0, + 779.0, + 408.0, + 735.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 371.0, + 1131.0, + 371.0, + 1131.0, + 408.0, + 816.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 400.0, + 612.0, + 400.0, + 612.0, + 432.0, + 306.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 422.0, + 344.0, + 422.0, + 344.0, + 463.0, + 303.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 422.0, + 791.0, + 422.0, + 791.0, + 463.0, + 787.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 455.0, + 340.0, + 455.0, + 340.0, + 484.0, + 308.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 456.0, + 423.0, + 456.0, + 423.0, + 486.0, + 337.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 482.0, + 338.0, + 482.0, + 338.0, + 509.0, + 308.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 481.0, + 381.0, + 481.0, + 381.0, + 510.0, + 375.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 506.0, + 337.0, + 506.0, + 337.0, + 537.0, + 308.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 507.0, + 470.0, + 507.0, + 470.0, + 539.0, + 378.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 507.0, + 542.0, + 507.0, + 542.0, + 539.0, + 499.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 507.0, + 804.0, + 507.0, + 804.0, + 539.0, + 573.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 534.0, + 338.0, + 534.0, + 338.0, + 564.0, + 308.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 534.0, + 470.0, + 534.0, + 470.0, + 564.0, + 379.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 534.0, + 722.0, + 534.0, + 722.0, + 564.0, + 496.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 561.0, + 338.0, + 561.0, + 338.0, + 590.0, + 307.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 558.0, + 782.0, + 558.0, + 782.0, + 595.0, + 375.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 558.0, + 981.0, + 558.0, + 981.0, + 595.0, + 975.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 591.0, + 338.0, + 591.0, + 338.0, + 621.0, + 308.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 578.0, + 378.0, + 578.0, + 378.0, + 637.0, + 371.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 578.0, + 907.0, + 578.0, + 907.0, + 637.0, + 898.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 622.0, + 338.0, + 622.0, + 338.0, + 652.0, + 307.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 616.0, + 381.0, + 616.0, + 381.0, + 656.0, + 378.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 616.0, + 732.0, + 616.0, + 732.0, + 656.0, + 729.0, + 656.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1116, + 1405, + 1116, + 1405, + 1353, + 297, + 1353 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 1368, + 1404, + 1368, + 1404, + 1604, + 296, + 1604 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 867, + 1404, + 867, + 1404, + 988, + 298, + 988 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 628, + 1642, + 1029, + 1642, + 1029, + 1974, + 628, + 1974 + ], + "score": 0.953 + }, + { + "category_id": 3, + "poly": [ + 299, + 525, + 1401, + 525, + 1401, + 711, + 299, + 711 + ], + "score": 0.953 + }, + { + "category_id": 3, + "poly": [ + 303, + 221, + 1400, + 221, + 1400, + 429, + 303, + 429 + ], + "score": 0.947 + }, + { + "category_id": 4, + "poly": [ + 296, + 737, + 1404, + 737, + 1404, + 798, + 296, + 798 + ], + "score": 0.926 + }, + { + "category_id": 4, + "poly": [ + 590, + 1994, + 1109, + 1994, + 1109, + 2027, + 590, + 2027 + ], + "score": 0.918 + }, + { + "category_id": 4, + "poly": [ + 646, + 454, + 1052, + 454, + 1052, + 486, + 646, + 486 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 298, + 1042, + 976, + 1042, + 976, + 1077, + 298, + 1077 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2113, + 835, + 2113 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 855, + 76, + 855, + 104, + 300, + 104 + ], + "score": 0.683 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.468 + }, + { + "category_id": 13, + "poly": [ + 858, + 1265, + 984, + 1265, + 984, + 1293, + 858, + 1293 + ], + "score": 0.92, + "latex": "1 0 \\times 1 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 506, + 1147, + 774, + 1147, + 774, + 1179, + 506, + 1179 + ], + "score": 0.92, + "latex": "1 1 \\bar { \\times } 1 1 \\times ( N _ { \\mathrm { b l o c k s } } + 1 )" + }, + { + "category_id": 13, + "poly": [ + 859, + 1148, + 951, + 1148, + 951, + 1176, + 859, + 1176 + ], + "score": 0.91, + "latex": "1 1 \\times 1 1" + }, + { + "category_id": 13, + "poly": [ + 1267, + 1147, + 1335, + 1147, + 1335, + 1178, + 1267, + 1178 + ], + "score": 0.91, + "latex": "N _ { \\mathrm { i t e m s } }" + }, + { + "category_id": 13, + "poly": [ + 540, + 955, + 605, + 955, + 605, + 985, + 540, + 985 + ], + "score": 0.9, + "latex": "\\bar { m } ^ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 644, + 1324, + 709, + 1324, + 709, + 1351, + 644, + 1351 + ], + "score": 0.9, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 806, + 1206, + 835, + 1206, + 835, + 1239, + 806, + 1239 + ], + "score": 0.89, + "latex": "s _ { d } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1486, + 361, + 1486, + 361, + 1514, + 296, + 1514 + ], + "score": 0.89, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 1195, + 867, + 1261, + 867, + 1261, + 897, + 1195, + 897 + ], + "score": 0.89, + "latex": "m ^ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 452, + 956, + 489, + 956, + 489, + 985, + 452, + 985 + ], + "score": 0.89, + "latex": "m ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 441, + 1572, + 479, + 1572, + 479, + 1600, + 441, + 1600 + ], + "score": 0.89, + "latex": "m ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1036, + 1428, + 1108, + 1428, + 1108, + 1455, + 1036, + 1455 + ], + "score": 0.89, + "latex": "A - 1" + }, + { + "category_id": 13, + "poly": [ + 584, + 868, + 621, + 868, + 621, + 897, + 584, + 897 + ], + "score": 0.88, + "latex": "m ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 883, + 897, + 920, + 897, + 920, + 926, + 883, + 926 + ], + "score": 0.88, + "latex": "m ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 818, + 736, + 856, + 736, + 856, + 766, + 818, + 766 + ], + "score": 0.88, + "latex": "m ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1007, + 453, + 1043, + 453, + 1043, + 481, + 1007, + 481 + ], + "score": 0.87, + "latex": "m ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1190, + 1205, + 1216, + 1205, + 1216, + 1239, + 1190, + 1239 + ], + "score": 0.87, + "latex": "s _ { l } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 846, + 1370, + 870, + 1370, + 870, + 1396, + 846, + 1396 + ], + "score": 0.77, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1358, + 743, + 1375, + 743, + 1375, + 766, + 1358, + 766 + ], + "score": 0.71, + "latex": "\\dot { \\boldsymbol { r } }" + }, + { + "category_id": 13, + "poly": [ + 692, + 1399, + 716, + 1399, + 716, + 1425, + 692, + 1425 + ], + "score": 0.71, + "latex": "A" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1675.0, + 1024.0, + 1675.0, + 1024.0, + 1700.0, + 932.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1695.0, + 1029.0, + 1695.0, + 1029.0, + 1717.0, + 927.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1775.0, + 982.0, + 1775.0, + 982.0, + 1797.0, + 926.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1780.0, + 891.0, + 1780.0, + 891.0, + 1808.0, + 862.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 1793.0, + 984.0, + 1793.0, + 984.0, + 1816.0, + 923.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1806.0, + 881.0, + 1806.0, + 881.0, + 1819.0, + 871.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1821.0, + 960.0, + 1821.0, + 960.0, + 1842.0, + 798.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1846.0, + 750.0, + 1846.0, + 750.0, + 1875.0, + 644.0, + 1875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 1837.0, + 946.0, + 1837.0, + 946.0, + 1861.0, + 812.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1865.0, + 768.0, + 1865.0, + 768.0, + 1891.0, + 627.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1871.0, + 903.0, + 1871.0, + 903.0, + 1883.0, + 877.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 1886.0, + 742.0, + 1886.0, + 742.0, + 1908.0, + 651.0, + 1908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1908.0, + 888.0, + 1908.0, + 888.0, + 1926.0, + 864.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1954.0, + 891.0, + 1954.0, + 891.0, + 1975.0, + 864.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 527.0, + 476.0, + 527.0, + 476.0, + 552.0, + 407.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 530.0, + 789.0, + 530.0, + 789.0, + 550.0, + 655.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 530.0, + 1029.0, + 530.0, + 1029.0, + 550.0, + 946.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 527.0, + 1301.0, + 527.0, + 1301.0, + 552.0, + 1236.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 567.0, + 317.0, + 567.0, + 317.0, + 577.0, + 305.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 548.0, + 423.0, + 548.0, + 423.0, + 582.0, + 319.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 548.0, + 581.0, + 548.0, + 581.0, + 667.0, + 538.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 567.0, + 592.0, + 567.0, + 592.0, + 578.0, + 582.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 548.0, + 707.0, + 548.0, + 707.0, + 581.0, + 598.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 559.0, + 873.0, + 559.0, + 873.0, + 668.0, + 830.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 548.0, + 973.0, + 548.0, + 973.0, + 572.0, + 875.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 554.0, + 1127.0, + 554.0, + 1127.0, + 651.0, + 1079.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 561.0, + 1177.0, + 561.0, + 1177.0, + 581.0, + 1133.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 548.0, + 1361.0, + 548.0, + 1361.0, + 570.0, + 1280.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 561.0, + 1400.0, + 561.0, + 1400.0, + 668.0, + 1376.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 575.0, + 562.0, + 575.0, + 562.0, + 594.0, + 538.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 578.0, + 837.0, + 578.0, + 837.0, + 598.0, + 816.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 576.0, + 1109.0, + 576.0, + 1109.0, + 594.0, + 1078.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 577.0, + 1385.0, + 577.0, + 1385.0, + 598.0, + 1363.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 589.0, + 345.0, + 589.0, + 345.0, + 607.0, + 320.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 591.0, + 590.0, + 591.0, + 590.0, + 598.0, + 583.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 589.0, + 628.0, + 589.0, + 628.0, + 607.0, + 598.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 589.0, + 899.0, + 589.0, + 899.0, + 608.0, + 874.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 590.0, + 1176.0, + 590.0, + 1176.0, + 608.0, + 1151.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 596.0, + 323.0, + 596.0, + 323.0, + 623.0, + 304.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 607.0, + 561.0, + 607.0, + 561.0, + 622.0, + 541.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 601.0, + 598.0, + 601.0, + 598.0, + 621.0, + 583.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 600.0, + 874.0, + 600.0, + 874.0, + 621.0, + 859.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 599.0, + 1103.0, + 599.0, + 1103.0, + 617.0, + 1078.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 603.0, + 1152.0, + 603.0, + 1152.0, + 622.0, + 1137.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 614.0, + 344.0, + 614.0, + 344.0, + 658.0, + 300.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 646.0, + 362.0, + 646.0, + 362.0, + 656.0, + 352.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 636.0, + 560.0, + 636.0, + 560.0, + 651.0, + 539.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 631.0, + 628.0, + 631.0, + 628.0, + 658.0, + 582.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 624.0, + 827.0, + 624.0, + 827.0, + 636.0, + 819.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 631.0, + 872.0, + 631.0, + 872.0, + 657.0, + 854.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 627.0, + 899.0, + 627.0, + 899.0, + 645.0, + 873.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 622.0, + 1103.0, + 622.0, + 1103.0, + 660.0, + 1078.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 645.0, + 1119.0, + 645.0, + 1119.0, + 663.0, + 1104.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 621.0, + 1176.0, + 621.0, + 1176.0, + 659.0, + 1134.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1366.0, + 623.0, + 1375.0, + 623.0, + 1375.0, + 637.0, + 1366.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 664.0, + 345.0, + 664.0, + 345.0, + 682.0, + 320.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 667.0, + 562.0, + 667.0, + 562.0, + 681.0, + 539.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 664.0, + 630.0, + 664.0, + 630.0, + 682.0, + 598.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 661.0, + 650.0, + 661.0, + 650.0, + 672.0, + 640.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 668.0, + 827.0, + 668.0, + 827.0, + 678.0, + 817.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 664.0, + 900.0, + 664.0, + 900.0, + 682.0, + 873.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 664.0, + 1103.0, + 664.0, + 1103.0, + 682.0, + 1078.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 651.0, + 1176.0, + 651.0, + 1176.0, + 669.0, + 1149.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 681.0, + 360.0, + 681.0, + 360.0, + 697.0, + 347.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 681.0, + 411.0, + 681.0, + 411.0, + 696.0, + 395.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 681.0, + 461.0, + 681.0, + 461.0, + 697.0, + 446.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 681.0, + 511.0, + 681.0, + 511.0, + 696.0, + 496.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 681.0, + 667.0, + 681.0, + 667.0, + 697.0, + 653.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 679.0, + 710.0, + 679.0, + 710.0, + 698.0, + 687.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 679.0, + 749.0, + 679.0, + 749.0, + 698.0, + 726.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 679.0, + 787.0, + 679.0, + 787.0, + 698.0, + 765.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 681.0, + 824.0, + 681.0, + 824.0, + 696.0, + 805.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 679.0, + 943.0, + 679.0, + 943.0, + 697.0, + 928.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 679.0, + 995.0, + 679.0, + 995.0, + 698.0, + 971.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 678.0, + 1043.0, + 678.0, + 1043.0, + 698.0, + 1020.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 681.0, + 1192.0, + 681.0, + 1192.0, + 696.0, + 1177.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 681.0, + 1226.0, + 681.0, + 1226.0, + 696.0, + 1211.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 681.0, + 1259.0, + 681.0, + 1259.0, + 697.0, + 1246.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 681.0, + 1293.0, + 681.0, + 1293.0, + 697.0, + 1278.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 679.0, + 1331.0, + 679.0, + 1331.0, + 698.0, + 1308.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 681.0, + 1362.0, + 681.0, + 1362.0, + 696.0, + 1343.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 688.0, + 460.0, + 688.0, + 460.0, + 713.0, + 423.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 692.0, + 737.0, + 692.0, + 737.0, + 711.0, + 706.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 687.0, + 1006.0, + 687.0, + 1006.0, + 714.0, + 971.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 692.0, + 1284.0, + 692.0, + 1284.0, + 711.0, + 1253.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.25, + 612.0, + 629.25, + 612.0, + 629.25, + 631.0, + 596.25, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 666.5, + 1371.0, + 666.5, + 1371.0, + 679.5, + 1367.0, + 679.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 221.0, + 500.0, + 221.0, + 500.0, + 258.0, + 396.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 224.0, + 825.0, + 224.0, + 825.0, + 258.0, + 614.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 225.0, + 1078.0, + 225.0, + 1078.0, + 255.0, + 914.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 222.0, + 1323.0, + 222.0, + 1323.0, + 258.0, + 1222.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 258.0, + 329.0, + 258.0, + 329.0, + 276.0, + 308.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 260.0, + 356.0, + 260.0, + 356.0, + 290.0, + 342.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 254.0, + 417.0, + 254.0, + 417.0, + 297.0, + 360.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 252.0, + 601.0, + 252.0, + 601.0, + 290.0, + 581.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 273.0, + 676.0, + 273.0, + 676.0, + 289.0, + 661.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 260.0, + 777.0, + 260.0, + 777.0, + 289.0, + 762.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 254.0, + 834.0, + 254.0, + 834.0, + 293.0, + 783.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 250.0, + 880.0, + 250.0, + 880.0, + 290.0, + 854.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 273.0, + 979.0, + 273.0, + 979.0, + 282.0, + 960.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 260.0, + 1053.0, + 260.0, + 1053.0, + 289.0, + 1039.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 269.0, + 1113.0, + 269.0, + 1113.0, + 297.0, + 1057.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 258.0, + 1153.0, + 258.0, + 1153.0, + 276.0, + 1132.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 260.0, + 1181.0, + 260.0, + 1181.0, + 289.0, + 1166.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 252.0, + 1241.0, + 252.0, + 1241.0, + 294.0, + 1185.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 261.0, + 1363.0, + 261.0, + 1363.0, + 287.0, + 1338.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 285.0, + 329.0, + 285.0, + 329.0, + 303.0, + 308.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 291.0, + 876.0, + 291.0, + 876.0, + 311.0, + 854.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 285.0, + 1020.0, + 285.0, + 1020.0, + 318.0, + 991.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 302.0, + 1095.0, + 302.0, + 1095.0, + 318.0, + 1078.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 287.0, + 1153.0, + 287.0, + 1153.0, + 306.0, + 1132.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 301.0, + 1226.0, + 301.0, + 1226.0, + 314.0, + 1208.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 313.0, + 875.0, + 313.0, + 875.0, + 329.0, + 860.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 313.0, + 1178.0, + 313.0, + 1178.0, + 323.0, + 1163.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 318.0, + 325.0, + 318.0, + 325.0, + 326.0, + 315.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 317.0, + 1106.0, + 317.0, + 1106.0, + 336.0, + 1080.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 318.0, + 1152.0, + 318.0, + 1152.0, + 332.0, + 1137.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1368.0, + 317.0, + 1389.0, + 317.0, + 1389.0, + 335.0, + 1368.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 333.0, + 441.0, + 333.0, + 441.0, + 361.0, + 424.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 329.0, + 600.0, + 329.0, + 600.0, + 365.0, + 585.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 332.0, + 650.0, + 332.0, + 650.0, + 353.0, + 606.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 332.0, + 876.0, + 332.0, + 876.0, + 371.0, + 850.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 336.0, + 1081.0, + 336.0, + 1081.0, + 366.0, + 1051.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 345.0, + 1152.0, + 345.0, + 1152.0, + 363.0, + 1130.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 360.0, + 404.0, + 360.0, + 404.0, + 374.0, + 386.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 380.0, + 596.0, + 380.0, + 596.0, + 394.0, + 578.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 373.0, + 876.0, + 373.0, + 876.0, + 391.0, + 851.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 374.0, + 1152.0, + 374.0, + 1152.0, + 392.0, + 1130.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 366.0, + 1258.0, + 366.0, + 1258.0, + 385.0, + 1238.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 395.0, + 330.0, + 395.0, + 330.0, + 412.0, + 303.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 388.0, + 354.0, + 388.0, + 354.0, + 401.0, + 335.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 389.0, + 401.0, + 389.0, + 401.0, + 410.0, + 383.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 390.0, + 834.0, + 390.0, + 834.0, + 408.0, + 808.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 391.0, + 877.0, + 391.0, + 877.0, + 412.0, + 852.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 390.0, + 1019.0, + 390.0, + 1019.0, + 409.0, + 999.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 388.0, + 1303.0, + 388.0, + 1303.0, + 407.0, + 1280.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 407.0, + 566.0, + 407.0, + 566.0, + 426.0, + 342.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 408.0, + 627.0, + 408.0, + 627.0, + 426.0, + 602.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 408.0, + 669.0, + 408.0, + 669.0, + 426.0, + 642.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 408.0, + 712.0, + 408.0, + 712.0, + 426.0, + 683.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 409.0, + 748.0, + 409.0, + 748.0, + 425.0, + 733.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 408.0, + 794.0, + 408.0, + 794.0, + 426.0, + 772.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 408.0, + 837.0, + 408.0, + 837.0, + 426.0, + 815.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 408.0, + 894.0, + 408.0, + 894.0, + 425.0, + 869.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 410.0, + 929.0, + 410.0, + 929.0, + 424.0, + 904.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 408.0, + 965.0, + 408.0, + 965.0, + 425.0, + 936.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 409.0, + 994.0, + 409.0, + 994.0, + 425.0, + 980.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 408.0, + 1034.0, + 408.0, + 1034.0, + 426.0, + 1011.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 408.0, + 1070.0, + 408.0, + 1070.0, + 426.0, + 1046.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 408.0, + 1105.0, + 408.0, + 1105.0, + 426.0, + 1083.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 408.0, + 1194.0, + 408.0, + 1194.0, + 425.0, + 1167.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 408.0, + 1229.0, + 408.0, + 1229.0, + 425.0, + 1197.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 408.0, + 1262.0, + 408.0, + 1262.0, + 425.0, + 1231.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 409.0, + 1289.0, + 409.0, + 1289.0, + 425.0, + 1274.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 408.0, + 1328.0, + 408.0, + 1328.0, + 426.0, + 1305.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 408.0, + 1363.0, + 408.0, + 1363.0, + 426.0, + 1340.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 408.0, + 1396.0, + 408.0, + 1396.0, + 426.0, + 1375.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 254.5, + 1111.0, + 254.5, + 1111.0, + 278.5, + 1056.0, + 278.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 252.0, + 1308.0, + 252.0, + 1308.0, + 279.0, + 1276.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 291.0, + 917.0, + 291.0, + 917.0, + 327.5, + 888.0, + 327.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 279.5, + 544.0, + 279.5, + 544.0, + 296.0, + 494.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.75, + 337.5, + 475.75, + 337.5, + 475.75, + 354.5, + 432.75, + 354.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 289.5, + 680.0, + 289.5, + 680.0, + 299.0, + 621.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 358.5, + 1315.0, + 358.5, + 1315.0, + 374.5, + 1291.0, + 374.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 732.0, + 817.0, + 732.0, + 817.0, + 775.0, + 293.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 732.0, + 1357.0, + 732.0, + 1357.0, + 775.0, + 857.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 732.0, + 1406.0, + 732.0, + 1406.0, + 775.0, + 1376.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 766.0, + 655.0, + 766.0, + 655.0, + 798.0, + 296.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 1992.0, + 1111.0, + 1992.0, + 1111.0, + 2028.0, + 586.0, + 2028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 450.0, + 1006.0, + 450.0, + 1006.0, + 490.0, + 644.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 450.0, + 1054.0, + 450.0, + 1054.0, + 490.0, + 1044.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1039.0, + 983.0, + 1039.0, + 983.0, + 1083.0, + 296.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 859.0, + 73.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1117.0, + 1405.0, + 1117.0, + 1405.0, + 1150.0, + 296.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1146.0, + 505.0, + 1146.0, + 505.0, + 1183.0, + 295.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 1146.0, + 858.0, + 1146.0, + 858.0, + 1183.0, + 775.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1146.0, + 1266.0, + 1146.0, + 1266.0, + 1183.0, + 952.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 1146.0, + 1406.0, + 1146.0, + 1406.0, + 1183.0, + 1336.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1170.0, + 1406.0, + 1170.0, + 1406.0, + 1216.0, + 291.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1203.0, + 805.0, + 1203.0, + 805.0, + 1242.0, + 292.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 1203.0, + 1189.0, + 1203.0, + 1189.0, + 1242.0, + 836.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 1203.0, + 1407.0, + 1203.0, + 1407.0, + 1242.0, + 1217.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1233.0, + 1408.0, + 1233.0, + 1408.0, + 1270.0, + 294.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1258.0, + 857.0, + 1258.0, + 857.0, + 1303.0, + 291.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1258.0, + 1406.0, + 1258.0, + 1406.0, + 1303.0, + 985.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1291.0, + 1405.0, + 1291.0, + 1405.0, + 1329.0, + 292.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1324.0, + 643.0, + 1324.0, + 643.0, + 1353.0, + 296.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 1324.0, + 885.0, + 1324.0, + 885.0, + 1353.0, + 710.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1365.0, + 845.0, + 1365.0, + 845.0, + 1403.0, + 294.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1365.0, + 1405.0, + 1365.0, + 1405.0, + 1403.0, + 871.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1398.0, + 691.0, + 1398.0, + 691.0, + 1431.0, + 296.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 1398.0, + 1405.0, + 1398.0, + 1405.0, + 1431.0, + 717.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1427.0, + 1035.0, + 1427.0, + 1035.0, + 1460.0, + 295.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1427.0, + 1405.0, + 1427.0, + 1405.0, + 1460.0, + 1109.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1456.0, + 1404.0, + 1456.0, + 1404.0, + 1489.0, + 295.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1483.0, + 1405.0, + 1483.0, + 1405.0, + 1519.0, + 362.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1514.0, + 1406.0, + 1514.0, + 1406.0, + 1550.0, + 294.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1544.0, + 1404.0, + 1544.0, + 1404.0, + 1577.0, + 295.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1570.0, + 440.0, + 1570.0, + 440.0, + 1608.0, + 294.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 1570.0, + 785.0, + 1570.0, + 785.0, + 1608.0, + 480.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 864.0, + 583.0, + 864.0, + 583.0, + 905.0, + 293.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 864.0, + 1194.0, + 864.0, + 1194.0, + 905.0, + 622.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 864.0, + 1405.0, + 864.0, + 1405.0, + 905.0, + 1262.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 897.0, + 882.0, + 897.0, + 882.0, + 932.0, + 296.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 897.0, + 1405.0, + 897.0, + 1405.0, + 932.0, + 921.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 923.0, + 1406.0, + 923.0, + 1406.0, + 962.0, + 294.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 952.0, + 451.0, + 952.0, + 451.0, + 994.0, + 293.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 952.0, + 539.0, + 952.0, + 539.0, + 994.0, + 490.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 952.0, + 1127.0, + 952.0, + 1127.0, + 994.0, + 606.0, + 994.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 228, + 1403, + 228, + 1403, + 501, + 297, + 501 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 512, + 1405, + 512, + 1405, + 839, + 297, + 839 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1202, + 1403, + 1202, + 1403, + 1322, + 299, + 1322 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1944, + 1403, + 1944, + 1403, + 2035, + 299, + 2035 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 405, + 1418, + 1293, + 1418, + 1293, + 1642, + 405, + 1642 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 299, + 851, + 1406, + 851, + 1406, + 942, + 299, + 942 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 296, + 1733, + 1403, + 1733, + 1403, + 1852, + 296, + 1852 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 300, + 955, + 1402, + 955, + 1402, + 1018, + 300, + 1018 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 298, + 1126, + 1401, + 1126, + 1401, + 1187, + 298, + 1187 + ], + "score": 0.95 + }, + { + "category_id": 4, + "poly": [ + 426, + 1663, + 1268, + 1663, + 1268, + 1697, + 426, + 1697 + ], + "score": 0.931 + }, + { + "category_id": 0, + "poly": [ + 300, + 1058, + 588, + 1058, + 588, + 1095, + 300, + 1095 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 299, + 1888, + 604, + 1888, + 604, + 1918, + 299, + 1918 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 298, + 1357, + 477, + 1357, + 477, + 1389, + 298, + 1389 + ], + "score": 0.863 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 863, + 2089, + 863, + 2112, + 836, + 2112 + ], + "score": 0.857 + }, + { + "category_id": 13, + "poly": [ + 508, + 436, + 965, + 436, + 965, + 472, + 508, + 472 + ], + "score": 0.93, + "latex": "f ( \\phi ( s ^ { t } ) , m ^ { t - \\tilde { 1 } } ) = \\phi ( s ^ { t } ) \\odot H ( \\sigma \\tilde { ( } m ^ { t - 1 } ) \\mathbf { \\tilde { ) } }" + }, + { + "category_id": 13, + "poly": [ + 327, + 771, + 372, + 771, + 372, + 811, + 327, + 811 + ], + "score": 0.93, + "latex": "a _ { l } ^ { t , 1 }" + }, + { + "category_id": 13, + "poly": [ + 1050, + 438, + 1113, + 438, + 1113, + 472, + 1050, + 472 + ], + "score": 0.93, + "latex": "\\phi ( s ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 559, + 378, + 785, + 378, + 785, + 413, + 559, + 413 + ], + "score": 0.92, + "latex": "\\pmb { H } ( h ) \\in \\mathbb { R } ^ { H \\times W \\times 3 2 }" + }, + { + "category_id": 13, + "poly": [ + 1108, + 698, + 1153, + 698, + 1153, + 738, + 1108, + 738 + ], + "score": 0.92, + "latex": "a _ { l } ^ { t , 1 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 346, + 530, + 346, + 530, + 380, + 297, + 380 + ], + "score": 0.92, + "latex": "h = \\sigma ( m ^ { t - 1 } ) \\in \\dot { \\mathbb { R } } ^ { 3 2 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 880, + 449, + 880, + 449, + 915, + 298, + 915 + ], + "score": 0.91, + "latex": "V ( s _ { l } ^ { t } , m ^ { t - 1 } ) )" + }, + { + "category_id": 13, + "poly": [ + 1069, + 633, + 1115, + 633, + 1115, + 674, + 1069, + 674 + ], + "score": 0.91, + "latex": "a _ { d } ^ { t , 1 }" + }, + { + "category_id": 13, + "poly": [ + 1174, + 633, + 1220, + 633, + 1220, + 674, + 1174, + 674 + ], + "score": 0.91, + "latex": "a _ { d } ^ { t , 2 }" + }, + { + "category_id": 13, + "poly": [ + 1208, + 258, + 1273, + 258, + 1273, + 288, + 1208, + 288 + ], + "score": 0.91, + "latex": "m ^ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 703, + 736, + 747, + 736, + 747, + 775, + 703, + 775 + ], + "score": 0.9, + "latex": "a _ { l } ^ { t , 2 }" + }, + { + "category_id": 13, + "poly": [ + 296, + 631, + 975, + 631, + 975, + 674, + 296, + 674 + ], + "score": 0.9, + "latex": "{ \\pi } _ { d } ( a _ { d } ^ { t } \\vert s _ { d } ^ { t } , m ^ { t - 1 } ) ~ = ~ { \\pi } _ { d } ^ { ( 1 ) } ( a _ { d } ^ { \\bar { t } , 1 } \\vert s _ { d } ^ { t } , m ^ { t - 1 } ) { \\pi } _ { d } ^ { ( 2 ) } ( a _ { d } ^ { t , 2 } \\vert s _ { d } ^ { t } , m ^ { t - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1355, + 734, + 1400, + 734, + 1400, + 775, + 1355, + 775 + ], + "score": 0.9, + "latex": "a _ { d } ^ { t , 1 }" + }, + { + "category_id": 13, + "poly": [ + 496, + 471, + 545, + 471, + 545, + 502, + 496, + 502 + ], + "score": 0.9, + "latex": "f ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 297, + 697, + 927, + 697, + 927, + 739, + 297, + 739 + ], + "score": 0.89, + "latex": "\\pi _ { l } ( a _ { l } ^ { t } | s _ { l } ^ { t } , m ^ { t - 1 } ) = \\pi _ { l } ^ { \\mathrm { i d } } ( a _ { l } ^ { t , 1 } | s _ { l } ^ { t } , m ^ { t - 1 } ) \\pi _ { l } ^ { \\mathrm { b i t } } ( a _ { l } ^ { t , 2 } | s _ { l } ^ { t } , m ^ { t - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 318, + 382, + 473, + 382, + 473, + 410, + 318, + 410 + ], + "score": 0.89, + "latex": "H \\times W \\times 3 2" + }, + { + "category_id": 13, + "poly": [ + 618, + 348, + 666, + 348, + 666, + 379, + 618, + 379 + ], + "score": 0.89, + "latex": "\\sigma ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 852, + 320, + 948, + 320, + 948, + 347, + 852, + 347 + ], + "score": 0.88, + "latex": "N = 3 2" + }, + { + "category_id": 13, + "poly": [ + 1247, + 1157, + 1353, + 1157, + 1353, + 1186, + 1247, + 1186 + ], + "score": 0.88, + "latex": "\\Gamma = 0 . 9 5" + }, + { + "category_id": 13, + "poly": [ + 1072, + 577, + 1105, + 577, + 1105, + 603, + 1072, + 603 + ], + "score": 0.85, + "latex": "\\pi _ { d }" + }, + { + "category_id": 13, + "poly": [ + 806, + 473, + 831, + 473, + 831, + 497, + 806, + 497 + ], + "score": 0.83, + "latex": "\\odot" + }, + { + "category_id": 13, + "poly": [ + 597, + 291, + 625, + 291, + 625, + 317, + 597, + 317 + ], + "score": 0.82, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 1052, + 381, + 1071, + 381, + 1071, + 409, + 1052, + 409 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 298, + 411, + 316, + 411, + 316, + 437, + 298, + 437 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 340, + 320, + 368, + 320, + 368, + 345, + 340, + 345 + ], + "score": 0.8, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 1145, + 577, + 1173, + 577, + 1173, + 603, + 1145, + 603 + ], + "score": 0.8, + "latex": "\\pi _ { l }" + }, + { + "category_id": 13, + "poly": [ + 470, + 411, + 489, + 411, + 489, + 437, + 470, + 437 + ], + "score": 0.78, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 1111, + 349, + 1131, + 349, + 1131, + 375, + 1111, + 375 + ], + "score": 0.74, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 483, + 991, + 497, + 991, + 497, + 1014, + 483, + 1014 + ], + "score": 0.66, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 971, + 991, + 987, + 991, + 987, + 1013, + 971, + 1013 + ], + "score": 0.66, + "latex": "\\epsilon" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 1540.0, + 702.0, + 1540.0, + 702.0, + 1560.0, + 685.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 1576.0, + 577.0, + 1576.0, + 577.0, + 1593.0, + 560.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1573.0, + 953.0, + 1573.0, + 953.0, + 1595.0, + 931.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1573.0, + 1086.0, + 1573.0, + 1086.0, + 1595.0, + 1064.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1611.0, + 583.0, + 1611.0, + 583.0, + 1644.0, + 415.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 1610.0, + 1092.0, + 1610.0, + 1092.0, + 1644.0, + 788.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 1657.0, + 1274.0, + 1657.0, + 1274.0, + 1705.0, + 424.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1054.0, + 592.0, + 1054.0, + 592.0, + 1101.0, + 293.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1884.0, + 609.0, + 1884.0, + 609.0, + 1924.0, + 294.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1357.0, + 480.0, + 1357.0, + 480.0, + 1393.0, + 295.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 227.0, + 1407.0, + 227.0, + 1407.0, + 265.0, + 292.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 257.0, + 1207.0, + 257.0, + 1207.0, + 293.0, + 293.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 257.0, + 1405.0, + 257.0, + 1405.0, + 293.0, + 1274.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 288.0, + 596.0, + 288.0, + 596.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 288.0, + 1407.0, + 288.0, + 1407.0, + 326.0, + 626.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 315.0, + 339.0, + 315.0, + 339.0, + 354.0, + 294.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 315.0, + 851.0, + 315.0, + 851.0, + 354.0, + 369.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 315.0, + 1407.0, + 315.0, + 1407.0, + 354.0, + 949.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 340.0, + 296.0, + 340.0, + 296.0, + 387.0, + 290.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 340.0, + 617.0, + 340.0, + 617.0, + 387.0, + 531.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 340.0, + 1110.0, + 340.0, + 1110.0, + 387.0, + 667.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 340.0, + 1409.0, + 340.0, + 1409.0, + 387.0, + 1132.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 371.0, + 317.0, + 371.0, + 317.0, + 418.0, + 290.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 371.0, + 558.0, + 371.0, + 558.0, + 418.0, + 474.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 371.0, + 1051.0, + 371.0, + 1051.0, + 418.0, + 786.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 371.0, + 1408.0, + 371.0, + 1408.0, + 418.0, + 1072.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 407.0, + 297.0, + 407.0, + 297.0, + 444.0, + 293.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 407.0, + 469.0, + 407.0, + 469.0, + 444.0, + 317.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 407.0, + 1404.0, + 407.0, + 1404.0, + 444.0, + 490.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 432.0, + 507.0, + 432.0, + 507.0, + 476.0, + 292.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 432.0, + 1049.0, + 432.0, + 1049.0, + 476.0, + 966.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 432.0, + 1408.0, + 432.0, + 1408.0, + 476.0, + 1114.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 466.0, + 495.0, + 466.0, + 495.0, + 504.0, + 294.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 466.0, + 805.0, + 466.0, + 805.0, + 504.0, + 546.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 466.0, + 1114.0, + 466.0, + 1114.0, + 504.0, + 832.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 512.0, + 1406.0, + 512.0, + 1406.0, + 546.0, + 295.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 542.0, + 1408.0, + 542.0, + 1408.0, + 576.0, + 295.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 571.0, + 1071.0, + 571.0, + 1071.0, + 608.0, + 292.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 571.0, + 1144.0, + 571.0, + 1144.0, + 608.0, + 1106.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 571.0, + 1408.0, + 571.0, + 1408.0, + 608.0, + 1174.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 602.0, + 1406.0, + 602.0, + 1406.0, + 635.0, + 295.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 618.0, + 295.0, + 618.0, + 295.0, + 691.0, + 281.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 618.0, + 1068.0, + 618.0, + 1068.0, + 691.0, + 976.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 618.0, + 1173.0, + 618.0, + 1173.0, + 691.0, + 1116.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 618.0, + 1404.0, + 618.0, + 1404.0, + 691.0, + 1221.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 666.0, + 1405.0, + 666.0, + 1405.0, + 702.0, + 294.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 684.0, + 296.0, + 684.0, + 296.0, + 756.0, + 285.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 684.0, + 1107.0, + 684.0, + 1107.0, + 756.0, + 928.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 684.0, + 1415.0, + 684.0, + 1415.0, + 756.0, + 1154.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 724.0, + 702.0, + 724.0, + 702.0, + 785.0, + 288.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 724.0, + 1354.0, + 724.0, + 1354.0, + 785.0, + 748.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 762.0, + 326.0, + 762.0, + 326.0, + 817.0, + 286.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 762.0, + 1411.0, + 762.0, + 1411.0, + 817.0, + 373.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 805.0, + 596.0, + 805.0, + 596.0, + 842.0, + 294.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.25, + 643.5, + 853.25, + 643.5, + 853.25, + 677.5, + 798.25, + 677.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 644.0, + 640.0, + 644.0, + 640.0, + 678.0, + 581.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1203.0, + 1404.0, + 1203.0, + 1404.0, + 1237.0, + 295.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1232.0, + 1404.0, + 1232.0, + 1404.0, + 1265.0, + 294.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1262.0, + 1404.0, + 1262.0, + 1404.0, + 1295.0, + 295.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1287.0, + 974.0, + 1287.0, + 974.0, + 1329.0, + 293.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1408.0, + 1943.0, + 1408.0, + 1980.0, + 294.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 1405.0, + 2001.0, + 1405.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 848.0, + 1407.0, + 848.0, + 1407.0, + 887.0, + 293.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 877.0, + 297.0, + 877.0, + 297.0, + 917.0, + 294.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 877.0, + 1406.0, + 877.0, + 1406.0, + 917.0, + 450.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 910.0, + 742.0, + 910.0, + 742.0, + 947.0, + 294.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1734.0, + 1404.0, + 1734.0, + 1404.0, + 1768.0, + 296.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1761.0, + 1403.0, + 1761.0, + 1403.0, + 1795.0, + 296.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1791.0, + 1405.0, + 1791.0, + 1405.0, + 1825.0, + 295.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1821.0, + 763.0, + 1821.0, + 763.0, + 1855.0, + 295.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 957.0, + 1406.0, + 957.0, + 1406.0, + 989.0, + 298.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 984.0, + 482.0, + 984.0, + 482.0, + 1020.0, + 295.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 984.0, + 970.0, + 984.0, + 970.0, + 1020.0, + 498.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 984.0, + 1407.0, + 984.0, + 1407.0, + 1020.0, + 988.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1128.0, + 1403.0, + 1128.0, + 1403.0, + 1159.0, + 297.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1157.0, + 1246.0, + 1157.0, + 1246.0, + 1189.0, + 294.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1157.0, + 1364.0, + 1157.0, + 1364.0, + 1189.0, + 1354.0, + 1189.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1123, + 1402, + 1123, + 1402, + 1242, + 298, + 1242 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 403, + 806, + 1294, + 806, + 1294, + 1029, + 403, + 1029 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 299, + 1944, + 1403, + 1944, + 1403, + 2033, + 299, + 2033 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 298, + 611, + 1404, + 611, + 1404, + 703, + 298, + 703 + ], + "score": 0.962 + }, + { + "category_id": 3, + "poly": [ + 407, + 218, + 1293, + 218, + 1293, + 497, + 407, + 497 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 300, + 1256, + 1400, + 1256, + 1400, + 1319, + 300, + 1319 + ], + "score": 0.948 + }, + { + "category_id": 4, + "poly": [ + 397, + 1050, + 1298, + 1050, + 1298, + 1084, + 397, + 1084 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 298, + 1472, + 1105, + 1472, + 1105, + 1902, + 298, + 1902 + ], + "score": 0.908 + }, + { + "category_id": 4, + "poly": [ + 371, + 519, + 1320, + 519, + 1320, + 552, + 371, + 552 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 297, + 76, + 857, + 76, + 857, + 105, + 297, + 105 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 299, + 741, + 565, + 741, + 565, + 773, + 299, + 773 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 299, + 1356, + 481, + 1356, + 481, + 1387, + 299, + 1387 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2113, + 835, + 2113 + ], + "score": 0.859 + }, + { + "category_id": 0, + "poly": [ + 299, + 1430, + 693, + 1430, + 693, + 1462, + 299, + 1462 + ], + "score": 0.855 + }, + { + "category_id": 13, + "poly": [ + 499, + 1472, + 725, + 1472, + 725, + 1503, + 499, + 1503 + ], + "score": 0.93, + "latex": "X = [ x _ { 1 } , x _ { 2 } , \\cdot \\cdot \\cdot , x _ { n } ]" + }, + { + "category_id": 13, + "poly": [ + 1005, + 1685, + 1099, + 1685, + 1099, + 1716, + 1005, + 1716 + ], + "score": 0.89, + "latex": "( i , i + 1 )" + }, + { + "category_id": 13, + "poly": [ + 576, + 1690, + 626, + 1690, + 626, + 1715, + 576, + 1715 + ], + "score": 0.87, + "latex": "x _ { i + 1 }" + }, + { + "category_id": 13, + "poly": [ + 427, + 1662, + 535, + 1662, + 535, + 1688, + 427, + 1688 + ], + "score": 0.86, + "latex": "x _ { i } > x _ { i + 1 }" + }, + { + "category_id": 13, + "poly": [ + 391, + 1554, + 456, + 1554, + 456, + 1578, + 391, + 1578 + ], + "score": 0.85, + "latex": "t \\gets 0" + }, + { + "category_id": 13, + "poly": [ + 504, + 1691, + 530, + 1691, + 530, + 1712, + 504, + 1712 + ], + "score": 0.84, + "latex": "x _ { i }" + }, + { + "category_id": 13, + "poly": [ + 466, + 1528, + 531, + 1528, + 531, + 1551, + 466, + 1551 + ], + "score": 0.84, + "latex": "i \\gets 0" + }, + { + "category_id": 13, + "poly": [ + 393, + 1581, + 419, + 1581, + 419, + 1605, + 393, + 1605 + ], + "score": 0.83, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 368, + 1607, + 436, + 1607, + 436, + 1632, + 368, + 1632 + ], + "score": 0.81, + "latex": "c \\gets 0" + }, + { + "category_id": 13, + "poly": [ + 430, + 1635, + 538, + 1635, + 538, + 1659, + 430, + 1659 + ], + "score": 0.77, + "latex": "c < n - 1" + }, + { + "category_id": 13, + "poly": [ + 802, + 1479, + 821, + 1479, + 821, + 1498, + 802, + 1498 + ], + "score": 0.73, + "latex": "_ n" + }, + { + "category_id": 13, + "poly": [ + 871, + 1689, + 883, + 1689, + 883, + 1711, + 871, + 1711 + ], + "score": 0.71, + "latex": "t" + }, + { + "category_id": 14, + "poly": [ + 441, + 1713, + 549, + 1713, + 549, + 1739, + 441, + 1739 + ], + "score": 0.61, + "latex": "t \\gets \\bar { t } + 1" + }, + { + "category_id": 14, + "poly": [ + 410, + 1790, + 642, + 1790, + 642, + 1850, + 410, + 1850 + ], + "score": 0.44, + "latex": "\\begin{array} { l } { c c + 1 } \\\\ { i ( i + 1 ) \\% ( n - 1 ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 440, + 1713, + 549, + 1713, + 549, + 1739, + 440, + 1739 + ], + "score": 0.3, + "latex": "t \\gets \\bar { t } + 1" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 831.0, + 510.0, + 831.0, + 510.0, + 850.0, + 493.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 832.0, + 950.0, + 832.0, + 950.0, + 849.0, + 933.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 832.0, + 1150.0, + 832.0, + 1150.0, + 849.0, + 1133.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 962.0, + 462.0, + 962.0, + 462.0, + 983.0, + 441.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 997.0, + 583.0, + 997.0, + 583.0, + 1032.0, + 412.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 999.0, + 1091.0, + 999.0, + 1091.0, + 1032.0, + 788.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 378.0, + 477.0, + 378.0, + 477.0, + 387.0, + 467.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 417.0, + 588.0, + 417.0, + 588.0, + 450.0, + 418.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 419.0, + 1097.0, + 419.0, + 1097.0, + 449.0, + 794.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 443.0, + 595.0, + 443.0, + 595.0, + 469.0, + 412.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 441.0, + 1235.0, + 441.0, + 1235.0, + 474.0, + 654.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 467.0, + 600.0, + 467.0, + 600.0, + 498.0, + 404.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1048.0, + 1300.0, + 1048.0, + 1300.0, + 1088.0, + 397.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 517.0, + 1324.0, + 517.0, + 1324.0, + 556.0, + 372.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 737.0, + 568.0, + 737.0, + 568.0, + 779.0, + 293.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1354.0, + 483.0, + 1354.0, + 483.0, + 1390.0, + 295.0, + 1390.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, + 1428.0, + 698.0, + 1428.0, + 698.0, + 1464.0, + 294.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1124.0, + 1403.0, + 1124.0, + 1403.0, + 1158.0, + 296.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1151.0, + 1406.0, + 1151.0, + 1406.0, + 1187.0, + 292.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1177.0, + 1407.0, + 1177.0, + 1407.0, + 1221.0, + 292.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1211.0, + 697.0, + 1211.0, + 697.0, + 1245.0, + 293.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2010.0, + 292.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 421.0, + 2000.0, + 421.0, + 2035.0, + 294.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 610.0, + 1405.0, + 610.0, + 1405.0, + 647.0, + 294.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 641.0, + 1404.0, + 641.0, + 1404.0, + 677.0, + 293.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 668.0, + 609.0, + 668.0, + 609.0, + 708.0, + 294.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1256.0, + 1404.0, + 1256.0, + 1404.0, + 1291.0, + 295.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1285.0, + 766.0, + 1285.0, + 766.0, + 1324.0, + 295.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1471.0, + 498.0, + 1471.0, + 498.0, + 1504.0, + 296.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1471.0, + 801.0, + 1471.0, + 801.0, + 1504.0, + 726.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1471.0, + 957.0, + 1471.0, + 957.0, + 1504.0, + 822.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1497.0, + 525.0, + 1497.0, + 525.0, + 1531.0, + 296.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1523.0, + 465.0, + 1523.0, + 465.0, + 1557.0, + 297.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 1523.0, + 536.0, + 1523.0, + 536.0, + 1557.0, + 532.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1549.0, + 390.0, + 1549.0, + 390.0, + 1584.0, + 297.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1549.0, + 462.0, + 1549.0, + 462.0, + 1584.0, + 457.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1575.0, + 392.0, + 1575.0, + 392.0, + 1611.0, + 295.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1575.0, + 737.0, + 1575.0, + 737.0, + 1611.0, + 420.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1605.0, + 329.0, + 1605.0, + 329.0, + 1633.0, + 299.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1605.0, + 367.0, + 1605.0, + 367.0, + 1634.0, + 363.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 1605.0, + 441.0, + 1605.0, + 441.0, + 1634.0, + 437.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1630.0, + 328.0, + 1630.0, + 328.0, + 1661.0, + 299.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1632.0, + 429.0, + 1632.0, + 429.0, + 1661.0, + 366.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 1632.0, + 574.0, + 1632.0, + 574.0, + 1661.0, + 539.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1658.0, + 328.0, + 1658.0, + 328.0, + 1687.0, + 299.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 1660.0, + 426.0, + 1660.0, + 426.0, + 1688.0, + 402.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 1660.0, + 593.0, + 1660.0, + 593.0, + 1688.0, + 536.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1684.0, + 328.0, + 1684.0, + 328.0, + 1715.0, + 299.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1684.0, + 503.0, + 1684.0, + 503.0, + 1717.0, + 438.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1684.0, + 575.0, + 1684.0, + 575.0, + 1717.0, + 531.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1684.0, + 870.0, + 1684.0, + 870.0, + 1717.0, + 627.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1684.0, + 1004.0, + 1684.0, + 1004.0, + 1717.0, + 884.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1710.0, + 328.0, + 1710.0, + 328.0, + 1741.0, + 299.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1709.0, + 554.0, + 1709.0, + 554.0, + 1741.0, + 550.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1738.0, + 329.0, + 1738.0, + 329.0, + 1767.0, + 299.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 1737.0, + 507.0, + 1737.0, + 507.0, + 1767.0, + 437.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1762.0, + 337.0, + 1762.0, + 337.0, + 1796.0, + 297.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1764.0, + 486.0, + 1764.0, + 486.0, + 1794.0, + 411.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1790.0, + 336.0, + 1790.0, + 336.0, + 1820.0, + 296.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1817.0, + 337.0, + 1817.0, + 337.0, + 1847.0, + 296.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1842.0, + 339.0, + 1842.0, + 339.0, + 1874.0, + 294.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 1843.0, + 486.0, + 1843.0, + 486.0, + 1874.0, + 371.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1871.0, + 447.0, + 1871.0, + 447.0, + 1899.0, + 296.0, + 1899.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 229, + 1404, + 229, + 1404, + 351, + 298, + 351 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 699, + 1404, + 699, + 1404, + 819, + 297, + 819 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 934, + 1405, + 934, + 1405, + 1025, + 298, + 1025 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 572, + 1121, + 1128, + 1121, + 1128, + 1514, + 572, + 1514 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 705, + 616, + 991, + 616, + 991, + 693, + 705, + 693 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 297, + 516, + 1403, + 516, + 1403, + 579, + 297, + 579 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 288, + 1601, + 1403, + 1601, + 1403, + 1664, + 288, + 1664 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 574, + 880, + 1123, + 880, + 1123, + 922, + 574, + 922 + ], + "score": 0.941 + }, + { + "category_id": 4, + "poly": [ + 505, + 1531, + 1192, + 1531, + 1192, + 1566, + 505, + 1566 + ], + "score": 0.931 + }, + { + "category_id": 0, + "poly": [ + 298, + 834, + 615, + 834, + 615, + 866, + 298, + 866 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 857, + 74, + 857, + 105, + 297, + 105 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 300, + 392, + 696, + 392, + 696, + 428, + 300, + 428 + ], + "score": 0.903 + }, + { + "category_id": 9, + "poly": [ + 1366, + 634, + 1400, + 634, + 1400, + 664, + 1366, + 664 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1366, + 886, + 1400, + 886, + 1400, + 916, + 1366, + 916 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.854 + }, + { + "category_id": 0, + "poly": [ + 302, + 460, + 797, + 460, + 797, + 493, + 302, + 493 + ], + "score": 0.799 + }, + { + "category_id": 0, + "poly": [ + 298, + 592, + 550, + 592, + 550, + 624, + 298, + 624 + ], + "score": 0.562 + }, + { + "category_id": 1, + "poly": [ + 298, + 592, + 550, + 592, + 550, + 624, + 298, + 624 + ], + "score": 0.415 + }, + { + "category_id": 1, + "poly": [ + 295, + 1059, + 1024, + 1059, + 1024, + 1093, + 295, + 1093 + ], + "score": 0.196 + }, + { + "category_id": 0, + "poly": [ + 295, + 1059, + 1024, + 1059, + 1024, + 1093, + 295, + 1093 + ], + "score": 0.187 + }, + { + "category_id": 1, + "poly": [ + 302, + 460, + 797, + 460, + 797, + 493, + 302, + 493 + ], + "score": 0.156 + }, + { + "category_id": 14, + "poly": [ + 706, + 612, + 993, + 612, + 993, + 693, + 706, + 693 + ], + "score": 0.95, + "latex": "r ^ { t } = R ( s _ { d } ^ { t } ) = \\frac { \\beta } { \\sqrt { N ( s _ { d } ^ { t } ) } } ," + }, + { + "category_id": 13, + "poly": [ + 1300, + 699, + 1374, + 699, + 1374, + 734, + 1300, + 734 + ], + "score": 0.92, + "latex": "N ( s _ { d } ^ { t } )" + }, + { + "category_id": 14, + "poly": [ + 575, + 879, + 1120, + 879, + 1120, + 920, + 575, + 920 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { r ^ { t } = R ( s _ { d } ^ { t } , m ^ { t - 1 } , a _ { d } ^ { t } ) = - \\log \\pi _ { d } ( a _ { d } ^ { t } | s _ { d } ^ { t } , m ^ { t - 1 } ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 627, + 702, + 697, + 702, + 697, + 732, + 627, + 732 + ], + "score": 0.9, + "latex": "\\beta = 1" + }, + { + "category_id": 13, + "poly": [ + 372, + 935, + 402, + 935, + 402, + 969, + 372, + 969 + ], + "score": 0.87, + "latex": "a _ { d } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 372, + 703, + 392, + 703, + 392, + 732, + 372, + 732 + ], + "score": 0.84, + "latex": "\\beta" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1118.0, + 650.0, + 1118.0, + 650.0, + 1179.0, + 597.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1115.0, + 939.0, + 1115.0, + 939.0, + 1175.0, + 896.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1195.0, + 724.0, + 1195.0, + 724.0, + 1244.0, + 597.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1202.0, + 1011.0, + 1202.0, + 1011.0, + 1236.0, + 884.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 1205.0, + 1112.0, + 1205.0, + 1112.0, + 1232.0, + 1055.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1263.0, + 1053.0, + 1263.0, + 1053.0, + 1291.0, + 973.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1283.0, + 1000.0, + 1283.0, + 1000.0, + 1335.0, + 696.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1323.0, + 691.0, + 1323.0, + 691.0, + 1351.0, + 630.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 1325.0, + 1045.0, + 1325.0, + 1045.0, + 1352.0, + 986.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 1398.0, + 720.0, + 1398.0, + 720.0, + 1428.0, + 599.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1402.0, + 1076.0, + 1402.0, + 1076.0, + 1425.0, + 957.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1456.0, + 736.0, + 1456.0, + 736.0, + 1494.0, + 659.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1433.0, + 1046.0, + 1433.0, + 1046.0, + 1520.0, + 999.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.25, + 1131.0, + 725.25, + 1131.0, + 725.25, + 1169.0, + 643.25, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1128.0, + 1007.0, + 1128.0, + 1007.0, + 1170.0, + 928.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1476.0, + 690.0, + 1476.0, + 690.0, + 1514.0, + 645.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1463.0, + 673.0, + 1463.0, + 673.0, + 1522.5, + 572.0, + 1522.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 1530.0, + 1194.0, + 1530.0, + 1194.0, + 1569.0, + 504.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 832.0, + 618.0, + 832.0, + 618.0, + 872.0, + 296.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 388.0, + 699.0, + 388.0, + 699.0, + 433.0, + 293.0, + 433.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": [ + 295.0, + 460.0, + 800.0, + 460.0, + 800.0, + 495.0, + 295.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 590.0, + 554.0, + 590.0, + 554.0, + 627.0, + 298.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1058.0, + 1026.0, + 1058.0, + 1026.0, + 1096.0, + 295.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 230.0, + 1406.0, + 230.0, + 1406.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 1404.0, + 261.0, + 1404.0, + 293.0, + 294.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 289.0, + 1404.0, + 289.0, + 1404.0, + 325.0, + 295.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 320.0, + 1362.0, + 320.0, + 1362.0, + 352.0, + 296.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 698.0, + 371.0, + 698.0, + 371.0, + 737.0, + 295.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 698.0, + 626.0, + 698.0, + 626.0, + 737.0, + 393.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 698.0, + 1299.0, + 698.0, + 1299.0, + 737.0, + 698.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 698.0, + 1405.0, + 698.0, + 1405.0, + 737.0, + 1375.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 726.0, + 1405.0, + 726.0, + 1405.0, + 766.0, + 294.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 759.0, + 1405.0, + 759.0, + 1405.0, + 793.0, + 295.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 786.0, + 534.0, + 786.0, + 534.0, + 824.0, + 294.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 933.0, + 371.0, + 933.0, + 371.0, + 970.0, + 293.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 933.0, + 1405.0, + 933.0, + 1405.0, + 970.0, + 403.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 964.0, + 1405.0, + 964.0, + 1405.0, + 997.0, + 295.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 991.0, + 1341.0, + 991.0, + 1341.0, + 1027.0, + 293.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 513.0, + 1404.0, + 513.0, + 1404.0, + 553.0, + 294.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 541.0, + 364.0, + 541.0, + 364.0, + 584.0, + 290.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1601.0, + 1405.0, + 1601.0, + 1405.0, + 1638.0, + 294.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1628.0, + 494.0, + 1628.0, + 494.0, + 1666.0, + 294.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 590.0, + 554.0, + 590.0, + 554.0, + 627.0, + 298.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1058.0, + 1026.0, + 1058.0, + 1026.0, + 1096.0, + 295.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 460.0, + 800.0, + 460.0, + 800.0, + 495.0, + 295.0, + 495.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/SJyVzQ-C-/images/080b0198eaea0fe2ad695f2300f5f44e370afb3f693385f868df02e311bdb4d7.jpg b/parse/train/SJyVzQ-C-/images/080b0198eaea0fe2ad695f2300f5f44e370afb3f693385f868df02e311bdb4d7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f50b604b192c840b06671c25eb1a4d046e6530c --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/080b0198eaea0fe2ad695f2300f5f44e370afb3f693385f868df02e311bdb4d7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3873ce7a67e536c64e962a15294f8582139cf4658b624cbf0797fb3b5db63c7d +size 21558 diff --git a/parse/train/SJyVzQ-C-/images/0a168a922a4cdc23ffbcba643900e9fa7e60d2fa738443aed02c1cf592b69992.jpg b/parse/train/SJyVzQ-C-/images/0a168a922a4cdc23ffbcba643900e9fa7e60d2fa738443aed02c1cf592b69992.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17b7a7691c0e67be70ec0f7760496cf9802c0502 --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/0a168a922a4cdc23ffbcba643900e9fa7e60d2fa738443aed02c1cf592b69992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0498a63564dabdb556a566ae25536ebbb0d490b1d37c0de90535dd7cfb9b9c5e +size 11684 diff --git a/parse/train/SJyVzQ-C-/images/19a7aa964ddb00f5896584ab9a2ee80ad80921cffd3df6a4d3833ec209159062.jpg b/parse/train/SJyVzQ-C-/images/19a7aa964ddb00f5896584ab9a2ee80ad80921cffd3df6a4d3833ec209159062.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a401e31c9758c3fd07cb68dc351a409b4b282f5f --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/19a7aa964ddb00f5896584ab9a2ee80ad80921cffd3df6a4d3833ec209159062.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:414b92c9c1482740a16b210056b3c9826df18bf4557c8e9c7fe7047151386126 +size 7433 diff --git a/parse/train/SJyVzQ-C-/images/19b899377283a2897e4e2f965b3f5c99c16188c1df7a49acc53da71265300747.jpg b/parse/train/SJyVzQ-C-/images/19b899377283a2897e4e2f965b3f5c99c16188c1df7a49acc53da71265300747.jpg new file mode 100644 index 0000000000000000000000000000000000000000..39e601789c0e1a88706447c23d2910bd3603ebd4 --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/19b899377283a2897e4e2f965b3f5c99c16188c1df7a49acc53da71265300747.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6431d897e7318b3d896bde774aca942de3d6652b46d9d4d88ea2110b4860bbcd +size 11549 diff --git a/parse/train/SJyVzQ-C-/images/1e947ec086b9b0b95ed800567914b15a7c2e4666bcc4d4fde3424b3f5195e5ea.jpg b/parse/train/SJyVzQ-C-/images/1e947ec086b9b0b95ed800567914b15a7c2e4666bcc4d4fde3424b3f5195e5ea.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b1a5a0cc036ae77b536574a5a36be6fc2ac93ed --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/1e947ec086b9b0b95ed800567914b15a7c2e4666bcc4d4fde3424b3f5195e5ea.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2a6a8fade4743d5697a264331f204eaf47c46973cdfea610bc02f7c9ba7034f +size 7051 diff --git a/parse/train/SJyVzQ-C-/images/24b9c68592299ce9300b633f9611f2195b71342c78020834a7e086496852e274.jpg b/parse/train/SJyVzQ-C-/images/24b9c68592299ce9300b633f9611f2195b71342c78020834a7e086496852e274.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee6be8b84b7982be9cab2468f5ba8c1fc1fbde8b --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/24b9c68592299ce9300b633f9611f2195b71342c78020834a7e086496852e274.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54167330d1234fd136777a0e5df90c18e9473360a9ed9ee66ed039af49c4a061 +size 19642 diff --git a/parse/train/SJyVzQ-C-/images/2aeea17ebcb0188853ad5bb84b6d7253418d9774807341160e5fb918f328b85d.jpg b/parse/train/SJyVzQ-C-/images/2aeea17ebcb0188853ad5bb84b6d7253418d9774807341160e5fb918f328b85d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ad71e0b18e30464c8004d59fe6fc82cc156954f --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/2aeea17ebcb0188853ad5bb84b6d7253418d9774807341160e5fb918f328b85d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7b6d6d3502c71551139a1562a542aa8c78f68b7de1fb2e35f8bdd0ae8ab2888 +size 46466 diff --git a/parse/train/SJyVzQ-C-/images/45583947707d0455d79d12a5db380878e6174220941656e29500ab8024936b0e.jpg b/parse/train/SJyVzQ-C-/images/45583947707d0455d79d12a5db380878e6174220941656e29500ab8024936b0e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3198aae6c2716ac82ae7acfbf760681835883bda --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/45583947707d0455d79d12a5db380878e6174220941656e29500ab8024936b0e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:437cb79faac36586d3c63987cb72ad2e8c0209cf1505c37745a4b7c83ee72cde +size 63330 diff --git a/parse/train/SJyVzQ-C-/images/463bd2f8083be91f8df7ca8a7e5292781fe18c685b3e04efd116713fc227bc09.jpg b/parse/train/SJyVzQ-C-/images/463bd2f8083be91f8df7ca8a7e5292781fe18c685b3e04efd116713fc227bc09.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51ffcae7daeb27ced1e446636cc539aa73e74bc2 --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/463bd2f8083be91f8df7ca8a7e5292781fe18c685b3e04efd116713fc227bc09.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9575e446f69620899cd64f7b8eb178ef94dc192423a35dc0f35017d9a29fe435 +size 20596 diff --git a/parse/train/SJyVzQ-C-/images/4b8d4833a24b6748ef3cd0f76c9fe0025e06c99555d7e766f2a29c044f96997c.jpg b/parse/train/SJyVzQ-C-/images/4b8d4833a24b6748ef3cd0f76c9fe0025e06c99555d7e766f2a29c044f96997c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59f444e0bc7d4f43ef3a9bf866f2437a20f2bb1d --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/4b8d4833a24b6748ef3cd0f76c9fe0025e06c99555d7e766f2a29c044f96997c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96bbcdb36f0f401409b6df8d6acdb2e8ce903c36ecfa973a6269f5d83436c152 +size 30221 diff --git a/parse/train/SJyVzQ-C-/images/58fbc95757bda8d8b5297de81e2a587e22f8bcf476f9fcb6913b30e2a0ced2ed.jpg b/parse/train/SJyVzQ-C-/images/58fbc95757bda8d8b5297de81e2a587e22f8bcf476f9fcb6913b30e2a0ced2ed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f28a96559c49f328cf88cd398be55abccb7ad71e --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/58fbc95757bda8d8b5297de81e2a587e22f8bcf476f9fcb6913b30e2a0ced2ed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70e5f9633bd3587f6c08847738bb2e96b45dda94f5c5adb0e775c709a286c800 +size 86109 diff --git a/parse/train/SJyVzQ-C-/images/81288747a210a7748b2bb2edb3d9e19287db61a5f4d0244a78b709167c48133c.jpg b/parse/train/SJyVzQ-C-/images/81288747a210a7748b2bb2edb3d9e19287db61a5f4d0244a78b709167c48133c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8dc75505ebad541561fac952229f2170aa46b2e --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/81288747a210a7748b2bb2edb3d9e19287db61a5f4d0244a78b709167c48133c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7add72dc08a933c7b6aaabd1b94950c76b4482a9b1c1c59a73d1d6fdc2698a86 +size 23503 diff --git a/parse/train/SJyVzQ-C-/images/87020ced434d3499701675350c507f939c1046c58cb17698501cdf12b3ae97a7.jpg b/parse/train/SJyVzQ-C-/images/87020ced434d3499701675350c507f939c1046c58cb17698501cdf12b3ae97a7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a504680443c45a21b20d42b1484f4f80459af6ea --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/87020ced434d3499701675350c507f939c1046c58cb17698501cdf12b3ae97a7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b84b6e114611b2598f6928599326c69e25853cbd81920e4adf55175a9aeb6c +size 23338 diff --git a/parse/train/SJyVzQ-C-/images/910137973af0702bba6415fa366c5234d0c42e20a24f609d5bd82422af5dbf96.jpg b/parse/train/SJyVzQ-C-/images/910137973af0702bba6415fa366c5234d0c42e20a24f609d5bd82422af5dbf96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2499870c6ffb71b19d366ae3eeef45cd963ab4f --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/910137973af0702bba6415fa366c5234d0c42e20a24f609d5bd82422af5dbf96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e74c5fc9d4176f90785d638754bdaea8c173f2ae8c166a312cf6594b5bde95c +size 24946 diff --git a/parse/train/SJyVzQ-C-/images/93bdccc72eea7a43b2752ee0bbada1f1fb8f1cc819ea811ccae19b60a4d61061.jpg b/parse/train/SJyVzQ-C-/images/93bdccc72eea7a43b2752ee0bbada1f1fb8f1cc819ea811ccae19b60a4d61061.jpg new file mode 100644 index 0000000000000000000000000000000000000000..857c8a2ca5ba8e7d0b09fa2a4a3b240a00252963 --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/93bdccc72eea7a43b2752ee0bbada1f1fb8f1cc819ea811ccae19b60a4d61061.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ba3a8035163f0d6293b2e78e7d3d67ad8b08963ea12e9badc7b2b10ce5bf45 +size 13404 diff --git a/parse/train/SJyVzQ-C-/images/9f4bf8304f3c42f131fdef6f693f45615c4ab57d1fc38de924e0cfd7fb9a8e70.jpg b/parse/train/SJyVzQ-C-/images/9f4bf8304f3c42f131fdef6f693f45615c4ab57d1fc38de924e0cfd7fb9a8e70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..349a5bc5396d1f2ddf46be8fa8a7a9b5c1ad4b6b --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/9f4bf8304f3c42f131fdef6f693f45615c4ab57d1fc38de924e0cfd7fb9a8e70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1408d4099c3e9dc71650970961f462cf5233d200742e3c3f396c5dce6729359 +size 67485 diff --git a/parse/train/SJyVzQ-C-/images/a9990d1706822c4d925d6c9a10839ee14f0260c58e403a40356f53bb93dc5647.jpg b/parse/train/SJyVzQ-C-/images/a9990d1706822c4d925d6c9a10839ee14f0260c58e403a40356f53bb93dc5647.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d4a68674fa0e5baac25c825a0b8490188fbb2142 --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/a9990d1706822c4d925d6c9a10839ee14f0260c58e403a40356f53bb93dc5647.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:986ccb0eaeec6af6eea49bdf284f7765be1af4870261ea4c5deb844ec305642d +size 16527 diff --git a/parse/train/SJyVzQ-C-/images/b38dd65a7f67fddfa81341093884dcd3c38ba12153ff03f3da3f09bec8e564e5.jpg b/parse/train/SJyVzQ-C-/images/b38dd65a7f67fddfa81341093884dcd3c38ba12153ff03f3da3f09bec8e564e5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cfc9f20a6840115924c507fadb56e8282bdc14ec --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/b38dd65a7f67fddfa81341093884dcd3c38ba12153ff03f3da3f09bec8e564e5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a5047c780a6734cb4a32c01e750de969351d73fc5cb3b14dc2a97d4cf62b794 +size 7430 diff --git a/parse/train/SJyVzQ-C-/images/c56e7b117430a0f08c020211f1d54d6de45a191dab907f9d4cb05bab8c3cfa93.jpg b/parse/train/SJyVzQ-C-/images/c56e7b117430a0f08c020211f1d54d6de45a191dab907f9d4cb05bab8c3cfa93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6bfb7387d264fdfc93b7651997977823327cca84 --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/c56e7b117430a0f08c020211f1d54d6de45a191dab907f9d4cb05bab8c3cfa93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e0deb50dfd433c0e8903435feb978bc60a4ca37fe9007cc6016c8c2ffcacf3 +size 25303 diff --git a/parse/train/SJyVzQ-C-/images/cb441eff58ff23d6d3734a8c592089c38ee86cc0af61b90822ae152ec84ef3dc.jpg b/parse/train/SJyVzQ-C-/images/cb441eff58ff23d6d3734a8c592089c38ee86cc0af61b90822ae152ec84ef3dc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14dea710d01ee66a715d7308aba0d94ba69f1ce9 --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/cb441eff58ff23d6d3734a8c592089c38ee86cc0af61b90822ae152ec84ef3dc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feaadcb03c138fe53deb61152493ff5ab6ea21b33d90470cea417a01ffc1f03c +size 36769 diff --git a/parse/train/SJyVzQ-C-/images/d5b9503e2f3580f8faa094454aa7daa1f3502bb502f6109681ecc8d523451ea2.jpg b/parse/train/SJyVzQ-C-/images/d5b9503e2f3580f8faa094454aa7daa1f3502bb502f6109681ecc8d523451ea2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..351d5bb01f9d394ebbeb7bc6569c2ca49c7ac6ca --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/d5b9503e2f3580f8faa094454aa7daa1f3502bb502f6109681ecc8d523451ea2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e3bbdc4a6fcff6e5d98038670a8ec8d20f6f0ab7b47be81ed077102b58876c2 +size 6815 diff --git a/parse/train/SJyVzQ-C-/images/d64e450f08346c6bc468f12061b79ab092e7cc2cf8930eb3af1ac794100c063b.jpg b/parse/train/SJyVzQ-C-/images/d64e450f08346c6bc468f12061b79ab092e7cc2cf8930eb3af1ac794100c063b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f99ba532e96df40e1c5feee3e4c06709185b8f2 --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/d64e450f08346c6bc468f12061b79ab092e7cc2cf8930eb3af1ac794100c063b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2a87f90211f1741c68d4ca3821b790e7cf32912fa4e4ab601368c6fd619c1fb +size 31976 diff --git a/parse/train/SJyVzQ-C-/images/e8caa9152ecfc21710dfc1a2d30cc6455c9f4a6ee49165aa732df86c66312e73.jpg b/parse/train/SJyVzQ-C-/images/e8caa9152ecfc21710dfc1a2d30cc6455c9f4a6ee49165aa732df86c66312e73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..beffa260e007b4fef8f24f82c92a34ecb5597134 --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/e8caa9152ecfc21710dfc1a2d30cc6455c9f4a6ee49165aa732df86c66312e73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc322106cc5b18190eec86d1de5ad58c11d5be4da931108e7e7ac90bd9a37056 +size 29078 diff --git a/parse/train/SJyVzQ-C-/images/ee9b4078e855855dd4a7060bf6140cdc2c1570eb2de4814747098ead92f77b38.jpg b/parse/train/SJyVzQ-C-/images/ee9b4078e855855dd4a7060bf6140cdc2c1570eb2de4814747098ead92f77b38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38abcaa1408b29339c38e85c9584b415a4b76b5d --- /dev/null +++ b/parse/train/SJyVzQ-C-/images/ee9b4078e855855dd4a7060bf6140cdc2c1570eb2de4814747098ead92f77b38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:390aa631da79d2089d63944793564fa354c97900b92c37f3d9b73f1ea2a7f9b0 +size 44629 diff --git a/parse/train/SJzRZ-WCZ/SJzRZ-WCZ_middle.json b/parse/train/SJzRZ-WCZ/SJzRZ-WCZ_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..e83c46b08dee943d8e582c5ff6223f34b38e37a0 --- /dev/null +++ b/parse/train/SJzRZ-WCZ/SJzRZ-WCZ_middle.json @@ -0,0 +1,39171 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 442, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 444, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 444, + 98 + ], + "score": 1.0, + "content": "LATENT SPACE ODDITY: ON THE CURVATURE", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 98, + 343, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 343, + 117 + ], + "score": 1.0, + "content": "OF DEEP GENERATIVE MODELS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 374, + 168 + ], + "lines": [ + { + "bbox": [ + 111, + 135, + 352, + 149 + ], + "spans": [ + { + "bbox": [ + 111, + 135, + 352, + 149 + ], + "score": 1.0, + "content": "Georgios Arvanitidis, Lars Kai Hansen, Søren Hauberg", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 145, + 374, + 160 + ], + "spans": [ + { + "bbox": [ + 111, + 145, + 374, + 160 + ], + "score": 1.0, + "content": "Technical University of Denmark, Section for Cognitive Systems", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 112, + 157, + 257, + 169 + ], + "spans": [ + { + "bbox": [ + 112, + 157, + 257, + 169 + ], + "score": 1.0, + "content": "{gear,lkai,sohau}@dtu.dk", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 278, + 198, + 333, + 209 + ], + "lines": [ + { + "bbox": [ + 276, + 197, + 335, + 210 + ], + "spans": [ + { + "bbox": [ + 276, + 197, + 335, + 210 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 222, + 468, + 354 + ], + "lines": [ + { + "bbox": [ + 141, + 222, + 469, + 234 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 469, + 234 + ], + "score": 1.0, + "content": "Deep generative models provide a systematic way to learn nonlinear data distri-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "spans": [ + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "score": 1.0, + "content": "butions through a set of latent variables and a nonlinear “generator” function that", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 245, + 469, + 255 + ], + "spans": [ + { + "bbox": [ + 141, + 245, + 469, + 255 + ], + "score": 1.0, + "content": "maps latent points into the input space. The nonlinearity of the generator implies", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 254, + 469, + 267 + ], + "spans": [ + { + "bbox": [ + 141, + 254, + 469, + 267 + ], + "score": 1.0, + "content": "that the latent space gives a distorted view of the input space. Under mild condi-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 266, + 469, + 278 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 469, + 278 + ], + "score": 1.0, + "content": "tions, we show that this distortion can be characterized by a stochastic Rieman-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 277, + 469, + 289 + ], + "spans": [ + { + "bbox": [ + 141, + 277, + 469, + 289 + ], + "score": 1.0, + "content": "nian metric, and we demonstrate that distances and interpolants are significantly", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "score": 1.0, + "content": "improved under this metric. This in turn improves probability distributions, sam-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 299, + 470, + 311 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 470, + 311 + ], + "score": 1.0, + "content": "pling algorithms and clustering in the latent space. Our geometric analysis further", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 310, + 470, + 322 + ], + "spans": [ + { + "bbox": [ + 141, + 310, + 470, + 322 + ], + "score": 1.0, + "content": "reveals that current generators provide poor variance estimates and we propose a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 321, + 470, + 333 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 470, + 333 + ], + "score": 1.0, + "content": "new generator architecture with vastly improved variance estimates. Results are", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 331, + 470, + 344 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 470, + 344 + ], + "score": 1.0, + "content": "demonstrated on convolutional and fully connected variational autoencoders, but", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 343, + 405, + 354 + ], + "spans": [ + { + "bbox": [ + 142, + 343, + 405, + 354 + ], + "score": 1.0, + "content": "the formalism easily generalizes to other deep generative models.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 108, + 374, + 206, + 387 + ], + "lines": [ + { + "bbox": [ + 105, + 373, + 208, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 208, + 390 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 108, + 398, + 504, + 432 + ], + "lines": [ + { + "bbox": [ + 105, + 398, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 411 + ], + "score": 1.0, + "content": "Deep generative models (Goodfellow et al., 2014; Kingma & Welling, 2014; Rezende et al., 2014)", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 410, + 504, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 283, + 422 + ], + "score": 1.0, + "content": "model the data distribution of observations", + "type": "text" + }, + { + "bbox": [ + 284, + 410, + 314, + 420 + ], + "score": 0.9, + "content": "\\mathbf { x } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 410, + 474, + 422 + ], + "score": 1.0, + "content": "through corresponding latent variables", + "type": "text" + }, + { + "bbox": [ + 474, + 410, + 504, + 420 + ], + "score": 0.87, + "content": "\\mathbf { z } \\in { \\mathcal { Z } }", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 421, + 309, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 249, + 433 + ], + "score": 1.0, + "content": "and a stochastic generator function", + "type": "text" + }, + { + "bbox": [ + 249, + 421, + 296, + 433 + ], + "score": 0.92, + "content": "f : { \\mathcal { Z } } \\to { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 421, + 309, + 433 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 283, + 436, + 327, + 450 + ], + "lines": [ + { + "bbox": [ + 283, + 436, + 327, + 450 + ], + "spans": [ + { + "bbox": [ + 283, + 436, + 327, + 450 + ], + "score": 0.91, + "content": "\\mathbf { x } = f ( \\mathbf { z } ) .", + "type": "interline_equation", + "image_path": "8ffae7edd90cf1ce2bdd1598e9938a0a3c3398024b8da8f67874582e30856c26.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 283, + 436, + 327, + 450 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 453, + 504, + 509 + ], + "lines": [ + { + "bbox": [ + 107, + 454, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 107, + 454, + 505, + 466 + ], + "score": 1.0, + "content": "Using reasonably low-dimensional latent variables and highly flexible generator functions allows", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "these models to efficiently represent a useful distribution over the underlying data manifold. These", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 475, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 506, + 488 + ], + "score": 1.0, + "content": "approaches have recently attracted a lot of attention, as deep neural networks are suitable generators", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 486, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 506, + 500 + ], + "score": 1.0, + "content": "which lead to the impressive performance of current variational autoencoders (VAEs) (Kingma &", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 496, + 455, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 455, + 510 + ], + "score": 1.0, + "content": "Welling, 2014) and generative adversarial networks (GANs) (Goodfellow et al., 2014).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 514, + 505, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "Consider the left panel of Fig. 1, which shows the latent representations of digits 0 and 1 from", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 524, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 539 + ], + "score": 1.0, + "content": "MNIST under a VAE. Three latent points are highlighted: one point (A) far away from the class", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 536, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 550 + ], + "score": 1.0, + "content": "boundary, and two points (B, C) near the boundary, but on opposite sides. Points B and C near the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "boundary seem to be very close to each other, while the third is far away from the others. Intuitively,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "score": 1.0, + "content": "we would hope that points from the same class (A and B) are closer to each other than to members of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 569, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 582 + ], + "score": 1.0, + "content": "other classes (C), but this is seemingly not the case. In this paper, we argue this seemed conclusion", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 580, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 451, + 594 + ], + "score": 1.0, + "content": "is incorrect and only due to a misinterpretation of the latent space — in fact points", + "type": "text" + }, + { + "bbox": [ + 451, + 581, + 460, + 591 + ], + "score": 0.27, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 580, + 479, + 594 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 480, + 580, + 489, + 591 + ], + "score": 0.55, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 580, + 506, + 594 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 225, + 604 + ], + "score": 1.0, + "content": "closer to each other than to", + "type": "text" + }, + { + "bbox": [ + 225, + 591, + 234, + 601 + ], + "score": 0.4, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 591, + 506, + 604 + ], + "score": 1.0, + "content": "in the latent representation. Correcting this misinterpretation not", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 601, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 506, + 617 + ], + "score": 1.0, + "content": "only improves our understanding of generative models, but also improves interpolations, clusterings,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 613, + 423, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 423, + 626 + ], + "score": 1.0, + "content": "latent probability distributions, sampling algorithms, interpretability and more.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 630, + 504, + 675 + ], + "lines": [ + { + "bbox": [ + 106, + 630, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 505, + 642 + ], + "score": 1.0, + "content": "In general, latent space distances lack physical units (making them difficult to interpret) and are sen-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "score": 1.0, + "content": "sitive to specifics of the underlying neural nets. It is therefore more robust to consider infinitesimal", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 652, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 333, + 665 + ], + "score": 1.0, + "content": "distances along the data manifold in the input space. Let", + "type": "text" + }, + { + "bbox": [ + 333, + 654, + 339, + 662 + ], + "score": 0.61, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 652, + 435, + 665 + ], + "score": 1.0, + "content": "be a latent point and let", + "type": "text" + }, + { + "bbox": [ + 436, + 653, + 455, + 663 + ], + "score": 0.91, + "content": "\\Delta \\mathbf { z } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 652, + 473, + 665 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 473, + 652, + 492, + 663 + ], + "score": 0.91, + "content": "\\Delta { \\bf z } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 652, + 506, + 665 + ], + "score": 1.0, + "content": "be", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 662, + 336, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 336, + 676 + ], + "score": 1.0, + "content": "infinitesimals, then we can compute the squared distance", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5 + }, + { + "type": "interline_equation", + "bbox": [ + 118, + 678, + 480, + 706 + ], + "lines": [ + { + "bbox": [ + 118, + 678, + 480, + 706 + ], + "spans": [ + { + "bbox": [ + 118, + 678, + 480, + 706 + ], + "score": 0.89, + "content": "\\left\\| f ( \\mathbf { z } + \\Delta \\mathbf { z } _ { 1 } ) - f ( \\mathbf { z } + \\Delta \\mathbf { z } _ { 2 } ) \\right\\| _ { 2 } ^ { 2 } = ( \\Delta \\mathbf { z } _ { 1 } - \\Delta \\mathbf { z } _ { 2 } ) ^ { \\mathsf { T } } \\left( \\mathbf { J } _ { \\mathbf { z } } ^ { \\mathsf { T } } \\mathbf { J } _ { \\mathbf { z } } \\right) ( \\Delta \\mathbf { z } _ { 1 } - \\Delta \\mathbf { z } _ { 2 } ) , \\quad \\mathbf { J } _ { \\mathbf { z } } = \\frac { \\partial f } { \\partial \\mathbf { z } } \\bigg | _ { \\mathbf { z } = \\mathbf { z } } ,", + "type": "interline_equation", + "image_path": "018fd672f671aba8f592e71d6b6c8f0101995cb63495024b7f27da927440cc5e.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 118, + 678, + 480, + 687.3333333333334 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 118, + 687.3333333333334, + 480, + 696.6666666666667 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 118, + 696.6666666666667, + 480, + 706.0000000000001 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 416, + 722 + ], + "score": 1.0, + "content": "using Taylor’s Theorem. This implies that the natural distance function in", + "type": "text" + }, + { + "bbox": [ + 416, + 710, + 426, + 720 + ], + "score": 0.81, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "changes locally as", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "it is governed by the local Jacobian. Mathematically, the latent space should not then be seen", + "type": "text" + } + ], + "index": 46 + } + ], + "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, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 442, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 444, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 444, + 98 + ], + "score": 1.0, + "content": "LATENT SPACE ODDITY: ON THE CURVATURE", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 98, + 343, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 343, + 117 + ], + "score": 1.0, + "content": "OF DEEP GENERATIVE MODELS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 374, + 168 + ], + "lines": [ + { + "bbox": [ + 111, + 135, + 352, + 149 + ], + "spans": [ + { + "bbox": [ + 111, + 135, + 352, + 149 + ], + "score": 1.0, + "content": "Georgios Arvanitidis, Lars Kai Hansen, Søren Hauberg", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 145, + 374, + 160 + ], + "spans": [ + { + "bbox": [ + 111, + 145, + 374, + 160 + ], + "score": 1.0, + "content": "Technical University of Denmark, Section for Cognitive Systems", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 112, + 157, + 257, + 169 + ], + "spans": [ + { + "bbox": [ + 112, + 157, + 257, + 169 + ], + "score": 1.0, + "content": "{gear,lkai,sohau}@dtu.dk", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 111, + 135, + 374, + 169 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 198, + 333, + 209 + ], + "lines": [ + { + "bbox": [ + 276, + 197, + 335, + 210 + ], + "spans": [ + { + "bbox": [ + 276, + 197, + 335, + 210 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 222, + 468, + 354 + ], + "lines": [ + { + "bbox": [ + 141, + 222, + 469, + 234 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 469, + 234 + ], + "score": 1.0, + "content": "Deep generative models provide a systematic way to learn nonlinear data distri-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "spans": [ + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "score": 1.0, + "content": "butions through a set of latent variables and a nonlinear “generator” function that", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 245, + 469, + 255 + ], + "spans": [ + { + "bbox": [ + 141, + 245, + 469, + 255 + ], + "score": 1.0, + "content": "maps latent points into the input space. The nonlinearity of the generator implies", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 254, + 469, + 267 + ], + "spans": [ + { + "bbox": [ + 141, + 254, + 469, + 267 + ], + "score": 1.0, + "content": "that the latent space gives a distorted view of the input space. Under mild condi-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 266, + 469, + 278 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 469, + 278 + ], + "score": 1.0, + "content": "tions, we show that this distortion can be characterized by a stochastic Rieman-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 277, + 469, + 289 + ], + "spans": [ + { + "bbox": [ + 141, + 277, + 469, + 289 + ], + "score": 1.0, + "content": "nian metric, and we demonstrate that distances and interpolants are significantly", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "score": 1.0, + "content": "improved under this metric. This in turn improves probability distributions, sam-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 299, + 470, + 311 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 470, + 311 + ], + "score": 1.0, + "content": "pling algorithms and clustering in the latent space. Our geometric analysis further", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 310, + 470, + 322 + ], + "spans": [ + { + "bbox": [ + 141, + 310, + 470, + 322 + ], + "score": 1.0, + "content": "reveals that current generators provide poor variance estimates and we propose a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 321, + 470, + 333 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 470, + 333 + ], + "score": 1.0, + "content": "new generator architecture with vastly improved variance estimates. Results are", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 331, + 470, + 344 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 470, + 344 + ], + "score": 1.0, + "content": "demonstrated on convolutional and fully connected variational autoencoders, but", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 343, + 405, + 354 + ], + "spans": [ + { + "bbox": [ + 142, + 343, + 405, + 354 + ], + "score": 1.0, + "content": "the formalism easily generalizes to other deep generative models.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11.5, + "bbox_fs": [ + 141, + 222, + 470, + 354 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 374, + 206, + 387 + ], + "lines": [ + { + "bbox": [ + 105, + 373, + 208, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 208, + 390 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 108, + 398, + 504, + 432 + ], + "lines": [ + { + "bbox": [ + 105, + 398, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 411 + ], + "score": 1.0, + "content": "Deep generative models (Goodfellow et al., 2014; Kingma & Welling, 2014; Rezende et al., 2014)", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 410, + 504, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 283, + 422 + ], + "score": 1.0, + "content": "model the data distribution of observations", + "type": "text" + }, + { + "bbox": [ + 284, + 410, + 314, + 420 + ], + "score": 0.9, + "content": "\\mathbf { x } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 410, + 474, + 422 + ], + "score": 1.0, + "content": "through corresponding latent variables", + "type": "text" + }, + { + "bbox": [ + 474, + 410, + 504, + 420 + ], + "score": 0.87, + "content": "\\mathbf { z } \\in { \\mathcal { Z } }", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 421, + 309, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 249, + 433 + ], + "score": 1.0, + "content": "and a stochastic generator function", + "type": "text" + }, + { + "bbox": [ + 249, + 421, + 296, + 433 + ], + "score": 0.92, + "content": "f : { \\mathcal { Z } } \\to { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 421, + 309, + 433 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 398, + 506, + 433 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 283, + 436, + 327, + 450 + ], + "lines": [ + { + "bbox": [ + 283, + 436, + 327, + 450 + ], + "spans": [ + { + "bbox": [ + 283, + 436, + 327, + 450 + ], + "score": 0.91, + "content": "\\mathbf { x } = f ( \\mathbf { z } ) .", + "type": "interline_equation", + "image_path": "8ffae7edd90cf1ce2bdd1598e9938a0a3c3398024b8da8f67874582e30856c26.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 283, + 436, + 327, + 450 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 453, + 504, + 509 + ], + "lines": [ + { + "bbox": [ + 107, + 454, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 107, + 454, + 505, + 466 + ], + "score": 1.0, + "content": "Using reasonably low-dimensional latent variables and highly flexible generator functions allows", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "these models to efficiently represent a useful distribution over the underlying data manifold. These", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 475, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 506, + 488 + ], + "score": 1.0, + "content": "approaches have recently attracted a lot of attention, as deep neural networks are suitable generators", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 486, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 506, + 500 + ], + "score": 1.0, + "content": "which lead to the impressive performance of current variational autoencoders (VAEs) (Kingma &", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 496, + 455, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 455, + 510 + ], + "score": 1.0, + "content": "Welling, 2014) and generative adversarial networks (GANs) (Goodfellow et al., 2014).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 454, + 506, + 510 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 514, + 505, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "Consider the left panel of Fig. 1, which shows the latent representations of digits 0 and 1 from", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 524, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 539 + ], + "score": 1.0, + "content": "MNIST under a VAE. Three latent points are highlighted: one point (A) far away from the class", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 536, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 550 + ], + "score": 1.0, + "content": "boundary, and two points (B, C) near the boundary, but on opposite sides. Points B and C near the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "boundary seem to be very close to each other, while the third is far away from the others. Intuitively,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "score": 1.0, + "content": "we would hope that points from the same class (A and B) are closer to each other than to members of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 569, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 582 + ], + "score": 1.0, + "content": "other classes (C), but this is seemingly not the case. In this paper, we argue this seemed conclusion", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 580, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 451, + 594 + ], + "score": 1.0, + "content": "is incorrect and only due to a misinterpretation of the latent space — in fact points", + "type": "text" + }, + { + "bbox": [ + 451, + 581, + 460, + 591 + ], + "score": 0.27, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 580, + 479, + 594 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 480, + 580, + 489, + 591 + ], + "score": 0.55, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 580, + 506, + 594 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 225, + 604 + ], + "score": 1.0, + "content": "closer to each other than to", + "type": "text" + }, + { + "bbox": [ + 225, + 591, + 234, + 601 + ], + "score": 0.4, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 591, + 506, + 604 + ], + "score": 1.0, + "content": "in the latent representation. Correcting this misinterpretation not", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 601, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 506, + 617 + ], + "score": 1.0, + "content": "only improves our understanding of generative models, but also improves interpolations, clusterings,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 613, + 423, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 423, + 626 + ], + "score": 1.0, + "content": "latent probability distributions, sampling algorithms, interpretability and more.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 514, + 506, + 626 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 630, + 504, + 675 + ], + "lines": [ + { + "bbox": [ + 106, + 630, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 505, + 642 + ], + "score": 1.0, + "content": "In general, latent space distances lack physical units (making them difficult to interpret) and are sen-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "score": 1.0, + "content": "sitive to specifics of the underlying neural nets. It is therefore more robust to consider infinitesimal", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 652, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 333, + 665 + ], + "score": 1.0, + "content": "distances along the data manifold in the input space. Let", + "type": "text" + }, + { + "bbox": [ + 333, + 654, + 339, + 662 + ], + "score": 0.61, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 652, + 435, + 665 + ], + "score": 1.0, + "content": "be a latent point and let", + "type": "text" + }, + { + "bbox": [ + 436, + 653, + 455, + 663 + ], + "score": 0.91, + "content": "\\Delta \\mathbf { z } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 652, + 473, + 665 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 473, + 652, + 492, + 663 + ], + "score": 0.91, + "content": "\\Delta { \\bf z } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 652, + 506, + 665 + ], + "score": 1.0, + "content": "be", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 662, + 336, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 336, + 676 + ], + "score": 1.0, + "content": "infinitesimals, then we can compute the squared distance", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 630, + 506, + 676 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 118, + 678, + 480, + 706 + ], + "lines": [ + { + "bbox": [ + 118, + 678, + 480, + 706 + ], + "spans": [ + { + "bbox": [ + 118, + 678, + 480, + 706 + ], + "score": 0.89, + "content": "\\left\\| f ( \\mathbf { z } + \\Delta \\mathbf { z } _ { 1 } ) - f ( \\mathbf { z } + \\Delta \\mathbf { z } _ { 2 } ) \\right\\| _ { 2 } ^ { 2 } = ( \\Delta \\mathbf { z } _ { 1 } - \\Delta \\mathbf { z } _ { 2 } ) ^ { \\mathsf { T } } \\left( \\mathbf { J } _ { \\mathbf { z } } ^ { \\mathsf { T } } \\mathbf { J } _ { \\mathbf { z } } \\right) ( \\Delta \\mathbf { z } _ { 1 } - \\Delta \\mathbf { z } _ { 2 } ) , \\quad \\mathbf { J } _ { \\mathbf { z } } = \\frac { \\partial f } { \\partial \\mathbf { z } } \\bigg | _ { \\mathbf { z } = \\mathbf { z } } ,", + "type": "interline_equation", + "image_path": "018fd672f671aba8f592e71d6b6c8f0101995cb63495024b7f27da927440cc5e.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 118, + 678, + 480, + 687.3333333333334 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 118, + 687.3333333333334, + 480, + 696.6666666666667 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 118, + 696.6666666666667, + 480, + 706.0000000000001 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 416, + 722 + ], + "score": 1.0, + "content": "using Taylor’s Theorem. This implies that the natural distance function in", + "type": "text" + }, + { + "bbox": [ + 416, + 710, + 426, + 720 + ], + "score": 0.81, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "changes locally as", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "it is governed by the local Jacobian. Mathematically, the latent space should not then be seen", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "as a linear Euclidean space, but rather as a curved space. The right panel of Fig. 1 provides an", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 278, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 506, + 290 + ], + "score": 1.0, + "content": "example of the implications of this curvature. The figure shows synthetic data from two classes,", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 288, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 505, + 301 + ], + "score": 1.0, + "content": "and the corresponding latent representation of the data. The background color of the latent space", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 299, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 169, + 313 + ], + "score": 1.0, + "content": "corresponds to", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 169, + 299, + 223, + 313 + ], + "score": 0.93, + "content": "\\mathrm { \\sqrt { d e t } } ( \\mathbf { J _ { z } ^ { \\mathsf { T } } } \\mathbf { J _ { z } } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 223, + 300, + 506, + 313 + ], + "score": 1.0, + "content": ", which can be seen as a measure of the local distortion of the latent", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "space. We interpolate two points from the same class by walking along the connecting straight", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "score": 1.0, + "content": "line (red); in the right panel, we show points along this straight line which have been mapped by", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "score": 1.0, + "content": "the generator to the input space. Since the generator defines a surface in the input space, we can", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "score": 1.0, + "content": "alternatively seek the shortest curve along this surface that connects the two points; this is perhaps", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 355, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 506, + 368 + ], + "score": 1.0, + "content": "the most natural choice of interpolant. We show this shortest curve in green. From the center panel", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "score": 1.0, + "content": "it is evident that the natural interpolant is rather different from the straight line. This is due to the", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 377, + 380, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 380, + 391 + ], + "score": 1.0, + "content": "distortion of the latent space, which is the topic of the present paper.", + "type": "text", + "cross_page": true + } + ], + "index": 16 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 78, + 506, + 198 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 78, + 506, + 198 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 78, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 506, + 198 + ], + "score": 0.968, + "type": "image", + "image_path": "4f6ab73930c0c558bca7cac815f1ab4cf01c5f356a658bc9c3f933e9ccea2d5e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 78, + 506, + 118.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 118.0, + 506, + 158.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 158.0, + 506, + 198.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 208, + 505, + 241 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 208, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 505, + 220 + ], + "score": 1.0, + "content": "Figure 1: Left: An example of how latent space distances do not reflect actual data distances. Right:", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 218, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 231 + ], + "score": 1.0, + "content": "Shortest paths on the surface spanned by the generator do not correspond to straight lines in the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 230, + 315, + 242 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 315, + 242 + ], + "score": 1.0, + "content": "latent space, as is assumed by the Euclidean metric.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 505, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "as a linear Euclidean space, but rather as a curved space. The right panel of Fig. 1 provides an", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 278, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 506, + 290 + ], + "score": 1.0, + "content": "example of the implications of this curvature. The figure shows synthetic data from two classes,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 288, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 505, + 301 + ], + "score": 1.0, + "content": "and the corresponding latent representation of the data. The background color of the latent space", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 299, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 169, + 313 + ], + "score": 1.0, + "content": "corresponds to", + "type": "text" + }, + { + "bbox": [ + 169, + 299, + 223, + 313 + ], + "score": 0.93, + "content": "\\mathrm { \\sqrt { d e t } } ( \\mathbf { J _ { z } ^ { \\mathsf { T } } } \\mathbf { J _ { z } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 300, + 506, + 313 + ], + "score": 1.0, + "content": ", which can be seen as a measure of the local distortion of the latent", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "space. We interpolate two points from the same class by walking along the connecting straight", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "score": 1.0, + "content": "line (red); in the right panel, we show points along this straight line which have been mapped by", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "score": 1.0, + "content": "the generator to the input space. Since the generator defines a surface in the input space, we can", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "score": 1.0, + "content": "alternatively seek the shortest curve along this surface that connects the two points; this is perhaps", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 355, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 506, + 368 + ], + "score": 1.0, + "content": "the most natural choice of interpolant. We show this shortest curve in green. From the center panel", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "score": 1.0, + "content": "it is evident that the natural interpolant is rather different from the straight line. This is due to the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 377, + 380, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 380, + 391 + ], + "score": 1.0, + "content": "distortion of the latent space, which is the topic of the present paper.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 405, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "score": 1.0, + "content": "Outline. In Sec. 2 we briefly present the VAE as a representative instance of generative models.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 417, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 506, + 429 + ], + "score": 1.0, + "content": "In Sec. 3 we connect generative models with their underlying geometry, and in Sec. 4 we argue that", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "score": 1.0, + "content": "a stochastic Riemannian metric is naturally induced in the latent space by the generator. This metric", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "enables us to compute length-minimizing curves and corresponding distances. This analysis, how-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "score": 1.0, + "content": "ever, reveals that the traditional variance approximations in VAEs are rather poor and misleading;", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "we propose a solution in Sec. 4.1. In Sec. 5 we demonstrate how the resulting view of the latent", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "space improves latent interpolations, gives rise to more meaningful latent distributions, clusterings", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 482, + 486, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 486, + 495 + ], + "score": 1.0, + "content": "and more. We discuss related work in Sec. 6 and conclude the paper with an outlook in Sec. 7.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20.5 + }, + { + "type": "title", + "bbox": [ + 106, + 514, + 459, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 513, + 460, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 460, + 528 + ], + "score": 1.0, + "content": "2 THE VARIATIONAL AUTOENCODERS ACTING AS THE GENERATOR", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 541, + 504, + 586 + ], + "lines": [ + { + "bbox": [ + 106, + 541, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 506, + 554 + ], + "score": 1.0, + "content": "The variational autoencoder (VAE) proposed by Kingma & Welling (2014) is a simple yet powerful", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "generative model which consists of two parts: (1) an inference network or recognition network", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 563, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 418, + 576 + ], + "score": 1.0, + "content": "(encoder) learns the latent representation (codes) of the data in the input space", + "type": "text" + }, + { + "bbox": [ + 419, + 563, + 456, + 574 + ], + "score": 0.92, + "content": "\\chi = \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 564, + 506, + 576 + ], + "score": 1.0, + "content": "; and (2) the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 574, + 494, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 456, + 587 + ], + "score": 1.0, + "content": "generator (decoder) learns how to reconstruct the data from these latent space codes in", + "type": "text" + }, + { + "bbox": [ + 456, + 574, + 489, + 585 + ], + "score": 0.9, + "content": "\\mathcal { Z } = \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 574, + 494, + 587 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 591, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 591, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 389, + 605 + ], + "score": 1.0, + "content": "Formally, a prior distribution is defined for the latent representations", + "type": "text" + }, + { + "bbox": [ + 389, + 591, + 460, + 604 + ], + "score": 0.92, + "content": "p ( \\mathbf { z } ) = \\mathcal { N } ( \\mathbf { 0 } , \\mathbb { I } _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 591, + 506, + 605 + ], + "score": 1.0, + "content": ", and there", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 602, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 217, + 615 + ], + "score": 1.0, + "content": "exists a mapping function", + "type": "text" + }, + { + "bbox": [ + 217, + 603, + 280, + 613 + ], + "score": 0.9, + "content": "\\mu _ { \\theta } : \\mathcal { Z } \\to \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 602, + 394, + 615 + ], + "score": 1.0, + "content": "that generates a surface in", + "type": "text" + }, + { + "bbox": [ + 395, + 604, + 404, + 612 + ], + "score": 0.82, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 602, + 506, + 615 + ], + "score": 1.0, + "content": ". Moreover, we assume", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 611, + 507, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 611, + 194, + 628 + ], + "score": 1.0, + "content": "that another function", + "type": "text" + }, + { + "bbox": [ + 195, + 614, + 261, + 626 + ], + "score": 0.9, + "content": "\\sigma _ { \\theta } : \\mathcal { Z } \\to \\mathbb { R } _ { + } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 611, + 507, + 628 + ], + "score": 1.0, + "content": "captures the error (or uncertainty) between the actual data", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 624, + 504, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 155, + 637 + ], + "score": 1.0, + "content": "observation", + "type": "text" + }, + { + "bbox": [ + 156, + 625, + 187, + 635 + ], + "score": 0.9, + "content": "\\mathbf { x } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 624, + 291, + 637 + ], + "score": 1.0, + "content": "and its reconstruction as", + "type": "text" + }, + { + "bbox": [ + 291, + 624, + 383, + 636 + ], + "score": 0.92, + "content": "\\mathbf { x } = \\pmb { \\mu } _ { \\boldsymbol { \\theta } } ( \\mathbf { z } ) + \\pmb { \\sigma } _ { \\boldsymbol { \\theta } } \\odot \\pmb { \\epsilon } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 624, + 414, + 637 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 415, + 624, + 475, + 636 + ], + "score": 0.92, + "content": "\\epsilon \\sim \\mathcal { N } ( \\mathbf { 0 } , \\mathbb { I } _ { D } )", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 624, + 495, + 637 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 495, + 625, + 504, + 635 + ], + "score": 0.81, + "content": "\\odot", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 634, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 453, + 648 + ], + "score": 1.0, + "content": "is the Hadamard (element-wise) product. Then the likelihood is naturally defined as", + "type": "text" + }, + { + "bbox": [ + 453, + 636, + 505, + 648 + ], + "score": 0.91, + "content": "p _ { \\boldsymbol { \\theta } } ( \\mathbf { x } \\mid \\mathbf { z } ) =", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 645, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 206, + 658 + ], + "score": 0.64, + "content": "\\mathcal { N } ( \\mathbf { x } \\mid \\pmb { \\mu } _ { \\boldsymbol { \\theta } } ( \\mathbf { z } ) , \\mathbb { I } _ { D } \\pmb { \\sigma } _ { \\boldsymbol { \\theta } } ^ { 2 } ( \\mathbf { z } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 645, + 303, + 659 + ], + "score": 1.0, + "content": ". The flexible functions", + "type": "text" + }, + { + "bbox": [ + 303, + 648, + 316, + 658 + ], + "score": 0.88, + "content": "\\mu _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 645, + 335, + 659 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 335, + 648, + 348, + 657 + ], + "score": 0.86, + "content": "\\pmb { \\sigma } \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 645, + 506, + 659 + ], + "score": 1.0, + "content": "are usually deep neural networks with", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 658, + 163, + 669 + ], + "spans": [ + { + "bbox": [ + 104, + 658, + 153, + 669 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 153, + 658, + 159, + 667 + ], + "score": 0.78, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 658, + 163, + 669 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 674, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 673, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 308, + 687 + ], + "score": 1.0, + "content": "However, the corresponding posterior distribution", + "type": "text" + }, + { + "bbox": [ + 308, + 674, + 345, + 686 + ], + "score": 0.92, + "content": "p _ { \\theta } ( \\mathbf { z } \\mid \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 673, + 505, + 687 + ], + "score": 1.0, + "content": "is unknown, as the marginal likelihood", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 685, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 106, + 685, + 126, + 697 + ], + "score": 0.91, + "content": "p ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 685, + 456, + 698 + ], + "score": 1.0, + "content": "is intractable. Hence, the posterior is approximated using a variational distribution", + "type": "text" + }, + { + "bbox": [ + 456, + 685, + 505, + 698 + ], + "score": 0.91, + "content": "q _ { \\phi } ( \\mathbf { z } \\mid \\mathbf { x } ) =", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 695, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 696, + 208, + 711 + ], + "score": 0.81, + "content": "\\mathcal { N } ( \\mathbf { z } \\mid \\pmb { \\mu } _ { \\phi } ( \\mathbf { x } ) , \\ \\mathbb { I } _ { d } \\pmb { \\sigma } _ { \\phi } ^ { 2 } ( \\mathbf { x } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 695, + 296, + 712 + ], + "score": 1.0, + "content": ", where the functions", + "type": "text" + }, + { + "bbox": [ + 297, + 698, + 356, + 711 + ], + "score": 0.92, + "content": "\\mu _ { \\phi } : \\mathcal { X } \\to \\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 695, + 376, + 712 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 376, + 696, + 441, + 710 + ], + "score": 0.93, + "content": "\\pmb { \\sigma } _ { \\phi } : \\mathcal { X } \\mathbb { R } _ { + } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 695, + 506, + 712 + ], + "score": 1.0, + "content": "are again deep", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 708, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 241, + 724 + ], + "score": 1.0, + "content": "neural networks with parameters", + "type": "text" + }, + { + "bbox": [ + 241, + 710, + 248, + 721 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 708, + 506, + 724 + ], + "score": 1.0, + "content": ". Since the generator (decoder) is a composition of linear maps", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 720, + 468, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 468, + 732 + ], + "score": 1.0, + "content": "and activation functions, its smoothness is based solely on the chosen activation functions.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 78, + 506, + 198 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 78, + 506, + 198 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 78, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 506, + 198 + ], + "score": 0.968, + "type": "image", + "image_path": "4f6ab73930c0c558bca7cac815f1ab4cf01c5f356a658bc9c3f933e9ccea2d5e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 78, + 506, + 118.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 118.0, + 506, + 158.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 158.0, + 506, + 198.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 208, + 505, + 241 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 208, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 505, + 220 + ], + "score": 1.0, + "content": "Figure 1: Left: An example of how latent space distances do not reflect actual data distances. Right:", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 218, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 231 + ], + "score": 1.0, + "content": "Shortest paths on the surface spanned by the generator do not correspond to straight lines in the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 230, + 315, + 242 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 315, + 242 + ], + "score": 1.0, + "content": "latent space, as is assumed by the Euclidean metric.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 505, + 389 + ], + "lines": [], + "index": 11, + "bbox_fs": [ + 105, + 266, + 506, + 391 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 405, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "score": 1.0, + "content": "Outline. In Sec. 2 we briefly present the VAE as a representative instance of generative models.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 417, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 506, + 429 + ], + "score": 1.0, + "content": "In Sec. 3 we connect generative models with their underlying geometry, and in Sec. 4 we argue that", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "score": 1.0, + "content": "a stochastic Riemannian metric is naturally induced in the latent space by the generator. This metric", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "enables us to compute length-minimizing curves and corresponding distances. This analysis, how-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "score": 1.0, + "content": "ever, reveals that the traditional variance approximations in VAEs are rather poor and misleading;", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "we propose a solution in Sec. 4.1. In Sec. 5 we demonstrate how the resulting view of the latent", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "space improves latent interpolations, gives rise to more meaningful latent distributions, clusterings", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 482, + 486, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 486, + 495 + ], + "score": 1.0, + "content": "and more. We discuss related work in Sec. 6 and conclude the paper with an outlook in Sec. 7.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 405, + 506, + 495 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 514, + 459, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 513, + 460, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 460, + 528 + ], + "score": 1.0, + "content": "2 THE VARIATIONAL AUTOENCODERS ACTING AS THE GENERATOR", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 541, + 504, + 586 + ], + "lines": [ + { + "bbox": [ + 106, + 541, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 506, + 554 + ], + "score": 1.0, + "content": "The variational autoencoder (VAE) proposed by Kingma & Welling (2014) is a simple yet powerful", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "generative model which consists of two parts: (1) an inference network or recognition network", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 563, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 418, + 576 + ], + "score": 1.0, + "content": "(encoder) learns the latent representation (codes) of the data in the input space", + "type": "text" + }, + { + "bbox": [ + 419, + 563, + 456, + 574 + ], + "score": 0.92, + "content": "\\chi = \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 564, + 506, + 576 + ], + "score": 1.0, + "content": "; and (2) the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 574, + 494, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 456, + 587 + ], + "score": 1.0, + "content": "generator (decoder) learns how to reconstruct the data from these latent space codes in", + "type": "text" + }, + { + "bbox": [ + 456, + 574, + 489, + 585 + ], + "score": 0.9, + "content": "\\mathcal { Z } = \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 574, + 494, + 587 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 541, + 506, + 587 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 591, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 591, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 389, + 605 + ], + "score": 1.0, + "content": "Formally, a prior distribution is defined for the latent representations", + "type": "text" + }, + { + "bbox": [ + 389, + 591, + 460, + 604 + ], + "score": 0.92, + "content": "p ( \\mathbf { z } ) = \\mathcal { N } ( \\mathbf { 0 } , \\mathbb { I } _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 591, + 506, + 605 + ], + "score": 1.0, + "content": ", and there", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 602, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 217, + 615 + ], + "score": 1.0, + "content": "exists a mapping function", + "type": "text" + }, + { + "bbox": [ + 217, + 603, + 280, + 613 + ], + "score": 0.9, + "content": "\\mu _ { \\theta } : \\mathcal { Z } \\to \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 602, + 394, + 615 + ], + "score": 1.0, + "content": "that generates a surface in", + "type": "text" + }, + { + "bbox": [ + 395, + 604, + 404, + 612 + ], + "score": 0.82, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 602, + 506, + 615 + ], + "score": 1.0, + "content": ". Moreover, we assume", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 611, + 507, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 611, + 194, + 628 + ], + "score": 1.0, + "content": "that another function", + "type": "text" + }, + { + "bbox": [ + 195, + 614, + 261, + 626 + ], + "score": 0.9, + "content": "\\sigma _ { \\theta } : \\mathcal { Z } \\to \\mathbb { R } _ { + } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 611, + 507, + 628 + ], + "score": 1.0, + "content": "captures the error (or uncertainty) between the actual data", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 624, + 504, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 155, + 637 + ], + "score": 1.0, + "content": "observation", + "type": "text" + }, + { + "bbox": [ + 156, + 625, + 187, + 635 + ], + "score": 0.9, + "content": "\\mathbf { x } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 624, + 291, + 637 + ], + "score": 1.0, + "content": "and its reconstruction as", + "type": "text" + }, + { + "bbox": [ + 291, + 624, + 383, + 636 + ], + "score": 0.92, + "content": "\\mathbf { x } = \\pmb { \\mu } _ { \\boldsymbol { \\theta } } ( \\mathbf { z } ) + \\pmb { \\sigma } _ { \\boldsymbol { \\theta } } \\odot \\pmb { \\epsilon } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 624, + 414, + 637 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 415, + 624, + 475, + 636 + ], + "score": 0.92, + "content": "\\epsilon \\sim \\mathcal { N } ( \\mathbf { 0 } , \\mathbb { I } _ { D } )", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 624, + 495, + 637 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 495, + 625, + 504, + 635 + ], + "score": 0.81, + "content": "\\odot", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 634, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 453, + 648 + ], + "score": 1.0, + "content": "is the Hadamard (element-wise) product. Then the likelihood is naturally defined as", + "type": "text" + }, + { + "bbox": [ + 453, + 636, + 505, + 648 + ], + "score": 0.91, + "content": "p _ { \\boldsymbol { \\theta } } ( \\mathbf { x } \\mid \\mathbf { z } ) =", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 645, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 206, + 658 + ], + "score": 0.64, + "content": "\\mathcal { N } ( \\mathbf { x } \\mid \\pmb { \\mu } _ { \\boldsymbol { \\theta } } ( \\mathbf { z } ) , \\mathbb { I } _ { D } \\pmb { \\sigma } _ { \\boldsymbol { \\theta } } ^ { 2 } ( \\mathbf { z } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 645, + 303, + 659 + ], + "score": 1.0, + "content": ". The flexible functions", + "type": "text" + }, + { + "bbox": [ + 303, + 648, + 316, + 658 + ], + "score": 0.88, + "content": "\\mu _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 645, + 335, + 659 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 335, + 648, + 348, + 657 + ], + "score": 0.86, + "content": "\\pmb { \\sigma } \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 645, + 506, + 659 + ], + "score": 1.0, + "content": "are usually deep neural networks with", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 658, + 163, + 669 + ], + "spans": [ + { + "bbox": [ + 104, + 658, + 153, + 669 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 153, + 658, + 159, + 667 + ], + "score": 0.78, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 658, + 163, + 669 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33, + "bbox_fs": [ + 104, + 591, + 507, + 669 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 674, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 673, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 308, + 687 + ], + "score": 1.0, + "content": "However, the corresponding posterior distribution", + "type": "text" + }, + { + "bbox": [ + 308, + 674, + 345, + 686 + ], + "score": 0.92, + "content": "p _ { \\theta } ( \\mathbf { z } \\mid \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 673, + 505, + 687 + ], + "score": 1.0, + "content": "is unknown, as the marginal likelihood", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 685, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 106, + 685, + 126, + 697 + ], + "score": 0.91, + "content": "p ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 685, + 456, + 698 + ], + "score": 1.0, + "content": "is intractable. Hence, the posterior is approximated using a variational distribution", + "type": "text" + }, + { + "bbox": [ + 456, + 685, + 505, + 698 + ], + "score": 0.91, + "content": "q _ { \\phi } ( \\mathbf { z } \\mid \\mathbf { x } ) =", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 695, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 696, + 208, + 711 + ], + "score": 0.81, + "content": "\\mathcal { N } ( \\mathbf { z } \\mid \\pmb { \\mu } _ { \\phi } ( \\mathbf { x } ) , \\ \\mathbb { I } _ { d } \\pmb { \\sigma } _ { \\phi } ^ { 2 } ( \\mathbf { x } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 695, + 296, + 712 + ], + "score": 1.0, + "content": ", where the functions", + "type": "text" + }, + { + "bbox": [ + 297, + 698, + 356, + 711 + ], + "score": 0.92, + "content": "\\mu _ { \\phi } : \\mathcal { X } \\to \\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 695, + 376, + 712 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 376, + 696, + 441, + 710 + ], + "score": 0.93, + "content": "\\pmb { \\sigma } _ { \\phi } : \\mathcal { X } \\mathbb { R } _ { + } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 695, + 506, + 712 + ], + "score": 1.0, + "content": "are again deep", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 708, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 241, + 724 + ], + "score": 1.0, + "content": "neural networks with parameters", + "type": "text" + }, + { + "bbox": [ + 241, + 710, + 248, + 721 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 708, + 506, + 724 + ], + "score": 1.0, + "content": ". Since the generator (decoder) is a composition of linear maps", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 720, + 468, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 468, + 732 + ], + "score": 1.0, + "content": "and activation functions, its smoothness is based solely on the chosen activation functions.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39, + "bbox_fs": [ + 104, + 673, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 204, + 95 + ], + "score": 1.0, + "content": "The optimal parameters", + "type": "text" + }, + { + "bbox": [ + 204, + 83, + 210, + 92 + ], + "score": 0.83, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 81, + 228, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 228, + 83, + 236, + 94 + ], + "score": 0.86, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "are found by maximizing the evidence lower bound (ELBO) of the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 220, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 187, + 107 + ], + "score": 1.0, + "content": "marginal likelihood", + "type": "text" + }, + { + "bbox": [ + 187, + 93, + 207, + 106 + ], + "score": 0.92, + "content": "p ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 93, + 220, + 107 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 107, + 438, + 129 + ], + "lines": [ + { + "bbox": [ + 172, + 107, + 438, + 129 + ], + "spans": [ + { + "bbox": [ + 172, + 107, + 438, + 129 + ], + "score": 0.91, + "content": "\\{ \\theta ^ { * } , \\phi ^ { * } \\} = \\underset { \\theta , \\phi } { \\mathrm { a r g m a x } } \\mathbb { E } _ { q _ { \\phi } ( \\mathbf { z } | \\mathbf { x } ) } [ \\log ( p _ { \\theta } ( \\mathbf { x } | \\mathbf { z } ) ) ] - \\mathrm { K L } ( q _ { \\phi } ( \\mathbf { z } | \\mathbf { x } ) | | p ( \\mathbf { z } ) ) ,", + "type": "interline_equation", + "image_path": "25ca579b003bf296855192863df20ffacc6d1562553a7c31eba6aa0a92b4e35d.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 172, + 107, + 438, + 129 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 505, + 220 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 505, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 505, + 143 + ], + "score": 1.0, + "content": "where the bound follows from Jensen’s inequality. The optimization is based on variations of gra-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 141, + 504, + 154 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 338, + 154 + ], + "score": 1.0, + "content": "dient descent using the reparametrization trick (Kingma", + "type": "text" + }, + { + "bbox": [ + 338, + 143, + 348, + 153 + ], + "score": 0.37, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 141, + 504, + 154 + ], + "score": 1.0, + "content": "Welling, 2014; Rezende et al., 2014).", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 152, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 505, + 165 + ], + "score": 1.0, + "content": "Further improvements have been proposed that provide more flexible posterior approximations", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 164, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 505, + 176 + ], + "score": 1.0, + "content": "(Rezende & Mohamed, 2015; Kingma et al., 2016) or tighter lower bound (Burda et al., 2016).", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 175, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 505, + 187 + ], + "score": 1.0, + "content": "In this paper, we consider the standard VAE for simplicity. The optimization problem in Eq. 3 is", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 185, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 258, + 199 + ], + "score": 1.0, + "content": "difficult since poor reconstructions by", + "type": "text" + }, + { + "bbox": [ + 258, + 187, + 271, + 198 + ], + "score": 0.87, + "content": "\\mu _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 185, + 505, + 199 + ], + "score": 1.0, + "content": "can be explained by increasing the corresponding variance", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 195, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 107, + 197, + 119, + 209 + ], + "score": 0.89, + "content": "\\sigma _ { \\theta } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 195, + 342, + 211 + ], + "score": 1.0, + "content": ". A common trick, which we also follow, is to optimize", + "type": "text" + }, + { + "bbox": [ + 342, + 198, + 355, + 209 + ], + "score": 0.86, + "content": "\\mu _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 195, + 415, + 211 + ], + "score": 1.0, + "content": "while keeping", + "type": "text" + }, + { + "bbox": [ + 416, + 196, + 429, + 209 + ], + "score": 0.91, + "content": "\\sigma _ { \\theta } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 195, + 506, + 211 + ], + "score": 1.0, + "content": "constant, and then", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 206, + 254, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 236, + 222 + ], + "score": 1.0, + "content": "finally optimize for the variance", + "type": "text" + }, + { + "bbox": [ + 237, + 208, + 249, + 220 + ], + "score": 0.9, + "content": "\\sigma _ { \\theta } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 206, + 254, + 222 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + }, + { + "type": "title", + "bbox": [ + 108, + 235, + 425, + 248 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 427, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 427, + 249 + ], + "score": 1.0, + "content": "3 SURFACES AS THE FOUNDATION OF GENERATIVE MODELS", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 259, + 505, + 293 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 306, + 273 + ], + "score": 1.0, + "content": "Mathematically, a deterministic generative model", + "type": "text" + }, + { + "bbox": [ + 306, + 259, + 346, + 271 + ], + "score": 0.93, + "content": "{ \\bf x } = f ( { \\bf z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 258, + 505, + 273 + ], + "score": 1.0, + "content": "can be seen as a surface model (Gauss,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 197, + 282 + ], + "score": 1.0, + "content": "1827) if the generator", + "type": "text" + }, + { + "bbox": [ + 198, + 271, + 205, + 282 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "is sufficiently smooth. Here, we briefly review the basic concepts on sur-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 281, + 354, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 354, + 293 + ], + "score": 1.0, + "content": "faces, as they form the mathematical foundation of this work.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 298, + 324, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 298, + 326, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 326, + 310 + ], + "score": 1.0, + "content": "Intuitively, a surface is a smoothly-connected set of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 309, + 325, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 195, + 321 + ], + "score": 1.0, + "content": "points embedded in", + "type": "text" + }, + { + "bbox": [ + 195, + 310, + 205, + 319 + ], + "score": 0.79, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 309, + 325, + 321 + ], + "score": 1.0, + "content": ". When we want to make", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 320, + 325, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 325, + 331 + ], + "score": 1.0, + "content": "computations on a surface, it is often convenient to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 331, + 325, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 325, + 343 + ], + "score": 1.0, + "content": "parametrize the surface by a low-dimensional (latent)", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 342, + 324, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 140, + 354 + ], + "score": 1.0, + "content": "variable", + "type": "text" + }, + { + "bbox": [ + 141, + 344, + 147, + 352 + ], + "score": 0.57, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 342, + 287, + 354 + ], + "score": 1.0, + "content": "along with an appropriate function", + "type": "text" + }, + { + "bbox": [ + 288, + 342, + 324, + 354 + ], + "score": 0.91, + "content": "f : { \\mathcal { Z } } \\to", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 352, + 325, + 365 + ], + "spans": [ + { + "bbox": [ + 107, + 353, + 117, + 363 + ], + "score": 0.76, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 352, + 154, + 365 + ], + "score": 1.0, + "content": ". We let", + "type": "text" + }, + { + "bbox": [ + 154, + 353, + 209, + 365 + ], + "score": 0.91, + "content": "d = \\dim ( { \\mathcal { Z } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 352, + 325, + 365 + ], + "score": 1.0, + "content": "denote the intrinsic dimen-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 363, + 325, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 235, + 376 + ], + "score": 1.0, + "content": "sionality of the surface, while", + "type": "text" + }, + { + "bbox": [ + 235, + 364, + 297, + 376 + ], + "score": 0.93, + "content": "D \\ = \\ \\dim ( { \\mathcal { X } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 363, + 325, + 376 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 374, + 325, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 325, + 387 + ], + "score": 1.0, + "content": "dimensionality of the input space. If we consider a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 385, + 325, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 198, + 398 + ], + "score": 1.0, + "content": "smooth (latent) curve", + "type": "text" + }, + { + "bbox": [ + 198, + 386, + 273, + 398 + ], + "score": 0.91, + "content": "\\gamma _ { t } ^ { - } : [ \\bar { 0 } , 1 ] \\ \\to \\ \\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 385, + 325, + 398 + ], + "score": 1.0, + "content": ", then it has", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 397, + 325, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 135, + 413 + ], + "score": 1.0, + "content": "length", + "type": "text" + }, + { + "bbox": [ + 135, + 397, + 177, + 413 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\int _ { 0 } ^ { 1 } \\| \\dot { \\gamma } _ { t } \\| \\mathrm { d } t } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 397, + 209, + 413 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 209, + 399, + 259, + 412 + ], + "score": 0.91, + "content": "\\dot { \\gamma } _ { t } = \\mathrm { d } \\gamma _ { t } / \\mathrm { d } t", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 397, + 325, + 413 + ], + "score": 1.0, + "content": "denotes the ve-", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 23.0 + }, + { + "type": "image", + "bbox": [ + 334, + 294, + 504, + 362 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 334, + 294, + 504, + 362 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 334, + 294, + 504, + 362 + ], + "spans": [ + { + "bbox": [ + 334, + 294, + 504, + 362 + ], + "score": 0.959, + "type": "image", + "image_path": "afdcd561f0b146263dabebec35098f3e72223fbc41c96c86ec27fc4a512e1cf6.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 334, + 294, + 504, + 307.6 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 334, + 307.6, + 504, + 321.20000000000005 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 334, + 321.20000000000005, + 504, + 334.80000000000007 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 334, + 334.80000000000007, + 504, + 348.4000000000001 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 334, + 348.4000000000001, + 504, + 362.0000000000001 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 332, + 364, + 505, + 410 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 331, + 364, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 331, + 364, + 434, + 376 + ], + "score": 1.0, + "content": "Figure 2: The Jacobian", + "type": "text" + }, + { + "bbox": [ + 434, + 365, + 442, + 374 + ], + "score": 0.52, + "content": "\\mathbf { J }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 364, + 505, + 376 + ], + "score": 1.0, + "content": "of a nonlinear", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 332, + 375, + 504, + 387 + ], + "spans": [ + { + "bbox": [ + 332, + 375, + 368, + 387 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 368, + 376, + 375, + 387 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 375, + 504, + 387 + ], + "score": 1.0, + "content": "provides a local basis in the in-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 330, + 386, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 330, + 387, + 400, + 401 + ], + "score": 1.0, + "content": "put space, while", + "type": "text" + }, + { + "bbox": [ + 401, + 386, + 449, + 400 + ], + "score": 0.92, + "content": "\\sqrt { \\operatorname* { d e t } ( \\mathbf { J } \\boldsymbol { \\tau } \\mathbf { J } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 387, + 505, + 401 + ], + "score": 1.0, + "content": "measures the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 331, + 398, + 470, + 411 + ], + "spans": [ + { + "bbox": [ + 331, + 398, + 470, + 411 + ], + "score": 1.0, + "content": "volume of an infinitesimal region.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.0 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 105, + 411, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 409, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 394, + 423 + ], + "score": 1.0, + "content": "locity of the curve. In practice, the low-dimensional parametrization", + "type": "text" + }, + { + "bbox": [ + 394, + 411, + 404, + 421 + ], + "score": 0.8, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 409, + 506, + 423 + ], + "score": 1.0, + "content": "often lacks a principled", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 421, + 469, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 457, + 434 + ], + "score": 1.0, + "content": "meaningful metric, so we measure lengths in input space by mapping the curve through", + "type": "text" + }, + { + "bbox": [ + 458, + 422, + 465, + 433 + ], + "score": 0.83, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 421, + 469, + 434 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 434, + 462, + 466 + ], + "lines": [ + { + "bbox": [ + 149, + 434, + 462, + 466 + ], + "spans": [ + { + "bbox": [ + 149, + 434, + 462, + 466 + ], + "score": 0.92, + "content": "\\operatorname { L e n g t h } [ f ( \\gamma _ { t } ) ] = \\int _ { 0 } ^ { 1 } \\left\\| { \\dot { f } } ( \\gamma _ { t } ) \\right\\| _ { 2 } \\mathrm { d } t = \\int _ { 0 } ^ { 1 } \\left\\| \\mathbf { J } _ { \\gamma _ { t } } { \\dot { \\gamma } } _ { t } \\right\\| _ { 2 } \\mathrm { d } t , \\qquad \\mathbf { J } _ { \\gamma _ { t } } = \\frac { \\partial f } { \\partial \\mathbf { z } } \\bigg | _ { \\mathbf { z } = \\gamma _ { t } }", + "type": "interline_equation", + "image_path": "533a29a7a4d247363dc08f04f51451095545ead9424a75e785f993ab72a25ace.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 149, + 434, + 462, + 444.6666666666667 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 149, + 444.6666666666667, + 462, + 455.33333333333337 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 149, + 455.33333333333337, + 462, + 466.00000000000006 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 468, + 503, + 491 + ], + "lines": [ + { + "bbox": [ + 106, + 467, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 452, + 481 + ], + "score": 1.0, + "content": "where the last step follows from the chain rule. This implies that the length of a curve", + "type": "text" + }, + { + "bbox": [ + 453, + 470, + 464, + 480 + ], + "score": 0.88, + "content": "\\gamma _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 467, + 505, + 481 + ], + "score": 1.0, + "content": "along the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 479, + 446, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 446, + 492 + ], + "score": 1.0, + "content": "surface can be computed directly in the latent space using the (locally defined) norm", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 493, + 429, + 515 + ], + "lines": [ + { + "bbox": [ + 181, + 493, + 429, + 515 + ], + "spans": [ + { + "bbox": [ + 181, + 493, + 429, + 515 + ], + "score": 0.92, + "content": "\\| \\mathbf { J } _ { \\gamma } \\dot { \\gamma } \\| _ { 2 } = \\sqrt { ( \\mathbf { J } _ { \\gamma } \\dot { \\gamma } ) ^ { \\intercal } ( \\mathbf { J } _ { \\gamma } \\dot { \\gamma } ) } = \\sqrt { \\dot { \\gamma } ^ { \\intercal } ( \\mathbf { J } _ { \\gamma } ^ { \\intercal } \\mathbf { J } _ { \\gamma } ) \\dot { \\gamma } } = \\sqrt { \\dot { \\gamma } ^ { \\intercal } \\mathbf { M } _ { \\gamma } \\dot { \\gamma } } .", + "type": "interline_equation", + "image_path": "b0dc3530177e3341805b36e0b25729b5a4eb3075b25b6e81ceffd4fe656d7c2e.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 181, + 493, + 429, + 515 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 516, + 502, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 131, + 529 + ], + "score": 1.0, + "content": "Here,", + "type": "text" + }, + { + "bbox": [ + 131, + 516, + 186, + 530 + ], + "score": 0.93, + "content": "{ \\bf M } _ { \\gamma } = { \\bf J } _ { \\gamma } ^ { \\top } { \\bf J } _ { \\gamma }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "is a symmetric positive definite matrix, which acts akin to a local Mahalanobis", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 107, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 107, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "distance measure. This gives rise to the definition of a Riemannian metric, which represents a", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 107, + 540, + 281, + 551 + ], + "spans": [ + { + "bbox": [ + 107, + 540, + 281, + 551 + ], + "score": 1.0, + "content": "smoothly changing inner product structure.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 106, + 551, + 503, + 575 + ], + "lines": [ + { + "bbox": [ + 104, + 549, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 104, + 549, + 251, + 566 + ], + "score": 1.0, + "content": "Definition 1. A Riemannian metric", + "type": "text" + }, + { + "bbox": [ + 252, + 551, + 319, + 563 + ], + "score": 0.91, + "content": "\\mathbf { M } : \\mathcal { Z } \\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 549, + 506, + 566 + ], + "score": 1.0, + "content": "is a smooth function that assigns a symmetric", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 564, + 273, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 261, + 576 + ], + "score": 1.0, + "content": "positive definite matrix to any point in", + "type": "text" + }, + { + "bbox": [ + 261, + 564, + 270, + 573 + ], + "score": 0.8, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 564, + 273, + 576 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + }, + { + "type": "text", + "bbox": [ + 107, + 582, + 504, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 305, + 596 + ], + "score": 1.0, + "content": "It should be clear that if the generator function", + "type": "text" + }, + { + "bbox": [ + 305, + 584, + 312, + 595 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 581, + 430, + 596 + ], + "score": 1.0, + "content": "is sufficiently smooth, then", + "type": "text" + }, + { + "bbox": [ + 430, + 583, + 448, + 596 + ], + "score": 0.9, + "content": "{ { \\bf { M } } _ { \\gamma } }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 581, + 506, + 596 + ], + "score": 1.0, + "content": "in Eq. 5 is a", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 594, + 188, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 188, + 606 + ], + "score": 1.0, + "content": "Riemannian metric.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47.5 + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 505, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "score": 1.0, + "content": "When defining distances across a given surface, it is meaningful to seek the shortest curve connecting", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 621, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 636 + ], + "score": 1.0, + "content": "two points. Then a distance can be defined as the length of this curve. The shortest curve connecting", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 633, + 269, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 133, + 644 + ], + "score": 1.0, + "content": "points", + "type": "text" + }, + { + "bbox": [ + 133, + 635, + 144, + 644 + ], + "score": 0.86, + "content": "\\mathbf { z } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 633, + 162, + 644 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 162, + 634, + 173, + 644 + ], + "score": 0.87, + "content": "\\mathbf { z } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 633, + 269, + 644 + ], + "score": 1.0, + "content": "is by (trivial) definition", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50 + }, + { + "type": "interline_equation", + "bbox": [ + 182, + 647, + 429, + 670 + ], + "lines": [ + { + "bbox": [ + 182, + 647, + 429, + 670 + ], + "spans": [ + { + "bbox": [ + 182, + 647, + 429, + 670 + ], + "score": 0.9, + "content": "\\boldsymbol \\gamma _ { t } ^ { ( \\mathrm { s h o r t e s t } ) } = \\underset { \\boldsymbol \\gamma _ { t } } { \\mathrm { a r g m i n L e n g t h } } [ f ( \\boldsymbol \\gamma _ { t } ) ] , \\qquad \\boldsymbol \\gamma _ { 0 } = \\mathbf z _ { 0 } , \\boldsymbol \\gamma _ { 1 } = \\mathbf z _ { 1 } .", + "type": "interline_equation", + "image_path": "c6c87e3ff4dca39c5a2ac584843c5f35f74c2708b716f8da661d9cc33e6fde58.jpg" + } + ] + } + ], + "index": 52, + "virtual_lines": [ + { + "bbox": [ + 182, + 647, + 429, + 670 + ], + "spans": [], + "index": 52 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 672, + 507, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 672, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 505, + 685 + ], + "score": 1.0, + "content": "A classic result of differential geometry (do Carmo, 1992) is that solutions to this optimization", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 683, + 425, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 425, + 696 + ], + "score": 1.0, + "content": "problem satisfy the following system of ordinary differential equations (ODEs)", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 53.5 + }, + { + "type": "interline_equation", + "bbox": [ + 158, + 697, + 451, + 731 + ], + "lines": [ + { + "bbox": [ + 158, + 697, + 451, + 731 + ], + "spans": [ + { + "bbox": [ + 158, + 697, + 451, + 731 + ], + "score": 0.94, + "content": "\\ddot { \\gamma } _ { t } = - \\frac { 1 } { 2 } \\mathbf { M } _ { \\gamma _ { t } } ^ { - 1 } \\left[ 2 \\big ( \\mathbb { I } _ { d } \\otimes \\dot { \\gamma } _ { t } ^ { \\intercal } \\big ) \\frac { \\partial \\mathrm { v e c } \\big [ \\mathbf { M } _ { \\gamma _ { t } } \\big ] } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } - \\frac { \\partial \\mathrm { v e c } \\big [ \\mathbf { M } _ { \\gamma _ { t } } \\big ] ^ { \\intercal } } { \\partial \\gamma _ { t } } ( \\dot { \\gamma } _ { t } \\otimes \\dot { \\gamma } _ { t } ) \\right] ,", + "type": "interline_equation", + "image_path": "92d967178546532454e8e29aa71c57b216ef3688ad7afcc29dadc022f87384f2.jpg" + } + ] + } + ], + "index": 56, + "virtual_lines": [ + { + "bbox": [ + 158, + 697, + 451, + 708.3333333333334 + ], + "spans": [], + "index": 55 + }, + { + "bbox": [ + 158, + 708.3333333333334, + 451, + 719.6666666666667 + ], + "spans": [], + "index": 56 + }, + { + "bbox": [ + 158, + 719.6666666666667, + 451, + 731.0000000000001 + ], + "spans": [], + "index": 57 + } + ] + } + ], + "page_idx": 2, + "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 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": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 204, + 95 + ], + "score": 1.0, + "content": "The optimal parameters", + "type": "text" + }, + { + "bbox": [ + 204, + 83, + 210, + 92 + ], + "score": 0.83, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 81, + 228, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 228, + 83, + 236, + 94 + ], + "score": 0.86, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "are found by maximizing the evidence lower bound (ELBO) of the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 220, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 187, + 107 + ], + "score": 1.0, + "content": "marginal likelihood", + "type": "text" + }, + { + "bbox": [ + 187, + 93, + 207, + 106 + ], + "score": 0.92, + "content": "p ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 93, + 220, + 107 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 107 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 107, + 438, + 129 + ], + "lines": [ + { + "bbox": [ + 172, + 107, + 438, + 129 + ], + "spans": [ + { + "bbox": [ + 172, + 107, + 438, + 129 + ], + "score": 0.91, + "content": "\\{ \\theta ^ { * } , \\phi ^ { * } \\} = \\underset { \\theta , \\phi } { \\mathrm { a r g m a x } } \\mathbb { E } _ { q _ { \\phi } ( \\mathbf { z } | \\mathbf { x } ) } [ \\log ( p _ { \\theta } ( \\mathbf { x } | \\mathbf { z } ) ) ] - \\mathrm { K L } ( q _ { \\phi } ( \\mathbf { z } | \\mathbf { x } ) | | p ( \\mathbf { z } ) ) ,", + "type": "interline_equation", + "image_path": "25ca579b003bf296855192863df20ffacc6d1562553a7c31eba6aa0a92b4e35d.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 172, + 107, + 438, + 129 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 505, + 220 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 505, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 505, + 143 + ], + "score": 1.0, + "content": "where the bound follows from Jensen’s inequality. The optimization is based on variations of gra-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 141, + 504, + 154 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 338, + 154 + ], + "score": 1.0, + "content": "dient descent using the reparametrization trick (Kingma", + "type": "text" + }, + { + "bbox": [ + 338, + 143, + 348, + 153 + ], + "score": 0.37, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 141, + 504, + 154 + ], + "score": 1.0, + "content": "Welling, 2014; Rezende et al., 2014).", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 152, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 505, + 165 + ], + "score": 1.0, + "content": "Further improvements have been proposed that provide more flexible posterior approximations", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 164, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 505, + 176 + ], + "score": 1.0, + "content": "(Rezende & Mohamed, 2015; Kingma et al., 2016) or tighter lower bound (Burda et al., 2016).", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 175, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 505, + 187 + ], + "score": 1.0, + "content": "In this paper, we consider the standard VAE for simplicity. The optimization problem in Eq. 3 is", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 185, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 258, + 199 + ], + "score": 1.0, + "content": "difficult since poor reconstructions by", + "type": "text" + }, + { + "bbox": [ + 258, + 187, + 271, + 198 + ], + "score": 0.87, + "content": "\\mu _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 185, + 505, + 199 + ], + "score": 1.0, + "content": "can be explained by increasing the corresponding variance", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 195, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 107, + 197, + 119, + 209 + ], + "score": 0.89, + "content": "\\sigma _ { \\theta } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 195, + 342, + 211 + ], + "score": 1.0, + "content": ". A common trick, which we also follow, is to optimize", + "type": "text" + }, + { + "bbox": [ + 342, + 198, + 355, + 209 + ], + "score": 0.86, + "content": "\\mu _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 195, + 415, + 211 + ], + "score": 1.0, + "content": "while keeping", + "type": "text" + }, + { + "bbox": [ + 416, + 196, + 429, + 209 + ], + "score": 0.91, + "content": "\\sigma _ { \\theta } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 195, + 506, + 211 + ], + "score": 1.0, + "content": "constant, and then", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 206, + 254, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 236, + 222 + ], + "score": 1.0, + "content": "finally optimize for the variance", + "type": "text" + }, + { + "bbox": [ + 237, + 208, + 249, + 220 + ], + "score": 0.9, + "content": "\\sigma _ { \\theta } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 206, + 254, + 222 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 131, + 506, + 222 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 235, + 425, + 248 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 427, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 427, + 249 + ], + "score": 1.0, + "content": "3 SURFACES AS THE FOUNDATION OF GENERATIVE MODELS", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 259, + 505, + 293 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 306, + 273 + ], + "score": 1.0, + "content": "Mathematically, a deterministic generative model", + "type": "text" + }, + { + "bbox": [ + 306, + 259, + 346, + 271 + ], + "score": 0.93, + "content": "{ \\bf x } = f ( { \\bf z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 258, + 505, + 273 + ], + "score": 1.0, + "content": "can be seen as a surface model (Gauss,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 197, + 282 + ], + "score": 1.0, + "content": "1827) if the generator", + "type": "text" + }, + { + "bbox": [ + 198, + 271, + 205, + 282 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "is sufficiently smooth. Here, we briefly review the basic concepts on sur-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 281, + 354, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 354, + 293 + ], + "score": 1.0, + "content": "faces, as they form the mathematical foundation of this work.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 258, + 505, + 293 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 298, + 324, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 298, + 326, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 326, + 310 + ], + "score": 1.0, + "content": "Intuitively, a surface is a smoothly-connected set of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 309, + 325, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 195, + 321 + ], + "score": 1.0, + "content": "points embedded in", + "type": "text" + }, + { + "bbox": [ + 195, + 310, + 205, + 319 + ], + "score": 0.79, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 309, + 325, + 321 + ], + "score": 1.0, + "content": ". When we want to make", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 320, + 325, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 325, + 331 + ], + "score": 1.0, + "content": "computations on a surface, it is often convenient to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 331, + 325, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 325, + 343 + ], + "score": 1.0, + "content": "parametrize the surface by a low-dimensional (latent)", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 342, + 324, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 140, + 354 + ], + "score": 1.0, + "content": "variable", + "type": "text" + }, + { + "bbox": [ + 141, + 344, + 147, + 352 + ], + "score": 0.57, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 342, + 287, + 354 + ], + "score": 1.0, + "content": "along with an appropriate function", + "type": "text" + }, + { + "bbox": [ + 288, + 342, + 324, + 354 + ], + "score": 0.91, + "content": "f : { \\mathcal { Z } } \\to", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 352, + 325, + 365 + ], + "spans": [ + { + "bbox": [ + 107, + 353, + 117, + 363 + ], + "score": 0.76, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 352, + 154, + 365 + ], + "score": 1.0, + "content": ". We let", + "type": "text" + }, + { + "bbox": [ + 154, + 353, + 209, + 365 + ], + "score": 0.91, + "content": "d = \\dim ( { \\mathcal { Z } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 352, + 325, + 365 + ], + "score": 1.0, + "content": "denote the intrinsic dimen-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 363, + 325, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 235, + 376 + ], + "score": 1.0, + "content": "sionality of the surface, while", + "type": "text" + }, + { + "bbox": [ + 235, + 364, + 297, + 376 + ], + "score": 0.93, + "content": "D \\ = \\ \\dim ( { \\mathcal { X } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 363, + 325, + 376 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 374, + 325, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 325, + 387 + ], + "score": 1.0, + "content": "dimensionality of the input space. If we consider a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 385, + 325, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 198, + 398 + ], + "score": 1.0, + "content": "smooth (latent) curve", + "type": "text" + }, + { + "bbox": [ + 198, + 386, + 273, + 398 + ], + "score": 0.91, + "content": "\\gamma _ { t } ^ { - } : [ \\bar { 0 } , 1 ] \\ \\to \\ \\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 385, + 325, + 398 + ], + "score": 1.0, + "content": ", then it has", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 397, + 325, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 135, + 413 + ], + "score": 1.0, + "content": "length", + "type": "text" + }, + { + "bbox": [ + 135, + 397, + 177, + 413 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\int _ { 0 } ^ { 1 } \\| \\dot { \\gamma } _ { t } \\| \\mathrm { d } t } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 397, + 209, + 413 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 209, + 399, + 259, + 412 + ], + "score": 0.91, + "content": "\\dot { \\gamma } _ { t } = \\mathrm { d } \\gamma _ { t } / \\mathrm { d } t", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 397, + 325, + 413 + ], + "score": 1.0, + "content": "denotes the ve-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 409, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 394, + 423 + ], + "score": 1.0, + "content": "locity of the curve. In practice, the low-dimensional parametrization", + "type": "text" + }, + { + "bbox": [ + 394, + 411, + 404, + 421 + ], + "score": 0.8, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 409, + 506, + 423 + ], + "score": 1.0, + "content": "often lacks a principled", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 421, + 469, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 457, + 434 + ], + "score": 1.0, + "content": "meaningful metric, so we measure lengths in input space by mapping the curve through", + "type": "text" + }, + { + "bbox": [ + 458, + 422, + 465, + 433 + ], + "score": 0.83, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 421, + 469, + 434 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 23.0, + "bbox_fs": [ + 105, + 298, + 326, + 413 + ] + }, + { + "type": "image", + "bbox": [ + 334, + 294, + 504, + 362 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 334, + 294, + 504, + 362 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 334, + 294, + 504, + 362 + ], + "spans": [ + { + "bbox": [ + 334, + 294, + 504, + 362 + ], + "score": 0.959, + "type": "image", + "image_path": "afdcd561f0b146263dabebec35098f3e72223fbc41c96c86ec27fc4a512e1cf6.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 334, + 294, + 504, + 307.6 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 334, + 307.6, + 504, + 321.20000000000005 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 334, + 321.20000000000005, + 504, + 334.80000000000007 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 334, + 334.80000000000007, + 504, + 348.4000000000001 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 334, + 348.4000000000001, + 504, + 362.0000000000001 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 332, + 364, + 505, + 410 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 331, + 364, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 331, + 364, + 434, + 376 + ], + "score": 1.0, + "content": "Figure 2: The Jacobian", + "type": "text" + }, + { + "bbox": [ + 434, + 365, + 442, + 374 + ], + "score": 0.52, + "content": "\\mathbf { J }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 364, + 505, + 376 + ], + "score": 1.0, + "content": "of a nonlinear", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 332, + 375, + 504, + 387 + ], + "spans": [ + { + "bbox": [ + 332, + 375, + 368, + 387 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 368, + 376, + 375, + 387 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 375, + 504, + 387 + ], + "score": 1.0, + "content": "provides a local basis in the in-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 330, + 386, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 330, + 387, + 400, + 401 + ], + "score": 1.0, + "content": "put space, while", + "type": "text" + }, + { + "bbox": [ + 401, + 386, + 449, + 400 + ], + "score": 0.92, + "content": "\\sqrt { \\operatorname* { d e t } ( \\mathbf { J } \\boldsymbol { \\tau } \\mathbf { J } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 387, + 505, + 401 + ], + "score": 1.0, + "content": "measures the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 331, + 398, + 470, + 411 + ], + "spans": [ + { + "bbox": [ + 331, + 398, + 470, + 411 + ], + "score": 1.0, + "content": "volume of an infinitesimal region.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.0 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 105, + 411, + 505, + 433 + ], + "lines": [], + "index": 34.5, + "bbox_fs": [ + 105, + 409, + 506, + 434 + ], + "lines_deleted": true + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 434, + 462, + 466 + ], + "lines": [ + { + "bbox": [ + 149, + 434, + 462, + 466 + ], + "spans": [ + { + "bbox": [ + 149, + 434, + 462, + 466 + ], + "score": 0.92, + "content": "\\operatorname { L e n g t h } [ f ( \\gamma _ { t } ) ] = \\int _ { 0 } ^ { 1 } \\left\\| { \\dot { f } } ( \\gamma _ { t } ) \\right\\| _ { 2 } \\mathrm { d } t = \\int _ { 0 } ^ { 1 } \\left\\| \\mathbf { J } _ { \\gamma _ { t } } { \\dot { \\gamma } } _ { t } \\right\\| _ { 2 } \\mathrm { d } t , \\qquad \\mathbf { J } _ { \\gamma _ { t } } = \\frac { \\partial f } { \\partial \\mathbf { z } } \\bigg | _ { \\mathbf { z } = \\gamma _ { t } }", + "type": "interline_equation", + "image_path": "533a29a7a4d247363dc08f04f51451095545ead9424a75e785f993ab72a25ace.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 149, + 434, + 462, + 444.6666666666667 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 149, + 444.6666666666667, + 462, + 455.33333333333337 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 149, + 455.33333333333337, + 462, + 466.00000000000006 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 468, + 503, + 491 + ], + "lines": [ + { + "bbox": [ + 106, + 467, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 452, + 481 + ], + "score": 1.0, + "content": "where the last step follows from the chain rule. This implies that the length of a curve", + "type": "text" + }, + { + "bbox": [ + 453, + 470, + 464, + 480 + ], + "score": 0.88, + "content": "\\gamma _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 467, + 505, + 481 + ], + "score": 1.0, + "content": "along the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 479, + 446, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 446, + 492 + ], + "score": 1.0, + "content": "surface can be computed directly in the latent space using the (locally defined) norm", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 106, + 467, + 505, + 492 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 493, + 429, + 515 + ], + "lines": [ + { + "bbox": [ + 181, + 493, + 429, + 515 + ], + "spans": [ + { + "bbox": [ + 181, + 493, + 429, + 515 + ], + "score": 0.92, + "content": "\\| \\mathbf { J } _ { \\gamma } \\dot { \\gamma } \\| _ { 2 } = \\sqrt { ( \\mathbf { J } _ { \\gamma } \\dot { \\gamma } ) ^ { \\intercal } ( \\mathbf { J } _ { \\gamma } \\dot { \\gamma } ) } = \\sqrt { \\dot { \\gamma } ^ { \\intercal } ( \\mathbf { J } _ { \\gamma } ^ { \\intercal } \\mathbf { J } _ { \\gamma } ) \\dot { \\gamma } } = \\sqrt { \\dot { \\gamma } ^ { \\intercal } \\mathbf { M } _ { \\gamma } \\dot { \\gamma } } .", + "type": "interline_equation", + "image_path": "b0dc3530177e3341805b36e0b25729b5a4eb3075b25b6e81ceffd4fe656d7c2e.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 181, + 493, + 429, + 515 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 516, + 502, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 131, + 529 + ], + "score": 1.0, + "content": "Here,", + "type": "text" + }, + { + "bbox": [ + 131, + 516, + 186, + 530 + ], + "score": 0.93, + "content": "{ \\bf M } _ { \\gamma } = { \\bf J } _ { \\gamma } ^ { \\top } { \\bf J } _ { \\gamma }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "is a symmetric positive definite matrix, which acts akin to a local Mahalanobis", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 107, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 107, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "distance measure. This gives rise to the definition of a Riemannian metric, which represents a", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 107, + 540, + 281, + 551 + ], + "spans": [ + { + "bbox": [ + 107, + 540, + 281, + 551 + ], + "score": 1.0, + "content": "smoothly changing inner product structure.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 516, + 505, + 551 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 551, + 503, + 575 + ], + "lines": [ + { + "bbox": [ + 104, + 549, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 104, + 549, + 251, + 566 + ], + "score": 1.0, + "content": "Definition 1. A Riemannian metric", + "type": "text" + }, + { + "bbox": [ + 252, + 551, + 319, + 563 + ], + "score": 0.91, + "content": "\\mathbf { M } : \\mathcal { Z } \\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 549, + 506, + 566 + ], + "score": 1.0, + "content": "is a smooth function that assigns a symmetric", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 564, + 273, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 261, + 576 + ], + "score": 1.0, + "content": "positive definite matrix to any point in", + "type": "text" + }, + { + "bbox": [ + 261, + 564, + 270, + 573 + ], + "score": 0.8, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 564, + 273, + 576 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 104, + 549, + 506, + 576 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 582, + 504, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 305, + 596 + ], + "score": 1.0, + "content": "It should be clear that if the generator function", + "type": "text" + }, + { + "bbox": [ + 305, + 584, + 312, + 595 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 581, + 430, + 596 + ], + "score": 1.0, + "content": "is sufficiently smooth, then", + "type": "text" + }, + { + "bbox": [ + 430, + 583, + 448, + 596 + ], + "score": 0.9, + "content": "{ { \\bf { M } } _ { \\gamma } }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 581, + 506, + 596 + ], + "score": 1.0, + "content": "in Eq. 5 is a", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 594, + 188, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 188, + 606 + ], + "score": 1.0, + "content": "Riemannian metric.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 581, + 506, + 606 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 505, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "score": 1.0, + "content": "When defining distances across a given surface, it is meaningful to seek the shortest curve connecting", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 621, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 636 + ], + "score": 1.0, + "content": "two points. Then a distance can be defined as the length of this curve. The shortest curve connecting", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 633, + 269, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 133, + 644 + ], + "score": 1.0, + "content": "points", + "type": "text" + }, + { + "bbox": [ + 133, + 635, + 144, + 644 + ], + "score": 0.86, + "content": "\\mathbf { z } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 633, + 162, + 644 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 162, + 634, + 173, + 644 + ], + "score": 0.87, + "content": "\\mathbf { z } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 633, + 269, + 644 + ], + "score": 1.0, + "content": "is by (trivial) definition", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50, + "bbox_fs": [ + 105, + 610, + 506, + 644 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 182, + 647, + 429, + 670 + ], + "lines": [ + { + "bbox": [ + 182, + 647, + 429, + 670 + ], + "spans": [ + { + "bbox": [ + 182, + 647, + 429, + 670 + ], + "score": 0.9, + "content": "\\boldsymbol \\gamma _ { t } ^ { ( \\mathrm { s h o r t e s t } ) } = \\underset { \\boldsymbol \\gamma _ { t } } { \\mathrm { a r g m i n L e n g t h } } [ f ( \\boldsymbol \\gamma _ { t } ) ] , \\qquad \\boldsymbol \\gamma _ { 0 } = \\mathbf z _ { 0 } , \\boldsymbol \\gamma _ { 1 } = \\mathbf z _ { 1 } .", + "type": "interline_equation", + "image_path": "c6c87e3ff4dca39c5a2ac584843c5f35f74c2708b716f8da661d9cc33e6fde58.jpg" + } + ] + } + ], + "index": 52, + "virtual_lines": [ + { + "bbox": [ + 182, + 647, + 429, + 670 + ], + "spans": [], + "index": 52 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 672, + 507, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 672, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 505, + 685 + ], + "score": 1.0, + "content": "A classic result of differential geometry (do Carmo, 1992) is that solutions to this optimization", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 683, + 425, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 425, + 696 + ], + "score": 1.0, + "content": "problem satisfy the following system of ordinary differential equations (ODEs)", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 53.5, + "bbox_fs": [ + 105, + 672, + 505, + 696 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 158, + 697, + 451, + 731 + ], + "lines": [ + { + "bbox": [ + 158, + 697, + 451, + 731 + ], + "spans": [ + { + "bbox": [ + 158, + 697, + 451, + 731 + ], + "score": 0.94, + "content": "\\ddot { \\gamma } _ { t } = - \\frac { 1 } { 2 } \\mathbf { M } _ { \\gamma _ { t } } ^ { - 1 } \\left[ 2 \\big ( \\mathbb { I } _ { d } \\otimes \\dot { \\gamma } _ { t } ^ { \\intercal } \\big ) \\frac { \\partial \\mathrm { v e c } \\big [ \\mathbf { M } _ { \\gamma _ { t } } \\big ] } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } - \\frac { \\partial \\mathrm { v e c } \\big [ \\mathbf { M } _ { \\gamma _ { t } } \\big ] ^ { \\intercal } } { \\partial \\gamma _ { t } } ( \\dot { \\gamma } _ { t } \\otimes \\dot { \\gamma } _ { t } ) \\right] ,", + "type": "interline_equation", + "image_path": "92d967178546532454e8e29aa71c57b216ef3688ad7afcc29dadc022f87384f2.jpg" + } + ] + } + ], + "index": 56, + "virtual_lines": [ + { + "bbox": [ + 158, + 697, + 451, + 708.3333333333334 + ], + "spans": [], + "index": 55 + }, + { + "bbox": [ + 158, + 708.3333333333334, + 451, + 719.6666666666667 + ], + "spans": [], + "index": 56 + }, + { + "bbox": [ + 158, + 719.6666666666667, + 451, + 731.0000000000001 + ], + "spans": [], + "index": 57 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 365, + 95 + ], + "score": 1.0, + "content": "where vec[·] stacks the columns of a matrix into a vector and", + "type": "text" + }, + { + "bbox": [ + 366, + 84, + 375, + 93 + ], + "score": 0.8, + "content": "\\otimes", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "is the Kronecker product. For", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "completeness, we provide a derivation of this result in Appendix A. Shortest curves can then be", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 474, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 387, + 117 + ], + "score": 1.0, + "content": "computed by solving the ODEs numerically; our implementation uses", + "type": "text" + }, + { + "bbox": [ + 387, + 105, + 419, + 116 + ], + "score": 0.32, + "content": "_ { \\mathrm { b v p } 5 \\mathrm { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 105, + 474, + 117 + ], + "score": 1.0, + "content": "from Matlab.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "title", + "bbox": [ + 107, + 132, + 369, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 130, + 369, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 130, + 369, + 147 + ], + "score": 1.0, + "content": "4 THE GEOMETRY OF STOCHASTIC GENERATORS", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 157, + 505, + 180 + ], + "lines": [ + { + "bbox": [ + 106, + 157, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 157, + 366, + 170 + ], + "score": 1.0, + "content": "In the previous section, we considered deterministic generators", + "type": "text" + }, + { + "bbox": [ + 367, + 158, + 374, + 169 + ], + "score": 0.87, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 157, + 505, + 170 + ], + "score": 1.0, + "content": "to provide relevant background", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 169, + 465, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 465, + 180 + ], + "score": 1.0, + "content": "information. We now extend these results to the stochastic case; in particular we consider", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 186, + 459, + 201 + ], + "lines": [ + { + "bbox": [ + 152, + 186, + 459, + 201 + ], + "spans": [ + { + "bbox": [ + 152, + 186, + 459, + 201 + ], + "score": 0.88, + "content": "f ( \\mathbf { z } ) = \\pmb { \\mu } ( \\mathbf { z } ) + \\pmb { \\sigma } ( \\mathbf { z } ) \\odot \\epsilon , \\qquad \\pmb { \\mu } : \\mathscr { Z } \\pmb { \\chi } , ~ \\pmb { \\sigma } : \\mathscr { Z } \\mathbb { R } _ { + } ^ { D } , ~ \\epsilon \\sim \\mathcal { N } ( \\mathbf { 0 } , \\mathbb { I } _ { D } ) .", + "type": "interline_equation", + "image_path": "4bbcc4852b2a197fa832ac95f26c5f0558f78c7c90e484248f1c32be9784c0f2.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 152, + 186, + 459, + 201 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 205, + 505, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 204, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 446, + 219 + ], + "score": 1.0, + "content": "This is the generator driving VAEs and related models. For our purposes, we will call", + "type": "text" + }, + { + "bbox": [ + 447, + 206, + 465, + 218 + ], + "score": 0.91, + "content": "\\mu ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 204, + 505, + 219 + ], + "score": 1.0, + "content": "the mean", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 216, + 273, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 158, + 229 + ], + "score": 1.0, + "content": "function and", + "type": "text" + }, + { + "bbox": [ + 159, + 216, + 182, + 229 + ], + "score": 0.92, + "content": "\\sigma ^ { 2 } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 216, + 273, + 229 + ], + "score": 1.0, + "content": "the variance function.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 505, + 267 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "score": 1.0, + "content": "Following the discussion from the previous section, it is natural to consider the Riemannian metric", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 245, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 107, + 245, + 161, + 257 + ], + "score": 0.92, + "content": "\\mathbf { M _ { z } } = \\mathbf { J _ { z } ^ { \\intercal } } \\mathbf { J _ { z } }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 245, + 505, + 257 + ], + "score": 1.0, + "content": "in the latent space. Since the generator is now stochastic, this metric also becomes", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 256, + 463, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 463, + 268 + ], + "score": 1.0, + "content": "stochastic, which complicates analysis. The following results, however, simplify matters.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 270, + 504, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 283 + ], + "score": 1.0, + "content": "Theorem 1. If the stochastic generator in Eq. 8 has mean and variance functions that are at least", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 282, + 316, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 316, + 294 + ], + "score": 1.0, + "content": "twice differentiable, then the expected metric equals", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 298, + 424, + 321 + ], + "lines": [ + { + "bbox": [ + 186, + 298, + 424, + 321 + ], + "spans": [ + { + "bbox": [ + 186, + 298, + 424, + 321 + ], + "score": 0.92, + "content": "\\overline { { \\mathbf { M } } } _ { \\mathbf { z } } = \\mathbb { E } _ { p ( \\boldsymbol { \\epsilon } ) } [ \\mathbf { M } _ { \\mathbf { z } } ] = \\left( \\mathbf { J } _ { \\mathbf { z } } ^ { ( \\boldsymbol { \\mu } ) } \\right) ^ { \\intercal } \\left( \\mathbf { J } _ { \\mathbf { z } } ^ { ( \\boldsymbol { \\mu } ) } \\right) + \\left( \\mathbf { J } _ { \\mathbf { z } } ^ { ( \\boldsymbol { \\sigma } ) } \\right) ^ { \\intercal } \\left( \\mathbf { J } _ { \\mathbf { z } } ^ { ( \\boldsymbol { \\sigma } ) } \\right) ,", + "type": "interline_equation", + "image_path": "ce69d035222cc7f0bc3d5c07cfa0ab021927ac0473ac326fc95f5f0c88378ac9.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 186, + 298, + 424, + 321 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 326, + 366, + 342 + ], + "lines": [ + { + "bbox": [ + 103, + 322, + 364, + 345 + ], + "spans": [ + { + "bbox": [ + 103, + 322, + 133, + 345 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 326, + 152, + 340 + ], + "score": 0.91, + "content": "\\mathbf { J _ { z } ^ { ( \\mu ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 322, + 171, + 345 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 171, + 326, + 190, + 340 + ], + "score": 0.9, + "content": "\\mathbf { J } _ { \\mathbf { z } } ^ { ( \\sigma ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 322, + 308, + 345 + ], + "score": 1.0, + "content": "are the Jacobian matrices of", + "type": "text" + }, + { + "bbox": [ + 308, + 329, + 326, + 342 + ], + "score": 0.91, + "content": "\\mu ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 322, + 345, + 345 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 345, + 329, + 364, + 342 + ], + "score": 0.91, + "content": "\\sigma ( \\cdot )", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 350, + 203, + 362 + ], + "lines": [ + { + "bbox": [ + 106, + 349, + 205, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 205, + 363 + ], + "score": 1.0, + "content": "Proof. See Appendix B.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 365, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 215, + 378 + ], + "score": 1.0, + "content": "Remark 1. By Definition", + "type": "text" + }, + { + "bbox": [ + 216, + 366, + 221, + 375 + ], + "score": 0.28, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 365, + 505, + 378 + ], + "score": 1.0, + "content": ", the metric tensor must change smoothly, which implies that the Ja-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 376, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 505, + 389 + ], + "score": 1.0, + "content": "cobians must be smooth functions as well. This is easily ensured with activation functions for the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 386, + 444, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 207, + 401 + ], + "score": 1.0, + "content": "neural networks that are", + "type": "text" + }, + { + "bbox": [ + 207, + 387, + 218, + 398 + ], + "score": 0.84, + "content": "\\mathcal { C } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 386, + 315, + 401 + ], + "score": 1.0, + "content": "differentiable, e.g. tanh", + "type": "text" + }, + { + "bbox": [ + 315, + 388, + 326, + 399 + ], + "score": 0.27, + "content": "( \\cdot ) ,", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 386, + 444, + 401 + ], + "score": 1.0, + "content": ", sigmoid(·), and softplus(·).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 402, + 502, + 425 + ], + "lines": [ + { + "bbox": [ + 106, + 401, + 504, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 418, + 415 + ], + "score": 1.0, + "content": "Theorem 2 (Due to Tosi et al. (2014)). The variance of the metric under the", + "type": "text" + }, + { + "bbox": [ + 418, + 403, + 430, + 414 + ], + "score": 0.87, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 401, + 504, + 415 + ], + "score": 1.0, + "content": "measure vanishes", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 413, + 388, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 285, + 426 + ], + "score": 1.0, + "content": "when the data dimension goes to infinity, i.e.", + "type": "text" + }, + { + "bbox": [ + 285, + 414, + 384, + 425 + ], + "score": 0.74, + "content": "\\begin{array} { r } { \\operatorname* { l i m } _ { D \\to \\infty } \\mathrm { V a r } \\left( \\mathbf { M } _ { \\mathbf { z } } \\right) = 0 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 413, + 388, + 426 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 436, + 375, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 376, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 349, + 448 + ], + "score": 1.0, + "content": "Theorem 2 suggests that the (deterministic) expected metric", + "type": "text" + }, + { + "bbox": [ + 349, + 434, + 366, + 447 + ], + "score": 0.89, + "content": "\\overline { { \\mathbf { M } } } _ { \\mathbf { z } }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 435, + 376, + 448 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 447, + 376, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 376, + 458 + ], + "score": 1.0, + "content": "a good approximation to the underlying stochastic metric when the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 457, + 376, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 376, + 470 + ], + "score": 1.0, + "content": "data dimension is large. We make this approximation, which allows", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 469, + 308, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 308, + 481 + ], + "score": 1.0, + "content": "us to apply the theory of deterministic generators.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 486, + 375, + 565 + ], + "lines": [ + { + "bbox": [ + 106, + 486, + 376, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 376, + 498 + ], + "score": 1.0, + "content": "This expected metric has a particularly appealing form, where the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 497, + 376, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 376, + 508 + ], + "score": 1.0, + "content": "two terms capture the distortion of the mean and the variance func-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 102, + 504, + 375, + 527 + ], + "spans": [ + { + "bbox": [ + 102, + 504, + 317, + 527 + ], + "score": 1.0, + "content": "tions respectively. In particular, the variance term", + "type": "text" + }, + { + "bbox": [ + 317, + 507, + 375, + 522 + ], + "score": 0.92, + "content": "( \\mathbf { J _ { z } ^ { ( \\sigma ) } } ) ^ { \\mathsf { T } } ( \\mathbf { J _ { z } ^ { ( \\sigma ) } } )", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 522, + 376, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 376, + 533 + ], + "score": 1.0, + "content": "will be large in regions of the latent space, where the generator has", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 532, + 376, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 376, + 544 + ], + "score": 1.0, + "content": "large variance. This implies that induced distances will be large in", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 543, + 376, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 376, + 555 + ], + "score": 1.0, + "content": "regions of the latent space where the generator is highly uncertain,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 554, + 376, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 376, + 566 + ], + "score": 1.0, + "content": "such that shortest paths will tend to avoid these regions. These paths", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30 + }, + { + "type": "image", + "bbox": [ + 384, + 441, + 504, + 536 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 384, + 441, + 504, + 536 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 384, + 441, + 504, + 536 + ], + "spans": [ + { + "bbox": [ + 384, + 441, + 504, + 536 + ], + "score": 0.965, + "type": "image", + "image_path": "954871399527a17cead87d658d94f6a7dfe5fa2172e6093b0a13ea64a1641026.jpg" + } + ] + } + ], + "index": 30.0, + "virtual_lines": [ + { + "bbox": [ + 384, + 441, + 504, + 488.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 384, + 488.5, + 504, + 536.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 383, + 538, + 504, + 561 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 383, + 538, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 383, + 538, + 505, + 550 + ], + "score": 1.0, + "content": "Figure 3: Example shortest", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 383, + 549, + 466, + 562 + ], + "spans": [ + { + "bbox": [ + 383, + 549, + 466, + 562 + ], + "score": 1.0, + "content": "paths and distances.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + } + ], + "index": 32.75 + }, + { + "type": "text", + "bbox": [ + 107, + 565, + 505, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 578 + ], + "score": 1.0, + "content": "will then tend to follow the data in the latent space, c.f. Fig. 3. It is worth stressing, that no learning", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "is needed to compute this metric: it only consists of terms that can be derived directly from the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 588, + 149, + 599 + ], + "spans": [ + { + "bbox": [ + 104, + 588, + 149, + 599 + ], + "score": 1.0, + "content": "generator.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "title", + "bbox": [ + 106, + 612, + 473, + 623 + ], + "lines": [ + { + "bbox": [ + 106, + 612, + 474, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 474, + 624 + ], + "score": 1.0, + "content": "4.1 ENSURING PROPER GEOMETRY THROUGH MEANINGFUL VARIANCE FUNCTIONS", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 506, + 646 + ], + "score": 1.0, + "content": "Theorem 1 informs us about how the geometry of the generative model depends on both the mean", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 506, + 657 + ], + "score": 1.0, + "content": "and the variance of the generator. Assuming successful training of the generator, we can expect to", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "have good estimates of the geometry in regions near the data. But what happens in regions further", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "away from the data? In general, the mean function cannot be expected to give useful extrapolations", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "to such regions, so it is reasonable to require that the generator has high variance in regions that are", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "not near the data. In practice, the neural net used to represent the variance function is only trained", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "in regions where data is available, which implies that variance estimates are extrapolated to regions", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "with no data. As neural nets tend to extrapolate poorly, practical variance estimates tend to be", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 720, + 269, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 269, + 734 + ], + "score": 1.0, + "content": "arbitrarily poor in regions without data.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 365, + 95 + ], + "score": 1.0, + "content": "where vec[·] stacks the columns of a matrix into a vector and", + "type": "text" + }, + { + "bbox": [ + 366, + 84, + 375, + 93 + ], + "score": 0.8, + "content": "\\otimes", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "is the Kronecker product. For", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "completeness, we provide a derivation of this result in Appendix A. Shortest curves can then be", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 474, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 387, + 117 + ], + "score": 1.0, + "content": "computed by solving the ODEs numerically; our implementation uses", + "type": "text" + }, + { + "bbox": [ + 387, + 105, + 419, + 116 + ], + "score": 0.32, + "content": "_ { \\mathrm { b v p } 5 \\mathrm { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 105, + 474, + 117 + ], + "score": 1.0, + "content": "from Matlab.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 505, + 117 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 132, + 369, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 130, + 369, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 130, + 369, + 147 + ], + "score": 1.0, + "content": "4 THE GEOMETRY OF STOCHASTIC GENERATORS", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 157, + 505, + 180 + ], + "lines": [ + { + "bbox": [ + 106, + 157, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 157, + 366, + 170 + ], + "score": 1.0, + "content": "In the previous section, we considered deterministic generators", + "type": "text" + }, + { + "bbox": [ + 367, + 158, + 374, + 169 + ], + "score": 0.87, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 157, + 505, + 170 + ], + "score": 1.0, + "content": "to provide relevant background", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 169, + 465, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 465, + 180 + ], + "score": 1.0, + "content": "information. We now extend these results to the stochastic case; in particular we consider", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 157, + 505, + 180 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 186, + 459, + 201 + ], + "lines": [ + { + "bbox": [ + 152, + 186, + 459, + 201 + ], + "spans": [ + { + "bbox": [ + 152, + 186, + 459, + 201 + ], + "score": 0.88, + "content": "f ( \\mathbf { z } ) = \\pmb { \\mu } ( \\mathbf { z } ) + \\pmb { \\sigma } ( \\mathbf { z } ) \\odot \\epsilon , \\qquad \\pmb { \\mu } : \\mathscr { Z } \\pmb { \\chi } , ~ \\pmb { \\sigma } : \\mathscr { Z } \\mathbb { R } _ { + } ^ { D } , ~ \\epsilon \\sim \\mathcal { N } ( \\mathbf { 0 } , \\mathbb { I } _ { D } ) .", + "type": "interline_equation", + "image_path": "4bbcc4852b2a197fa832ac95f26c5f0558f78c7c90e484248f1c32be9784c0f2.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 152, + 186, + 459, + 201 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 205, + 505, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 204, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 446, + 219 + ], + "score": 1.0, + "content": "This is the generator driving VAEs and related models. For our purposes, we will call", + "type": "text" + }, + { + "bbox": [ + 447, + 206, + 465, + 218 + ], + "score": 0.91, + "content": "\\mu ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 204, + 505, + 219 + ], + "score": 1.0, + "content": "the mean", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 216, + 273, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 158, + 229 + ], + "score": 1.0, + "content": "function and", + "type": "text" + }, + { + "bbox": [ + 159, + 216, + 182, + 229 + ], + "score": 0.92, + "content": "\\sigma ^ { 2 } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 216, + 273, + 229 + ], + "score": 1.0, + "content": "the variance function.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 204, + 505, + 229 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 505, + 267 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "score": 1.0, + "content": "Following the discussion from the previous section, it is natural to consider the Riemannian metric", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 245, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 107, + 245, + 161, + 257 + ], + "score": 0.92, + "content": "\\mathbf { M _ { z } } = \\mathbf { J _ { z } ^ { \\intercal } } \\mathbf { J _ { z } }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 245, + 505, + 257 + ], + "score": 1.0, + "content": "in the latent space. Since the generator is now stochastic, this metric also becomes", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 256, + 463, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 463, + 268 + ], + "score": 1.0, + "content": "stochastic, which complicates analysis. The following results, however, simplify matters.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 234, + 505, + 268 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 270, + 504, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 283 + ], + "score": 1.0, + "content": "Theorem 1. If the stochastic generator in Eq. 8 has mean and variance functions that are at least", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 282, + 316, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 316, + 294 + ], + "score": 1.0, + "content": "twice differentiable, then the expected metric equals", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 270, + 505, + 294 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 298, + 424, + 321 + ], + "lines": [ + { + "bbox": [ + 186, + 298, + 424, + 321 + ], + "spans": [ + { + "bbox": [ + 186, + 298, + 424, + 321 + ], + "score": 0.92, + "content": "\\overline { { \\mathbf { M } } } _ { \\mathbf { z } } = \\mathbb { E } _ { p ( \\boldsymbol { \\epsilon } ) } [ \\mathbf { M } _ { \\mathbf { z } } ] = \\left( \\mathbf { J } _ { \\mathbf { z } } ^ { ( \\boldsymbol { \\mu } ) } \\right) ^ { \\intercal } \\left( \\mathbf { J } _ { \\mathbf { z } } ^ { ( \\boldsymbol { \\mu } ) } \\right) + \\left( \\mathbf { J } _ { \\mathbf { z } } ^ { ( \\boldsymbol { \\sigma } ) } \\right) ^ { \\intercal } \\left( \\mathbf { J } _ { \\mathbf { z } } ^ { ( \\boldsymbol { \\sigma } ) } \\right) ,", + "type": "interline_equation", + "image_path": "ce69d035222cc7f0bc3d5c07cfa0ab021927ac0473ac326fc95f5f0c88378ac9.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 186, + 298, + 424, + 321 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 326, + 366, + 342 + ], + "lines": [ + { + "bbox": [ + 103, + 322, + 364, + 345 + ], + "spans": [ + { + "bbox": [ + 103, + 322, + 133, + 345 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 326, + 152, + 340 + ], + "score": 0.91, + "content": "\\mathbf { J _ { z } ^ { ( \\mu ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 322, + 171, + 345 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 171, + 326, + 190, + 340 + ], + "score": 0.9, + "content": "\\mathbf { J } _ { \\mathbf { z } } ^ { ( \\sigma ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 322, + 308, + 345 + ], + "score": 1.0, + "content": "are the Jacobian matrices of", + "type": "text" + }, + { + "bbox": [ + 308, + 329, + 326, + 342 + ], + "score": 0.91, + "content": "\\mu ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 322, + 345, + 345 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 345, + 329, + 364, + 342 + ], + "score": 0.91, + "content": "\\sigma ( \\cdot )", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 103, + 322, + 364, + 345 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 350, + 203, + 362 + ], + "lines": [ + { + "bbox": [ + 106, + 349, + 205, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 205, + 363 + ], + "score": 1.0, + "content": "Proof. See Appendix B.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 349, + 205, + 363 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 365, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 215, + 378 + ], + "score": 1.0, + "content": "Remark 1. By Definition", + "type": "text" + }, + { + "bbox": [ + 216, + 366, + 221, + 375 + ], + "score": 0.28, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 365, + 505, + 378 + ], + "score": 1.0, + "content": ", the metric tensor must change smoothly, which implies that the Ja-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 376, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 505, + 389 + ], + "score": 1.0, + "content": "cobians must be smooth functions as well. This is easily ensured with activation functions for the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 386, + 444, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 207, + 401 + ], + "score": 1.0, + "content": "neural networks that are", + "type": "text" + }, + { + "bbox": [ + 207, + 387, + 218, + 398 + ], + "score": 0.84, + "content": "\\mathcal { C } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 386, + 315, + 401 + ], + "score": 1.0, + "content": "differentiable, e.g. tanh", + "type": "text" + }, + { + "bbox": [ + 315, + 388, + 326, + 399 + ], + "score": 0.27, + "content": "( \\cdot ) ,", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 386, + 444, + 401 + ], + "score": 1.0, + "content": ", sigmoid(·), and softplus(·).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 365, + 505, + 401 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 402, + 502, + 425 + ], + "lines": [ + { + "bbox": [ + 106, + 401, + 504, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 418, + 415 + ], + "score": 1.0, + "content": "Theorem 2 (Due to Tosi et al. (2014)). The variance of the metric under the", + "type": "text" + }, + { + "bbox": [ + 418, + 403, + 430, + 414 + ], + "score": 0.87, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 401, + 504, + 415 + ], + "score": 1.0, + "content": "measure vanishes", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 413, + 388, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 285, + 426 + ], + "score": 1.0, + "content": "when the data dimension goes to infinity, i.e.", + "type": "text" + }, + { + "bbox": [ + 285, + 414, + 384, + 425 + ], + "score": 0.74, + "content": "\\begin{array} { r } { \\operatorname* { l i m } _ { D \\to \\infty } \\mathrm { V a r } \\left( \\mathbf { M } _ { \\mathbf { z } } \\right) = 0 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 413, + 388, + 426 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 401, + 504, + 426 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 436, + 375, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 376, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 349, + 448 + ], + "score": 1.0, + "content": "Theorem 2 suggests that the (deterministic) expected metric", + "type": "text" + }, + { + "bbox": [ + 349, + 434, + 366, + 447 + ], + "score": 0.89, + "content": "\\overline { { \\mathbf { M } } } _ { \\mathbf { z } }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 435, + 376, + 448 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 447, + 376, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 376, + 458 + ], + "score": 1.0, + "content": "a good approximation to the underlying stochastic metric when the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 457, + 376, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 376, + 470 + ], + "score": 1.0, + "content": "data dimension is large. We make this approximation, which allows", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 469, + 308, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 308, + 481 + ], + "score": 1.0, + "content": "us to apply the theory of deterministic generators.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 434, + 376, + 481 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 486, + 375, + 565 + ], + "lines": [ + { + "bbox": [ + 106, + 486, + 376, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 376, + 498 + ], + "score": 1.0, + "content": "This expected metric has a particularly appealing form, where the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 497, + 376, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 376, + 508 + ], + "score": 1.0, + "content": "two terms capture the distortion of the mean and the variance func-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 102, + 504, + 375, + 527 + ], + "spans": [ + { + "bbox": [ + 102, + 504, + 317, + 527 + ], + "score": 1.0, + "content": "tions respectively. In particular, the variance term", + "type": "text" + }, + { + "bbox": [ + 317, + 507, + 375, + 522 + ], + "score": 0.92, + "content": "( \\mathbf { J _ { z } ^ { ( \\sigma ) } } ) ^ { \\mathsf { T } } ( \\mathbf { J _ { z } ^ { ( \\sigma ) } } )", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 522, + 376, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 376, + 533 + ], + "score": 1.0, + "content": "will be large in regions of the latent space, where the generator has", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 532, + 376, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 376, + 544 + ], + "score": 1.0, + "content": "large variance. This implies that induced distances will be large in", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 543, + 376, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 376, + 555 + ], + "score": 1.0, + "content": "regions of the latent space where the generator is highly uncertain,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 554, + 376, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 376, + 566 + ], + "score": 1.0, + "content": "such that shortest paths will tend to avoid these regions. These paths", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 563, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 578 + ], + "score": 1.0, + "content": "will then tend to follow the data in the latent space, c.f. Fig. 3. It is worth stressing, that no learning", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "is needed to compute this metric: it only consists of terms that can be derived directly from the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 588, + 149, + 599 + ], + "spans": [ + { + "bbox": [ + 104, + 588, + 149, + 599 + ], + "score": 1.0, + "content": "generator.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 30, + "bbox_fs": [ + 102, + 486, + 376, + 566 + ] + }, + { + "type": "image", + "bbox": [ + 384, + 441, + 504, + 536 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 384, + 441, + 504, + 536 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 384, + 441, + 504, + 536 + ], + "spans": [ + { + "bbox": [ + 384, + 441, + 504, + 536 + ], + "score": 0.965, + "type": "image", + "image_path": "954871399527a17cead87d658d94f6a7dfe5fa2172e6093b0a13ea64a1641026.jpg" + } + ] + } + ], + "index": 30.0, + "virtual_lines": [ + { + "bbox": [ + 384, + 441, + 504, + 488.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 384, + 488.5, + 504, + 536.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 383, + 538, + 504, + 561 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 383, + 538, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 383, + 538, + 505, + 550 + ], + "score": 1.0, + "content": "Figure 3: Example shortest", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 383, + 549, + 466, + 562 + ], + "spans": [ + { + "bbox": [ + 383, + 549, + 466, + 562 + ], + "score": 1.0, + "content": "paths and distances.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + } + ], + "index": 32.75 + }, + { + "type": "text", + "bbox": [ + 107, + 565, + 505, + 598 + ], + "lines": [], + "index": 38, + "bbox_fs": [ + 104, + 563, + 505, + 599 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 106, + 612, + 473, + 623 + ], + "lines": [ + { + "bbox": [ + 106, + 612, + 474, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 474, + 624 + ], + "score": 1.0, + "content": "4.1 ENSURING PROPER GEOMETRY THROUGH MEANINGFUL VARIANCE FUNCTIONS", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 506, + 646 + ], + "score": 1.0, + "content": "Theorem 1 informs us about how the geometry of the generative model depends on both the mean", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 506, + 657 + ], + "score": 1.0, + "content": "and the variance of the generator. Assuming successful training of the generator, we can expect to", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "have good estimates of the geometry in regions near the data. But what happens in regions further", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "away from the data? In general, the mean function cannot be expected to give useful extrapolations", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "to such regions, so it is reasonable to require that the generator has high variance in regions that are", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "not near the data. In practice, the neural net used to represent the variance function is only trained", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "in regions where data is available, which implies that variance estimates are extrapolated to regions", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "with no data. As neural nets tend to extrapolate poorly, practical variance estimates tend to be", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 720, + 269, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 269, + 734 + ], + "score": 1.0, + "content": "arbitrarily poor in regions without data.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 632, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 78, + 502, + 158 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 78, + 502, + 158 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 78, + 502, + 158 + ], + "spans": [ + { + "bbox": [ + 110, + 78, + 502, + 158 + ], + "score": 0.961, + "type": "image", + "image_path": "fa99796e62b2e36f02959898009e95b045fb0cd0c77b64f431b6792bd61c83be.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 78, + 502, + 104.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 104.66666666666667, + 502, + 131.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 131.33333333333334, + 502, + 158.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 167, + 503, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 167, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 288, + 180 + ], + "score": 1.0, + "content": "Figure 4: From left to right: training data in", + "type": "text" + }, + { + "bbox": [ + 288, + 168, + 297, + 178 + ], + "score": 0.77, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 167, + 400, + 180 + ], + "score": 1.0, + "content": ", latent representations in", + "type": "text" + }, + { + "bbox": [ + 401, + 168, + 410, + 178 + ], + "score": 0.75, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 167, + 505, + 180 + ], + "score": 1.0, + "content": ", the standard deviation", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 172, + 428, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 177, + 194 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\log ( \\sum _ { j = 1 } ^ { D } \\sigma _ { j } ( { \\mathbf z } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 172, + 428, + 199 + ], + "score": 1.0, + "content": "for the standard variance network, and the proposed solution.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 106, + 210, + 505, + 300 + ], + "lines": [ + { + "bbox": [ + 106, + 212, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 224 + ], + "score": 1.0, + "content": "Figure 4 illustrates this problem. The first two panels show the data and its corresponding latent", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "representations (here both input and latent dimensions are 2 to ease illustration). The third panel", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "shows the variance function under a standard architecture, deep multilayer perceptron with softplus", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 244, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 506, + 257 + ], + "score": 1.0, + "content": "nonlinearity for the output layer. It is evident that variance estimates in regions without data are", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 255, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 267 + ], + "score": 1.0, + "content": "not representative of either uncertainty or error of the generative process; sometimes variance is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "high, sometimes it is low. From a probabilistic modeling point-of-view, this is disheartening. An", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 278, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 505, + 289 + ], + "score": 1.0, + "content": "informal survey of publicly available VAE implementations also reveals that it is common to enforce", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 289, + 368, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 368, + 301 + ], + "score": 1.0, + "content": "a constant unit variance everywhere; this is further disheartening.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 505, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "For our purposes, we need well-behaved variance functions to ensure a well-behaved geometry,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "score": 1.0, + "content": "but reasonable variance estimates are of general use. Here, as a general strategy, we propose to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 327, + 504, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 504, + 338 + ], + "score": 1.0, + "content": "model the inverse variance with a network that extrapolates towards zero. This at least ensures that", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 335, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 437, + 356 + ], + "score": 1.0, + "content": "variances are large in regions without data. Specifically, we model the precision as", + "type": "text" + }, + { + "bbox": [ + 438, + 337, + 501, + 354 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\beta _ { \\psi } ( \\mathbf { z } ) = \\frac { 1 } { \\pmb { \\sigma } _ { \\psi } ^ { 2 } ( \\mathbf { z } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 335, + 505, + 356 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "where all operations are element-wise. Then, we model this precision with a radial basis function", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 363, + 387, + 377 + ], + "spans": [ + { + "bbox": [ + 107, + 364, + 132, + 375 + ], + "score": 0.75, + "content": "( R B F )", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 363, + 387, + 377 + ], + "score": 1.0, + "content": "neural network (Que & Belkin, 2016). Formally this is written", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 143, + 376, + 468, + 398 + ], + "lines": [ + { + "bbox": [ + 143, + 376, + 468, + 398 + ], + "spans": [ + { + "bbox": [ + 143, + 376, + 468, + 398 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\beta _ { \\psi } ( { \\bf z } ) = { \\bf W } { \\bf v } ( { \\bf z } ) + \\boldsymbol { \\zeta } , \\quad \\mathrm { w i t h } \\quad v _ { k } ( { \\bf z } ) = \\exp \\left( - \\lambda _ { k } \\left. { \\bf z } - { \\bf c } _ { k } \\right. _ { 2 } ^ { 2 } \\right) , k = 1 , \\dots , K , } \\end{array}", + "type": "interline_equation", + "image_path": "3497e224dfd202107a9c1a9fe0bc09cdc511c58d74865d312b5888457867c2e1.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 143, + 376, + 468, + 398 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 398, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 102, + 393, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 102, + 393, + 133, + 420 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 401, + 142, + 412 + ], + "score": 0.86, + "content": "\\psi", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 393, + 218, + 420 + ], + "score": 1.0, + "content": "are all parameters,", + "type": "text" + }, + { + "bbox": [ + 219, + 399, + 271, + 413 + ], + "score": 0.93, + "content": "\\mathbf { W } \\in \\mathbb { R } _ { > 0 } ^ { D \\times K }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 393, + 402, + 420 + ], + "score": 1.0, + "content": "are the positive weights of the n", + "type": "text" + }, + { + "bbox": [ + 414, + 393, + 506, + 420 + ], + "score": 1.0, + "content": "ork (positivity ensures", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 411, + 413, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 192, + 424 + ], + "score": 1.0, + "content": "a positive precision),", + "type": "text" + }, + { + "bbox": [ + 205, + 411, + 223, + 424 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 223, + 412, + 236, + 423 + ], + "score": 0.87, + "content": "\\lambda _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 411, + 402, + 424 + ], + "score": 1.0, + "content": "are the centers and the bandwidth of the", + "type": "text" + }, + { + "bbox": [ + 402, + 412, + 413, + 421 + ], + "score": 0.82, + "content": "K", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 124, + 435 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 423, + 154, + 434 + ], + "score": 0.91, + "content": "\\zeta \\to 0", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "is a vector of positive constants to prevent division by zero. It is easy to see that with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 434, + 504, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 504, + 446 + ], + "score": 1.0, + "content": "this approach the variance of the generator increases with the distance to the centers. The right-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "most panel of Fig. 4 shows an estimated variance function, which indeed has the desired property", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "score": 1.0, + "content": "that variance is large outside the data support. Further, note the increased variance between the two", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 466, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 478 + ], + "score": 1.0, + "content": "clusters, which captures that even interpolating between clusters comes with a level of uncertainty. In", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "Appendix C we also demonstrate that this simple variance model improves the marginal likelihood", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 488, + 198, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 126, + 500 + ], + "score": 0.9, + "content": "p ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 488, + 198, + 501 + ], + "score": 1.0, + "content": "on held-out data.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 505, + 364, + 560 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 364, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 364, + 517 + ], + "score": 1.0, + "content": "Training the variance network amounts to fitting the RBF net-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 516, + 364, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 364, + 528 + ], + "score": 1.0, + "content": "work. Assuming we have already trained the inference network", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 527, + 365, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 316, + 539 + ], + "score": 1.0, + "content": "(Sec. 2), we can encode the training data, and use", + "type": "text" + }, + { + "bbox": [ + 316, + 527, + 323, + 537 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 527, + 365, + 539 + ], + "score": 1.0, + "content": "-means to", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 538, + 364, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 364, + 549 + ], + "score": 1.0, + "content": "estimate the RBF centers. Then, an estimate for the bandwidths", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 549, + 246, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 246, + 561 + ], + "score": 1.0, + "content": "of each kernel can be computed as", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 561, + 314, + 603 + ], + "lines": [ + { + "bbox": [ + 156, + 561, + 314, + 603 + ], + "spans": [ + { + "bbox": [ + 156, + 561, + 314, + 603 + ], + "score": 0.93, + "content": "\\lambda _ { k } = \\frac { 1 } { 2 } \\left( a \\frac { 1 } { | \\mathcal { C } _ { k } | } \\sum _ { \\mathbf { z } _ { j } \\in \\mathcal { C } _ { k } } \\left\\| \\mathbf { z } _ { j } - \\mathbf { c } _ { k } \\right\\| _ { 2 } \\right) ^ { - 2 }", + "type": "interline_equation", + "image_path": "108409fd28775aeb858946b97dfa84430dd2601c860fd0d8a32456906c3a7844.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 156, + 561, + 314, + 575.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 156, + 575.0, + 314, + 589.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 156, + 589.0, + 314, + 603.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 604, + 364, + 659 + ], + "lines": [ + { + "bbox": [ + 106, + 603, + 365, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 220, + 615 + ], + "score": 1.0, + "content": "where the hyper-parameter", + "type": "text" + }, + { + "bbox": [ + 220, + 604, + 258, + 615 + ], + "score": 0.91, + "content": "a \\in \\mathbb { R } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 603, + 365, + 615 + ], + "score": 1.0, + "content": "controls the curvature of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 615, + 364, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 364, + 626 + ], + "score": 1.0, + "content": "the Riemannian metric, i.e. how fast it changes based on the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 625, + 364, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 364, + 638 + ], + "score": 1.0, + "content": "uncertainty. Since the mean function of the generator is already", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 636, + 365, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 365, + 649 + ], + "score": 1.0, + "content": "trained, the weights of the RBF can be found using projected", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 648, + 282, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 282, + 660 + ], + "score": 1.0, + "content": "gradient descent to ensure positive weights.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 664, + 365, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 662, + 365, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 365, + 677 + ], + "score": 1.0, + "content": "One visualization of the distortion of the latent space relative to", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 675, + 364, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 313, + 689 + ], + "score": 1.0, + "content": "the input space is the geometric volume measure", + "type": "text" + }, + { + "bbox": [ + 313, + 675, + 361, + 689 + ], + "score": 0.91, + "content": "\\sqrt { \\operatorname* { d e t } ( \\mathbf { M } _ { \\mathbf { z } } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 676, + 364, + 689 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 687, + 365, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 365, + 700 + ], + "score": 1.0, + "content": "which captures the volume of an infinitesimal area in the input", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 699, + 365, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 365, + 711 + ], + "score": 1.0, + "content": "space. Figure 5 shows this volume measure for both standard", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 709, + 367, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 367, + 722 + ], + "score": 1.0, + "content": "variance functions as well as our proposed RBF model. We see", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 721, + 299, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 299, + 732 + ], + "score": 1.0, + "content": "the trend of the data, unlike the standard model.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45.5 + }, + { + "type": "image", + "bbox": [ + 372, + 493, + 499, + 673 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 372, + 493, + 499, + 673 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 372, + 493, + 499, + 673 + ], + "spans": [ + { + "bbox": [ + 372, + 493, + 499, + 673 + ], + "score": 0.962, + "type": "image", + "image_path": "c7075f8077cba97a8ced072d15552c951119f42cbb37ef44a5700aff838d8091.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 372, + 493, + 499, + 673 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 371, + 675, + 504, + 708 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 370, + 672, + 505, + 688 + ], + "spans": [ + { + "bbox": [ + 370, + 672, + 505, + 688 + ], + "score": 1.0, + "content": "Figure 5: Comparison of (log)", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 371, + 686, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 371, + 686, + 505, + 698 + ], + "score": 1.0, + "content": "measures of standard (top) and", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 371, + 696, + 491, + 709 + ], + "spans": [ + { + "bbox": [ + 371, + 696, + 491, + 709 + ], + "score": 1.0, + "content": "proposed (bottom) variances.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50 + } + ], + "index": 46.0 + } + ], + "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, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 78, + 502, + 158 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 78, + 502, + 158 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 78, + 502, + 158 + ], + "spans": [ + { + "bbox": [ + 110, + 78, + 502, + 158 + ], + "score": 0.961, + "type": "image", + "image_path": "fa99796e62b2e36f02959898009e95b045fb0cd0c77b64f431b6792bd61c83be.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 78, + 502, + 104.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 104.66666666666667, + 502, + 131.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 131.33333333333334, + 502, + 158.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 167, + 503, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 167, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 288, + 180 + ], + "score": 1.0, + "content": "Figure 4: From left to right: training data in", + "type": "text" + }, + { + "bbox": [ + 288, + 168, + 297, + 178 + ], + "score": 0.77, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 167, + 400, + 180 + ], + "score": 1.0, + "content": ", latent representations in", + "type": "text" + }, + { + "bbox": [ + 401, + 168, + 410, + 178 + ], + "score": 0.75, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 167, + 505, + 180 + ], + "score": 1.0, + "content": ", the standard deviation", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 172, + 428, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 177, + 194 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\log ( \\sum _ { j = 1 } ^ { D } \\sigma _ { j } ( { \\mathbf z } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 172, + 428, + 199 + ], + "score": 1.0, + "content": "for the standard variance network, and the proposed solution.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 106, + 210, + 505, + 300 + ], + "lines": [ + { + "bbox": [ + 106, + 212, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 224 + ], + "score": 1.0, + "content": "Figure 4 illustrates this problem. The first two panels show the data and its corresponding latent", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "representations (here both input and latent dimensions are 2 to ease illustration). The third panel", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "shows the variance function under a standard architecture, deep multilayer perceptron with softplus", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 244, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 506, + 257 + ], + "score": 1.0, + "content": "nonlinearity for the output layer. It is evident that variance estimates in regions without data are", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 255, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 267 + ], + "score": 1.0, + "content": "not representative of either uncertainty or error of the generative process; sometimes variance is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "high, sometimes it is low. From a probabilistic modeling point-of-view, this is disheartening. An", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 278, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 505, + 289 + ], + "score": 1.0, + "content": "informal survey of publicly available VAE implementations also reveals that it is common to enforce", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 289, + 368, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 368, + 301 + ], + "score": 1.0, + "content": "a constant unit variance everywhere; this is further disheartening.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 212, + 506, + 301 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 505, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "For our purposes, we need well-behaved variance functions to ensure a well-behaved geometry,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "score": 1.0, + "content": "but reasonable variance estimates are of general use. Here, as a general strategy, we propose to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 327, + 504, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 504, + 338 + ], + "score": 1.0, + "content": "model the inverse variance with a network that extrapolates towards zero. This at least ensures that", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 335, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 437, + 356 + ], + "score": 1.0, + "content": "variances are large in regions without data. Specifically, we model the precision as", + "type": "text" + }, + { + "bbox": [ + 438, + 337, + 501, + 354 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\beta _ { \\psi } ( \\mathbf { z } ) = \\frac { 1 } { \\pmb { \\sigma } _ { \\psi } ^ { 2 } ( \\mathbf { z } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 335, + 505, + 356 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "where all operations are element-wise. Then, we model this precision with a radial basis function", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 363, + 387, + 377 + ], + "spans": [ + { + "bbox": [ + 107, + 364, + 132, + 375 + ], + "score": 0.75, + "content": "( R B F )", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 363, + 387, + 377 + ], + "score": 1.0, + "content": "neural network (Que & Belkin, 2016). Formally this is written", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 304, + 506, + 377 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 143, + 376, + 468, + 398 + ], + "lines": [ + { + "bbox": [ + 143, + 376, + 468, + 398 + ], + "spans": [ + { + "bbox": [ + 143, + 376, + 468, + 398 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\beta _ { \\psi } ( { \\bf z } ) = { \\bf W } { \\bf v } ( { \\bf z } ) + \\boldsymbol { \\zeta } , \\quad \\mathrm { w i t h } \\quad v _ { k } ( { \\bf z } ) = \\exp \\left( - \\lambda _ { k } \\left. { \\bf z } - { \\bf c } _ { k } \\right. _ { 2 } ^ { 2 } \\right) , k = 1 , \\dots , K , } \\end{array}", + "type": "interline_equation", + "image_path": "3497e224dfd202107a9c1a9fe0bc09cdc511c58d74865d312b5888457867c2e1.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 143, + 376, + 468, + 398 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 398, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 102, + 393, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 102, + 393, + 133, + 420 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 401, + 142, + 412 + ], + "score": 0.86, + "content": "\\psi", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 393, + 218, + 420 + ], + "score": 1.0, + "content": "are all parameters,", + "type": "text" + }, + { + "bbox": [ + 219, + 399, + 271, + 413 + ], + "score": 0.93, + "content": "\\mathbf { W } \\in \\mathbb { R } _ { > 0 } ^ { D \\times K }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 393, + 402, + 420 + ], + "score": 1.0, + "content": "are the positive weights of the n", + "type": "text" + }, + { + "bbox": [ + 414, + 393, + 506, + 420 + ], + "score": 1.0, + "content": "ork (positivity ensures", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 411, + 413, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 192, + 424 + ], + "score": 1.0, + "content": "a positive precision),", + "type": "text" + }, + { + "bbox": [ + 205, + 411, + 223, + 424 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 223, + 412, + 236, + 423 + ], + "score": 0.87, + "content": "\\lambda _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 411, + 402, + 424 + ], + "score": 1.0, + "content": "are the centers and the bandwidth of the", + "type": "text" + }, + { + "bbox": [ + 402, + 412, + 413, + 421 + ], + "score": 0.82, + "content": "K", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 124, + 435 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 423, + 154, + 434 + ], + "score": 0.91, + "content": "\\zeta \\to 0", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "is a vector of positive constants to prevent division by zero. It is easy to see that with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 434, + 504, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 504, + 446 + ], + "score": 1.0, + "content": "this approach the variance of the generator increases with the distance to the centers. The right-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "most panel of Fig. 4 shows an estimated variance function, which indeed has the desired property", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "score": 1.0, + "content": "that variance is large outside the data support. Further, note the increased variance between the two", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 466, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 478 + ], + "score": 1.0, + "content": "clusters, which captures that even interpolating between clusters comes with a level of uncertainty. In", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "Appendix C we also demonstrate that this simple variance model improves the marginal likelihood", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 488, + 198, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 126, + 500 + ], + "score": 0.9, + "content": "p ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 488, + 198, + 501 + ], + "score": 1.0, + "content": "on held-out data.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24, + "bbox_fs": [ + 102, + 393, + 506, + 501 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 505, + 364, + 560 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 364, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 364, + 517 + ], + "score": 1.0, + "content": "Training the variance network amounts to fitting the RBF net-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 516, + 364, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 364, + 528 + ], + "score": 1.0, + "content": "work. Assuming we have already trained the inference network", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 527, + 365, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 316, + 539 + ], + "score": 1.0, + "content": "(Sec. 2), we can encode the training data, and use", + "type": "text" + }, + { + "bbox": [ + 316, + 527, + 323, + 537 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 527, + 365, + 539 + ], + "score": 1.0, + "content": "-means to", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 538, + 364, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 364, + 549 + ], + "score": 1.0, + "content": "estimate the RBF centers. Then, an estimate for the bandwidths", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 549, + 246, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 246, + 561 + ], + "score": 1.0, + "content": "of each kernel can be computed as", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 505, + 365, + 561 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 561, + 314, + 603 + ], + "lines": [ + { + "bbox": [ + 156, + 561, + 314, + 603 + ], + "spans": [ + { + "bbox": [ + 156, + 561, + 314, + 603 + ], + "score": 0.93, + "content": "\\lambda _ { k } = \\frac { 1 } { 2 } \\left( a \\frac { 1 } { | \\mathcal { C } _ { k } | } \\sum _ { \\mathbf { z } _ { j } \\in \\mathcal { C } _ { k } } \\left\\| \\mathbf { z } _ { j } - \\mathbf { c } _ { k } \\right\\| _ { 2 } \\right) ^ { - 2 }", + "type": "interline_equation", + "image_path": "108409fd28775aeb858946b97dfa84430dd2601c860fd0d8a32456906c3a7844.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 156, + 561, + 314, + 575.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 156, + 575.0, + 314, + 589.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 156, + 589.0, + 314, + 603.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 604, + 364, + 659 + ], + "lines": [ + { + "bbox": [ + 106, + 603, + 365, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 220, + 615 + ], + "score": 1.0, + "content": "where the hyper-parameter", + "type": "text" + }, + { + "bbox": [ + 220, + 604, + 258, + 615 + ], + "score": 0.91, + "content": "a \\in \\mathbb { R } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 603, + 365, + 615 + ], + "score": 1.0, + "content": "controls the curvature of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 615, + 364, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 364, + 626 + ], + "score": 1.0, + "content": "the Riemannian metric, i.e. how fast it changes based on the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 625, + 364, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 364, + 638 + ], + "score": 1.0, + "content": "uncertainty. Since the mean function of the generator is already", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 636, + 365, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 365, + 649 + ], + "score": 1.0, + "content": "trained, the weights of the RBF can be found using projected", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 648, + 282, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 282, + 660 + ], + "score": 1.0, + "content": "gradient descent to ensure positive weights.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 603, + 365, + 660 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 664, + 365, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 662, + 365, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 365, + 677 + ], + "score": 1.0, + "content": "One visualization of the distortion of the latent space relative to", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 675, + 364, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 313, + 689 + ], + "score": 1.0, + "content": "the input space is the geometric volume measure", + "type": "text" + }, + { + "bbox": [ + 313, + 675, + 361, + 689 + ], + "score": 0.91, + "content": "\\sqrt { \\operatorname* { d e t } ( \\mathbf { M } _ { \\mathbf { z } } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 676, + 364, + 689 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 687, + 365, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 365, + 700 + ], + "score": 1.0, + "content": "which captures the volume of an infinitesimal area in the input", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 699, + 365, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 365, + 711 + ], + "score": 1.0, + "content": "space. Figure 5 shows this volume measure for both standard", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 709, + 367, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 367, + 722 + ], + "score": 1.0, + "content": "variance functions as well as our proposed RBF model. We see", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 721, + 299, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 299, + 732 + ], + "score": 1.0, + "content": "the trend of the data, unlike the standard model.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 662, + 367, + 732 + ] + }, + { + "type": "image", + "bbox": [ + 372, + 493, + 499, + 673 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 372, + 493, + 499, + 673 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 372, + 493, + 499, + 673 + ], + "spans": [ + { + "bbox": [ + 372, + 493, + 499, + 673 + ], + "score": 0.962, + "type": "image", + "image_path": "c7075f8077cba97a8ced072d15552c951119f42cbb37ef44a5700aff838d8091.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 372, + 493, + 499, + 673 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 371, + 675, + 504, + 708 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 370, + 672, + 505, + 688 + ], + "spans": [ + { + "bbox": [ + 370, + 672, + 505, + 688 + ], + "score": 1.0, + "content": "Figure 5: Comparison of (log)", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 371, + 686, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 371, + 686, + 505, + 698 + ], + "score": 1.0, + "content": "measures of standard (top) and", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 371, + 696, + 491, + 709 + ], + "spans": [ + { + "bbox": [ + 371, + 696, + 491, + 709 + ], + "score": 1.0, + "content": "proposed (bottom) variances.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50 + } + ], + "index": 46.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 234, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 235, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 235, + 96 + ], + "score": 1.0, + "content": "5 EMPIRICAL RESULTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "We demonstrate the usefulness of the geometric view of the latent space with several experiments.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "score": 1.0, + "content": "Model and implementation details can be found in Appendix D. In all experiments we first train a", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 127, + 310, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 310, + 139 + ], + "score": 1.0, + "content": "VAE and then use the induced Riemannian metric.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 107, + 152, + 243, + 163 + ], + "lines": [ + { + "bbox": [ + 105, + 150, + 244, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 244, + 165 + ], + "score": 1.0, + "content": "5.1 MEANINGFUL DISTANCES", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 172, + 282, + 250 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 282, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 282, + 185 + ], + "score": 1.0, + "content": "First we seek to quantify if the induced Rie-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 183, + 282, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 282, + 196 + ], + "score": 1.0, + "content": "mannian distance in the latent space is more", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 194, + 282, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 282, + 206 + ], + "score": 1.0, + "content": "useful than the usual Euclidean distance.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 206, + 282, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 213, + 217 + ], + "score": 1.0, + "content": "For this we perform basic", + "type": "text" + }, + { + "bbox": [ + 213, + 206, + 220, + 216 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 206, + 282, + 217 + ], + "score": 1.0, + "content": "-means cluster-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 217, + 283, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 283, + 228 + ], + "score": 1.0, + "content": "ing under the two metrics. We construct 3", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 227, + 282, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 282, + 239 + ], + "score": 1.0, + "content": "sets of MNIST digits, using 1000 random", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 238, + 282, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 282, + 250 + ], + "score": 1.0, + "content": "samples for each digit. We train a VAE for", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8 + }, + { + "type": "table", + "bbox": [ + 294, + 170, + 500, + 227 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 294, + 170, + 500, + 227 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 294, + 170, + 500, + 227 + ], + "spans": [ + { + "bbox": [ + 294, + 170, + 500, + 227 + ], + "score": 0.976, + "html": "
DigitsLinearRiemannian
{0,1,2}77.57(±0.87)%94.28(±1.14)%
{3,4,7}77.80(±0.91)%89.54(±1.61)%
{5,6,9}64.93(±0.96)%81.13(±2.52)%
", + "type": "table", + "image_path": "0caa57d84900d3ea629f89244995ccf6cc0211257b1fc418fabeaf199264f572.jpg" + } + ] + } + ], + "index": 13.5, + "virtual_lines": [ + { + "bbox": [ + 294, + 170, + 500, + 184.25 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 294, + 184.25, + 500, + 198.5 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 294, + 198.5, + 500, + 212.75 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 294, + 212.75, + 500, + 227.0 + ], + "spans": [], + "index": 15 + } + ] + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 307, + 235, + 487, + 246 + ], + "lines": [ + { + "bbox": [ + 305, + 234, + 488, + 247 + ], + "spans": [ + { + "bbox": [ + 305, + 234, + 360, + 247 + ], + "score": 1.0, + "content": "Table 1: The", + "type": "text" + }, + { + "bbox": [ + 360, + 235, + 369, + 245 + ], + "score": 0.79, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 234, + 449, + 247 + ], + "score": 1.0, + "content": "-measure results for", + "type": "text" + }, + { + "bbox": [ + 449, + 236, + 456, + 245 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 234, + 488, + 247 + ], + "score": 1.0, + "content": "-means.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 250, + 505, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 378, + 262 + ], + "score": 1.0, + "content": "each set, and then subdivide each into 10 sub-sets, and performed", + "type": "text" + }, + { + "bbox": [ + 379, + 250, + 385, + 259 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "-means clustering under both", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 260, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 505, + 273 + ], + "score": 1.0, + "content": "distances. One example result is shown in Fig. 6. Here it is evident that, since the latent points", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 271, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 465, + 285 + ], + "score": 1.0, + "content": "roughly follow a unit Gaussian, there is little structure to be discovered by the Euclidean", + "type": "text" + }, + { + "bbox": [ + 466, + 272, + 473, + 281 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 271, + 506, + 285 + ], + "score": 1.0, + "content": "-means,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 281, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 296 + ], + "score": 1.0, + "content": "and consequently it performs poorly. The Riemannian clustering is remarkably accurate. Summary", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 293, + 504, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 423, + 306 + ], + "score": 1.0, + "content": "statistics across all subsets are provided in Table 1, which shows the established", + "type": "text" + }, + { + "bbox": [ + 423, + 294, + 432, + 303 + ], + "score": 0.84, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 293, + 504, + 306 + ], + "score": 1.0, + "content": "-measure for clus-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "tering accuracy. Again, the Riemannian metric significantly improves clustering. This implies that", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 315, + 436, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 436, + 328 + ], + "score": 1.0, + "content": "the underlying Riemannian distance is more useful than its Euclidean counterpart.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20 + }, + { + "type": "image", + "bbox": [ + 112, + 335, + 498, + 443 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 335, + 498, + 443 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 335, + 498, + 443 + ], + "spans": [ + { + "bbox": [ + 112, + 335, + 498, + 443 + ], + "score": 0.971, + "type": "image", + "image_path": "d806b849a937f63ce95cada43c48d104ccea6c002aa6302cf87a7bb9d7b7e0eb.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 112, + 335, + 498, + 371.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 112, + 371.0, + 498, + 407.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 112, + 407.0, + 498, + 443.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 450, + 504, + 472 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 450, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 200, + 462 + ], + "score": 1.0, + "content": "Figure 6: The result of", + "type": "text" + }, + { + "bbox": [ + 201, + 451, + 208, + 460 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 450, + 506, + 462 + ], + "score": 1.0, + "content": "-means comparing the distance measures. For the decision boundaries we", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 461, + 209, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 209, + 473 + ], + "score": 1.0, + "content": "used 7-NN classification.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + } + ], + "index": 26.25 + }, + { + "type": "title", + "bbox": [ + 107, + 492, + 206, + 503 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 207, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 207, + 504 + ], + "score": 1.0, + "content": "5.2 INTERPOLATIONS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 512, + 506, + 633 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 505, + 525 + ], + "score": 1.0, + "content": "Next, we investigate whether the Riemannian metric gives more meaningful interpolations. First,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 524, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 505, + 535 + ], + "score": 1.0, + "content": "we train a VAE for the digits 0 and 1 from MNIST. The upper left panel of Fig. 7 shows the latent", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 534, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 506, + 548 + ], + "score": 1.0, + "content": "space with the Riemannian measure as background color, together with two interpolations. Images", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "score": 1.0, + "content": "generated by both Riemannian and Euclidean interpolations are shown in the bottom of Fig. 7. The", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "score": 1.0, + "content": "Euclidean interpolations seem to have a very abrupt change when transitioning from one class to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 567, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 581 + ], + "score": 1.0, + "content": "another. The Riemannian interpolant gives smoother changes in the generated images. The top-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "right panel of the figure shows the auto-correlation of images along the interpolants; again we see", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "score": 1.0, + "content": "a very abrupt change in the Euclidean interpolant, while the Riemannian is significantly smoother.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "score": 1.0, + "content": "We also train a convolutional VAE on frames from a video. Figure 8 shows the corresponding latent", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "space and some sample interpolations. As before, we see more smooth changes in generated images", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 623, + 311, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 311, + 634 + ], + "score": 1.0, + "content": "when we take the Riemannian metric into account.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35 + }, + { + "type": "title", + "bbox": [ + 107, + 646, + 297, + 658 + ], + "lines": [ + { + "bbox": [ + 106, + 646, + 299, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 299, + 659 + ], + "score": 1.0, + "content": "5.3 LATENT PROBABILITY DISTRIBUTIONS", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 108, + 667, + 505, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 504, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 504, + 680 + ], + "score": 1.0, + "content": "We have seen strong indications that the Riemannian metric gives a more meaningful view of the la-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "tent space, which may also improve probability distributions in the latent space. A relevant candidate", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 688, + 460, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 460, + 702 + ], + "score": 1.0, + "content": "distribution is the locally adaptive normal distribution (LAND) (Arvanitidis et al., 2016)", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 703, + 397, + 731 + ], + "lines": [ + { + "bbox": [ + 213, + 703, + 397, + 731 + ], + "spans": [ + { + "bbox": [ + 213, + 703, + 397, + 731 + ], + "score": 0.94, + "content": "\\mathrm { L A N D } ( { \\bf z } \\mid { \\pmb \\mu } , { \\pmb \\Sigma } ) \\propto \\exp \\left( - \\frac { 1 } { 2 } \\mathrm { d i s t } _ { { \\pmb \\Sigma } } ^ { 2 } ( { \\bf z } , { \\pmb \\mu } ) \\right) ,", + "type": "interline_equation", + "image_path": "99f94b62df4a0b633745d11f671ac4c38fbacca968ef6193dfc25ed86c3a2e62.jpg" + } + ] + } + ], + "index": 45.5, + "virtual_lines": [ + { + "bbox": [ + 213, + 703, + 397, + 717.0 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 213, + 717.0, + 397, + 731.0 + ], + "spans": [], + "index": 46 + } + ] + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 234, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 235, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 235, + 96 + ], + "score": 1.0, + "content": "5 EMPIRICAL RESULTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "We demonstrate the usefulness of the geometric view of the latent space with several experiments.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "score": 1.0, + "content": "Model and implementation details can be found in Appendix D. In all experiments we first train a", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 127, + 310, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 310, + 139 + ], + "score": 1.0, + "content": "VAE and then use the induced Riemannian metric.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 105, + 506, + 139 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 152, + 243, + 163 + ], + "lines": [ + { + "bbox": [ + 105, + 150, + 244, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 244, + 165 + ], + "score": 1.0, + "content": "5.1 MEANINGFUL DISTANCES", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 172, + 282, + 250 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 282, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 282, + 185 + ], + "score": 1.0, + "content": "First we seek to quantify if the induced Rie-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 183, + 282, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 282, + 196 + ], + "score": 1.0, + "content": "mannian distance in the latent space is more", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 194, + 282, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 282, + 206 + ], + "score": 1.0, + "content": "useful than the usual Euclidean distance.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 206, + 282, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 213, + 217 + ], + "score": 1.0, + "content": "For this we perform basic", + "type": "text" + }, + { + "bbox": [ + 213, + 206, + 220, + 216 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 206, + 282, + 217 + ], + "score": 1.0, + "content": "-means cluster-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 217, + 283, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 283, + 228 + ], + "score": 1.0, + "content": "ing under the two metrics. We construct 3", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 227, + 282, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 282, + 239 + ], + "score": 1.0, + "content": "sets of MNIST digits, using 1000 random", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 238, + 282, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 282, + 250 + ], + "score": 1.0, + "content": "samples for each digit. We train a VAE for", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 172, + 283, + 250 + ] + }, + { + "type": "table", + "bbox": [ + 294, + 170, + 500, + 227 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 294, + 170, + 500, + 227 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 294, + 170, + 500, + 227 + ], + "spans": [ + { + "bbox": [ + 294, + 170, + 500, + 227 + ], + "score": 0.976, + "html": "
DigitsLinearRiemannian
{0,1,2}77.57(±0.87)%94.28(±1.14)%
{3,4,7}77.80(±0.91)%89.54(±1.61)%
{5,6,9}64.93(±0.96)%81.13(±2.52)%
", + "type": "table", + "image_path": "0caa57d84900d3ea629f89244995ccf6cc0211257b1fc418fabeaf199264f572.jpg" + } + ] + } + ], + "index": 13.5, + "virtual_lines": [ + { + "bbox": [ + 294, + 170, + 500, + 184.25 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 294, + 184.25, + 500, + 198.5 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 294, + 198.5, + 500, + 212.75 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 294, + 212.75, + 500, + 227.0 + ], + "spans": [], + "index": 15 + } + ] + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 307, + 235, + 487, + 246 + ], + "lines": [ + { + "bbox": [ + 305, + 234, + 488, + 247 + ], + "spans": [ + { + "bbox": [ + 305, + 234, + 360, + 247 + ], + "score": 1.0, + "content": "Table 1: The", + "type": "text" + }, + { + "bbox": [ + 360, + 235, + 369, + 245 + ], + "score": 0.79, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 234, + 449, + 247 + ], + "score": 1.0, + "content": "-measure results for", + "type": "text" + }, + { + "bbox": [ + 449, + 236, + 456, + 245 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 234, + 488, + 247 + ], + "score": 1.0, + "content": "-means.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 305, + 234, + 488, + 247 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 250, + 505, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 378, + 262 + ], + "score": 1.0, + "content": "each set, and then subdivide each into 10 sub-sets, and performed", + "type": "text" + }, + { + "bbox": [ + 379, + 250, + 385, + 259 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "-means clustering under both", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 260, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 505, + 273 + ], + "score": 1.0, + "content": "distances. One example result is shown in Fig. 6. Here it is evident that, since the latent points", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 271, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 465, + 285 + ], + "score": 1.0, + "content": "roughly follow a unit Gaussian, there is little structure to be discovered by the Euclidean", + "type": "text" + }, + { + "bbox": [ + 466, + 272, + 473, + 281 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 271, + 506, + 285 + ], + "score": 1.0, + "content": "-means,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 281, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 296 + ], + "score": 1.0, + "content": "and consequently it performs poorly. The Riemannian clustering is remarkably accurate. Summary", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 293, + 504, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 423, + 306 + ], + "score": 1.0, + "content": "statistics across all subsets are provided in Table 1, which shows the established", + "type": "text" + }, + { + "bbox": [ + 423, + 294, + 432, + 303 + ], + "score": 0.84, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 293, + 504, + 306 + ], + "score": 1.0, + "content": "-measure for clus-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "tering accuracy. Again, the Riemannian metric significantly improves clustering. This implies that", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 315, + 436, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 436, + 328 + ], + "score": 1.0, + "content": "the underlying Riemannian distance is more useful than its Euclidean counterpart.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 249, + 506, + 328 + ] + }, + { + "type": "image", + "bbox": [ + 112, + 335, + 498, + 443 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 335, + 498, + 443 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 335, + 498, + 443 + ], + "spans": [ + { + "bbox": [ + 112, + 335, + 498, + 443 + ], + "score": 0.971, + "type": "image", + "image_path": "d806b849a937f63ce95cada43c48d104ccea6c002aa6302cf87a7bb9d7b7e0eb.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 112, + 335, + 498, + 371.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 112, + 371.0, + 498, + 407.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 112, + 407.0, + 498, + 443.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 450, + 504, + 472 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 450, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 200, + 462 + ], + "score": 1.0, + "content": "Figure 6: The result of", + "type": "text" + }, + { + "bbox": [ + 201, + 451, + 208, + 460 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 450, + 506, + 462 + ], + "score": 1.0, + "content": "-means comparing the distance measures. For the decision boundaries we", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 461, + 209, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 209, + 473 + ], + "score": 1.0, + "content": "used 7-NN classification.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + } + ], + "index": 26.25 + }, + { + "type": "title", + "bbox": [ + 107, + 492, + 206, + 503 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 207, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 207, + 504 + ], + "score": 1.0, + "content": "5.2 INTERPOLATIONS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 512, + 506, + 633 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 505, + 525 + ], + "score": 1.0, + "content": "Next, we investigate whether the Riemannian metric gives more meaningful interpolations. First,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 524, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 505, + 535 + ], + "score": 1.0, + "content": "we train a VAE for the digits 0 and 1 from MNIST. The upper left panel of Fig. 7 shows the latent", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 534, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 506, + 548 + ], + "score": 1.0, + "content": "space with the Riemannian measure as background color, together with two interpolations. Images", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "score": 1.0, + "content": "generated by both Riemannian and Euclidean interpolations are shown in the bottom of Fig. 7. The", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "score": 1.0, + "content": "Euclidean interpolations seem to have a very abrupt change when transitioning from one class to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 567, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 581 + ], + "score": 1.0, + "content": "another. The Riemannian interpolant gives smoother changes in the generated images. The top-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "right panel of the figure shows the auto-correlation of images along the interpolants; again we see", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "score": 1.0, + "content": "a very abrupt change in the Euclidean interpolant, while the Riemannian is significantly smoother.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "score": 1.0, + "content": "We also train a convolutional VAE on frames from a video. Figure 8 shows the corresponding latent", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "space and some sample interpolations. As before, we see more smooth changes in generated images", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 623, + 311, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 311, + 634 + ], + "score": 1.0, + "content": "when we take the Riemannian metric into account.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 512, + 506, + 634 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 646, + 297, + 658 + ], + "lines": [ + { + "bbox": [ + 106, + 646, + 299, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 299, + 659 + ], + "score": 1.0, + "content": "5.3 LATENT PROBABILITY DISTRIBUTIONS", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 108, + 667, + 505, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 504, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 504, + 680 + ], + "score": 1.0, + "content": "We have seen strong indications that the Riemannian metric gives a more meaningful view of the la-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "tent space, which may also improve probability distributions in the latent space. A relevant candidate", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 688, + 460, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 460, + 702 + ], + "score": 1.0, + "content": "distribution is the locally adaptive normal distribution (LAND) (Arvanitidis et al., 2016)", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 106, + 667, + 505, + 702 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 703, + 397, + 731 + ], + "lines": [ + { + "bbox": [ + 213, + 703, + 397, + 731 + ], + "spans": [ + { + "bbox": [ + 213, + 703, + 397, + 731 + ], + "score": 0.94, + "content": "\\mathrm { L A N D } ( { \\bf z } \\mid { \\pmb \\mu } , { \\pmb \\Sigma } ) \\propto \\exp \\left( - \\frac { 1 } { 2 } \\mathrm { d i s t } _ { { \\pmb \\Sigma } } ^ { 2 } ( { \\bf z } , { \\pmb \\mu } ) \\right) ,", + "type": "interline_equation", + "image_path": "99f94b62df4a0b633745d11f671ac4c38fbacca968ef6193dfc25ed86c3a2e62.jpg" + } + ] + } + ], + "index": 45.5, + "virtual_lines": [ + { + "bbox": [ + 213, + 703, + 397, + 717.0 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 213, + 717.0, + 397, + 731.0 + ], + "spans": [], + "index": 46 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 80, + 503, + 363 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 80, + 503, + 363 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 503, + 363 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 503, + 363 + ], + "score": 0.975, + "type": "image", + "image_path": "7c6c7604b2beef99c6958e92dc2f972869e6161897c59d460e8cbd4c5540d244.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 503, + 174.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 174.33333333333331, + 503, + 268.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 268.66666666666663, + 503, + 362.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 372, + 505, + 406 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "score": 1.0, + "content": "Figure 7: Left: the latent space with example interpolants. Right: auto-correlations of Riemannian", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "(top) and Euclidean (bottom) samples along the curves of the left panel. Bottom: decoded images", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 394, + 396, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 396, + 407 + ], + "score": 1.0, + "content": "along Euclidean (top rows) and Riemannian (bottom rows) interpolants.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "image", + "bbox": [ + 109, + 419, + 503, + 501 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 419, + 503, + 501 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 419, + 503, + 501 + ], + "spans": [ + { + "bbox": [ + 109, + 419, + 503, + 501 + ], + "score": 0.969, + "type": "image", + "image_path": "1a1c6b5de149bfc16c6c0898140b356140a1b13ca85c6283cfaa6b15b9031579.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 109, + 419, + 503, + 446.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 109, + 446.3333333333333, + 503, + 473.66666666666663 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 109, + 473.66666666666663, + 503, + 500.99999999999994 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 510, + 504, + 533 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 509, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 524 + ], + "score": 1.0, + "content": "Figure 8: Left: the latent space and geodesic interpolants. Right: samples comparing Euclidean (top", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 522, + 476, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 476, + 533 + ], + "score": 1.0, + "content": "row) with Riemannian (bottom row) interpolation. Corresponding videos can be found here.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + } + ], + "index": 8.25 + }, + { + "type": "text", + "bbox": [ + 106, + 555, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 106, + 555, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 133, + 567 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 556, + 158, + 566 + ], + "score": 0.82, + "content": "\\mathrm { d i s t } _ { \\Sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 555, + 505, + 567 + ], + "score": 1.0, + "content": "is the Riemannian extension of Mahalanobis distance. We fit a mixture of two LANDs", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 566, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 505, + 578 + ], + "score": 1.0, + "content": "to the MNIST data from Sec. 5.2 alongside a mixture of Euclidean normal distributions. The first", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 578, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 505, + 589 + ], + "score": 1.0, + "content": "column of Fig. 9 shows the density functions of the two mixture models. Only the Riemannian model", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "reveals the underlying clusters. We then sample 40 points from each component of these generative", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 598, + 504, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 504, + 612 + ], + "score": 1.0, + "content": "models1 (center column of the figure). We see that the Riemannian model generates high-quality", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 610, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 505, + 622 + ], + "score": 1.0, + "content": "samples, whereas the Euclidean model generates several samples in regions where the generator", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "is not trained and therefore produces blurry images. Finally, the right column of Fig. 9 shows all", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 631, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 646 + ], + "score": 1.0, + "content": "pairwise distances between the latent points under both Riemannian and Euclidean distances. Again,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 644, + 387, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 387, + 655 + ], + "score": 1.0, + "content": "we see that the geometric view clearly reveals the underlying clusters.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 107, + 668, + 312, + 680 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 312, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 312, + 681 + ], + "score": 1.0, + "content": "5.4 RANDOM WALK ON THE DATA MANIFOLD", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 109, + 689, + 504, + 712 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "Finally, we consider random walks over the data manifold, which is a common tool for exploring la-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "tent spaces. To avoid the walk drifting outside the data support, practical implementations artificially", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.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": [ + 113, + 721, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 718, + 504, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 718, + 504, + 734 + ], + "score": 1.0, + "content": "1We do not follow common practice and sort samples by their likelihood, as this hides low-quality samples.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 80, + 503, + 363 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 80, + 503, + 363 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 503, + 363 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 503, + 363 + ], + "score": 0.975, + "type": "image", + "image_path": "7c6c7604b2beef99c6958e92dc2f972869e6161897c59d460e8cbd4c5540d244.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 503, + 174.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 174.33333333333331, + 503, + 268.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 268.66666666666663, + 503, + 362.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 372, + 505, + 406 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "score": 1.0, + "content": "Figure 7: Left: the latent space with example interpolants. Right: auto-correlations of Riemannian", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "(top) and Euclidean (bottom) samples along the curves of the left panel. Bottom: decoded images", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 394, + 396, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 396, + 407 + ], + "score": 1.0, + "content": "along Euclidean (top rows) and Riemannian (bottom rows) interpolants.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "image", + "bbox": [ + 109, + 419, + 503, + 501 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 419, + 503, + 501 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 419, + 503, + 501 + ], + "spans": [ + { + "bbox": [ + 109, + 419, + 503, + 501 + ], + "score": 0.969, + "type": "image", + "image_path": "1a1c6b5de149bfc16c6c0898140b356140a1b13ca85c6283cfaa6b15b9031579.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 109, + 419, + 503, + 446.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 109, + 446.3333333333333, + 503, + 473.66666666666663 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 109, + 473.66666666666663, + 503, + 500.99999999999994 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 510, + 504, + 533 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 509, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 524 + ], + "score": 1.0, + "content": "Figure 8: Left: the latent space and geodesic interpolants. Right: samples comparing Euclidean (top", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 522, + 476, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 476, + 533 + ], + "score": 1.0, + "content": "row) with Riemannian (bottom row) interpolation. Corresponding videos can be found here.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + } + ], + "index": 8.25 + }, + { + "type": "text", + "bbox": [ + 106, + 555, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 106, + 555, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 133, + 567 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 556, + 158, + 566 + ], + "score": 0.82, + "content": "\\mathrm { d i s t } _ { \\Sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 555, + 505, + 567 + ], + "score": 1.0, + "content": "is the Riemannian extension of Mahalanobis distance. We fit a mixture of two LANDs", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 566, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 505, + 578 + ], + "score": 1.0, + "content": "to the MNIST data from Sec. 5.2 alongside a mixture of Euclidean normal distributions. The first", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 578, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 505, + 589 + ], + "score": 1.0, + "content": "column of Fig. 9 shows the density functions of the two mixture models. Only the Riemannian model", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "reveals the underlying clusters. We then sample 40 points from each component of these generative", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 598, + 504, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 504, + 612 + ], + "score": 1.0, + "content": "models1 (center column of the figure). We see that the Riemannian model generates high-quality", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 610, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 505, + 622 + ], + "score": 1.0, + "content": "samples, whereas the Euclidean model generates several samples in regions where the generator", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "is not trained and therefore produces blurry images. Finally, the right column of Fig. 9 shows all", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 631, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 646 + ], + "score": 1.0, + "content": "pairwise distances between the latent points under both Riemannian and Euclidean distances. Again,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 644, + 387, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 387, + 655 + ], + "score": 1.0, + "content": "we see that the geometric view clearly reveals the underlying clusters.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 555, + 505, + 655 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 668, + 312, + 680 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 312, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 312, + 681 + ], + "score": 1.0, + "content": "5.4 RANDOM WALK ON THE DATA MANIFOLD", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 109, + 689, + 504, + 712 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "Finally, we consider random walks over the data manifold, which is a common tool for exploring la-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "tent spaces. To avoid the walk drifting outside the data support, practical implementations artificially", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 241, + 487 + ], + "score": 1.0, + "content": "restrict the walk to stay inside the", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 241, + 473, + 274, + 486 + ], + "score": 0.93, + "content": "[ - 1 , 1 ] ^ { d }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 275, + 473, + 506, + 487 + ], + "score": 1.0, + "content": "hypercube. Here, we consider unrestricted Brownian mo-", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "tion under both the Euclidean and Riemannian metric. We perform this random walk in the latent", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 495, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 509 + ], + "score": 1.0, + "content": "space of the convolutional VAE from Sec. 5.2. Figure 10 shows example walks, while Fig. 11 shows", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "score": 1.0, + "content": "generated images (video here). While the Euclidean random walk moves freely, the Riemannian", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "walk stays within the support of the data. This is explained in the left panel of Fig. 10, which shows", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "that the variance term in the Riemannian metric creates a “wall” around the data, which the random", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 541, + 450, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 450, + 552 + ], + "score": 1.0, + "content": "walk will only rarely cross. These “walls” also force shortest paths to follow the data.", + "type": "text", + "cross_page": true + } + ], + "index": 15 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 689, + 505, + 713 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 79, + 505, + 308 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 79, + 505, + 308 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 79, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 505, + 308 + ], + "score": 0.976, + "type": "image", + "image_path": "577991ffae81ea5905686dbc7921ef66cea4290c0a2a878688a739565cdce305.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 79, + 505, + 155.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 155.33333333333331, + 505, + 231.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 231.66666666666663, + 505, + 307.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 316, + 504, + 339 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 315, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 330 + ], + "score": 1.0, + "content": "Figure 9: From left to right: the mixture models, generated samples, and pairwise distances. Top", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 327, + 441, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 441, + 339 + ], + "score": 1.0, + "content": "row corresponds to the Riemannian model and bottom row to the Euclidean model.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "image", + "bbox": [ + 111, + 351, + 502, + 432 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 111, + 351, + 502, + 432 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 111, + 351, + 502, + 432 + ], + "spans": [ + { + "bbox": [ + 111, + 351, + 502, + 432 + ], + "score": 0.964, + "type": "image", + "image_path": "a5f5f765ad4230246a37dbc4b51550a3462afbf7f547424e14ddfc378ba24947.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 111, + 351, + 502, + 378.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 111, + 378.0, + 502, + 405.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 111, + 405.0, + 502, + 432.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 156, + 439, + 453, + 451 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 156, + 438, + 454, + 452 + ], + "spans": [ + { + "bbox": [ + 156, + 438, + 454, + 452 + ], + "score": 1.0, + "content": "Figure 10: Left: the measure in the latent space. Right: the random walks.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + } + ], + "index": 7.0 + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 505, + 552 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 241, + 487 + ], + "score": 1.0, + "content": "restrict the walk to stay inside the", + "type": "text" + }, + { + "bbox": [ + 241, + 473, + 274, + 486 + ], + "score": 0.93, + "content": "[ - 1 , 1 ] ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 473, + 506, + 487 + ], + "score": 1.0, + "content": "hypercube. Here, we consider unrestricted Brownian mo-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "tion under both the Euclidean and Riemannian metric. We perform this random walk in the latent", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 495, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 509 + ], + "score": 1.0, + "content": "space of the convolutional VAE from Sec. 5.2. Figure 10 shows example walks, while Fig. 11 shows", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "score": 1.0, + "content": "generated images (video here). While the Euclidean random walk moves freely, the Riemannian", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "walk stays within the support of the data. This is explained in the left panel of Fig. 10, which shows", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "that the variance term in the Riemannian metric creates a “wall” around the data, which the random", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 541, + 450, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 450, + 552 + ], + "score": 1.0, + "content": "walk will only rarely cross. These “walls” also force shortest paths to follow the data.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + }, + { + "type": "image", + "bbox": [ + 106, + 561, + 505, + 702 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 561, + 505, + 702 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 561, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 702 + ], + "score": 0.971, + "type": "image", + "image_path": "ca933ecdb20184b747d5f8fde4b873b1da41d8ad609bc99fed8eed4945dbc9fb.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 106, + 561, + 505, + 608.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 106, + 608.0, + 505, + 655.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 106, + 655.0, + 505, + 702.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 117, + 709, + 491, + 722 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 117, + 709, + 493, + 722 + ], + "spans": [ + { + "bbox": [ + 117, + 709, + 493, + 722 + ], + "score": 1.0, + "content": "Figure 11: The comparison of the random walks, at the steps 200, 300, 3000, 4000 and 5000.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + } + ], + "index": 18.0 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 79, + 505, + 308 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 79, + 505, + 308 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 79, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 505, + 308 + ], + "score": 0.976, + "type": "image", + "image_path": "577991ffae81ea5905686dbc7921ef66cea4290c0a2a878688a739565cdce305.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 79, + 505, + 155.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 155.33333333333331, + 505, + 231.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 231.66666666666663, + 505, + 307.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 316, + 504, + 339 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 315, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 330 + ], + "score": 1.0, + "content": "Figure 9: From left to right: the mixture models, generated samples, and pairwise distances. Top", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 327, + 441, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 441, + 339 + ], + "score": 1.0, + "content": "row corresponds to the Riemannian model and bottom row to the Euclidean model.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "image", + "bbox": [ + 111, + 351, + 502, + 432 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 111, + 351, + 502, + 432 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 111, + 351, + 502, + 432 + ], + "spans": [ + { + "bbox": [ + 111, + 351, + 502, + 432 + ], + "score": 0.964, + "type": "image", + "image_path": "a5f5f765ad4230246a37dbc4b51550a3462afbf7f547424e14ddfc378ba24947.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 111, + 351, + 502, + 378.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 111, + 378.0, + 502, + 405.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 111, + 405.0, + 502, + 432.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 156, + 439, + 453, + 451 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 156, + 438, + 454, + 452 + ], + "spans": [ + { + "bbox": [ + 156, + 438, + 454, + 452 + ], + "score": 1.0, + "content": "Figure 10: Left: the measure in the latent space. Right: the random walks.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + } + ], + "index": 7.0 + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 505, + 552 + ], + "lines": [], + "index": 12, + "bbox_fs": [ + 105, + 473, + 506, + 552 + ], + "lines_deleted": true + }, + { + "type": "image", + "bbox": [ + 106, + 561, + 505, + 702 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 561, + 505, + 702 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 561, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 702 + ], + "score": 0.971, + "type": "image", + "image_path": "ca933ecdb20184b747d5f8fde4b873b1da41d8ad609bc99fed8eed4945dbc9fb.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 106, + 561, + 505, + 608.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 106, + 608.0, + 505, + 655.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 106, + 655.0, + 505, + 702.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 117, + 709, + 491, + 722 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 117, + 709, + 493, + 722 + ], + "spans": [ + { + "bbox": [ + 117, + 709, + 493, + 722 + ], + "score": 1.0, + "content": "Figure 11: The comparison of the random walks, at the steps 200, 300, 3000, 4000 and 5000.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + } + ], + "index": 18.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 211, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 213, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 213, + 95 + ], + "score": 1.0, + "content": "6 RELATED WORK", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 119 + ], + "score": 1.0, + "content": "Generative models. This unsupervised learning category attracted a lot of attention, especially,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 115, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 130 + ], + "score": 1.0, + "content": "due to the advances on the deep neural networks. We have considered VAEs (Kingma & Welling,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 128, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 505, + 140 + ], + "score": 1.0, + "content": "2014; Rezende et al., 2014), but the ideas extend to similar related models. These include exten-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 151 + ], + "score": 1.0, + "content": "sions that provide more flexible approximate posteriors (Rezende & Mohamed, 2015; Kingma et al.,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "score": 1.0, + "content": "2016). GANs (Goodfellow et al., 2014) also fall in this category, as these models have an explicit", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 161, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 505, + 173 + ], + "score": 1.0, + "content": "generator. While the inference network is not a necessary component in the GAN model, it has been", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 171, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 184 + ], + "score": 1.0, + "content": "shown that incorporating it improves overall performance (Donahue et al., 2017; Dumoulin et al.,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 182, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 506, + 195 + ], + "score": 1.0, + "content": "2017). The same thoughts hold for approaches that transform the latent space through a sequence of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 194, + 259, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 259, + 205 + ], + "score": 1.0, + "content": "bijective functions (Dinh et al., 2017)", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 217, + 505, + 272 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 230 + ], + "score": 1.0, + "content": "Geometry in neural networks. Bengio et al. (2013) discuss the importance of geometry in neural", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 228, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 505, + 241 + ], + "score": 1.0, + "content": "networks as a tool to understand local generalization. For instance, the Jacobian matrix is a measure", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 238, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 505, + 253 + ], + "score": 1.0, + "content": "of smoothness for a function that interpolates a surface to the given data. This is exactly the implica-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "tion in (Rifai et al., 2011), where the norm of the Jacobian acts as a regularizer for the deterministic", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 261, + 492, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 492, + 273 + ], + "score": 1.0, + "content": "autoencoder. Recently, Kumar et al. (2017) used the Jacobian to inject invariances in a classifier.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 285, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "score": 1.0, + "content": "Riemannian Geometry. Like the present paper, Tosi et al. (2014) derive a suitable Riemannian", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 296, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 505, + 308 + ], + "score": 1.0, + "content": "metric in Gaussian process (GP) latent variable models (Lawrence, 2005), but the computational", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 307, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 505, + 318 + ], + "score": 1.0, + "content": "complexity of GPs causes practical concerns. Unlike works that explicitly learn a Riemannian metric", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "(Hauberg et al., 2012; Peltonen et al., 2004), our metric is fully derived from the generator and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 329, + 336, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 336, + 341 + ], + "score": 1.0, + "content": "requires no extra learning once the generator is available.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 108, + 356, + 336, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 338, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 338, + 371 + ], + "score": 1.0, + "content": "7 DISCUSSION AND FURTHER EXTENSIONS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 108, + 381, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "The geometric interpretation of representation learning is that the latent space is a compressed and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "flattened version of the data manifold. We show that the actual geometry of the data manifold can", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 403, + 259, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 259, + 416 + ], + "score": 1.0, + "content": "be more complex than it first appears.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 420, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 433 + ], + "score": 1.0, + "content": "Here we have initiated the study of proper geometries for generative models. We showed that the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 431, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 505, + 443 + ], + "score": 1.0, + "content": "latent space not only provides a low-dimensional representation of the data manifold, but at the same", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "time, can reveal the underlying geometrical structure. We proposed a new variance network for the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 453, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 506, + 466 + ], + "score": 1.0, + "content": "generator, which provides meaningful uncertainty estimates while regularizing the geometry. The", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "new detailed understanding of the geometry provides us with more relevant distance measures, as", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 475, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 237, + 487 + ], + "score": 1.0, + "content": "demonstrated by the fact that a", + "type": "text" + }, + { + "bbox": [ + 237, + 475, + 244, + 485 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 475, + 506, + 487 + ], + "score": 1.0, + "content": "-means clustering, on these distances, is better aligned with the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 486, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 506, + 498 + ], + "score": 1.0, + "content": "ground truth label structure than a clustering based on conventional Euclidean distances. We also", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 510 + ], + "score": 1.0, + "content": "found that the new distance measure produces smoother interpolation, and when training Rieman-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "nian “LAND” mixture models based on the new geometry, the components aligned much better with", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 519, + 504, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 504, + 532 + ], + "score": 1.0, + "content": "the ground truth group structure. Finally, inspired by the recent interest in sequence generation by", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 530, + 504, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 504, + 542 + ], + "score": 1.0, + "content": "random walks in latent space, we found that geometrically informed random walks stayed on the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 541, + 434, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 434, + 552 + ], + "score": 1.0, + "content": "manifold for much longer runs than sequences based on Euclidean random walks.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 558, + 504, + 624 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 505, + 570 + ], + "score": 1.0, + "content": "The presented analysis easily extends to sophisticated generative models, where the latent space will", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 569, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 505, + 582 + ], + "score": 1.0, + "content": "be potentially endowed with more flexible nonlinear structures. This directly implies particularly", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 578, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 506, + 594 + ], + "score": 1.0, + "content": "interesting geometrical models. An obvious question is: can the geometry of the latent space play", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 590, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 506, + 604 + ], + "score": 1.0, + "content": "a role while we learn the generative model? Either way, we believe that this geometric perspective", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 601, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 506, + 615 + ], + "score": 1.0, + "content": "provides a new way of thinking and further interpreting the generative models, while at the same", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 612, + 448, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 448, + 626 + ], + "score": 1.0, + "content": "time it encourages development of new nonlinear models in the representation space.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5 + }, + { + "type": "title", + "bbox": [ + 108, + 637, + 200, + 647 + ], + "lines": [ + { + "bbox": [ + 107, + 637, + 200, + 648 + ], + "spans": [ + { + "bbox": [ + 107, + 637, + 200, + 648 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 504, + 710 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "LKH is supported by Innovation Fund Denmark / the Danish Center for Big Data Analytics Driven", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 666, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 506, + 680 + ], + "score": 1.0, + "content": "Innovation. SH was supported by a research grant (15334) from VILLUM FONDEN. This project", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "has received funding from the European Research Council (ERC) under the European Union’s Hori-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 687, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 359, + 702 + ], + "score": 1.0, + "content": "zon 2020 research and innovation programme (grant agreement", + "type": "text" + }, + { + "bbox": [ + 360, + 689, + 370, + 699 + ], + "score": 0.41, + "content": "\\boldsymbol { \\mathrm { n ^ { \\circ } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 687, + 506, + 702 + ], + "score": 1.0, + "content": "757360). We gratefully acknowl-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 698, + 470, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 470, + 712 + ], + "score": 1.0, + "content": "edge the support of the NVIDIA Corporation with the donation of the used Titan Xp GPU.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 211, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 213, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 213, + 95 + ], + "score": 1.0, + "content": "6 RELATED WORK", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 119 + ], + "score": 1.0, + "content": "Generative models. This unsupervised learning category attracted a lot of attention, especially,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 115, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 130 + ], + "score": 1.0, + "content": "due to the advances on the deep neural networks. We have considered VAEs (Kingma & Welling,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 128, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 505, + 140 + ], + "score": 1.0, + "content": "2014; Rezende et al., 2014), but the ideas extend to similar related models. These include exten-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 151 + ], + "score": 1.0, + "content": "sions that provide more flexible approximate posteriors (Rezende & Mohamed, 2015; Kingma et al.,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "score": 1.0, + "content": "2016). GANs (Goodfellow et al., 2014) also fall in this category, as these models have an explicit", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 161, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 505, + 173 + ], + "score": 1.0, + "content": "generator. While the inference network is not a necessary component in the GAN model, it has been", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 171, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 184 + ], + "score": 1.0, + "content": "shown that incorporating it improves overall performance (Donahue et al., 2017; Dumoulin et al.,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 182, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 506, + 195 + ], + "score": 1.0, + "content": "2017). The same thoughts hold for approaches that transform the latent space through a sequence of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 194, + 259, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 259, + 205 + ], + "score": 1.0, + "content": "bijective functions (Dinh et al., 2017)", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 105, + 506, + 205 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 217, + 505, + 272 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 230 + ], + "score": 1.0, + "content": "Geometry in neural networks. Bengio et al. (2013) discuss the importance of geometry in neural", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 228, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 505, + 241 + ], + "score": 1.0, + "content": "networks as a tool to understand local generalization. For instance, the Jacobian matrix is a measure", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 238, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 505, + 253 + ], + "score": 1.0, + "content": "of smoothness for a function that interpolates a surface to the given data. This is exactly the implica-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "tion in (Rifai et al., 2011), where the norm of the Jacobian acts as a regularizer for the deterministic", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 261, + 492, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 492, + 273 + ], + "score": 1.0, + "content": "autoencoder. Recently, Kumar et al. (2017) used the Jacobian to inject invariances in a classifier.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 216, + 505, + 273 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 285, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "score": 1.0, + "content": "Riemannian Geometry. Like the present paper, Tosi et al. (2014) derive a suitable Riemannian", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 296, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 505, + 308 + ], + "score": 1.0, + "content": "metric in Gaussian process (GP) latent variable models (Lawrence, 2005), but the computational", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 307, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 505, + 318 + ], + "score": 1.0, + "content": "complexity of GPs causes practical concerns. Unlike works that explicitly learn a Riemannian metric", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "(Hauberg et al., 2012; Peltonen et al., 2004), our metric is fully derived from the generator and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 329, + 336, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 336, + 341 + ], + "score": 1.0, + "content": "requires no extra learning once the generator is available.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 284, + 505, + 341 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 356, + 336, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 338, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 338, + 371 + ], + "score": 1.0, + "content": "7 DISCUSSION AND FURTHER EXTENSIONS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 108, + 381, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "The geometric interpretation of representation learning is that the latent space is a compressed and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "flattened version of the data manifold. We show that the actual geometry of the data manifold can", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 403, + 259, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 259, + 416 + ], + "score": 1.0, + "content": "be more complex than it first appears.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 381, + 505, + 416 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 420, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 433 + ], + "score": 1.0, + "content": "Here we have initiated the study of proper geometries for generative models. We showed that the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 431, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 505, + 443 + ], + "score": 1.0, + "content": "latent space not only provides a low-dimensional representation of the data manifold, but at the same", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "time, can reveal the underlying geometrical structure. We proposed a new variance network for the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 453, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 506, + 466 + ], + "score": 1.0, + "content": "generator, which provides meaningful uncertainty estimates while regularizing the geometry. The", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "new detailed understanding of the geometry provides us with more relevant distance measures, as", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 475, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 237, + 487 + ], + "score": 1.0, + "content": "demonstrated by the fact that a", + "type": "text" + }, + { + "bbox": [ + 237, + 475, + 244, + 485 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 475, + 506, + 487 + ], + "score": 1.0, + "content": "-means clustering, on these distances, is better aligned with the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 486, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 506, + 498 + ], + "score": 1.0, + "content": "ground truth label structure than a clustering based on conventional Euclidean distances. We also", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 510 + ], + "score": 1.0, + "content": "found that the new distance measure produces smoother interpolation, and when training Rieman-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "nian “LAND” mixture models based on the new geometry, the components aligned much better with", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 519, + 504, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 504, + 532 + ], + "score": 1.0, + "content": "the ground truth group structure. Finally, inspired by the recent interest in sequence generation by", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 530, + 504, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 504, + 542 + ], + "score": 1.0, + "content": "random walks in latent space, we found that geometrically informed random walks stayed on the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 541, + 434, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 434, + 552 + ], + "score": 1.0, + "content": "manifold for much longer runs than sequences based on Euclidean random walks.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 420, + 506, + 552 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 558, + 504, + 624 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 505, + 570 + ], + "score": 1.0, + "content": "The presented analysis easily extends to sophisticated generative models, where the latent space will", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 569, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 505, + 582 + ], + "score": 1.0, + "content": "be potentially endowed with more flexible nonlinear structures. This directly implies particularly", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 578, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 506, + 594 + ], + "score": 1.0, + "content": "interesting geometrical models. An obvious question is: can the geometry of the latent space play", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 590, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 506, + 604 + ], + "score": 1.0, + "content": "a role while we learn the generative model? Either way, we believe that this geometric perspective", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 601, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 506, + 615 + ], + "score": 1.0, + "content": "provides a new way of thinking and further interpreting the generative models, while at the same", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 612, + 448, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 448, + 626 + ], + "score": 1.0, + "content": "time it encourages development of new nonlinear models in the representation space.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 557, + 506, + 626 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 637, + 200, + 647 + ], + "lines": [ + { + "bbox": [ + 107, + 637, + 200, + 648 + ], + "spans": [ + { + "bbox": [ + 107, + 637, + 200, + 648 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 504, + 710 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "LKH is supported by Innovation Fund Denmark / the Danish Center for Big Data Analytics Driven", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 666, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 506, + 680 + ], + "score": 1.0, + "content": "Innovation. SH was supported by a research grant (15334) from VILLUM FONDEN. This project", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "has received funding from the European Research Council (ERC) under the European Union’s Hori-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 687, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 359, + 702 + ], + "score": 1.0, + "content": "zon 2020 research and innovation programme (grant agreement", + "type": "text" + }, + { + "bbox": [ + 360, + 689, + 370, + 699 + ], + "score": 0.41, + "content": "\\boldsymbol { \\mathrm { n ^ { \\circ } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 687, + 506, + 702 + ], + "score": 1.0, + "content": "757360). We gratefully acknowl-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 698, + 470, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 470, + 712 + ], + "score": 1.0, + "content": "edge the support of the NVIDIA Corporation with the donation of the used Titan Xp GPU.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 656, + 506, + 712 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 176, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 99, + 503, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 504, + 112 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 504, + 112 + ], + "score": 1.0, + "content": "Georgios Arvanitidis, Lars Kai Hansen, and Søren Hauberg. A Locally Adaptive Normal Distribu-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 110, + 418, + 123 + ], + "spans": [ + { + "bbox": [ + 116, + 110, + 418, + 123 + ], + "score": 1.0, + "content": "tion. In Advances in Neural Information Processing Systems (NIPS), 2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 128, + 504, + 151 + ], + "lines": [ + { + "bbox": [ + 107, + 129, + 504, + 141 + ], + "spans": [ + { + "bbox": [ + 107, + 129, + 504, + 141 + ], + "score": 1.0, + "content": "Yoshua Bengio, Aaron Courville, and Pascal Vincent. Representation Learning: A Review and New", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 139, + 466, + 152 + ], + "spans": [ + { + "bbox": [ + 115, + 139, + 466, + 152 + ], + "score": 1.0, + "content": "Perspectives. IEEE Trans. Pattern Anal. Mach. Intell., 35(8):1798–1828, August 2013.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 157, + 504, + 181 + ], + "lines": [ + { + "bbox": [ + 107, + 158, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 107, + 158, + 505, + 170 + ], + "score": 1.0, + "content": "Yuri Burda, Roger B. Grosse, and Ruslan Salakhutdinov. Importance Weighted Autoencoders. In", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 168, + 396, + 181 + ], + "spans": [ + { + "bbox": [ + 115, + 168, + 396, + 181 + ], + "score": 1.0, + "content": "International Conference on Learning Representations (ICLR), 2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 186, + 505, + 210 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "Laurent Dinh, Jascha Sohl-Dickstein, and Samy Bengio. Density estimation using Real NVP. In", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 198, + 396, + 210 + ], + "spans": [ + { + "bbox": [ + 115, + 198, + 396, + 210 + ], + "score": 1.0, + "content": "International Conference on Learning Representations (ICLR), 2017.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 104, + 215, + 465, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 215, + 465, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 465, + 229 + ], + "score": 1.0, + "content": "M.P. do Carmo. Riemannian Geometry. Mathematics (Boston, Mass.). Birkhauser, 1992. ¨", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 503, + 257 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 505, + 247 + ], + "score": 1.0, + "content": "Jeff Donahue, Philipp Krhenbhl, and Trevor Darrell. Adversarial Feature Learning. In International", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 245, + 341, + 257 + ], + "spans": [ + { + "bbox": [ + 116, + 245, + 341, + 257 + ], + "score": 1.0, + "content": "Conference on Learning Representations (ICLR), 2017.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 108, + 263, + 504, + 297 + ], + "lines": [ + { + "bbox": [ + 106, + 262, + 504, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 504, + 276 + ], + "score": 1.0, + "content": "Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Alex Lamb, Martin Arjovsky, Olivier Mastropi-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 274, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 115, + 274, + 505, + 287 + ], + "score": 1.0, + "content": "etro, and Aaron Courville. Adversarially Learned Inference. In International Conference on", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 286, + 280, + 298 + ], + "spans": [ + { + "bbox": [ + 116, + 286, + 280, + 298 + ], + "score": 1.0, + "content": "Learning Representations (ICLR), 2017.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 303, + 503, + 326 + ], + "lines": [ + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "Carl Friedrich Gauss. Disquisitiones generales circa superficies curvas. Commentationes Societatis", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 315, + 370, + 326 + ], + "spans": [ + { + "bbox": [ + 116, + 315, + 370, + 326 + ], + "score": 1.0, + "content": "Regiae Scientiarum Gottingesis Recentiores, VI:99–146, 1827.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 332, + 504, + 366 + ], + "lines": [ + { + "bbox": [ + 105, + 331, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 505, + 345 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 116, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative Adversarial Nets. In Advances in Neural Infor-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 355, + 284, + 367 + ], + "spans": [ + { + "bbox": [ + 116, + 355, + 284, + 367 + ], + "score": 1.0, + "content": "mation Processing Systems (NIPS), 2014.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 372, + 504, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 371, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 505, + 385 + ], + "score": 1.0, + "content": "Søren Hauberg, Oren Freifeld, and Michael J. Black. A Geometric Take on Metric Learning. In", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 383, + 462, + 396 + ], + "spans": [ + { + "bbox": [ + 116, + 383, + 462, + 396 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems (NIPS) 25, pp. 2033–2041, 2012.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 504, + 425 + ], + "lines": [ + { + "bbox": [ + 106, + 401, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 506, + 414 + ], + "score": 1.0, + "content": "Diederik P Kingma and Max Welling. Auto-Encoding Variational Bayes. In Proceedings of the 2nd", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 412, + 396, + 425 + ], + "spans": [ + { + "bbox": [ + 115, + 412, + 396, + 425 + ], + "score": 1.0, + "content": "International Conference on Learning Representations (ICLR), 2014.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 430, + 504, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "score": 1.0, + "content": "Diederik P Kingma, Tim Salimans, Rafal Jozefowicz, Xi Chen, Ilya Sutskever, and Max Welling.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 441, + 504, + 453 + ], + "spans": [ + { + "bbox": [ + 116, + 441, + 504, + 453 + ], + "score": 1.0, + "content": "Improved Variational Inference with Inverse Autoregressive Flow. In Advances in Neural Infor-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 453, + 285, + 465 + ], + "spans": [ + { + "bbox": [ + 116, + 453, + 285, + 465 + ], + "score": 1.0, + "content": "mation Processing Systems (NIPS), 2016.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 108, + 470, + 504, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 483 + ], + "score": 1.0, + "content": "Abhishek Kumar, Prasanna Sattigeri, and Tom Fletcher. Improved Semi-supervised Learning with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 480, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 115, + 480, + 505, + 495 + ], + "score": 1.0, + "content": "Gans using Manifold Invariances. In Advances in Neural Information Processing Systems (NIPS).", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 491, + 143, + 505 + ], + "spans": [ + { + "bbox": [ + 115, + 491, + 143, + 505 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 502, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 504, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 504, + 523 + ], + "score": 1.0, + "content": "Neil Lawrence. Probabilistic non-linear principal component analysis with Gaussian process latent", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 522, + 447, + 534 + ], + "spans": [ + { + "bbox": [ + 116, + 522, + 447, + 534 + ], + "score": 1.0, + "content": "variable models. Journal of machine learning research, 6(Nov):1783–1816, 2005.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 105, + 540, + 503, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "Jaakko. Peltonen, Arto Klami, and Samuel Kaski. Improved learning of riemannian metrics for", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 551, + 374, + 563 + ], + "spans": [ + { + "bbox": [ + 116, + 551, + 374, + 563 + ], + "score": 1.0, + "content": "exploratory analysis. Neural Networks, 17(8):1087–1100, 2004.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 105, + 568, + 504, + 592 + ], + "lines": [ + { + "bbox": [ + 106, + 569, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 505, + 582 + ], + "score": 1.0, + "content": "Qichao Que and Mikhail Belkin. Back to the future: Radial basis function networks revisited. In", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 580, + 331, + 592 + ], + "spans": [ + { + "bbox": [ + 115, + 580, + 331, + 592 + ], + "score": 1.0, + "content": "Artificial Intelligence and Statistics (AISTATS), 2016.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 105, + 597, + 504, + 621 + ], + "lines": [ + { + "bbox": [ + 106, + 598, + 504, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 504, + 611 + ], + "score": 1.0, + "content": "Danilo Rezende and Shakir Mohamed. Variational Inference with Normalizing Flows. In Proceed-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 608, + 435, + 622 + ], + "spans": [ + { + "bbox": [ + 116, + 608, + 435, + 622 + ], + "score": 1.0, + "content": "ings of the 32nd International Conference on Machine Learning (ICML), 2015.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 107, + 626, + 505, + 661 + ], + "lines": [ + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "Danilo Jimenez Rezende, Shakir Mohamed, and Daan Wierstra. Stochastic Backpropagation and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 638, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 116, + 638, + 505, + 651 + ], + "score": 1.0, + "content": "Approximate Inference in Deep Generative Models. In Proceedings of the 31st International", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 648, + 315, + 662 + ], + "spans": [ + { + "bbox": [ + 116, + 648, + 315, + 662 + ], + "score": 1.0, + "content": "Conference on Machine Learning (ICML), 2014.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 108, + 667, + 504, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 680 + ], + "score": 1.0, + "content": "Salah Rifai, Pascal Vincent, Xavier Muller, Xavier Glorot, and Yoshua Bengio. Contractive Auto-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 679, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 116, + 679, + 505, + 690 + ], + "score": 1.0, + "content": "Encoders: Explicit Invariance During Feature Extraction. In Proceedings of the 28th International", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 117, + 690, + 314, + 702 + ], + "spans": [ + { + "bbox": [ + 117, + 690, + 314, + 702 + ], + "score": 1.0, + "content": "Conference on Machine Learning (ICML), 2011.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 106, + 707, + 504, + 730 + ], + "lines": [ + { + "bbox": [ + 106, + 707, + 505, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 707, + 505, + 720 + ], + "score": 1.0, + "content": "Alessandra Tosi, Søren Hauberg, Alfredo Vellido, and Neil D. Lawrence. Metrics for Probabilistic", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 718, + 476, + 731 + ], + "spans": [ + { + "bbox": [ + 116, + 718, + 476, + 731 + ], + "score": 1.0, + "content": "Geometries. In The Conference on Uncertainty in Artificial Intelligence (UAI), July 2014.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 176, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 99, + 503, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 504, + 112 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 504, + 112 + ], + "score": 1.0, + "content": "Georgios Arvanitidis, Lars Kai Hansen, and Søren Hauberg. A Locally Adaptive Normal Distribu-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 110, + 418, + 123 + ], + "spans": [ + { + "bbox": [ + 116, + 110, + 418, + 123 + ], + "score": 1.0, + "content": "tion. In Advances in Neural Information Processing Systems (NIPS), 2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 99, + 504, + 123 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 128, + 504, + 151 + ], + "lines": [ + { + "bbox": [ + 107, + 129, + 504, + 141 + ], + "spans": [ + { + "bbox": [ + 107, + 129, + 504, + 141 + ], + "score": 1.0, + "content": "Yoshua Bengio, Aaron Courville, and Pascal Vincent. Representation Learning: A Review and New", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 139, + 466, + 152 + ], + "spans": [ + { + "bbox": [ + 115, + 139, + 466, + 152 + ], + "score": 1.0, + "content": "Perspectives. IEEE Trans. Pattern Anal. Mach. Intell., 35(8):1798–1828, August 2013.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 107, + 129, + 504, + 152 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 157, + 504, + 181 + ], + "lines": [ + { + "bbox": [ + 107, + 158, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 107, + 158, + 505, + 170 + ], + "score": 1.0, + "content": "Yuri Burda, Roger B. Grosse, and Ruslan Salakhutdinov. Importance Weighted Autoencoders. In", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 168, + 396, + 181 + ], + "spans": [ + { + "bbox": [ + 115, + 168, + 396, + 181 + ], + "score": 1.0, + "content": "International Conference on Learning Representations (ICLR), 2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 107, + 158, + 505, + 181 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 186, + 505, + 210 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "Laurent Dinh, Jascha Sohl-Dickstein, and Samy Bengio. Density estimation using Real NVP. In", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 198, + 396, + 210 + ], + "spans": [ + { + "bbox": [ + 115, + 198, + 396, + 210 + ], + "score": 1.0, + "content": "International Conference on Learning Representations (ICLR), 2017.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 187, + 505, + 210 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 215, + 465, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 215, + 465, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 465, + 229 + ], + "score": 1.0, + "content": "M.P. do Carmo. Riemannian Geometry. Mathematics (Boston, Mass.). Birkhauser, 1992. ¨", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 215, + 465, + 229 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 503, + 257 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 505, + 247 + ], + "score": 1.0, + "content": "Jeff Donahue, Philipp Krhenbhl, and Trevor Darrell. Adversarial Feature Learning. In International", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 245, + 341, + 257 + ], + "spans": [ + { + "bbox": [ + 116, + 245, + 341, + 257 + ], + "score": 1.0, + "content": "Conference on Learning Representations (ICLR), 2017.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 234, + 505, + 257 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 263, + 504, + 297 + ], + "lines": [ + { + "bbox": [ + 106, + 262, + 504, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 504, + 276 + ], + "score": 1.0, + "content": "Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Alex Lamb, Martin Arjovsky, Olivier Mastropi-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 274, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 115, + 274, + 505, + 287 + ], + "score": 1.0, + "content": "etro, and Aaron Courville. Adversarially Learned Inference. In International Conference on", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 286, + 280, + 298 + ], + "spans": [ + { + "bbox": [ + 116, + 286, + 280, + 298 + ], + "score": 1.0, + "content": "Learning Representations (ICLR), 2017.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 262, + 505, + 298 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 303, + 503, + 326 + ], + "lines": [ + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "Carl Friedrich Gauss. Disquisitiones generales circa superficies curvas. Commentationes Societatis", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 315, + 370, + 326 + ], + "spans": [ + { + "bbox": [ + 116, + 315, + 370, + 326 + ], + "score": 1.0, + "content": "Regiae Scientiarum Gottingesis Recentiores, VI:99–146, 1827.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 106, + 303, + 505, + 326 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 332, + 504, + 366 + ], + "lines": [ + { + "bbox": [ + 105, + 331, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 505, + 345 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 116, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative Adversarial Nets. In Advances in Neural Infor-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 355, + 284, + 367 + ], + "spans": [ + { + "bbox": [ + 116, + 355, + 284, + 367 + ], + "score": 1.0, + "content": "mation Processing Systems (NIPS), 2014.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 331, + 505, + 367 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 372, + 504, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 371, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 505, + 385 + ], + "score": 1.0, + "content": "Søren Hauberg, Oren Freifeld, and Michael J. Black. A Geometric Take on Metric Learning. In", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 383, + 462, + 396 + ], + "spans": [ + { + "bbox": [ + 116, + 383, + 462, + 396 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems (NIPS) 25, pp. 2033–2041, 2012.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 371, + 505, + 396 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 504, + 425 + ], + "lines": [ + { + "bbox": [ + 106, + 401, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 506, + 414 + ], + "score": 1.0, + "content": "Diederik P Kingma and Max Welling. Auto-Encoding Variational Bayes. In Proceedings of the 2nd", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 412, + 396, + 425 + ], + "spans": [ + { + "bbox": [ + 115, + 412, + 396, + 425 + ], + "score": 1.0, + "content": "International Conference on Learning Representations (ICLR), 2014.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 401, + 506, + 425 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 430, + 504, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "score": 1.0, + "content": "Diederik P Kingma, Tim Salimans, Rafal Jozefowicz, Xi Chen, Ilya Sutskever, and Max Welling.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 441, + 504, + 453 + ], + "spans": [ + { + "bbox": [ + 116, + 441, + 504, + 453 + ], + "score": 1.0, + "content": "Improved Variational Inference with Inverse Autoregressive Flow. In Advances in Neural Infor-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 453, + 285, + 465 + ], + "spans": [ + { + "bbox": [ + 116, + 453, + 285, + 465 + ], + "score": 1.0, + "content": "mation Processing Systems (NIPS), 2016.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 429, + 505, + 465 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 470, + 504, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 483 + ], + "score": 1.0, + "content": "Abhishek Kumar, Prasanna Sattigeri, and Tom Fletcher. Improved Semi-supervised Learning with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 480, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 115, + 480, + 505, + 495 + ], + "score": 1.0, + "content": "Gans using Manifold Invariances. In Advances in Neural Information Processing Systems (NIPS).", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 491, + 143, + 505 + ], + "spans": [ + { + "bbox": [ + 115, + 491, + 143, + 505 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 471, + 505, + 505 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 502, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 504, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 504, + 523 + ], + "score": 1.0, + "content": "Neil Lawrence. Probabilistic non-linear principal component analysis with Gaussian process latent", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 522, + 447, + 534 + ], + "spans": [ + { + "bbox": [ + 116, + 522, + 447, + 534 + ], + "score": 1.0, + "content": "variable models. Journal of machine learning research, 6(Nov):1783–1816, 2005.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 510, + 504, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 540, + 503, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "Jaakko. Peltonen, Arto Klami, and Samuel Kaski. Improved learning of riemannian metrics for", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 551, + 374, + 563 + ], + "spans": [ + { + "bbox": [ + 116, + 551, + 374, + 563 + ], + "score": 1.0, + "content": "exploratory analysis. Neural Networks, 17(8):1087–1100, 2004.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 540, + 505, + 563 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 568, + 504, + 592 + ], + "lines": [ + { + "bbox": [ + 106, + 569, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 505, + 582 + ], + "score": 1.0, + "content": "Qichao Que and Mikhail Belkin. Back to the future: Radial basis function networks revisited. In", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 580, + 331, + 592 + ], + "spans": [ + { + "bbox": [ + 115, + 580, + 331, + 592 + ], + "score": 1.0, + "content": "Artificial Intelligence and Statistics (AISTATS), 2016.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 569, + 505, + 592 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 597, + 504, + 621 + ], + "lines": [ + { + "bbox": [ + 106, + 598, + 504, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 504, + 611 + ], + "score": 1.0, + "content": "Danilo Rezende and Shakir Mohamed. Variational Inference with Normalizing Flows. In Proceed-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 608, + 435, + 622 + ], + "spans": [ + { + "bbox": [ + 116, + 608, + 435, + 622 + ], + "score": 1.0, + "content": "ings of the 32nd International Conference on Machine Learning (ICML), 2015.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 598, + 504, + 622 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 626, + 505, + 661 + ], + "lines": [ + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "Danilo Jimenez Rezende, Shakir Mohamed, and Daan Wierstra. Stochastic Backpropagation and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 638, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 116, + 638, + 505, + 651 + ], + "score": 1.0, + "content": "Approximate Inference in Deep Generative Models. In Proceedings of the 31st International", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 648, + 315, + 662 + ], + "spans": [ + { + "bbox": [ + 116, + 648, + 315, + 662 + ], + "score": 1.0, + "content": "Conference on Machine Learning (ICML), 2014.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 106, + 627, + 505, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 667, + 504, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 680 + ], + "score": 1.0, + "content": "Salah Rifai, Pascal Vincent, Xavier Muller, Xavier Glorot, and Yoshua Bengio. Contractive Auto-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 679, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 116, + 679, + 505, + 690 + ], + "score": 1.0, + "content": "Encoders: Explicit Invariance During Feature Extraction. In Proceedings of the 28th International", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 117, + 690, + 314, + 702 + ], + "spans": [ + { + "bbox": [ + 117, + 690, + 314, + 702 + ], + "score": 1.0, + "content": "Conference on Machine Learning (ICML), 2011.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 666, + 505, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 707, + 504, + 730 + ], + "lines": [ + { + "bbox": [ + 106, + 707, + 505, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 707, + 505, + 720 + ], + "score": 1.0, + "content": "Alessandra Tosi, Søren Hauberg, Alfredo Vellido, and Neil D. Lawrence. Metrics for Probabilistic", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 718, + 476, + 731 + ], + "spans": [ + { + "bbox": [ + 116, + 718, + 476, + 731 + ], + "score": 1.0, + "content": "Geometries. In The Conference on Uncertainty in Artificial Intelligence (UAI), July 2014.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 106, + 707, + 505, + 731 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 80, + 451, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 452, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 452, + 97 + ], + "score": 1.0, + "content": "A THE DERIVATION OF THE GEODESIC DIFFERENTIAL EQUATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 504, + 129 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 505, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 256, + 120 + ], + "score": 1.0, + "content": "The shortest path between two points", + "type": "text" + }, + { + "bbox": [ + 257, + 107, + 299, + 118 + ], + "score": 0.91, + "content": "\\mathbf { x } , \\mathbf { y } \\in \\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 105, + 407, + 120 + ], + "score": 1.0, + "content": "on a Riemannian manifold", + "type": "text" + }, + { + "bbox": [ + 408, + 107, + 421, + 117 + ], + "score": 0.83, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 105, + 505, + 120 + ], + "score": 1.0, + "content": "is found by optimiz-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 180, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 180, + 129 + ], + "score": 1.0, + "content": "ing the functional", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 134, + 441, + 163 + ], + "lines": [ + { + "bbox": [ + 170, + 134, + 441, + 163 + ], + "spans": [ + { + "bbox": [ + 170, + 134, + 441, + 163 + ], + "score": 0.92, + "content": "\\gamma _ { t } ^ { ( \\mathrm { s h o r t e s t } ) } = \\underset { \\gamma _ { t } } { \\arg \\operatorname* { m i n } } \\int _ { 0 } ^ { 1 } \\sqrt { \\langle \\dot { \\gamma } _ { t } , \\mathbf { M } _ { \\gamma _ { t } } \\dot { \\gamma } _ { t } \\rangle } \\mathrm { d } t , \\quad \\gamma ( 0 ) = \\mathbf { x } , \\gamma ( 1 ) = \\mathbf { y }", + "type": "interline_equation", + "image_path": "3e9a109b92ccea98ec22a4696524f1e7a37b66fed738351554b3dc179bd0ccc3.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 170, + 134, + 441, + 143.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 170, + 143.66666666666666, + 441, + 153.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 170, + 153.33333333333331, + 441, + 162.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 170, + 504, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 168, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 134, + 186 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 172, + 210, + 185 + ], + "score": 0.93, + "content": "\\gamma _ { t } : [ 0 , 1 ] \\to \\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 171, + 230, + 186 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 231, + 170, + 275, + 186 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\dot { \\gamma } _ { t } ~ = ~ \\frac { \\partial \\gamma _ { t } } { \\partial t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 168, + 506, + 187 + ], + "score": 1.0, + "content": "∂γt∂t . The minima of this problem can be found instead by", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 183, + 403, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 403, + 196 + ], + "score": 1.0, + "content": "optimizing the curve energy (do Carmo, 1992), so the functional becomes", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "interline_equation", + "bbox": [ + 174, + 200, + 437, + 230 + ], + "lines": [ + { + "bbox": [ + 174, + 200, + 437, + 230 + ], + "spans": [ + { + "bbox": [ + 174, + 200, + 437, + 230 + ], + "score": 0.92, + "content": "\\gamma _ { t } ^ { ( \\mathrm { s h o r t e s t } ) } = \\underset { \\gamma _ { t } } { \\operatorname { a r g m i n } } \\int _ { 0 } ^ { 1 } \\langle \\dot { \\gamma } _ { t } , \\mathbf { M } _ { \\gamma _ { t } } \\dot { \\gamma } _ { t } \\rangle \\mathrm { d } t , \\quad \\gamma ( 0 ) = \\mathbf { x } , \\gamma ( 1 ) = \\mathbf { y } .", + "type": "interline_equation", + "image_path": "1dc42a01e0a58363e31dc695bbc99049c41382da820e91bb847d5ace4ecf3865.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 174, + 200, + 437, + 210.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 174, + 210.0, + 437, + 220.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 174, + 220.0, + 437, + 230.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 235, + 290, + 247 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 290, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 290, + 249 + ], + "score": 1.0, + "content": "The inner product can be written explicitly as", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 252, + 470, + 289 + ], + "lines": [ + { + "bbox": [ + 123, + 252, + 470, + 289 + ], + "spans": [ + { + "bbox": [ + 123, + 252, + 470, + 289 + ], + "score": 0.94, + "content": "L ( \\gamma _ { t } , \\dot { \\gamma } _ { t } , \\mathbf { M } _ { \\gamma _ { t } } ) = \\langle \\dot { \\gamma } _ { t } , \\mathbf { M } _ { \\gamma _ { t } } \\dot { \\gamma } _ { t } \\rangle = \\sum _ { i = 1 } ^ { d } \\sum _ { j = 1 } ^ { d } \\dot { \\gamma } _ { t } ^ { ( i ) } \\cdot \\dot { \\gamma } _ { t } ^ { ( j ) } \\cdot M _ { \\gamma _ { t } } ^ { ( i j ) } = ( \\dot { \\gamma } _ { t } \\otimes \\dot { \\gamma } _ { t } ) ^ { \\top } \\mathrm { v e c } [ \\mathbf { M } _ { \\gamma _ { t } } ]", + "type": "interline_equation", + "image_path": "194565ed4b27d0befed62facbe65b259e37cceae5c45c7ad7b786b7897489443.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 123, + 252, + 470, + 264.3333333333333 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 123, + 264.3333333333333, + 470, + 276.66666666666663 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 123, + 276.66666666666663, + 470, + 288.99999999999994 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 294, + 503, + 327 + ], + "lines": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "where the index in the parenthesis represents the corresponding element in the vector or matrix. In", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 305, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 177, + 317 + ], + "score": 1.0, + "content": "the derivation the", + "type": "text" + }, + { + "bbox": [ + 178, + 306, + 187, + 315 + ], + "score": 0.83, + "content": "\\otimes", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 305, + 343, + 317 + ], + "score": 1.0, + "content": "is the usual Kronecker product and the", + "type": "text" + }, + { + "bbox": [ + 343, + 305, + 366, + 317 + ], + "score": 0.31, + "content": "\\mathrm { v e c } [ \\cdot ]", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 305, + 505, + 317 + ], + "score": 1.0, + "content": "stacks the column of a matrix into", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 316, + 367, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 367, + 328 + ], + "score": 1.0, + "content": "a vector. We find the minimizers by the Euler-Lagrange equation", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 273, + 332, + 338, + 360 + ], + "lines": [ + { + "bbox": [ + 273, + 332, + 338, + 360 + ], + "spans": [ + { + "bbox": [ + 273, + 332, + 338, + 360 + ], + "score": 0.94, + "content": "{ \\frac { \\partial L } { \\partial \\gamma _ { t } } } = { \\frac { \\partial } { \\partial t } } { \\frac { \\partial L } { \\partial { \\dot { \\gamma } } _ { t } } }", + "type": "interline_equation", + "image_path": "38ed60cc354ec481fb8132b8fe8d4ed9cdb896dd30e6cfdd846e95a2e6bb4dc1.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 273, + 332, + 338, + 346.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 273, + 346.0, + 338, + 360.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 365, + 133, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 135, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 135, + 377 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 379, + 461, + 407 + ], + "lines": [ + { + "bbox": [ + 150, + 379, + 461, + 407 + ], + "spans": [ + { + "bbox": [ + 150, + 379, + 461, + 407 + ], + "score": 0.93, + "content": "\\frac { \\partial } { \\partial t } \\frac { \\partial L } { \\partial \\dot { \\gamma } _ { t } } = \\frac { \\partial } { \\partial t } \\frac { \\partial \\langle \\dot { \\gamma } _ { t } , \\mathbf { M } _ { \\gamma _ { t } } \\dot { \\gamma } _ { t } \\rangle } { \\partial \\dot { \\gamma } _ { t } } = \\frac { \\partial } { \\partial t } \\left( 2 \\cdot \\mathbf { M } _ { \\gamma _ { t } } \\dot { \\gamma } _ { t } \\right) = 2 \\left[ \\frac { \\partial \\mathbf { M } _ { \\gamma _ { t } } } { \\partial t } \\dot { \\gamma } _ { t } + \\mathbf { M } _ { \\gamma _ { t } } \\ddot { \\gamma } _ { t } \\right] .", + "type": "interline_equation", + "image_path": "fdd3120429a9c3fe73ff39747859481cbeef7c5310cb76872713fd46a5d54bd6.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 150, + 379, + 461, + 388.3333333333333 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 150, + 388.3333333333333, + 461, + 397.66666666666663 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 150, + 397.66666666666663, + 461, + 406.99999999999994 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 167, + 423 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 167, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 167, + 424 + ], + "score": 1.0, + "content": "Since the term", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 428, + 468, + 507 + ], + "lines": [ + { + "bbox": [ + 142, + 428, + 468, + 507 + ], + "spans": [ + { + "bbox": [ + 142, + 428, + 468, + 507 + ], + "score": 0.95, + "content": "\\frac { \\partial \\mathbf { M } _ { \\gamma _ { t } } } { \\partial t } = \\left[ \\begin{array} { c c c } { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( 1 1 ) } } { \\partial t } } & { \\ldots } & { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( 1 D ) } } { \\partial t } } \\\\ { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( 2 1 ) } } { \\partial t } } & { \\ldots } & { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( 2 D ) } } { \\partial t } } \\\\ { \\vdots } & { \\ddots } & { \\vdots } \\\\ { \\frac { \\partial M _ { \\gamma } ^ { ( D 1 ) } } { \\partial t } } & { \\ldots } & { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( D D ) } } { \\partial t } } \\end{array} \\right] = \\left[ \\begin{array} { c c c c } { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( 1 1 ) } \\mathsf { T } } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } } & { \\ldots } & { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( 1 D ) } } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } } \\\\ { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( 2 1 ) } \\mathsf { T } } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } } & { \\ldots } & { \\frac { \\partial M _ { \\gamma } ^ { ( 2 D ) } } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } } \\\\ { \\vdots } & { \\ddots } & { \\vdots } \\\\ { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( D 1 ) } \\mathsf { T } } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } } & { \\ldots } & { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( D D ) } } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } } \\end{array} \\right]", + "type": "interline_equation", + "image_path": "0e5b911af8b3dc7debdef80bd7c8c378d6d74c19e517a8f094ad86afcec1e2ed.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 142, + 428, + 468, + 454.3333333333333 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 142, + 454.3333333333333, + 468, + 480.66666666666663 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 142, + 480.66666666666663, + 468, + 506.99999999999994 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 511, + 301, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 511, + 301, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 301, + 524 + ], + "score": 1.0, + "content": "we can write the right hand side of the Eq. 16 as", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 528, + 411, + 563 + ], + "lines": [ + { + "bbox": [ + 200, + 528, + 411, + 563 + ], + "spans": [ + { + "bbox": [ + 200, + 528, + 411, + 563 + ], + "score": 0.93, + "content": "\\frac { \\partial } { \\partial t } \\frac { \\partial L } { \\partial \\dot { \\gamma } _ { t } } = 2 \\left[ ( \\mathbb { I } _ { d } \\otimes \\dot { \\gamma } _ { t } ^ { \\mathsf { T } } ) \\frac { \\partial \\mathrm { v e c } \\left[ \\mathbf { M } _ { \\gamma _ { t } } \\right] } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } + \\mathbf { M } _ { \\gamma _ { t } } \\ddot { \\gamma } _ { t } \\right] .", + "type": "interline_equation", + "image_path": "d18063ef0f01c705a06458c8f3e03d21dea4661362f1155bf24d557a9027637d.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 200, + 528, + 411, + 545.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 200, + 545.5, + 411, + 563.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 299, + 585 + ], + "lines": [ + { + "bbox": [ + 106, + 571, + 299, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 571, + 299, + 586 + ], + "score": 1.0, + "content": "The left hand side term of the Eq. 16 is equal to", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 591, + 437, + 619 + ], + "lines": [ + { + "bbox": [ + 175, + 591, + 437, + 619 + ], + "spans": [ + { + "bbox": [ + 175, + 591, + 437, + 619 + ], + "score": 0.92, + "content": "\\frac { \\partial L } { \\partial \\gamma _ { t } } = \\frac { \\partial } { \\partial \\gamma _ { t } } \\left( ( \\dot { \\gamma } _ { t } \\otimes \\dot { \\gamma } _ { t } ) ^ { \\top } \\mathrm { v e c } \\big [ \\mathbf { M } _ { \\gamma _ { t } } \\big ] \\right) = ( \\dot { \\gamma } _ { t } \\otimes \\dot { \\gamma } _ { t } ) ^ { \\top } \\frac { \\partial \\mathrm { v e c } \\big [ \\mathbf { M } _ { \\gamma _ { t } } \\big ] } { \\partial \\gamma _ { t } } .", + "type": "interline_equation", + "image_path": "2f3165afeb47de826fe4715f1e2ab3562bf6942f1b154ebcde0b71a8b41b2166.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 175, + 591, + 437, + 600.3333333333334 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 175, + 600.3333333333334, + 437, + 609.6666666666667 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 175, + 609.6666666666667, + 437, + 619.0000000000001 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 631, + 357, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 357, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 186, + 646 + ], + "score": 1.0, + "content": "The final system of", + "type": "text" + }, + { + "bbox": [ + 186, + 631, + 199, + 642 + ], + "score": 0.88, + "content": "2 ^ { \\mathrm { n d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 629, + 357, + 646 + ], + "score": 1.0, + "content": "order ordinary differential equations is", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 648, + 455, + 682 + ], + "lines": [ + { + "bbox": [ + 155, + 648, + 455, + 682 + ], + "spans": [ + { + "bbox": [ + 155, + 648, + 455, + 682 + ], + "score": 0.94, + "content": "\\ddot { \\gamma } _ { t } = - \\frac { 1 } { 2 } \\mathbf { M } _ { \\gamma _ { t } } ^ { - 1 } \\left[ 2 \\cdot ( \\mathbb { I } _ { d } \\otimes \\dot { \\gamma } _ { t } ^ { \\intercal } ) \\frac { \\partial \\mathrm { v e c } \\big [ \\mathbf { M } _ { \\gamma _ { t } } \\big ] } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } - \\frac { \\partial \\mathrm { v e c } \\big [ \\mathbf { M } _ { \\gamma _ { t } } \\big ] ^ { \\intercal } } { \\partial \\gamma _ { t } } ( \\dot { \\gamma } _ { t } \\otimes \\dot { \\gamma } _ { t } ) \\right] .", + "type": "interline_equation", + "image_path": "60ea2c0ff1d77896910fd10a553fa5eb1d2d5da3a35d950f72c44ef55ed33231.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 155, + 648, + 455, + 659.3333333333334 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 155, + 659.3333333333334, + 455, + 670.6666666666667 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 155, + 670.6666666666667, + 455, + 682.0000000000001 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 694, + 375, + 709 + ], + "lines": [ + { + "bbox": [ + 105, + 694, + 375, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 375, + 710 + ], + "score": 1.0, + "content": "B THE DERIVATION OF THE RIEMANNIAN METRIC", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 720, + 206, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 720, + 208, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 208, + 733 + ], + "score": 1.0, + "content": "The proof of Theorem 1.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 294, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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": "title", + "bbox": [ + 106, + 80, + 451, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 452, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 452, + 97 + ], + "score": 1.0, + "content": "A THE DERIVATION OF THE GEODESIC DIFFERENTIAL EQUATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 504, + 129 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 505, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 256, + 120 + ], + "score": 1.0, + "content": "The shortest path between two points", + "type": "text" + }, + { + "bbox": [ + 257, + 107, + 299, + 118 + ], + "score": 0.91, + "content": "\\mathbf { x } , \\mathbf { y } \\in \\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 105, + 407, + 120 + ], + "score": 1.0, + "content": "on a Riemannian manifold", + "type": "text" + }, + { + "bbox": [ + 408, + 107, + 421, + 117 + ], + "score": 0.83, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 105, + 505, + 120 + ], + "score": 1.0, + "content": "is found by optimiz-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 180, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 180, + 129 + ], + "score": 1.0, + "content": "ing the functional", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 105, + 505, + 129 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 134, + 441, + 163 + ], + "lines": [ + { + "bbox": [ + 170, + 134, + 441, + 163 + ], + "spans": [ + { + "bbox": [ + 170, + 134, + 441, + 163 + ], + "score": 0.92, + "content": "\\gamma _ { t } ^ { ( \\mathrm { s h o r t e s t } ) } = \\underset { \\gamma _ { t } } { \\arg \\operatorname* { m i n } } \\int _ { 0 } ^ { 1 } \\sqrt { \\langle \\dot { \\gamma } _ { t } , \\mathbf { M } _ { \\gamma _ { t } } \\dot { \\gamma } _ { t } \\rangle } \\mathrm { d } t , \\quad \\gamma ( 0 ) = \\mathbf { x } , \\gamma ( 1 ) = \\mathbf { y }", + "type": "interline_equation", + "image_path": "3e9a109b92ccea98ec22a4696524f1e7a37b66fed738351554b3dc179bd0ccc3.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 170, + 134, + 441, + 143.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 170, + 143.66666666666666, + 441, + 153.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 170, + 153.33333333333331, + 441, + 162.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 170, + 504, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 168, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 134, + 186 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 172, + 210, + 185 + ], + "score": 0.93, + "content": "\\gamma _ { t } : [ 0 , 1 ] \\to \\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 171, + 230, + 186 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 231, + 170, + 275, + 186 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\dot { \\gamma } _ { t } ~ = ~ \\frac { \\partial \\gamma _ { t } } { \\partial t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 168, + 506, + 187 + ], + "score": 1.0, + "content": "∂γt∂t . The minima of this problem can be found instead by", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 183, + 403, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 403, + 196 + ], + "score": 1.0, + "content": "optimizing the curve energy (do Carmo, 1992), so the functional becomes", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 106, + 168, + 506, + 196 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 174, + 200, + 437, + 230 + ], + "lines": [ + { + "bbox": [ + 174, + 200, + 437, + 230 + ], + "spans": [ + { + "bbox": [ + 174, + 200, + 437, + 230 + ], + "score": 0.92, + "content": "\\gamma _ { t } ^ { ( \\mathrm { s h o r t e s t } ) } = \\underset { \\gamma _ { t } } { \\operatorname { a r g m i n } } \\int _ { 0 } ^ { 1 } \\langle \\dot { \\gamma } _ { t } , \\mathbf { M } _ { \\gamma _ { t } } \\dot { \\gamma } _ { t } \\rangle \\mathrm { d } t , \\quad \\gamma ( 0 ) = \\mathbf { x } , \\gamma ( 1 ) = \\mathbf { y } .", + "type": "interline_equation", + "image_path": "1dc42a01e0a58363e31dc695bbc99049c41382da820e91bb847d5ace4ecf3865.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 174, + 200, + 437, + 210.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 174, + 210.0, + 437, + 220.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 174, + 220.0, + 437, + 230.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 235, + 290, + 247 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 290, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 290, + 249 + ], + "score": 1.0, + "content": "The inner product can be written explicitly as", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 234, + 290, + 249 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 252, + 470, + 289 + ], + "lines": [ + { + "bbox": [ + 123, + 252, + 470, + 289 + ], + "spans": [ + { + "bbox": [ + 123, + 252, + 470, + 289 + ], + "score": 0.94, + "content": "L ( \\gamma _ { t } , \\dot { \\gamma } _ { t } , \\mathbf { M } _ { \\gamma _ { t } } ) = \\langle \\dot { \\gamma } _ { t } , \\mathbf { M } _ { \\gamma _ { t } } \\dot { \\gamma } _ { t } \\rangle = \\sum _ { i = 1 } ^ { d } \\sum _ { j = 1 } ^ { d } \\dot { \\gamma } _ { t } ^ { ( i ) } \\cdot \\dot { \\gamma } _ { t } ^ { ( j ) } \\cdot M _ { \\gamma _ { t } } ^ { ( i j ) } = ( \\dot { \\gamma } _ { t } \\otimes \\dot { \\gamma } _ { t } ) ^ { \\top } \\mathrm { v e c } [ \\mathbf { M } _ { \\gamma _ { t } } ]", + "type": "interline_equation", + "image_path": "194565ed4b27d0befed62facbe65b259e37cceae5c45c7ad7b786b7897489443.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 123, + 252, + 470, + 264.3333333333333 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 123, + 264.3333333333333, + 470, + 276.66666666666663 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 123, + 276.66666666666663, + 470, + 288.99999999999994 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 294, + 503, + 327 + ], + "lines": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "where the index in the parenthesis represents the corresponding element in the vector or matrix. In", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 305, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 177, + 317 + ], + "score": 1.0, + "content": "the derivation the", + "type": "text" + }, + { + "bbox": [ + 178, + 306, + 187, + 315 + ], + "score": 0.83, + "content": "\\otimes", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 305, + 343, + 317 + ], + "score": 1.0, + "content": "is the usual Kronecker product and the", + "type": "text" + }, + { + "bbox": [ + 343, + 305, + 366, + 317 + ], + "score": 0.31, + "content": "\\mathrm { v e c } [ \\cdot ]", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 305, + 505, + 317 + ], + "score": 1.0, + "content": "stacks the column of a matrix into", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 316, + 367, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 367, + 328 + ], + "score": 1.0, + "content": "a vector. We find the minimizers by the Euler-Lagrange equation", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 294, + 505, + 328 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 273, + 332, + 338, + 360 + ], + "lines": [ + { + "bbox": [ + 273, + 332, + 338, + 360 + ], + "spans": [ + { + "bbox": [ + 273, + 332, + 338, + 360 + ], + "score": 0.94, + "content": "{ \\frac { \\partial L } { \\partial \\gamma _ { t } } } = { \\frac { \\partial } { \\partial t } } { \\frac { \\partial L } { \\partial { \\dot { \\gamma } } _ { t } } }", + "type": "interline_equation", + "image_path": "38ed60cc354ec481fb8132b8fe8d4ed9cdb896dd30e6cfdd846e95a2e6bb4dc1.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 273, + 332, + 338, + 346.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 273, + 346.0, + 338, + 360.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 365, + 133, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 135, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 135, + 377 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 363, + 135, + 377 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 379, + 461, + 407 + ], + "lines": [ + { + "bbox": [ + 150, + 379, + 461, + 407 + ], + "spans": [ + { + "bbox": [ + 150, + 379, + 461, + 407 + ], + "score": 0.93, + "content": "\\frac { \\partial } { \\partial t } \\frac { \\partial L } { \\partial \\dot { \\gamma } _ { t } } = \\frac { \\partial } { \\partial t } \\frac { \\partial \\langle \\dot { \\gamma } _ { t } , \\mathbf { M } _ { \\gamma _ { t } } \\dot { \\gamma } _ { t } \\rangle } { \\partial \\dot { \\gamma } _ { t } } = \\frac { \\partial } { \\partial t } \\left( 2 \\cdot \\mathbf { M } _ { \\gamma _ { t } } \\dot { \\gamma } _ { t } \\right) = 2 \\left[ \\frac { \\partial \\mathbf { M } _ { \\gamma _ { t } } } { \\partial t } \\dot { \\gamma } _ { t } + \\mathbf { M } _ { \\gamma _ { t } } \\ddot { \\gamma } _ { t } \\right] .", + "type": "interline_equation", + "image_path": "fdd3120429a9c3fe73ff39747859481cbeef7c5310cb76872713fd46a5d54bd6.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 150, + 379, + 461, + 388.3333333333333 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 150, + 388.3333333333333, + 461, + 397.66666666666663 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 150, + 397.66666666666663, + 461, + 406.99999999999994 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 167, + 423 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 167, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 167, + 424 + ], + "score": 1.0, + "content": "Since the term", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 411, + 167, + 424 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 428, + 468, + 507 + ], + "lines": [ + { + "bbox": [ + 142, + 428, + 468, + 507 + ], + "spans": [ + { + "bbox": [ + 142, + 428, + 468, + 507 + ], + "score": 0.95, + "content": "\\frac { \\partial \\mathbf { M } _ { \\gamma _ { t } } } { \\partial t } = \\left[ \\begin{array} { c c c } { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( 1 1 ) } } { \\partial t } } & { \\ldots } & { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( 1 D ) } } { \\partial t } } \\\\ { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( 2 1 ) } } { \\partial t } } & { \\ldots } & { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( 2 D ) } } { \\partial t } } \\\\ { \\vdots } & { \\ddots } & { \\vdots } \\\\ { \\frac { \\partial M _ { \\gamma } ^ { ( D 1 ) } } { \\partial t } } & { \\ldots } & { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( D D ) } } { \\partial t } } \\end{array} \\right] = \\left[ \\begin{array} { c c c c } { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( 1 1 ) } \\mathsf { T } } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } } & { \\ldots } & { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( 1 D ) } } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } } \\\\ { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( 2 1 ) } \\mathsf { T } } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } } & { \\ldots } & { \\frac { \\partial M _ { \\gamma } ^ { ( 2 D ) } } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } } \\\\ { \\vdots } & { \\ddots } & { \\vdots } \\\\ { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( D 1 ) } \\mathsf { T } } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } } & { \\ldots } & { \\frac { \\partial M _ { \\gamma _ { t } } ^ { ( D D ) } } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } } \\end{array} \\right]", + "type": "interline_equation", + "image_path": "0e5b911af8b3dc7debdef80bd7c8c378d6d74c19e517a8f094ad86afcec1e2ed.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 142, + 428, + 468, + 454.3333333333333 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 142, + 454.3333333333333, + 468, + 480.66666666666663 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 142, + 480.66666666666663, + 468, + 506.99999999999994 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 511, + 301, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 511, + 301, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 301, + 524 + ], + "score": 1.0, + "content": "we can write the right hand side of the Eq. 16 as", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 511, + 301, + 524 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 528, + 411, + 563 + ], + "lines": [ + { + "bbox": [ + 200, + 528, + 411, + 563 + ], + "spans": [ + { + "bbox": [ + 200, + 528, + 411, + 563 + ], + "score": 0.93, + "content": "\\frac { \\partial } { \\partial t } \\frac { \\partial L } { \\partial \\dot { \\gamma } _ { t } } = 2 \\left[ ( \\mathbb { I } _ { d } \\otimes \\dot { \\gamma } _ { t } ^ { \\mathsf { T } } ) \\frac { \\partial \\mathrm { v e c } \\left[ \\mathbf { M } _ { \\gamma _ { t } } \\right] } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } + \\mathbf { M } _ { \\gamma _ { t } } \\ddot { \\gamma } _ { t } \\right] .", + "type": "interline_equation", + "image_path": "d18063ef0f01c705a06458c8f3e03d21dea4661362f1155bf24d557a9027637d.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 200, + 528, + 411, + 545.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 200, + 545.5, + 411, + 563.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 299, + 585 + ], + "lines": [ + { + "bbox": [ + 106, + 571, + 299, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 571, + 299, + 586 + ], + "score": 1.0, + "content": "The left hand side term of the Eq. 16 is equal to", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 571, + 299, + 586 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 591, + 437, + 619 + ], + "lines": [ + { + "bbox": [ + 175, + 591, + 437, + 619 + ], + "spans": [ + { + "bbox": [ + 175, + 591, + 437, + 619 + ], + "score": 0.92, + "content": "\\frac { \\partial L } { \\partial \\gamma _ { t } } = \\frac { \\partial } { \\partial \\gamma _ { t } } \\left( ( \\dot { \\gamma } _ { t } \\otimes \\dot { \\gamma } _ { t } ) ^ { \\top } \\mathrm { v e c } \\big [ \\mathbf { M } _ { \\gamma _ { t } } \\big ] \\right) = ( \\dot { \\gamma } _ { t } \\otimes \\dot { \\gamma } _ { t } ) ^ { \\top } \\frac { \\partial \\mathrm { v e c } \\big [ \\mathbf { M } _ { \\gamma _ { t } } \\big ] } { \\partial \\gamma _ { t } } .", + "type": "interline_equation", + "image_path": "2f3165afeb47de826fe4715f1e2ab3562bf6942f1b154ebcde0b71a8b41b2166.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 175, + 591, + 437, + 600.3333333333334 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 175, + 600.3333333333334, + 437, + 609.6666666666667 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 175, + 609.6666666666667, + 437, + 619.0000000000001 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 631, + 357, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 357, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 186, + 646 + ], + "score": 1.0, + "content": "The final system of", + "type": "text" + }, + { + "bbox": [ + 186, + 631, + 199, + 642 + ], + "score": 0.88, + "content": "2 ^ { \\mathrm { n d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 629, + 357, + 646 + ], + "score": 1.0, + "content": "order ordinary differential equations is", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 629, + 357, + 646 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 648, + 455, + 682 + ], + "lines": [ + { + "bbox": [ + 155, + 648, + 455, + 682 + ], + "spans": [ + { + "bbox": [ + 155, + 648, + 455, + 682 + ], + "score": 0.94, + "content": "\\ddot { \\gamma } _ { t } = - \\frac { 1 } { 2 } \\mathbf { M } _ { \\gamma _ { t } } ^ { - 1 } \\left[ 2 \\cdot ( \\mathbb { I } _ { d } \\otimes \\dot { \\gamma } _ { t } ^ { \\intercal } ) \\frac { \\partial \\mathrm { v e c } \\big [ \\mathbf { M } _ { \\gamma _ { t } } \\big ] } { \\partial \\gamma _ { t } } \\dot { \\gamma } _ { t } - \\frac { \\partial \\mathrm { v e c } \\big [ \\mathbf { M } _ { \\gamma _ { t } } \\big ] ^ { \\intercal } } { \\partial \\gamma _ { t } } ( \\dot { \\gamma } _ { t } \\otimes \\dot { \\gamma } _ { t } ) \\right] .", + "type": "interline_equation", + "image_path": "60ea2c0ff1d77896910fd10a553fa5eb1d2d5da3a35d950f72c44ef55ed33231.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 155, + 648, + 455, + 659.3333333333334 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 155, + 659.3333333333334, + 455, + 670.6666666666667 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 155, + 670.6666666666667, + 455, + 682.0000000000001 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 694, + 375, + 709 + ], + "lines": [ + { + "bbox": [ + 105, + 694, + 375, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 375, + 710 + ], + "score": 1.0, + "content": "B THE DERIVATION OF THE RIEMANNIAN METRIC", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 694, + 375, + 710 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 720, + 206, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 720, + 208, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 208, + 733 + ], + "score": 1.0, + "content": "The proof of Theorem 1.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40, + "bbox_fs": [ + 106, + 720, + 208, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 348, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 349, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 349, + 96 + ], + "score": 1.0, + "content": "Proof. As we introduced in Eq. 8 the stochastic generator is", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 99, + 459, + 114 + ], + "lines": [ + { + "bbox": [ + 151, + 99, + 459, + 114 + ], + "spans": [ + { + "bbox": [ + 151, + 99, + 459, + 114 + ], + "score": 0.87, + "content": "f ( \\mathbf { z } ) = \\pmb { \\mu } ( \\mathbf { z } ) + \\pmb { \\sigma } ( \\mathbf { z } ) \\odot \\epsilon , \\qquad \\pmb { \\mu } : \\mathscr { Z } \\pmb { \\chi } , ~ \\pmb { \\sigma } : \\mathscr { Z } \\mathbb { R } _ { + } ^ { D } , ~ \\epsilon \\sim \\mathcal { N } ( \\mathbf { 0 } , \\mathbb { I } _ { D } ) .", + "type": "interline_equation", + "image_path": "90430b51e3fba3f5f00b313b2805212223ae00b8d4230e8ec2acd0c1bfbe2cab.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 151, + 99, + 459, + 114 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 118, + 353, + 131 + ], + "lines": [ + { + "bbox": [ + 106, + 118, + 353, + 132 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 353, + 132 + ], + "score": 1.0, + "content": "Thus, we can compute the corresponding Jacobian as follows", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 124, + 135, + 471, + 281 + ], + "lines": [ + { + "bbox": [ + 124, + 135, + 471, + 281 + ], + "spans": [ + { + "bbox": [ + 124, + 135, + 471, + 281 + ], + "score": 0.33, + "content": "\\begin{array} { c } { { \\displaystyle \\frac { \\partial f ( { \\bf z } ) } { \\partial { \\bf z } } = { \\bf J } _ { \\bf z } = [ \\begin{array} { c c c } { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( 1 ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } & { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( 1 ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } & { { \\bf \\cdots } } & { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( 1 ) } } { \\partial z _ { { \\bf z } } } } } \\\\ { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( 2 ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } & { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( 2 ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } & { { \\bf \\cdots } } & { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( 2 ) } } { \\partial z _ { { \\bf z } } } } } \\\\ { { \\vdots } } & { { \\vdots } } & { { \\ddots } } & { { \\vdots } } \\\\ { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( D ) } } { \\partial z _ { { \\bf z } } } } } & { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( D ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } & { { \\bf \\cdots } } & { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( D ) } } { \\partial z _ { { \\bf z } } } } } \\end{array} ] _ { D ^ { \\times d } } } } \\\\ = [ \\begin{array} { c c c } { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( 1 ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } & { { \\displaystyle \\frac { \\partial \\mu _ { { \\bf z } } ^ { ( 1 ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } & { { \\bf \\cdots } } & { { \\displaystyle \\frac { \\partial \\mu _ { { \\bf z } } ^ { ( 1 ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } \\\\ { { \\displaystyle \\frac { \\partial \\mu _ { { \\bf z } } ^ { ( 2 ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } & \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( 1 ) } } \\partial z _ { { \\bf z } } ^ \\end{array} \\end{array}", + "type": "interline_equation", + "image_path": "c86bb7fcdfe8ee00184c42e6d60b0940a199250419ed7da6575c9259e117d247.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 124, + 135, + 471, + 183.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 124, + 183.66666666666666, + 471, + 232.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 124, + 232.33333333333331, + 471, + 281.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 295, + 411, + 367 + ], + "lines": [ + { + "bbox": [ + 166, + 295, + 411, + 367 + ], + "spans": [ + { + "bbox": [ + 166, + 295, + 411, + 367 + ], + "score": 0.78, + "content": "\\mathbf { S } _ { i } = \\left[ \\begin{array} { c c c c } { \\frac { \\partial \\sigma _ { z } ^ { ( 1 ) } } { \\partial z _ { i } } } & { 0 } & { \\cdots } & { 0 } \\\\ { 0 } & { \\frac { \\partial \\sigma _ { z } ^ { ( 2 ) } } { \\partial z _ { i } } } & { \\cdots } & { 0 } \\\\ { \\vdots } & { \\vdots } & { \\ddots } & { \\vdots } \\\\ { 0 } & { 0 } & { \\cdots } & { \\frac { \\partial \\sigma _ { z } ^ { ( D ) } } { \\partial z _ { i } } } \\end{array} \\right] _ { D \\times D } , i = 1 , \\ldots , d", + "type": "interline_equation", + "image_path": "7e773abfa59cd73cd80d5f6c80458495ca63abe28a9833d2f8f9af581f4570cb.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 166, + 295, + 411, + 319.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 166, + 319.0, + 411, + 343.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 166, + 343.0, + 411, + 367.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 370, + 504, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 329, + 385 + ], + "score": 1.0, + "content": "and the resulting “random” metric in the latent space is", + "type": "text" + }, + { + "bbox": [ + 329, + 370, + 381, + 383 + ], + "score": 0.94, + "content": "\\mathbf { M _ { z } } = \\mathbf { J _ { z } ^ { \\intercal } } \\mathbf { J _ { z } }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 369, + 506, + 385 + ], + "score": 1.0, + "content": ". The randomness is due to the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 382, + 352, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 173, + 393 + ], + "score": 1.0, + "content": "random variable", + "type": "text" + }, + { + "bbox": [ + 174, + 384, + 180, + 392 + ], + "score": 0.61, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 382, + 352, + 393 + ], + "score": 1.0, + "content": ", and thus, we can compute the expectation", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 117, + 399, + 477, + 414 + ], + "lines": [ + { + "bbox": [ + 117, + 399, + 477, + 414 + ], + "spans": [ + { + "bbox": [ + 117, + 399, + 477, + 414 + ], + "score": 0.9, + "content": "\\begin{array} { r l } & { \\mathbf { M _ { z } } = \\mathbb { E } _ { p ( \\epsilon ) } [ \\mathbf { M _ { z } } ] = \\mathbb { E } _ { p ( \\epsilon ) } [ ( \\mathbf { A } + \\mathbf { B } ) ^ { \\mathsf { T } } ( \\mathbf { A } + \\mathbf { B } ) ] = \\mathbb { E } _ { p ( \\epsilon ) } [ \\mathbf { A ^ { \\mathsf { T } } A } + \\mathbf { A ^ { \\mathsf { T } } B } + \\mathbf { B ^ { \\mathsf { T } } A } + \\mathbf { B ^ { \\mathsf { T } } B } ] . } \\end{array}", + "type": "interline_equation", + "image_path": "fa9693fd233415d9060bbd2fa63c66a0b291eac5de3e9eea94dcad887502dfdd.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 117, + 399, + 477, + 414 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 424, + 289, + 436 + ], + "lines": [ + { + "bbox": [ + 106, + 423, + 289, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 289, + 438 + ], + "score": 1.0, + "content": "Using the linearity of expectation we get that", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 441, + 460, + 461 + ], + "lines": [ + { + "bbox": [ + 150, + 441, + 460, + 461 + ], + "spans": [ + { + "bbox": [ + 150, + 441, + 460, + 461 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\mathbb { E } _ { p ( \\epsilon ) } [ \\mathbf { A } ^ { \\top } \\mathbf { B } ] = \\mathbb { E } _ { p ( \\epsilon ) } \\left[ \\mathbf { A } ^ { \\top } [ \\mathbf { S } _ { 1 } \\epsilon , \\mathbf { S } _ { 2 } \\epsilon , \\cdot \\cdot , \\mathbf { S } _ { d } \\epsilon ] \\right] = \\mathbf { A } ^ { \\top } [ \\mathbf { S } _ { 1 } \\mathbb { E } _ { p ( \\epsilon ) } [ \\epsilon ] ^ { * } , \\cdot \\cdot , \\mathbf { 0 } ] = 0 } \\end{array}", + "type": "interline_equation", + "image_path": "b3b647b9a92cdcabb03c5b721cb3b2a0bc0fb57f30fe96187abb68e92c11127a.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 150, + 441, + 460, + 461 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 258, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 259, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 140, + 479 + ], + "score": 1.0, + "content": "because", + "type": "text" + }, + { + "bbox": [ + 141, + 465, + 192, + 479 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { p ( \\epsilon ) } [ \\epsilon ] = \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 464, + 259, + 479 + ], + "score": 1.0, + "content": ". The other term", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 483, + 440, + 594 + ], + "lines": [ + { + "bbox": [ + 156, + 483, + 440, + 594 + ], + "spans": [ + { + "bbox": [ + 156, + 483, + 440, + 594 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { p ( \\epsilon ) } [ \\mathbf { B } ^ { \\mathsf { T } } \\mathbf { B } ] = \\mathbb { E } _ { p ( \\epsilon ) } \\left( \\left[ \\begin{array} { c } { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { 1 } } \\\\ { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { 2 } } \\\\ { \\vdots } \\\\ { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { d } } \\end{array} \\right] _ { d \\times D } \\quad [ \\mathbf { S } _ { 1 } \\epsilon , \\mathbf { S } _ { 2 } \\epsilon , \\cdots , \\mathbf { S } _ { d } \\epsilon ] \\right) } \\\\ & { \\quad \\quad \\quad \\quad = \\mathbb { E } _ { p ( \\epsilon ) } \\left( \\left[ \\begin{array} { c c c c } { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { 1 } \\mathbf { S } _ { 1 } \\epsilon } & { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { 1 } \\mathbf { S } _ { 2 } \\epsilon } & { \\cdots } & { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { 1 } \\mathbf { S } _ { d } \\epsilon } \\\\ { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { 2 } \\mathbf { S } _ { 1 } \\epsilon } & { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { 2 } \\mathbf { S } _ { 2 } \\epsilon } & { \\cdots } & { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { 2 } \\mathbf { S } _ { d } \\epsilon } \\\\ { \\vdots } & { \\vdots } & { \\vdots } \\\\ { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { d } \\mathbf { S } _ { 1 } \\epsilon } & { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { d } \\mathbf { S } _ { 2 } \\epsilon } & { \\cdots } & { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { d } \\mathbf { S } _ { d } \\epsilon } \\end{array} \\right] \\right) } \\end{array}", + "type": "interline_equation", + "image_path": "8053a3dad41117b71642825b1c68bcd1338587d8be1fb76e2a0b26bf77f3b4c0.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 156, + 483, + 440, + 520.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 156, + 520.0, + 440, + 557.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 156, + 557.0, + 440, + 594.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 115, + 627, + 135, + 639 + ], + "lines": [ + { + "bbox": [ + 114, + 626, + 136, + 639 + ], + "spans": [ + { + "bbox": [ + 114, + 626, + 136, + 639 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 141, + 598, + 495, + 706 + ], + "lines": [ + { + "bbox": [ + 141, + 598, + 495, + 706 + ], + "spans": [ + { + "bbox": [ + 141, + 598, + 495, + 706 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { p ( \\epsilon ) } \\left[ \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { i } \\mathbf { S } _ { j } \\epsilon \\right] = \\mathbb { E } _ { p ( \\epsilon ) } \\left[ \\left( \\epsilon _ { 1 } \\frac { \\partial \\sigma _ { z } ^ { ( 1 ) } } { \\partial z _ { i } } , \\epsilon _ { 2 } \\frac { \\partial \\sigma _ { z } ^ { ( 2 ) } } { \\partial z _ { i } } , \\cdots , \\epsilon _ { D } \\frac { \\partial \\sigma _ { z } ^ { ( D ) } } { \\partial z _ { i } } \\right) \\left( \\begin{array} { c } { \\epsilon _ { 1 } \\frac { \\partial \\sigma _ { z } ^ { ( 1 ) } } { \\partial z _ { j } } } \\\\ { \\epsilon _ { 2 } \\frac { \\partial \\sigma _ { z } ^ { ( 2 ) } } { \\partial z _ { j } } } \\\\ { \\vdots } \\\\ { \\epsilon _ { D } \\frac { \\partial \\sigma _ { z } ^ { ( D ) } } { \\partial z _ { j } } } \\end{array} \\right) \\right] } \\\\ & { \\quad = \\mathbb { E } _ { p ( \\epsilon ) } \\left[ \\epsilon _ { 1 } ^ { 2 } \\left( \\frac { \\partial \\sigma _ { z } ^ { ( 1 ) } } { \\partial z _ { i } } \\frac { \\partial \\sigma _ { z } ^ { ( 1 ) } } { \\partial z _ { j } } \\right) + \\epsilon _ { 2 } ^ { 2 } \\left( \\frac { \\partial \\sigma _ { z } ^ { ( 2 ) } } { \\partial z _ { i } } \\frac { \\partial \\sigma _ { z } ^ { ( 2 ) } } { \\partial z _ { j } } \\right) + \\cdots \\epsilon _ { D } ^ { 2 } \\left( \\frac { \\partial \\sigma _ { z } ^ { ( D ) } } { \\partial z _ { i } } \\frac { \\partial \\sigma _ { z } ^ { ( D ) } } { \\partial z _ { j } } \\right) \\right] } \\end{array}", + "type": "interline_equation", + "image_path": "3dc31bf9f7bb03b005dea60eb276689489ea6cd6abc9c8426a980dedcf54e034.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 141, + 598, + 495, + 634.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 141, + 634.0, + 495, + 670.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 141, + 670.0, + 495, + 706.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 718, + 302, + 730 + ], + "lines": [ + { + "bbox": [ + 209, + 718, + 302, + 730 + ], + "spans": [ + { + "bbox": [ + 209, + 718, + 302, + 730 + ], + "score": 0.61, + "content": "\\begin{array} { r } { = d i a g ( \\mathbf { S } _ { i } ) ^ { \\mathsf { T } } d i a g ( \\mathbf { S } _ { j } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "db2856f734af74a1fdca95578c132752b0ad8db23f72ffbf6dd6e61b6a015abc.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 209, + 718, + 302, + 730 + ], + "spans": [], + "index": 22 + } + ] + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 348, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 349, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 349, + 96 + ], + "score": 1.0, + "content": "Proof. As we introduced in Eq. 8 the stochastic generator is", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 81, + 349, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 99, + 459, + 114 + ], + "lines": [ + { + "bbox": [ + 151, + 99, + 459, + 114 + ], + "spans": [ + { + "bbox": [ + 151, + 99, + 459, + 114 + ], + "score": 0.87, + "content": "f ( \\mathbf { z } ) = \\pmb { \\mu } ( \\mathbf { z } ) + \\pmb { \\sigma } ( \\mathbf { z } ) \\odot \\epsilon , \\qquad \\pmb { \\mu } : \\mathscr { Z } \\pmb { \\chi } , ~ \\pmb { \\sigma } : \\mathscr { Z } \\mathbb { R } _ { + } ^ { D } , ~ \\epsilon \\sim \\mathcal { N } ( \\mathbf { 0 } , \\mathbb { I } _ { D } ) .", + "type": "interline_equation", + "image_path": "90430b51e3fba3f5f00b313b2805212223ae00b8d4230e8ec2acd0c1bfbe2cab.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 151, + 99, + 459, + 114 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 118, + 353, + 131 + ], + "lines": [ + { + "bbox": [ + 106, + 118, + 353, + 132 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 353, + 132 + ], + "score": 1.0, + "content": "Thus, we can compute the corresponding Jacobian as follows", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 106, + 118, + 353, + 132 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 124, + 135, + 471, + 281 + ], + "lines": [ + { + "bbox": [ + 124, + 135, + 471, + 281 + ], + "spans": [ + { + "bbox": [ + 124, + 135, + 471, + 281 + ], + "score": 0.33, + "content": "\\begin{array} { c } { { \\displaystyle \\frac { \\partial f ( { \\bf z } ) } { \\partial { \\bf z } } = { \\bf J } _ { \\bf z } = [ \\begin{array} { c c c } { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( 1 ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } & { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( 1 ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } & { { \\bf \\cdots } } & { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( 1 ) } } { \\partial z _ { { \\bf z } } } } } \\\\ { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( 2 ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } & { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( 2 ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } & { { \\bf \\cdots } } & { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( 2 ) } } { \\partial z _ { { \\bf z } } } } } \\\\ { { \\vdots } } & { { \\vdots } } & { { \\ddots } } & { { \\vdots } } \\\\ { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( D ) } } { \\partial z _ { { \\bf z } } } } } & { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( D ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } & { { \\bf \\cdots } } & { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( D ) } } { \\partial z _ { { \\bf z } } } } } \\end{array} ] _ { D ^ { \\times d } } } } \\\\ = [ \\begin{array} { c c c } { { \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( 1 ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } & { { \\displaystyle \\frac { \\partial \\mu _ { { \\bf z } } ^ { ( 1 ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } & { { \\bf \\cdots } } & { { \\displaystyle \\frac { \\partial \\mu _ { { \\bf z } } ^ { ( 1 ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } \\\\ { { \\displaystyle \\frac { \\partial \\mu _ { { \\bf z } } ^ { ( 2 ) } } { \\partial z _ { { \\bf z } } ^ { 2 } } } } & \\displaystyle \\frac { \\partial f _ { { \\bf z } } ^ { ( 1 ) } } \\partial z _ { { \\bf z } } ^ \\end{array} \\end{array}", + "type": "interline_equation", + "image_path": "c86bb7fcdfe8ee00184c42e6d60b0940a199250419ed7da6575c9259e117d247.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 124, + 135, + 471, + 183.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 124, + 183.66666666666666, + 471, + 232.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 124, + 232.33333333333331, + 471, + 281.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 295, + 411, + 367 + ], + "lines": [ + { + "bbox": [ + 166, + 295, + 411, + 367 + ], + "spans": [ + { + "bbox": [ + 166, + 295, + 411, + 367 + ], + "score": 0.78, + "content": "\\mathbf { S } _ { i } = \\left[ \\begin{array} { c c c c } { \\frac { \\partial \\sigma _ { z } ^ { ( 1 ) } } { \\partial z _ { i } } } & { 0 } & { \\cdots } & { 0 } \\\\ { 0 } & { \\frac { \\partial \\sigma _ { z } ^ { ( 2 ) } } { \\partial z _ { i } } } & { \\cdots } & { 0 } \\\\ { \\vdots } & { \\vdots } & { \\ddots } & { \\vdots } \\\\ { 0 } & { 0 } & { \\cdots } & { \\frac { \\partial \\sigma _ { z } ^ { ( D ) } } { \\partial z _ { i } } } \\end{array} \\right] _ { D \\times D } , i = 1 , \\ldots , d", + "type": "interline_equation", + "image_path": "7e773abfa59cd73cd80d5f6c80458495ca63abe28a9833d2f8f9af581f4570cb.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 166, + 295, + 411, + 319.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 166, + 319.0, + 411, + 343.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 166, + 343.0, + 411, + 367.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 370, + 504, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 329, + 385 + ], + "score": 1.0, + "content": "and the resulting “random” metric in the latent space is", + "type": "text" + }, + { + "bbox": [ + 329, + 370, + 381, + 383 + ], + "score": 0.94, + "content": "\\mathbf { M _ { z } } = \\mathbf { J _ { z } ^ { \\intercal } } \\mathbf { J _ { z } }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 369, + 506, + 385 + ], + "score": 1.0, + "content": ". The randomness is due to the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 382, + 352, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 173, + 393 + ], + "score": 1.0, + "content": "random variable", + "type": "text" + }, + { + "bbox": [ + 174, + 384, + 180, + 392 + ], + "score": 0.61, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 382, + 352, + 393 + ], + "score": 1.0, + "content": ", and thus, we can compute the expectation", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 369, + 506, + 393 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 117, + 399, + 477, + 414 + ], + "lines": [ + { + "bbox": [ + 117, + 399, + 477, + 414 + ], + "spans": [ + { + "bbox": [ + 117, + 399, + 477, + 414 + ], + "score": 0.9, + "content": "\\begin{array} { r l } & { \\mathbf { M _ { z } } = \\mathbb { E } _ { p ( \\epsilon ) } [ \\mathbf { M _ { z } } ] = \\mathbb { E } _ { p ( \\epsilon ) } [ ( \\mathbf { A } + \\mathbf { B } ) ^ { \\mathsf { T } } ( \\mathbf { A } + \\mathbf { B } ) ] = \\mathbb { E } _ { p ( \\epsilon ) } [ \\mathbf { A ^ { \\mathsf { T } } A } + \\mathbf { A ^ { \\mathsf { T } } B } + \\mathbf { B ^ { \\mathsf { T } } A } + \\mathbf { B ^ { \\mathsf { T } } B } ] . } \\end{array}", + "type": "interline_equation", + "image_path": "fa9693fd233415d9060bbd2fa63c66a0b291eac5de3e9eea94dcad887502dfdd.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 117, + 399, + 477, + 414 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 424, + 289, + 436 + ], + "lines": [ + { + "bbox": [ + 106, + 423, + 289, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 289, + 438 + ], + "score": 1.0, + "content": "Using the linearity of expectation we get that", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 423, + 289, + 438 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 441, + 460, + 461 + ], + "lines": [ + { + "bbox": [ + 150, + 441, + 460, + 461 + ], + "spans": [ + { + "bbox": [ + 150, + 441, + 460, + 461 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\mathbb { E } _ { p ( \\epsilon ) } [ \\mathbf { A } ^ { \\top } \\mathbf { B } ] = \\mathbb { E } _ { p ( \\epsilon ) } \\left[ \\mathbf { A } ^ { \\top } [ \\mathbf { S } _ { 1 } \\epsilon , \\mathbf { S } _ { 2 } \\epsilon , \\cdot \\cdot , \\mathbf { S } _ { d } \\epsilon ] \\right] = \\mathbf { A } ^ { \\top } [ \\mathbf { S } _ { 1 } \\mathbb { E } _ { p ( \\epsilon ) } [ \\epsilon ] ^ { * } , \\cdot \\cdot , \\mathbf { 0 } ] = 0 } \\end{array}", + "type": "interline_equation", + "image_path": "b3b647b9a92cdcabb03c5b721cb3b2a0bc0fb57f30fe96187abb68e92c11127a.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 150, + 441, + 460, + 461 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 258, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 259, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 140, + 479 + ], + "score": 1.0, + "content": "because", + "type": "text" + }, + { + "bbox": [ + 141, + 465, + 192, + 479 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { p ( \\epsilon ) } [ \\epsilon ] = \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 464, + 259, + 479 + ], + "score": 1.0, + "content": ". The other term", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 464, + 259, + 479 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 483, + 440, + 594 + ], + "lines": [ + { + "bbox": [ + 156, + 483, + 440, + 594 + ], + "spans": [ + { + "bbox": [ + 156, + 483, + 440, + 594 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { p ( \\epsilon ) } [ \\mathbf { B } ^ { \\mathsf { T } } \\mathbf { B } ] = \\mathbb { E } _ { p ( \\epsilon ) } \\left( \\left[ \\begin{array} { c } { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { 1 } } \\\\ { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { 2 } } \\\\ { \\vdots } \\\\ { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { d } } \\end{array} \\right] _ { d \\times D } \\quad [ \\mathbf { S } _ { 1 } \\epsilon , \\mathbf { S } _ { 2 } \\epsilon , \\cdots , \\mathbf { S } _ { d } \\epsilon ] \\right) } \\\\ & { \\quad \\quad \\quad \\quad = \\mathbb { E } _ { p ( \\epsilon ) } \\left( \\left[ \\begin{array} { c c c c } { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { 1 } \\mathbf { S } _ { 1 } \\epsilon } & { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { 1 } \\mathbf { S } _ { 2 } \\epsilon } & { \\cdots } & { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { 1 } \\mathbf { S } _ { d } \\epsilon } \\\\ { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { 2 } \\mathbf { S } _ { 1 } \\epsilon } & { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { 2 } \\mathbf { S } _ { 2 } \\epsilon } & { \\cdots } & { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { 2 } \\mathbf { S } _ { d } \\epsilon } \\\\ { \\vdots } & { \\vdots } & { \\vdots } \\\\ { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { d } \\mathbf { S } _ { 1 } \\epsilon } & { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { d } \\mathbf { S } _ { 2 } \\epsilon } & { \\cdots } & { \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { d } \\mathbf { S } _ { d } \\epsilon } \\end{array} \\right] \\right) } \\end{array}", + "type": "interline_equation", + "image_path": "8053a3dad41117b71642825b1c68bcd1338587d8be1fb76e2a0b26bf77f3b4c0.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 156, + 483, + 440, + 520.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 156, + 520.0, + 440, + 557.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 156, + 557.0, + 440, + 594.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 115, + 627, + 135, + 639 + ], + "lines": [ + { + "bbox": [ + 114, + 626, + 136, + 639 + ], + "spans": [ + { + "bbox": [ + 114, + 626, + 136, + 639 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 114, + 626, + 136, + 639 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 141, + 598, + 495, + 706 + ], + "lines": [ + { + "bbox": [ + 141, + 598, + 495, + 706 + ], + "spans": [ + { + "bbox": [ + 141, + 598, + 495, + 706 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { p ( \\epsilon ) } \\left[ \\epsilon ^ { \\mathsf { T } } \\mathbf { S } _ { i } \\mathbf { S } _ { j } \\epsilon \\right] = \\mathbb { E } _ { p ( \\epsilon ) } \\left[ \\left( \\epsilon _ { 1 } \\frac { \\partial \\sigma _ { z } ^ { ( 1 ) } } { \\partial z _ { i } } , \\epsilon _ { 2 } \\frac { \\partial \\sigma _ { z } ^ { ( 2 ) } } { \\partial z _ { i } } , \\cdots , \\epsilon _ { D } \\frac { \\partial \\sigma _ { z } ^ { ( D ) } } { \\partial z _ { i } } \\right) \\left( \\begin{array} { c } { \\epsilon _ { 1 } \\frac { \\partial \\sigma _ { z } ^ { ( 1 ) } } { \\partial z _ { j } } } \\\\ { \\epsilon _ { 2 } \\frac { \\partial \\sigma _ { z } ^ { ( 2 ) } } { \\partial z _ { j } } } \\\\ { \\vdots } \\\\ { \\epsilon _ { D } \\frac { \\partial \\sigma _ { z } ^ { ( D ) } } { \\partial z _ { j } } } \\end{array} \\right) \\right] } \\\\ & { \\quad = \\mathbb { E } _ { p ( \\epsilon ) } \\left[ \\epsilon _ { 1 } ^ { 2 } \\left( \\frac { \\partial \\sigma _ { z } ^ { ( 1 ) } } { \\partial z _ { i } } \\frac { \\partial \\sigma _ { z } ^ { ( 1 ) } } { \\partial z _ { j } } \\right) + \\epsilon _ { 2 } ^ { 2 } \\left( \\frac { \\partial \\sigma _ { z } ^ { ( 2 ) } } { \\partial z _ { i } } \\frac { \\partial \\sigma _ { z } ^ { ( 2 ) } } { \\partial z _ { j } } \\right) + \\cdots \\epsilon _ { D } ^ { 2 } \\left( \\frac { \\partial \\sigma _ { z } ^ { ( D ) } } { \\partial z _ { i } } \\frac { \\partial \\sigma _ { z } ^ { ( D ) } } { \\partial z _ { j } } \\right) \\right] } \\end{array}", + "type": "interline_equation", + "image_path": "3dc31bf9f7bb03b005dea60eb276689489ea6cd6abc9c8426a980dedcf54e034.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 141, + 598, + 495, + 634.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 141, + 634.0, + 495, + 670.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 141, + 670.0, + 495, + 706.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 718, + 302, + 730 + ], + "lines": [ + { + "bbox": [ + 209, + 718, + 302, + 730 + ], + "spans": [ + { + "bbox": [ + 209, + 718, + 302, + 730 + ], + "score": 0.61, + "content": "\\begin{array} { r } { = d i a g ( \\mathbf { S } _ { i } ) ^ { \\mathsf { T } } d i a g ( \\mathbf { S } _ { j } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "db2856f734af74a1fdca95578c132752b0ad8db23f72ffbf6dd6e61b6a015abc.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 209, + 718, + 302, + 730 + ], + "spans": [], + "index": 22 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 263, + 96 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 264, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 140, + 97 + ], + "score": 1.0, + "content": "because", + "type": "text" + }, + { + "bbox": [ + 140, + 82, + 261, + 96 + ], + "score": 0.81, + "content": "\\mathbb { E } _ { p ( \\epsilon ) } [ \\epsilon _ { i } ^ { 2 } ] = 1 , \\forall i = 1 , \\dots , D", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 81, + 264, + 97 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 101, + 312, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 99, + 314, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 153, + 118 + ], + "score": 1.0, + "content": "The matrix", + "type": "text" + }, + { + "bbox": [ + 153, + 101, + 194, + 114 + ], + "score": 0.93, + "content": "\\mathbf { A } = \\mathbf { J } _ { \\mathbf { z } } ^ { ( \\mu ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 99, + 314, + 118 + ], + "score": 1.0, + "content": "and for the variance network", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 119, + 391, + 190 + ], + "lines": [ + { + "bbox": [ + 218, + 119, + 391, + 190 + ], + "spans": [ + { + "bbox": [ + 218, + 119, + 391, + 190 + ], + "score": 0.94, + "content": "\\mathbf { J } _ { \\mathbf { z } } ^ { ( \\sigma ) } = \\left[ \\begin{array} { c c c c } { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( 1 ) } } { \\partial z _ { 1 } } } & { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( 1 ) } } { \\partial z _ { 2 } } } & { \\cdot \\cdot \\cdot } & { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( 1 ) } } { \\partial z _ { d } } } \\\\ { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( 2 ) } } { \\partial z _ { 1 } } } & { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( 2 ) } } { \\partial z _ { 2 } } } & { \\cdot \\cdot \\cdot } & { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( 2 ) } } { \\partial z _ { d } } } \\\\ { \\vdots } & { \\vdots } & { \\ddots } & { \\vdots } \\\\ { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( D ) } } { \\partial z _ { 1 } } } & { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( D ) } } { \\partial z _ { 2 } } } & { \\cdot \\cdot \\cdot } & { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( D ) } } { \\partial z _ { d } } } \\end{array} \\right]", + "type": "interline_equation", + "image_path": "c676e465341bbd54efae73698e0ea0b5531fa1329be2af248aa8d72d870142e5.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 218, + 119, + 391, + 133.2 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 218, + 133.2, + 391, + 147.39999999999998 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 218, + 147.39999999999998, + 391, + 161.59999999999997 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 218, + 161.59999999999997, + 391, + 175.79999999999995 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 218, + 175.79999999999995, + 391, + 189.99999999999994 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 194, + 503, + 225 + ], + "lines": [ + { + "bbox": [ + 102, + 192, + 509, + 215 + ], + "spans": [ + { + "bbox": [ + 102, + 192, + 190, + 215 + ], + "score": 1.0, + "content": "it is easy to see that", + "type": "text" + }, + { + "bbox": [ + 190, + 194, + 309, + 214 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { p ( \\epsilon ) } [ \\mathbf { B } ^ { \\intercal } \\mathbf { B } ] = \\left( \\mathbf { J } _ { \\mathbf { z } } ^ { ( \\sigma ) } \\right) ^ { \\intercal } \\mathbf { J } _ { \\mathbf { z } } ^ { ( \\sigma ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 192, + 509, + 215 + ], + "score": 1.0, + "content": ". So the expectation of the induced Riemannian", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 212, + 286, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 286, + 225 + ], + "score": 1.0, + "content": "metric in the latent space by the generator is", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 228, + 382, + 251 + ], + "lines": [ + { + "bbox": [ + 228, + 228, + 382, + 251 + ], + "spans": [ + { + "bbox": [ + 228, + 228, + 382, + 251 + ], + "score": 0.93, + "content": "\\bar { \\mathbf { M _ { z } } } = \\left( \\mathbf { J _ { z } ^ { ( \\mu ) } } \\right) ^ { \\mathsf { T } } \\mathbf { J _ { z } ^ { ( \\mu ) } } + \\left( \\mathbf { J _ { z } ^ { ( \\sigma ) } } \\right) ^ { \\mathsf { T } } \\mathbf { J _ { z } ^ { ( \\sigma ) } }", + "type": "interline_equation", + "image_path": "9bc76b185cc7440cddbfecc6482d114be433ed6e502e4d358679c315aa83dba4.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 228, + 228, + 382, + 251 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 254, + 216, + 266 + ], + "lines": [ + { + "bbox": [ + 106, + 254, + 217, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 217, + 267 + ], + "score": 1.0, + "content": "which concludes the proof.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 106, + 281, + 432, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 280, + 434, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 434, + 297 + ], + "score": 1.0, + "content": "C INFLUENCE OF VARIANCE ON THE MARGINAL LIKELIHOOD", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 306, + 506, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 305, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 362, + 320 + ], + "score": 1.0, + "content": "We trained a VAE on the digits 0 and 1 of the MNIST scaled to", + "type": "text" + }, + { + "bbox": [ + 362, + 307, + 390, + 319 + ], + "score": 0.88, + "content": "[ - 1 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 305, + 506, + 320 + ], + "score": 1.0, + "content": ". We randomly split the data", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 116, + 330 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 318, + 136, + 329 + ], + "score": 0.89, + "content": "9 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 317, + 187, + 330 + ], + "score": 1.0, + "content": "training and", + "type": "text" + }, + { + "bbox": [ + 187, + 318, + 207, + 329 + ], + "score": 0.89, + "content": "1 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "test data, ensuring balanced classes. First, we only trained the encoder and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 329, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 506, + 342 + ], + "score": 1.0, + "content": "the mean function of the decoder. Then, keeping these fixed, we trained two variance functions: one", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 339, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 353 + ], + "score": 1.0, + "content": "based on standard deep neural network architecture, and the other using our proposed RBF model.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 350, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 505, + 363 + ], + "score": 1.0, + "content": "Clearly, we have two generators with the same mean function, but different variance functions.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "score": 1.0, + "content": "Below we present the architectures for the standard neural networks. For the RBF model we used", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 372, + 195, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 166, + 384 + ], + "score": 1.0, + "content": "32 centers and", + "type": "text" + }, + { + "bbox": [ + 167, + 373, + 191, + 383 + ], + "score": 0.9, + "content": "a = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 372, + 195, + 384 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15 + }, + { + "type": "table", + "bbox": [ + 167, + 391, + 444, + 453 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 167, + 391, + 444, + 453 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 167, + 391, + 444, + 453 + ], + "spans": [ + { + "bbox": [ + 167, + 391, + 444, + 453 + ], + "score": 0.978, + "html": "
Encoder/DecoderLayer 1Layer 2Layer 3
64,(softplus)32,(softplus)d,(linear)
64,(softplus)32, (softplus)d,(softplus)
μ32,(softplus)64,(softplus)D,(tanh)
0032, (softplus)64,(softplus)D,(softplus)
", + "type": "table", + "image_path": "7f19fbe5168f3435fa71b810d479219bed010134766547557386ad56f938c575.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 167, + 391, + 444, + 411.6666666666667 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 167, + 411.6666666666667, + 444, + 432.33333333333337 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 167, + 432.33333333333337, + 444, + 453.00000000000006 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 109, + 462, + 503, + 506 + ], + "lines": [ + { + "bbox": [ + 107, + 462, + 504, + 474 + ], + "spans": [ + { + "bbox": [ + 107, + 462, + 504, + 474 + ], + "score": 1.0, + "content": "The numbers corresponds to the layer size together with the activation function in parenthesis. Fur-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 472, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 505, + 485 + ], + "score": 1.0, + "content": "ther, the mean and the variance functions share the weights of the first layer. The input space", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 483, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 162, + 497 + ], + "score": 1.0, + "content": "dimension is", + "type": "text" + }, + { + "bbox": [ + 162, + 484, + 203, + 494 + ], + "score": 0.9, + "content": "D = 7 8 4", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 483, + 393, + 497 + ], + "score": 1.0, + "content": ". Then, we computed the marginal likelihood", + "type": "text" + }, + { + "bbox": [ + 394, + 484, + 414, + 496 + ], + "score": 0.92, + "content": "p ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 483, + 505, + 497 + ], + "score": 1.0, + "content": "of the test data using", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 494, + 174, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 174, + 506 + ], + "score": 1.0, + "content": "Monte Carlo as:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 525, + 420, + 555 + ], + "lines": [ + { + "bbox": [ + 190, + 525, + 420, + 555 + ], + "spans": [ + { + "bbox": [ + 190, + 525, + 420, + 555 + ], + "score": 0.93, + "content": "p ( \\mathbf { x } ) = \\int _ { \\mathbb { Z } } p ( \\mathbf { x } | \\mathbf { z } ) p ( \\mathbf { z } ) \\mathrm { d } \\mathbf { z } \\simeq \\frac { 1 } { S } \\sum _ { s = 1 } p ( \\mathbf { x } | \\mathbf { z } _ { s } ) , \\quad \\mathbf { z } _ { s } \\sim p ( \\mathbf { z } )", + "type": "interline_equation", + "image_path": "1a757a08df1275929556d32b4313e786bc65a950a73b21d9b12328aa9c5c5997.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 190, + 525, + 420, + 540.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 190, + 540.0, + 420, + 555.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 559, + 503, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 558, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 130, + 571 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 131, + 559, + 177, + 570 + ], + "score": 0.88, + "content": "S = 1 0 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 558, + 505, + 571 + ], + "score": 1.0, + "content": "samples. The generator with the standard variance function achieved -68.25 mean", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 570, + 454, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 454, + 583 + ], + "score": 1.0, + "content": "log-marginal likelihood, while our proposed model -50.34, where the higher the better.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 586, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "score": 1.0, + "content": "The reason why the proposed RBF model performs better can be easily analyzed. The marginal", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "likelihood under the Monte Carlo estimation is, essentially, a large Gaussian mixture model with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 608, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 104, + 608, + 168, + 624 + ], + "score": 1.0, + "content": "equal weights", + "type": "text" + }, + { + "bbox": [ + 168, + 609, + 176, + 622 + ], + "score": 0.87, + "content": "\\textstyle { \\frac { 1 } { S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 608, + 506, + 624 + ], + "score": 1.0, + "content": ". Each mixture component is defined by the generator through the likelihood", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 621, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 250, + 635 + ], + "score": 0.92, + "content": "p ( \\mathbf { x } | \\mathbf { z } ) = \\mathcal { N } \\left( \\mathbf { x } \\mid \\pmb { \\mu } _ { \\theta } ( \\mathbf { z } ) , \\mathbb { I } _ { D } \\pmb { \\sigma } _ { \\theta } ^ { 2 } ( \\mathbf { z } ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 621, + 506, + 634 + ], + "score": 1.0, + "content": ". Considering the variance term, the standard neural network", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 104, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "approach is trained on the given data points and the corresponding latent codes. Unfortunately,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "its behavior is arbitrary in regions where there are not any encoded data. On the other hand our", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 104, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "proposed model assigns large variance to these regions, while on the regions where we have latent", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "codes its behavior will be approximately the same with the standard neural network. This implies", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 258, + 689 + ], + "score": 1.0, + "content": "that the resulting marginal likelihood", + "type": "text" + }, + { + "bbox": [ + 258, + 677, + 278, + 689 + ], + "score": 0.92, + "content": "p ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "for the two models are highly similar in regions of high", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "data density, but significantly different elsewhere. The RBF variance model ensures that mixture", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "components in these regions have high variance, whereas the standard architecture assign arbitrary", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 268, + 722 + ], + "score": 1.0, + "content": "variance. Consequently, the RBF-based", + "type": "text" + }, + { + "bbox": [ + 268, + 710, + 288, + 721 + ], + "score": 0.92, + "content": "p ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "assigns minimal density to regions with no data, and,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 721, + 309, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 309, + 732 + ], + "score": 1.0, + "content": "thus, attains higher marginal likelihood elsewhere.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 36 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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": "13", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 255, + 505, + 265 + ], + "lines": [ + { + "bbox": [ + 496, + 256, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 496, + 256, + 505, + 266 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 263, + 96 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 264, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 140, + 97 + ], + "score": 1.0, + "content": "because", + "type": "text" + }, + { + "bbox": [ + 140, + 82, + 261, + 96 + ], + "score": 0.81, + "content": "\\mathbb { E } _ { p ( \\epsilon ) } [ \\epsilon _ { i } ^ { 2 } ] = 1 , \\forall i = 1 , \\dots , D", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 81, + 264, + 97 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 81, + 264, + 97 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 101, + 312, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 99, + 314, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 153, + 118 + ], + "score": 1.0, + "content": "The matrix", + "type": "text" + }, + { + "bbox": [ + 153, + 101, + 194, + 114 + ], + "score": 0.93, + "content": "\\mathbf { A } = \\mathbf { J } _ { \\mathbf { z } } ^ { ( \\mu ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 99, + 314, + 118 + ], + "score": 1.0, + "content": "and for the variance network", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 99, + 314, + 118 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 119, + 391, + 190 + ], + "lines": [ + { + "bbox": [ + 218, + 119, + 391, + 190 + ], + "spans": [ + { + "bbox": [ + 218, + 119, + 391, + 190 + ], + "score": 0.94, + "content": "\\mathbf { J } _ { \\mathbf { z } } ^ { ( \\sigma ) } = \\left[ \\begin{array} { c c c c } { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( 1 ) } } { \\partial z _ { 1 } } } & { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( 1 ) } } { \\partial z _ { 2 } } } & { \\cdot \\cdot \\cdot } & { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( 1 ) } } { \\partial z _ { d } } } \\\\ { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( 2 ) } } { \\partial z _ { 1 } } } & { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( 2 ) } } { \\partial z _ { 2 } } } & { \\cdot \\cdot \\cdot } & { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( 2 ) } } { \\partial z _ { d } } } \\\\ { \\vdots } & { \\vdots } & { \\ddots } & { \\vdots } \\\\ { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( D ) } } { \\partial z _ { 1 } } } & { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( D ) } } { \\partial z _ { 2 } } } & { \\cdot \\cdot \\cdot } & { \\frac { \\partial \\sigma _ { \\mathbf { z } } ^ { ( D ) } } { \\partial z _ { d } } } \\end{array} \\right]", + "type": "interline_equation", + "image_path": "c676e465341bbd54efae73698e0ea0b5531fa1329be2af248aa8d72d870142e5.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 218, + 119, + 391, + 133.2 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 218, + 133.2, + 391, + 147.39999999999998 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 218, + 147.39999999999998, + 391, + 161.59999999999997 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 218, + 161.59999999999997, + 391, + 175.79999999999995 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 218, + 175.79999999999995, + 391, + 189.99999999999994 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 194, + 503, + 225 + ], + "lines": [ + { + "bbox": [ + 102, + 192, + 509, + 215 + ], + "spans": [ + { + "bbox": [ + 102, + 192, + 190, + 215 + ], + "score": 1.0, + "content": "it is easy to see that", + "type": "text" + }, + { + "bbox": [ + 190, + 194, + 309, + 214 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { p ( \\epsilon ) } [ \\mathbf { B } ^ { \\intercal } \\mathbf { B } ] = \\left( \\mathbf { J } _ { \\mathbf { z } } ^ { ( \\sigma ) } \\right) ^ { \\intercal } \\mathbf { J } _ { \\mathbf { z } } ^ { ( \\sigma ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 192, + 509, + 215 + ], + "score": 1.0, + "content": ". So the expectation of the induced Riemannian", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 212, + 286, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 286, + 225 + ], + "score": 1.0, + "content": "metric in the latent space by the generator is", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 102, + 192, + 509, + 225 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 228, + 382, + 251 + ], + "lines": [ + { + "bbox": [ + 228, + 228, + 382, + 251 + ], + "spans": [ + { + "bbox": [ + 228, + 228, + 382, + 251 + ], + "score": 0.93, + "content": "\\bar { \\mathbf { M _ { z } } } = \\left( \\mathbf { J _ { z } ^ { ( \\mu ) } } \\right) ^ { \\mathsf { T } } \\mathbf { J _ { z } ^ { ( \\mu ) } } + \\left( \\mathbf { J _ { z } ^ { ( \\sigma ) } } \\right) ^ { \\mathsf { T } } \\mathbf { J _ { z } ^ { ( \\sigma ) } }", + "type": "interline_equation", + "image_path": "9bc76b185cc7440cddbfecc6482d114be433ed6e502e4d358679c315aa83dba4.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 228, + 228, + 382, + 251 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 254, + 216, + 266 + ], + "lines": [ + { + "bbox": [ + 106, + 254, + 217, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 217, + 267 + ], + "score": 1.0, + "content": "which concludes the proof.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 254, + 217, + 267 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 281, + 432, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 280, + 434, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 434, + 297 + ], + "score": 1.0, + "content": "C INFLUENCE OF VARIANCE ON THE MARGINAL LIKELIHOOD", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 306, + 506, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 305, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 362, + 320 + ], + "score": 1.0, + "content": "We trained a VAE on the digits 0 and 1 of the MNIST scaled to", + "type": "text" + }, + { + "bbox": [ + 362, + 307, + 390, + 319 + ], + "score": 0.88, + "content": "[ - 1 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 305, + 506, + 320 + ], + "score": 1.0, + "content": ". We randomly split the data", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 116, + 330 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 318, + 136, + 329 + ], + "score": 0.89, + "content": "9 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 317, + 187, + 330 + ], + "score": 1.0, + "content": "training and", + "type": "text" + }, + { + "bbox": [ + 187, + 318, + 207, + 329 + ], + "score": 0.89, + "content": "1 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "test data, ensuring balanced classes. First, we only trained the encoder and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 329, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 506, + 342 + ], + "score": 1.0, + "content": "the mean function of the decoder. Then, keeping these fixed, we trained two variance functions: one", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 339, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 353 + ], + "score": 1.0, + "content": "based on standard deep neural network architecture, and the other using our proposed RBF model.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 350, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 505, + 363 + ], + "score": 1.0, + "content": "Clearly, we have two generators with the same mean function, but different variance functions.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "score": 1.0, + "content": "Below we present the architectures for the standard neural networks. For the RBF model we used", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 372, + 195, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 166, + 384 + ], + "score": 1.0, + "content": "32 centers and", + "type": "text" + }, + { + "bbox": [ + 167, + 373, + 191, + 383 + ], + "score": 0.9, + "content": "a = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 372, + 195, + 384 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 305, + 506, + 384 + ] + }, + { + "type": "table", + "bbox": [ + 167, + 391, + 444, + 453 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 167, + 391, + 444, + 453 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 167, + 391, + 444, + 453 + ], + "spans": [ + { + "bbox": [ + 167, + 391, + 444, + 453 + ], + "score": 0.978, + "html": "
Encoder/DecoderLayer 1Layer 2Layer 3
64,(softplus)32,(softplus)d,(linear)
64,(softplus)32, (softplus)d,(softplus)
μ32,(softplus)64,(softplus)D,(tanh)
0032, (softplus)64,(softplus)D,(softplus)
", + "type": "table", + "image_path": "7f19fbe5168f3435fa71b810d479219bed010134766547557386ad56f938c575.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 167, + 391, + 444, + 411.6666666666667 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 167, + 411.6666666666667, + 444, + 432.33333333333337 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 167, + 432.33333333333337, + 444, + 453.00000000000006 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 109, + 462, + 503, + 506 + ], + "lines": [ + { + "bbox": [ + 107, + 462, + 504, + 474 + ], + "spans": [ + { + "bbox": [ + 107, + 462, + 504, + 474 + ], + "score": 1.0, + "content": "The numbers corresponds to the layer size together with the activation function in parenthesis. Fur-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 472, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 505, + 485 + ], + "score": 1.0, + "content": "ther, the mean and the variance functions share the weights of the first layer. The input space", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 483, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 162, + 497 + ], + "score": 1.0, + "content": "dimension is", + "type": "text" + }, + { + "bbox": [ + 162, + 484, + 203, + 494 + ], + "score": 0.9, + "content": "D = 7 8 4", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 483, + 393, + 497 + ], + "score": 1.0, + "content": ". Then, we computed the marginal likelihood", + "type": "text" + }, + { + "bbox": [ + 394, + 484, + 414, + 496 + ], + "score": 0.92, + "content": "p ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 483, + 505, + 497 + ], + "score": 1.0, + "content": "of the test data using", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 494, + 174, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 174, + 506 + ], + "score": 1.0, + "content": "Monte Carlo as:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 462, + 505, + 506 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 525, + 420, + 555 + ], + "lines": [ + { + "bbox": [ + 190, + 525, + 420, + 555 + ], + "spans": [ + { + "bbox": [ + 190, + 525, + 420, + 555 + ], + "score": 0.93, + "content": "p ( \\mathbf { x } ) = \\int _ { \\mathbb { Z } } p ( \\mathbf { x } | \\mathbf { z } ) p ( \\mathbf { z } ) \\mathrm { d } \\mathbf { z } \\simeq \\frac { 1 } { S } \\sum _ { s = 1 } p ( \\mathbf { x } | \\mathbf { z } _ { s } ) , \\quad \\mathbf { z } _ { s } \\sim p ( \\mathbf { z } )", + "type": "interline_equation", + "image_path": "1a757a08df1275929556d32b4313e786bc65a950a73b21d9b12328aa9c5c5997.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 190, + 525, + 420, + 540.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 190, + 540.0, + 420, + 555.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 559, + 503, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 558, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 130, + 571 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 131, + 559, + 177, + 570 + ], + "score": 0.88, + "content": "S = 1 0 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 558, + 505, + 571 + ], + "score": 1.0, + "content": "samples. The generator with the standard variance function achieved -68.25 mean", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 570, + 454, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 454, + 583 + ], + "score": 1.0, + "content": "log-marginal likelihood, while our proposed model -50.34, where the higher the better.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 558, + 505, + 583 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 586, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "score": 1.0, + "content": "The reason why the proposed RBF model performs better can be easily analyzed. The marginal", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "likelihood under the Monte Carlo estimation is, essentially, a large Gaussian mixture model with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 608, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 104, + 608, + 168, + 624 + ], + "score": 1.0, + "content": "equal weights", + "type": "text" + }, + { + "bbox": [ + 168, + 609, + 176, + 622 + ], + "score": 0.87, + "content": "\\textstyle { \\frac { 1 } { S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 608, + 506, + 624 + ], + "score": 1.0, + "content": ". Each mixture component is defined by the generator through the likelihood", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 621, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 250, + 635 + ], + "score": 0.92, + "content": "p ( \\mathbf { x } | \\mathbf { z } ) = \\mathcal { N } \\left( \\mathbf { x } \\mid \\pmb { \\mu } _ { \\theta } ( \\mathbf { z } ) , \\mathbb { I } _ { D } \\pmb { \\sigma } _ { \\theta } ^ { 2 } ( \\mathbf { z } ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 621, + 506, + 634 + ], + "score": 1.0, + "content": ". Considering the variance term, the standard neural network", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 104, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "approach is trained on the given data points and the corresponding latent codes. Unfortunately,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "its behavior is arbitrary in regions where there are not any encoded data. On the other hand our", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 104, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "proposed model assigns large variance to these regions, while on the regions where we have latent", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "codes its behavior will be approximately the same with the standard neural network. This implies", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 258, + 689 + ], + "score": 1.0, + "content": "that the resulting marginal likelihood", + "type": "text" + }, + { + "bbox": [ + 258, + 677, + 278, + 689 + ], + "score": 0.92, + "content": "p ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "for the two models are highly similar in regions of high", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "data density, but significantly different elsewhere. The RBF variance model ensures that mixture", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "components in these regions have high variance, whereas the standard architecture assign arbitrary", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 268, + 722 + ], + "score": 1.0, + "content": "variance. Consequently, the RBF-based", + "type": "text" + }, + { + "bbox": [ + 268, + 710, + 288, + 721 + ], + "score": 0.92, + "content": "p ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "assigns minimal density to regions with no data, and,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 721, + 309, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 309, + 732 + ], + "score": 1.0, + "content": "thus, attains higher marginal likelihood elsewhere.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 36, + "bbox_fs": [ + 104, + 587, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 393, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 395, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 395, + 96 + ], + "score": 1.0, + "content": "D IMPLEMENTATION DETAILS FOR THE EXPERIMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 341, + 123 + ], + "lines": [ + { + "bbox": [ + 105, + 108, + 342, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 108, + 342, + 126 + ], + "score": 1.0, + "content": "Algorithm 1 The training of a VAE that ensures geometry", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 109, + 126, + 414, + 160 + ], + "lines": [ + { + "bbox": [ + 107, + 126, + 367, + 139 + ], + "spans": [ + { + "bbox": [ + 107, + 126, + 339, + 139 + ], + "score": 1.0, + "content": "Output: the estimated parameters of the neural networks", + "type": "text" + }, + { + "bbox": [ + 339, + 127, + 367, + 138 + ], + "score": 0.88, + "content": "\\theta , \\phi , \\psi", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 110, + 137, + 415, + 151 + ], + "spans": [ + { + "bbox": [ + 110, + 137, + 161, + 151 + ], + "score": 1.0, + "content": "1: Train the", + "type": "text" + }, + { + "bbox": [ + 162, + 139, + 208, + 150 + ], + "score": 0.84, + "content": "\\mu _ { \\phi } , \\pmb { \\sigma } _ { \\phi } , \\pmb { \\mu } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 137, + 374, + 151 + ], + "score": 1.0, + "content": "as in Kingma & Welling (2014), keeping", + "type": "text" + }, + { + "bbox": [ + 375, + 140, + 389, + 150 + ], + "score": 0.83, + "content": "\\sigma _ { \\psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 137, + 415, + 151 + ], + "score": 1.0, + "content": "fixed.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 110, + 148, + 276, + 161 + ], + "spans": [ + { + "bbox": [ + 110, + 148, + 162, + 160 + ], + "score": 1.0, + "content": "2: Train the", + "type": "text" + }, + { + "bbox": [ + 162, + 151, + 176, + 161 + ], + "score": 0.87, + "content": "\\sigma _ { \\psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 148, + 276, + 160 + ], + "score": 1.0, + "content": "as explained in Sec. 4.1.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 184, + 505, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 185, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 505, + 197 + ], + "score": 1.0, + "content": "Details for Experiments 5.1, 5.2 & 5.3. The pixel values of the images are scaled to the interval", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 195, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 107, + 196, + 127, + 208 + ], + "score": 0.55, + "content": "[ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 195, + 232, + 209 + ], + "score": 1.0, + "content": ". We use for the functions", + "type": "text" + }, + { + "bbox": [ + 232, + 198, + 279, + 209 + ], + "score": 0.92, + "content": "\\mu _ { \\phi } , \\pmb { \\sigma } _ { \\phi } , \\pmb { \\mu } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 195, + 505, + 209 + ], + "score": 1.0, + "content": "multilayer perceptron (MLP) deep neural networks, and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 207, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 104, + 207, + 135, + 223 + ], + "score": 1.0, + "content": "for the", + "type": "text" + }, + { + "bbox": [ + 135, + 209, + 149, + 222 + ], + "score": 0.9, + "content": "\\beta _ { \\psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 207, + 329, + 223 + ], + "score": 1.0, + "content": "the proposed RBF model with 64 centers, so", + "type": "text" + }, + { + "bbox": [ + 330, + 208, + 383, + 219 + ], + "score": 0.92, + "content": "\\mathbf { W } \\in \\mathbb { R } ^ { D \\times 6 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 207, + 458, + 223 + ], + "score": 1.0, + "content": "and the parameter", + "type": "text" + }, + { + "bbox": [ + 458, + 211, + 465, + 219 + ], + "score": 0.72, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 207, + 506, + 223 + ], + "score": 1.0, + "content": "of Eq. 11", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 221, + 380, + 235 + ], + "spans": [ + { + "bbox": [ + 104, + 221, + 186, + 235 + ], + "score": 1.0, + "content": "is set to 2. We used", + "type": "text" + }, + { + "bbox": [ + 186, + 222, + 199, + 233 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 221, + 354, + 235 + ], + "score": 1.0, + "content": "regularization with parameter equal to", + "type": "text" + }, + { + "bbox": [ + 354, + 221, + 376, + 232 + ], + "score": 0.88, + "content": "1 e ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 221, + 380, + 235 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "table", + "bbox": [ + 180, + 243, + 431, + 294 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 180, + 243, + 431, + 294 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 180, + 243, + 431, + 294 + ], + "spans": [ + { + "bbox": [ + 180, + 243, + 431, + 294 + ], + "score": 0.971, + "html": "
Encoder/DecoderLayer 1Layer 2Layer 3
64,(tanh)32,(tanh)d,(linear)
64, (tanh)32, (tanh)d,(softplus)
μ32,(tanh)64,(tanh)D,(sigmoid)
", + "type": "table", + "image_path": "330c53a99f7363164d890baa56cf415c1633fd975fa59faaed85a84aef2ec9f1.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 180, + 243, + 431, + 260.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 180, + 260.0, + 431, + 277.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 180, + 277.0, + 431, + 294.0 + ], + "spans": [], + "index": 11 + } + ] + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 109, + 303, + 503, + 348 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 504, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 504, + 315 + ], + "score": 1.0, + "content": "The number corresponds to the size of the layer, and in the parenthesis the activation function.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "score": 1.0, + "content": "For the encoder, the mean and the variance functions share the weights of the Layer 1. The input", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 177, + 338 + ], + "score": 1.0, + "content": "space dimension", + "type": "text" + }, + { + "bbox": [ + 177, + 325, + 219, + 335 + ], + "score": 0.9, + "content": "D = 7 8 4", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 325, + 506, + 338 + ], + "score": 1.0, + "content": ". After the training, the geodesics can be computed by solving Eq. 7", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 336, + 465, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 465, + 349 + ], + "score": 1.0, + "content": "numerically. The LAND mixture model is fitted as explained in (Arvanitidis et al., 2016).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 359, + 503, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 372 + ], + "score": 1.0, + "content": "Details for Experiments 5.4. In this experiment we used Convolutional Variational Auto-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 452, + 383 + ], + "score": 1.0, + "content": "Encoders. The pixel values of the images are scaled to the interval [0, 1]. For the", + "type": "text" + }, + { + "bbox": [ + 452, + 371, + 466, + 384 + ], + "score": 0.89, + "content": "\\beta _ { \\psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 369, + 505, + 383 + ], + "score": 1.0, + "content": "we used", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 381, + 436, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 346, + 393 + ], + "score": 1.0, + "content": "the proposed RBF model with 64 centers and the parameter", + "type": "text" + }, + { + "bbox": [ + 346, + 384, + 353, + 391 + ], + "score": 0.61, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 381, + 436, + 393 + ], + "score": 1.0, + "content": "of Eq. 11 is set to 2.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 398, + 504, + 454 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 411 + ], + "score": 1.0, + "content": "Considering the variance network during the decoding stage, the RBF generates an image, which", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 409, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 506, + 421 + ], + "score": 1.0, + "content": "represents intuitively the total variance of each pixel for the decoded final image, but in an initial", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 419, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 434 + ], + "score": 1.0, + "content": "sub-sampled version. Afterwards, this image is passed through a sequence of deconvolution layers,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 431, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 505, + 444 + ], + "score": 1.0, + "content": "and at the end will represent the variance of every pixel for each RGB channel. However, it is critical", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 441, + 502, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 375, + 455 + ], + "score": 1.0, + "content": "that the weights of the filters must be clipped during the training to", + "type": "text" + }, + { + "bbox": [ + 375, + 443, + 390, + 454 + ], + "score": 0.89, + "content": "\\mathbb { R } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 441, + 502, + 455 + ], + "score": 1.0, + "content": "to ensure positive variance.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21 + }, + { + "type": "table", + "bbox": [ + 137, + 463, + 474, + 503 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 137, + 463, + 474, + 503 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 137, + 463, + 474, + 503 + ], + "spans": [ + { + "bbox": [ + 137, + 463, + 474, + 503 + ], + "score": 0.966, + "html": "
EncoderLayer 1 (Conv)Layer 2 (Conv)Layer 3 (MLP)Layer 4 (MLP)
32,3,2,(tanh)32,3,2,(tanh)1024, (tanh)d,(linear)
o32,3,2,(tanh)32,3,2,(tanh)1024, (tanh)d,(softplus)
", + "type": "table", + "image_path": "4d948b5e72da9381608758e754789e107ec8b4e78c3dd75d3c4329851474053f.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 137, + 463, + 474, + 476.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 137, + 476.3333333333333, + 474, + 489.66666666666663 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 137, + 489.66666666666663, + 474, + 502.99999999999994 + ], + "spans": [], + "index": 26 + } + ] + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 108, + 511, + 505, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 525 + ], + "score": 1.0, + "content": "For the convolutional and deconvolutional layers, the first number is the number of applied filters,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 523, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 505, + 534 + ], + "score": 1.0, + "content": "the second is the kernel size, and third is the stride. Also, for the encoder, the mean and the variance", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 532, + 501, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 306, + 546 + ], + "score": 1.0, + "content": "functions share the convolutional layers. We used", + "type": "text" + }, + { + "bbox": [ + 307, + 534, + 319, + 545 + ], + "score": 0.9, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 532, + 475, + 546 + ], + "score": 1.0, + "content": "regularization with parameter equal to", + "type": "text" + }, + { + "bbox": [ + 475, + 533, + 496, + 543 + ], + "score": 0.91, + "content": "1 e ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 496, + 532, + 501, + 546 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 553, + 498, + 583 + ], + "lines": [ + { + "bbox": [ + 114, + 553, + 495, + 583 + ], + "spans": [ + { + "bbox": [ + 114, + 553, + 495, + 583 + ], + "score": 0.63, + "content": "\\begin{array}{c} \\frac { \\mathrm { D e c o d e r } \\mathrm { ~ ~ \\cal ~ L ~ } . 1 ( \\mathrm { M L P } ) \\mathrm { ~ ~ \\cal ~ L . ~ } 2 ( \\mathrm { M L P } ) \\mathrm { ~ ~ \\cal ~ L . ~ } 3 ( \\mathrm { D E } ) \\mathrm { ~ ~ \\cal ~ L . ~ } 4 ( \\mathrm { D E } ) \\mathrm { ~ ~ \\cal ~ L . ~ } 5 ( \\mathrm { D E } ) \\mathrm { ~ ~ \\cal ~ L . ~ } 6 ( \\mathrm { C O } ) } { \\mu _ { \\theta } } \\frac { D / 4 , ( t ) } { 3 2 , 3 , 2 , ( t ) } \\frac { 3 2 , 3 , 2 , ( t ) } { 3 2 , 3 , 2 , ( t ) } \\mathrm { ~ ~ \\cal ~ 3 . 2 , } 3 , 1 , ( t ) \\mathrm { ~ ~ \\cal ~ 3 , 3 , 1 , } 3 , 1 , ( s ) \\mathrm { ~ ~ \\cal ~ 3 , 3 , 1 ~ } , 0 ) \\mathrm { ~ ~ \\cal ~ O ~ } \\end{array}", + "type": "interline_equation", + "image_path": "62a375a94ae33ee61fee8a1179ab2106dc53a20dc8a1c1d6bc6541a27da9295f.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 113, + 553, + 498, + 563.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 113, + 563.0, + 498, + 573.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 113, + 573.0, + 498, + 583.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 592, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 591, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 234, + 605 + ], + "score": 1.0, + "content": "For the decoder, the acronyms", + "type": "text" + }, + { + "bbox": [ + 234, + 593, + 265, + 604 + ], + "score": 0.31, + "content": "\\mathrm { ( D E ) = }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 591, + 330, + 605 + ], + "score": 1.0, + "content": "Deconvolution,", + "type": "text" + }, + { + "bbox": [ + 331, + 593, + 363, + 604 + ], + "score": 0.64, + "content": "\\left( \\mathbf { C O } \\right) =", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 591, + 434, + 605 + ], + "score": 1.0, + "content": "Convolution and", + "type": "text" + }, + { + "bbox": [ + 434, + 592, + 446, + 604 + ], + "score": 0.52, + "content": "( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 591, + 506, + 605 + ], + "score": 1.0, + "content": ", (s) stand for", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 603, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 265, + 616 + ], + "score": 1.0, + "content": "tanh and sigmoid, respectively. Also,", + "type": "text" + }, + { + "bbox": [ + 265, + 604, + 372, + 614 + ], + "score": 0.39, + "content": "D = w i d t h \\times h e i g h t \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 603, + 506, + 616 + ], + "score": 1.0, + "content": "channels of the images, in our", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 613, + 504, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 491, + 627 + ], + "score": 1.0, + "content": "case 64,64,3. For all the convolutions and deconvolutions, the padding is set to same. We used", + "type": "text" + }, + { + "bbox": [ + 491, + 614, + 504, + 626 + ], + "score": 0.87, + "content": "L _ { 2 }", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 624, + 286, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 261, + 637 + ], + "score": 1.0, + "content": "regularization with parameter equal to", + "type": "text" + }, + { + "bbox": [ + 261, + 624, + 282, + 635 + ], + "score": 0.9, + "content": "1 e ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 625, + 286, + 637 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + }, + { + "type": "table", + "bbox": [ + 163, + 646, + 446, + 676 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 163, + 646, + 446, + 676 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 164, + 646, + 443, + 676 + ], + "spans": [ + { + "bbox": [ + 164, + 646, + 443, + 676 + ], + "score": 0.879, + "html": "
DecoderrLayer1(RBF)Layer 2 (Deconv)Layer 3 (Conv)
βW ∈ R(D/2)×641,3,2 (linear)3,3,1 (linear)
", + "type": "table", + "image_path": "b9b2b2a322103fcc640e304244c69da2d1854a812a667ea34d5856b14a210b6e.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 163, + 646, + 446, + 656.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 163, + 656.0, + 446, + 666.0 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 163, + 666.0, + 446, + 676.0 + ], + "spans": [], + "index": 39 + } + ] + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 104, + 684, + 483, + 697 + ], + "lines": [ + { + "bbox": [ + 105, + 682, + 485, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 485, + 698 + ], + "score": 1.0, + "content": "The Brownian motion over the Riemannian manifold in the latent space is presented in Alg. 2.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + } + ], + "page_idx": 13, + "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, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 393, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 395, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 395, + 96 + ], + "score": 1.0, + "content": "D IMPLEMENTATION DETAILS FOR THE EXPERIMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 341, + 123 + ], + "lines": [ + { + "bbox": [ + 105, + 108, + 342, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 108, + 342, + 126 + ], + "score": 1.0, + "content": "Algorithm 1 The training of a VAE that ensures geometry", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 108, + 342, + 126 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 126, + 414, + 160 + ], + "lines": [ + { + "bbox": [ + 107, + 126, + 367, + 139 + ], + "spans": [ + { + "bbox": [ + 107, + 126, + 339, + 139 + ], + "score": 1.0, + "content": "Output: the estimated parameters of the neural networks", + "type": "text" + }, + { + "bbox": [ + 339, + 127, + 367, + 138 + ], + "score": 0.88, + "content": "\\theta , \\phi , \\psi", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 110, + 137, + 415, + 151 + ], + "spans": [ + { + "bbox": [ + 110, + 137, + 161, + 151 + ], + "score": 1.0, + "content": "1: Train the", + "type": "text" + }, + { + "bbox": [ + 162, + 139, + 208, + 150 + ], + "score": 0.84, + "content": "\\mu _ { \\phi } , \\pmb { \\sigma } _ { \\phi } , \\pmb { \\mu } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 137, + 374, + 151 + ], + "score": 1.0, + "content": "as in Kingma & Welling (2014), keeping", + "type": "text" + }, + { + "bbox": [ + 375, + 140, + 389, + 150 + ], + "score": 0.83, + "content": "\\sigma _ { \\psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 137, + 415, + 151 + ], + "score": 1.0, + "content": "fixed.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 110, + 148, + 276, + 161 + ], + "spans": [ + { + "bbox": [ + 110, + 148, + 162, + 160 + ], + "score": 1.0, + "content": "2: Train the", + "type": "text" + }, + { + "bbox": [ + 162, + 151, + 176, + 161 + ], + "score": 0.87, + "content": "\\sigma _ { \\psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 148, + 276, + 160 + ], + "score": 1.0, + "content": "as explained in Sec. 4.1.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 107, + 126, + 415, + 161 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 184, + 505, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 185, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 505, + 197 + ], + "score": 1.0, + "content": "Details for Experiments 5.1, 5.2 & 5.3. The pixel values of the images are scaled to the interval", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 195, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 107, + 196, + 127, + 208 + ], + "score": 0.55, + "content": "[ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 195, + 232, + 209 + ], + "score": 1.0, + "content": ". We use for the functions", + "type": "text" + }, + { + "bbox": [ + 232, + 198, + 279, + 209 + ], + "score": 0.92, + "content": "\\mu _ { \\phi } , \\pmb { \\sigma } _ { \\phi } , \\pmb { \\mu } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 195, + 505, + 209 + ], + "score": 1.0, + "content": "multilayer perceptron (MLP) deep neural networks, and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 207, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 104, + 207, + 135, + 223 + ], + "score": 1.0, + "content": "for the", + "type": "text" + }, + { + "bbox": [ + 135, + 209, + 149, + 222 + ], + "score": 0.9, + "content": "\\beta _ { \\psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 207, + 329, + 223 + ], + "score": 1.0, + "content": "the proposed RBF model with 64 centers, so", + "type": "text" + }, + { + "bbox": [ + 330, + 208, + 383, + 219 + ], + "score": 0.92, + "content": "\\mathbf { W } \\in \\mathbb { R } ^ { D \\times 6 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 207, + 458, + 223 + ], + "score": 1.0, + "content": "and the parameter", + "type": "text" + }, + { + "bbox": [ + 458, + 211, + 465, + 219 + ], + "score": 0.72, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 207, + 506, + 223 + ], + "score": 1.0, + "content": "of Eq. 11", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 221, + 380, + 235 + ], + "spans": [ + { + "bbox": [ + 104, + 221, + 186, + 235 + ], + "score": 1.0, + "content": "is set to 2. We used", + "type": "text" + }, + { + "bbox": [ + 186, + 222, + 199, + 233 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 221, + 354, + 235 + ], + "score": 1.0, + "content": "regularization with parameter equal to", + "type": "text" + }, + { + "bbox": [ + 354, + 221, + 376, + 232 + ], + "score": 0.88, + "content": "1 e ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 221, + 380, + 235 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5, + "bbox_fs": [ + 104, + 185, + 506, + 235 + ] + }, + { + "type": "table", + "bbox": [ + 180, + 243, + 431, + 294 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 180, + 243, + 431, + 294 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 180, + 243, + 431, + 294 + ], + "spans": [ + { + "bbox": [ + 180, + 243, + 431, + 294 + ], + "score": 0.971, + "html": "
Encoder/DecoderLayer 1Layer 2Layer 3
64,(tanh)32,(tanh)d,(linear)
64, (tanh)32, (tanh)d,(softplus)
μ32,(tanh)64,(tanh)D,(sigmoid)
", + "type": "table", + "image_path": "330c53a99f7363164d890baa56cf415c1633fd975fa59faaed85a84aef2ec9f1.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 180, + 243, + 431, + 260.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 180, + 260.0, + 431, + 277.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 180, + 277.0, + 431, + 294.0 + ], + "spans": [], + "index": 11 + } + ] + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 109, + 303, + 503, + 348 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 504, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 504, + 315 + ], + "score": 1.0, + "content": "The number corresponds to the size of the layer, and in the parenthesis the activation function.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "score": 1.0, + "content": "For the encoder, the mean and the variance functions share the weights of the Layer 1. The input", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 177, + 338 + ], + "score": 1.0, + "content": "space dimension", + "type": "text" + }, + { + "bbox": [ + 177, + 325, + 219, + 335 + ], + "score": 0.9, + "content": "D = 7 8 4", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 325, + 506, + 338 + ], + "score": 1.0, + "content": ". After the training, the geodesics can be computed by solving Eq. 7", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 336, + 465, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 465, + 349 + ], + "score": 1.0, + "content": "numerically. The LAND mixture model is fitted as explained in (Arvanitidis et al., 2016).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 302, + 506, + 349 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 359, + 503, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 372 + ], + "score": 1.0, + "content": "Details for Experiments 5.4. In this experiment we used Convolutional Variational Auto-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 452, + 383 + ], + "score": 1.0, + "content": "Encoders. The pixel values of the images are scaled to the interval [0, 1]. For the", + "type": "text" + }, + { + "bbox": [ + 452, + 371, + 466, + 384 + ], + "score": 0.89, + "content": "\\beta _ { \\psi }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 369, + 505, + 383 + ], + "score": 1.0, + "content": "we used", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 381, + 436, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 346, + 393 + ], + "score": 1.0, + "content": "the proposed RBF model with 64 centers and the parameter", + "type": "text" + }, + { + "bbox": [ + 346, + 384, + 353, + 391 + ], + "score": 0.61, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 381, + 436, + 393 + ], + "score": 1.0, + "content": "of Eq. 11 is set to 2.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 358, + 505, + 393 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 398, + 504, + 454 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 411 + ], + "score": 1.0, + "content": "Considering the variance network during the decoding stage, the RBF generates an image, which", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 409, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 506, + 421 + ], + "score": 1.0, + "content": "represents intuitively the total variance of each pixel for the decoded final image, but in an initial", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 419, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 434 + ], + "score": 1.0, + "content": "sub-sampled version. Afterwards, this image is passed through a sequence of deconvolution layers,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 431, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 505, + 444 + ], + "score": 1.0, + "content": "and at the end will represent the variance of every pixel for each RGB channel. However, it is critical", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 441, + 502, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 375, + 455 + ], + "score": 1.0, + "content": "that the weights of the filters must be clipped during the training to", + "type": "text" + }, + { + "bbox": [ + 375, + 443, + 390, + 454 + ], + "score": 0.89, + "content": "\\mathbb { R } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 441, + 502, + 455 + ], + "score": 1.0, + "content": "to ensure positive variance.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 398, + 506, + 455 + ] + }, + { + "type": "table", + "bbox": [ + 137, + 463, + 474, + 503 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 137, + 463, + 474, + 503 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 137, + 463, + 474, + 503 + ], + "spans": [ + { + "bbox": [ + 137, + 463, + 474, + 503 + ], + "score": 0.966, + "html": "
EncoderLayer 1 (Conv)Layer 2 (Conv)Layer 3 (MLP)Layer 4 (MLP)
32,3,2,(tanh)32,3,2,(tanh)1024, (tanh)d,(linear)
o32,3,2,(tanh)32,3,2,(tanh)1024, (tanh)d,(softplus)
", + "type": "table", + "image_path": "4d948b5e72da9381608758e754789e107ec8b4e78c3dd75d3c4329851474053f.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 137, + 463, + 474, + 476.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 137, + 476.3333333333333, + 474, + 489.66666666666663 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 137, + 489.66666666666663, + 474, + 502.99999999999994 + ], + "spans": [], + "index": 26 + } + ] + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 108, + 511, + 505, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 525 + ], + "score": 1.0, + "content": "For the convolutional and deconvolutional layers, the first number is the number of applied filters,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 523, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 505, + 534 + ], + "score": 1.0, + "content": "the second is the kernel size, and third is the stride. Also, for the encoder, the mean and the variance", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 532, + 501, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 306, + 546 + ], + "score": 1.0, + "content": "functions share the convolutional layers. We used", + "type": "text" + }, + { + "bbox": [ + 307, + 534, + 319, + 545 + ], + "score": 0.9, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 532, + 475, + 546 + ], + "score": 1.0, + "content": "regularization with parameter equal to", + "type": "text" + }, + { + "bbox": [ + 475, + 533, + 496, + 543 + ], + "score": 0.91, + "content": "1 e ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 496, + 532, + 501, + 546 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 510, + 505, + 546 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 553, + 498, + 583 + ], + "lines": [ + { + "bbox": [ + 114, + 553, + 495, + 583 + ], + "spans": [ + { + "bbox": [ + 114, + 553, + 495, + 583 + ], + "score": 0.63, + "content": "\\begin{array}{c} \\frac { \\mathrm { D e c o d e r } \\mathrm { ~ ~ \\cal ~ L ~ } . 1 ( \\mathrm { M L P } ) \\mathrm { ~ ~ \\cal ~ L . ~ } 2 ( \\mathrm { M L P } ) \\mathrm { ~ ~ \\cal ~ L . ~ } 3 ( \\mathrm { D E } ) \\mathrm { ~ ~ \\cal ~ L . ~ } 4 ( \\mathrm { D E } ) \\mathrm { ~ ~ \\cal ~ L . ~ } 5 ( \\mathrm { D E } ) \\mathrm { ~ ~ \\cal ~ L . ~ } 6 ( \\mathrm { C O } ) } { \\mu _ { \\theta } } \\frac { D / 4 , ( t ) } { 3 2 , 3 , 2 , ( t ) } \\frac { 3 2 , 3 , 2 , ( t ) } { 3 2 , 3 , 2 , ( t ) } \\mathrm { ~ ~ \\cal ~ 3 . 2 , } 3 , 1 , ( t ) \\mathrm { ~ ~ \\cal ~ 3 , 3 , 1 , } 3 , 1 , ( s ) \\mathrm { ~ ~ \\cal ~ 3 , 3 , 1 ~ } , 0 ) \\mathrm { ~ ~ \\cal ~ O ~ } \\end{array}", + "type": "interline_equation", + "image_path": "62a375a94ae33ee61fee8a1179ab2106dc53a20dc8a1c1d6bc6541a27da9295f.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 113, + 553, + 498, + 563.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 113, + 563.0, + 498, + 573.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 113, + 573.0, + 498, + 583.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 592, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 591, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 234, + 605 + ], + "score": 1.0, + "content": "For the decoder, the acronyms", + "type": "text" + }, + { + "bbox": [ + 234, + 593, + 265, + 604 + ], + "score": 0.31, + "content": "\\mathrm { ( D E ) = }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 591, + 330, + 605 + ], + "score": 1.0, + "content": "Deconvolution,", + "type": "text" + }, + { + "bbox": [ + 331, + 593, + 363, + 604 + ], + "score": 0.64, + "content": "\\left( \\mathbf { C O } \\right) =", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 591, + 434, + 605 + ], + "score": 1.0, + "content": "Convolution and", + "type": "text" + }, + { + "bbox": [ + 434, + 592, + 446, + 604 + ], + "score": 0.52, + "content": "( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 591, + 506, + 605 + ], + "score": 1.0, + "content": ", (s) stand for", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 603, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 265, + 616 + ], + "score": 1.0, + "content": "tanh and sigmoid, respectively. Also,", + "type": "text" + }, + { + "bbox": [ + 265, + 604, + 372, + 614 + ], + "score": 0.39, + "content": "D = w i d t h \\times h e i g h t \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 603, + 506, + 616 + ], + "score": 1.0, + "content": "channels of the images, in our", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 613, + 504, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 491, + 627 + ], + "score": 1.0, + "content": "case 64,64,3. For all the convolutions and deconvolutions, the padding is set to same. We used", + "type": "text" + }, + { + "bbox": [ + 491, + 614, + 504, + 626 + ], + "score": 0.87, + "content": "L _ { 2 }", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 624, + 286, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 261, + 637 + ], + "score": 1.0, + "content": "regularization with parameter equal to", + "type": "text" + }, + { + "bbox": [ + 261, + 624, + 282, + 635 + ], + "score": 0.9, + "content": "1 e ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 625, + 286, + 637 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 591, + 506, + 637 + ] + }, + { + "type": "table", + "bbox": [ + 163, + 646, + 446, + 676 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 163, + 646, + 446, + 676 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 164, + 646, + 443, + 676 + ], + "spans": [ + { + "bbox": [ + 164, + 646, + 443, + 676 + ], + "score": 0.879, + "html": "
DecoderrLayer1(RBF)Layer 2 (Deconv)Layer 3 (Conv)
βW ∈ R(D/2)×641,3,2 (linear)3,3,1 (linear)
", + "type": "table", + "image_path": "b9b2b2a322103fcc640e304244c69da2d1854a812a667ea34d5856b14a210b6e.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 163, + 646, + 446, + 656.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 163, + 656.0, + 446, + 666.0 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 163, + 666.0, + 446, + 676.0 + ], + "spans": [], + "index": 39 + } + ] + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 104, + 684, + 483, + 697 + ], + "lines": [ + { + "bbox": [ + 105, + 682, + 485, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 485, + 698 + ], + "score": 1.0, + "content": "The Brownian motion over the Riemannian manifold in the latent space is presented in Alg. 2.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 682, + 485, + 698 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 351, + 343, + 363 + ], + "lines": [ + { + "bbox": [ + 107, + 351, + 342, + 362 + ], + "spans": [ + { + "bbox": [ + 107, + 351, + 342, + 362 + ], + "score": 1.0, + "content": "Algorithm 2 Brownian motion on a Riemannian manifold", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 368, + 474, + 390 + ], + "lines": [ + { + "bbox": [ + 104, + 363, + 472, + 383 + ], + "spans": [ + { + "bbox": [ + 104, + 363, + 208, + 383 + ], + "score": 1.0, + "content": "Input: the starting point", + "type": "text" + }, + { + "bbox": [ + 209, + 367, + 249, + 379 + ], + "score": 0.9, + "content": "\\mathbf { z } \\in \\mathbb { R } ^ { d \\times 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 363, + 287, + 383 + ], + "score": 1.0, + "content": ", stepsize", + "type": "text" + }, + { + "bbox": [ + 287, + 371, + 293, + 378 + ], + "score": 0.67, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 363, + 362, + 383 + ], + "score": 1.0, + "content": ", number of steps", + "type": "text" + }, + { + "bbox": [ + 363, + 369, + 376, + 379 + ], + "score": 0.87, + "content": "N _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 363, + 449, + 383 + ], + "score": 1.0, + "content": ", the metric tensor", + "type": "text" + }, + { + "bbox": [ + 450, + 368, + 472, + 380 + ], + "score": 0.84, + "content": "\\mathbf { M } ( \\cdot )", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 376, + 268, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 268, + 392 + ], + "score": 1.0, + "content": "Output: the random steps Z ∈ RNs×d.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 109, + 391, + 374, + 460 + ], + "lines": [ + { + "bbox": [ + 110, + 389, + 204, + 402 + ], + "spans": [ + { + "bbox": [ + 110, + 389, + 138, + 402 + ], + "score": 1.0, + "content": "1: for", + "type": "text" + }, + { + "bbox": [ + 138, + 390, + 164, + 400 + ], + "score": 0.9, + "content": "n = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 389, + 175, + 402 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 175, + 390, + 189, + 401 + ], + "score": 0.86, + "content": "N _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 389, + 204, + 402 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 400, + 375, + 413 + ], + "spans": [ + { + "bbox": [ + 111, + 402, + 120, + 412 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 133, + 401, + 215, + 412 + ], + "score": 0.56, + "content": "\\mathbf { L } , \\mathbf { U } = e i g \\left( \\mathbf { M ( z ) } \\right) .", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 400, + 375, + 413 + ], + "score": 1.0, + "content": "(L: eigenvalues, U: eigenvectors)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 110, + 413, + 266, + 426 + ], + "spans": [ + { + "bbox": [ + 110, + 414, + 121, + 425 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 132, + 413, + 266, + 426 + ], + "score": 0.37, + "content": "\\mathbf { v } = \\mathbf { U } \\mathbf { L } ^ { - \\frac { 1 } { 2 } } \\boldsymbol { \\epsilon } , \\qquad \\boldsymbol { \\epsilon } \\sim \\mathcal { N } ( \\mathbf { 0 } , \\mathbb { I } _ { d } )", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 110, + 424, + 190, + 437 + ], + "spans": [ + { + "bbox": [ + 110, + 425, + 121, + 436 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 132, + 424, + 190, + 437 + ], + "score": 1.0, + "content": "z = z + s · v", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 110, + 434, + 190, + 450 + ], + "spans": [ + { + "bbox": [ + 110, + 436, + 121, + 447 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 131, + 434, + 190, + 450 + ], + "score": 1.0, + "content": "Z(n, :) = z", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 111, + 446, + 158, + 459 + ], + "spans": [ + { + "bbox": [ + 111, + 447, + 122, + 458 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 121, + 446, + 158, + 459 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 38 + ], + "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" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 351, + 343, + 363 + ], + "lines": [ + { + "bbox": [ + 107, + 351, + 342, + 362 + ], + "spans": [ + { + "bbox": [ + 107, + 351, + 342, + 362 + ], + "score": 1.0, + "content": "Algorithm 2 Brownian motion on a Riemannian manifold", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 368, + 474, + 390 + ], + "lines": [ + { + "bbox": [ + 104, + 363, + 472, + 383 + ], + "spans": [ + { + "bbox": [ + 104, + 363, + 208, + 383 + ], + "score": 1.0, + "content": "Input: the starting point", + "type": "text" + }, + { + "bbox": [ + 209, + 367, + 249, + 379 + ], + "score": 0.9, + "content": "\\mathbf { z } \\in \\mathbb { R } ^ { d \\times 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 363, + 287, + 383 + ], + "score": 1.0, + "content": ", stepsize", + "type": "text" + }, + { + "bbox": [ + 287, + 371, + 293, + 378 + ], + "score": 0.67, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 363, + 362, + 383 + ], + "score": 1.0, + "content": ", number of steps", + "type": "text" + }, + { + "bbox": [ + 363, + 369, + 376, + 379 + ], + "score": 0.87, + "content": "N _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 363, + 449, + 383 + ], + "score": 1.0, + "content": ", the metric tensor", + "type": "text" + }, + { + "bbox": [ + 450, + 368, + 472, + 380 + ], + "score": 0.84, + "content": "\\mathbf { M } ( \\cdot )", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 376, + 268, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 268, + 392 + ], + "score": 1.0, + "content": "Output: the random steps Z ∈ RNs×d.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 104, + 363, + 472, + 392 + ] + }, + { + "type": "index", + "bbox": [ + 109, + 391, + 374, + 460 + ], + "lines": [ + { + "bbox": [ + 110, + 389, + 204, + 402 + ], + "spans": [ + { + "bbox": [ + 110, + 389, + 138, + 402 + ], + "score": 1.0, + "content": "1: for", + "type": "text" + }, + { + "bbox": [ + 138, + 390, + 164, + 400 + ], + "score": 0.9, + "content": "n = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 389, + 175, + 402 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 175, + 390, + 189, + 401 + ], + "score": 0.86, + "content": "N _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 389, + 204, + 402 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 400, + 375, + 413 + ], + "spans": [ + { + "bbox": [ + 111, + 402, + 120, + 412 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 133, + 401, + 215, + 412 + ], + "score": 0.56, + "content": "\\mathbf { L } , \\mathbf { U } = e i g \\left( \\mathbf { M ( z ) } \\right) .", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 400, + 375, + 413 + ], + "score": 1.0, + "content": "(L: eigenvalues, U: eigenvectors)", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 413, + 266, + 426 + ], + "spans": [ + { + "bbox": [ + 110, + 414, + 121, + 425 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 132, + 413, + 266, + 426 + ], + "score": 0.37, + "content": "\\mathbf { v } = \\mathbf { U } \\mathbf { L } ^ { - \\frac { 1 } { 2 } } \\boldsymbol { \\epsilon } , \\qquad \\boldsymbol { \\epsilon } \\sim \\mathcal { N } ( \\mathbf { 0 } , \\mathbb { I } _ { d } )", + "type": "inline_equation" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 424, + 190, + 437 + ], + "spans": [ + { + "bbox": [ + 110, + 425, + 121, + 436 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 132, + 424, + 190, + 437 + ], + "score": 1.0, + "content": "z = z + s · v", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 434, + 190, + 450 + ], + "spans": [ + { + "bbox": [ + 110, + 436, + 121, + 447 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 131, + 434, + 190, + 450 + ], + "score": 1.0, + "content": "Z(n, :) = z", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 446, + 158, + 459 + ], + "spans": [ + { + "bbox": [ + 111, + 447, + 122, + 458 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 121, + 446, + 158, + 459 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + } + ], + "index": 5.5, + "bbox_fs": [ + 110, + 389, + 375, + 459 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/SkT5Yg-RZ/images/10da804eb7b8aba25b54aa9cc6f1d6d4fcd5cc0be34d28f04fb28640c08cbe71.jpg b/parse/train/SkT5Yg-RZ/images/10da804eb7b8aba25b54aa9cc6f1d6d4fcd5cc0be34d28f04fb28640c08cbe71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aeb6ecc93b6f84fa0cc9072cc09514a1cabc6d8e --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/10da804eb7b8aba25b54aa9cc6f1d6d4fcd5cc0be34d28f04fb28640c08cbe71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd10fdedd3f69f9578b2c6024ae911ecc2f8c9086c70a29bb0e74f11c48a614e +size 60622 diff --git a/parse/train/SkT5Yg-RZ/images/156ee02f0e9d056f52f523961ab42ed450f94b80c470f6e89110890b2f7e5694.jpg b/parse/train/SkT5Yg-RZ/images/156ee02f0e9d056f52f523961ab42ed450f94b80c470f6e89110890b2f7e5694.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1a967a8420872050c4a7c8778c2d4fa163a2f56 --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/156ee02f0e9d056f52f523961ab42ed450f94b80c470f6e89110890b2f7e5694.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e83a0da64f270bfd6f07fe7e2b9cbe6dbc6667a5468c6b4f0bdf61856defc77d +size 2273 diff --git a/parse/train/SkT5Yg-RZ/images/18b7d67809c881afc72e3e33a341668ed1c5470680a303c2afa6363f1671be21.jpg b/parse/train/SkT5Yg-RZ/images/18b7d67809c881afc72e3e33a341668ed1c5470680a303c2afa6363f1671be21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2734c8f89c6294576bb8781c8cd4b59db05b36ba --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/18b7d67809c881afc72e3e33a341668ed1c5470680a303c2afa6363f1671be21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4c377f1b83934e62424869ab9842bd98b609a5ba8c034dd7b829f15aad20c0e +size 83271 diff --git a/parse/train/SkT5Yg-RZ/images/427eaee0cb08feb51d5139d676fe9fc3a30b7814f19234f39e435dea75c4a225.jpg b/parse/train/SkT5Yg-RZ/images/427eaee0cb08feb51d5139d676fe9fc3a30b7814f19234f39e435dea75c4a225.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff4996a47232a6d938af823037b86ea107e54c94 --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/427eaee0cb08feb51d5139d676fe9fc3a30b7814f19234f39e435dea75c4a225.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a87e85e7d632217ad31207711eb092f733f021cfa7661e09355c92b002f331 +size 2365 diff --git a/parse/train/SkT5Yg-RZ/images/6206f692a500e6dc678b0696095753c9602c014a63e60dd2115557c28904a1aa.jpg b/parse/train/SkT5Yg-RZ/images/6206f692a500e6dc678b0696095753c9602c014a63e60dd2115557c28904a1aa.jpg new file mode 100644 index 0000000000000000000000000000000000000000..570cd7804209e4bc1738744b562ee2b8ab16e22e --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/6206f692a500e6dc678b0696095753c9602c014a63e60dd2115557c28904a1aa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2778a8ec19835901a210a48353ee112cf7e5687df1f7e246efd4a9acd8fa70d0 +size 2340 diff --git a/parse/train/SkT5Yg-RZ/images/6bd4885786b4ec879bfd5102bce5b22e44dbeac720a64e6be9b91d558556af5f.jpg b/parse/train/SkT5Yg-RZ/images/6bd4885786b4ec879bfd5102bce5b22e44dbeac720a64e6be9b91d558556af5f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92f6bafef715e30492061790fc8030a8ed41d742 --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/6bd4885786b4ec879bfd5102bce5b22e44dbeac720a64e6be9b91d558556af5f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c4c8fa0b13fc5af927ff36c0c10eec71ae171679284d675acc3a6d9602dda91 +size 6182 diff --git a/parse/train/SkT5Yg-RZ/images/77c7cd4ceefc87391c2fd192d27a67f27251053c83d29d18dc2e3330d52f342f.jpg b/parse/train/SkT5Yg-RZ/images/77c7cd4ceefc87391c2fd192d27a67f27251053c83d29d18dc2e3330d52f342f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc5c439ed109f35f990fc013ff75495f2b42a5cb --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/77c7cd4ceefc87391c2fd192d27a67f27251053c83d29d18dc2e3330d52f342f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f881197c39d0cb30d1869793925183dd35b4bf83b6b5e256b64019e9ec938398 +size 34135 diff --git a/parse/train/SkT5Yg-RZ/images/7a0fb69b8512612d2b8fa5d73a06dd1b5ae9373c04f571492ab24b6a8c9031ad.jpg b/parse/train/SkT5Yg-RZ/images/7a0fb69b8512612d2b8fa5d73a06dd1b5ae9373c04f571492ab24b6a8c9031ad.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed21753cc46739ab8fdbbd821106ee64ada77465 --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/7a0fb69b8512612d2b8fa5d73a06dd1b5ae9373c04f571492ab24b6a8c9031ad.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3964ccec870b2b3c9d7de6526291193f4d4e6017313e45341032459a4c0319d8 +size 16355 diff --git a/parse/train/SkT5Yg-RZ/images/7bc22b89f7cabb0fb8047c902b16342f1019591342f2ef3dd6922a1ef4dc3629.jpg b/parse/train/SkT5Yg-RZ/images/7bc22b89f7cabb0fb8047c902b16342f1019591342f2ef3dd6922a1ef4dc3629.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d1cd65e6b2365ac0368b9119a468124e14e2256 --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/7bc22b89f7cabb0fb8047c902b16342f1019591342f2ef3dd6922a1ef4dc3629.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0cad3aa24684b25632a76cbc5530bb89fcb7b0c500598a3eeb22df67e508fa +size 59068 diff --git a/parse/train/SkT5Yg-RZ/images/8123311a4182aeccae39829c68d57942d83735ab0fc37b067c8e35bbfc07b759.jpg b/parse/train/SkT5Yg-RZ/images/8123311a4182aeccae39829c68d57942d83735ab0fc37b067c8e35bbfc07b759.jpg new file mode 100644 index 0000000000000000000000000000000000000000..550f751c46b10de05f3f75fae36954c835e1ae7a --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/8123311a4182aeccae39829c68d57942d83735ab0fc37b067c8e35bbfc07b759.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87dcfe51cd8643aaed832835edb42de10615fb9596d3b4b87611d1f8255b20b0 +size 1241 diff --git a/parse/train/SkT5Yg-RZ/images/82f26d450436f47e2cfc2a1e7bc1d3574f51ebb67f307f2ccfc6734ae342843d.jpg b/parse/train/SkT5Yg-RZ/images/82f26d450436f47e2cfc2a1e7bc1d3574f51ebb67f307f2ccfc6734ae342843d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b88c5aa0378ce404c7009417f1ed6f8262cd4de8 --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/82f26d450436f47e2cfc2a1e7bc1d3574f51ebb67f307f2ccfc6734ae342843d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5bd75e8467f6c31bb570c63a1b073da628b5c99e5b0843ce5d8ffade2f6750c +size 1842 diff --git a/parse/train/SkT5Yg-RZ/images/8f299b9b9d20e07603d541cd78bc39e3ba805b17de6825d2994dfeb824281cd7.jpg b/parse/train/SkT5Yg-RZ/images/8f299b9b9d20e07603d541cd78bc39e3ba805b17de6825d2994dfeb824281cd7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0951345a1188d4ff81d4551d51912a22d9ddf31 --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/8f299b9b9d20e07603d541cd78bc39e3ba805b17de6825d2994dfeb824281cd7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd12a2ec2adeceeb33dbc7d3caee7a4809ddaedfb8173c6dcf007a69641ee250 +size 3107 diff --git a/parse/train/SkT5Yg-RZ/images/9aba1e5411bc784fc3f549e54125284365f7d30fe050f0f4543b9367bf7586b6.jpg b/parse/train/SkT5Yg-RZ/images/9aba1e5411bc784fc3f549e54125284365f7d30fe050f0f4543b9367bf7586b6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e1de87f7f2517246b412976592be7367e69a7ce --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/9aba1e5411bc784fc3f549e54125284365f7d30fe050f0f4543b9367bf7586b6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:695acdbfd52776104d8368723c21c4bd87595258ef4865231c9cd8cdac1a7470 +size 2360 diff --git a/parse/train/SkT5Yg-RZ/images/9d740b096917a0ed320f9d5dee4a1dea5a4333c2557c3fc29fe88147178a37a1.jpg b/parse/train/SkT5Yg-RZ/images/9d740b096917a0ed320f9d5dee4a1dea5a4333c2557c3fc29fe88147178a37a1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef89d483138ebac35a96f3fbabb642c047a8bfd6 --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/9d740b096917a0ed320f9d5dee4a1dea5a4333c2557c3fc29fe88147178a37a1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:735e59d87dd7fcaa4f937ba0b02d82ab9666f27b6d9c84b57beb6eee471b6d45 +size 49981 diff --git a/parse/train/SkT5Yg-RZ/images/9dea24e2b8a3722d9cd26042796350f4c072933e9ae2a56930497eb412a13080.jpg b/parse/train/SkT5Yg-RZ/images/9dea24e2b8a3722d9cd26042796350f4c072933e9ae2a56930497eb412a13080.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57a0c98c826df4c163b7a48b6558aea04a877694 --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/9dea24e2b8a3722d9cd26042796350f4c072933e9ae2a56930497eb412a13080.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44cb615d3733e1df314b714377d06e9d242689cf4fcbbaf7f2e3747a0cc9b15d +size 56693 diff --git a/parse/train/SkT5Yg-RZ/images/b10cab091594486bf3cd8e30bf5f5e097c7495e15a6c3fc55af13e6bba396f50.jpg b/parse/train/SkT5Yg-RZ/images/b10cab091594486bf3cd8e30bf5f5e097c7495e15a6c3fc55af13e6bba396f50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79165cc31b9952e48320f7c95f5d1ea9e8781448 --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/b10cab091594486bf3cd8e30bf5f5e097c7495e15a6c3fc55af13e6bba396f50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36cd6fb095ccb914cdf9ab2985cde50664e4226feb299bde2f4098b726a3d81d +size 46039 diff --git a/parse/train/SkT5Yg-RZ/images/b209fac1472f9619db92043d1ca7cfb06e742f027316975d973929360291b5f7.jpg b/parse/train/SkT5Yg-RZ/images/b209fac1472f9619db92043d1ca7cfb06e742f027316975d973929360291b5f7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35de8ac201325e28bac2424972226e3a294f53be --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/b209fac1472f9619db92043d1ca7cfb06e742f027316975d973929360291b5f7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23f37ebc6c79dc9ab2809409c483ec735845086aa42bd76712c6cdf083e5e1d5 +size 34814 diff --git a/parse/train/SkT5Yg-RZ/images/b6e169b370ad675a3175726e8c60401730d9e9a20a4f681f10d0dd6b5b178f99.jpg b/parse/train/SkT5Yg-RZ/images/b6e169b370ad675a3175726e8c60401730d9e9a20a4f681f10d0dd6b5b178f99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..990b4a87795ccc8bf5b8117aad8ea8b9959b21ef --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/b6e169b370ad675a3175726e8c60401730d9e9a20a4f681f10d0dd6b5b178f99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b622d9a1008a63dfac4862a08e3142418752986d871b4f3941e85d4dd88e8782 +size 2543 diff --git a/parse/train/SkT5Yg-RZ/images/c530d592ad4225a204dc121b42651ffab7d714d60c8b59ff42a8c8e545970c76.jpg b/parse/train/SkT5Yg-RZ/images/c530d592ad4225a204dc121b42651ffab7d714d60c8b59ff42a8c8e545970c76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ce9eb37fa83c6cb7b03c91a4daebd859b853f2f --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/c530d592ad4225a204dc121b42651ffab7d714d60c8b59ff42a8c8e545970c76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6122dccb975466e1bef20cf9660299db7c3ed64f2fd98e98bdb4be1b70573459 +size 21103 diff --git a/parse/train/SkT5Yg-RZ/images/dc6c9ad6cdeeb4d42a115f900e96f4619d7b1a30299f3fb6795ec735a5a54e25.jpg b/parse/train/SkT5Yg-RZ/images/dc6c9ad6cdeeb4d42a115f900e96f4619d7b1a30299f3fb6795ec735a5a54e25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ab1a7077223fa00045d83cb9d1aef1fdb2aab4c --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/dc6c9ad6cdeeb4d42a115f900e96f4619d7b1a30299f3fb6795ec735a5a54e25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:325dcac0b26b665085bb1a3f8a4ac0c6590ce04d7932f0760811747c1cc0ef5d +size 13775 diff --git a/parse/train/SkT5Yg-RZ/images/eeb7bf8cf5b98404b925b939ab3deeb3fdfaa1950f2ad1c0354f300c0369bd95.jpg b/parse/train/SkT5Yg-RZ/images/eeb7bf8cf5b98404b925b939ab3deeb3fdfaa1950f2ad1c0354f300c0369bd95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b91aa4816a36d894985bc6f96c271fbaa24c847 --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/eeb7bf8cf5b98404b925b939ab3deeb3fdfaa1950f2ad1c0354f300c0369bd95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f6be41e14a8d4ac85cec9f75259a59fa0b930fff18f492f329fbb9c9a980fb +size 42347 diff --git a/parse/train/SkT5Yg-RZ/images/f5ed4f61d0e7add8c1f00c093478873a71cfc2e186ade55e93fc03d269aa09ed.jpg b/parse/train/SkT5Yg-RZ/images/f5ed4f61d0e7add8c1f00c093478873a71cfc2e186ade55e93fc03d269aa09ed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0d68a6837b626c71fab6294e7056a11d5b6f836 --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/f5ed4f61d0e7add8c1f00c093478873a71cfc2e186ade55e93fc03d269aa09ed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca86932b3b569d47af7479b0c52707debda949af90f6d36b958b4ed0ae38a8f8 +size 51752 diff --git a/parse/train/SkT5Yg-RZ/images/fd97037d7dfd8b0c298fff0cc2c18d95ac0f656b56a8068fb1ee8e614ef71d71.jpg b/parse/train/SkT5Yg-RZ/images/fd97037d7dfd8b0c298fff0cc2c18d95ac0f656b56a8068fb1ee8e614ef71d71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ce74913b83d53acfad725d981c1cc18c047ddd9 --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/fd97037d7dfd8b0c298fff0cc2c18d95ac0f656b56a8068fb1ee8e614ef71d71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c744020c08de0f59dd2af2d0ded149c514378dcf8a8d29c24db9c05444c01e6 +size 60537 diff --git a/parse/train/SkT5Yg-RZ/images/ff6abc688e06380951317d58f005e61f97237ee5436c2bd9634ef83d50dcc387.jpg b/parse/train/SkT5Yg-RZ/images/ff6abc688e06380951317d58f005e61f97237ee5436c2bd9634ef83d50dcc387.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1c8c3d4829dbc8858b079abbf08be45f741b14a --- /dev/null +++ b/parse/train/SkT5Yg-RZ/images/ff6abc688e06380951317d58f005e61f97237ee5436c2bd9634ef83d50dcc387.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81bcde1ec99849c77144de2dc22e854f9eb9eac5d976d34799485612bbe21766 +size 6846 diff --git a/parse/train/SyNPk2R9K7/images/0c66edbf57386af7621fcd426b2cded2d44c58759c9c196a879a5b3da6f46502.jpg b/parse/train/SyNPk2R9K7/images/0c66edbf57386af7621fcd426b2cded2d44c58759c9c196a879a5b3da6f46502.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9b5a823a55917df1a6185a48e438176a79ec636 --- /dev/null +++ b/parse/train/SyNPk2R9K7/images/0c66edbf57386af7621fcd426b2cded2d44c58759c9c196a879a5b3da6f46502.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b06c643f60de645662a4daeb74619410e1742268537bb1e0f723aaba862ee0 +size 24294 diff --git a/parse/train/SyNPk2R9K7/images/1dba4e75330abfcbdd9a82e3118b7da8e619b665a32fce214ff4f56c137ca019.jpg b/parse/train/SyNPk2R9K7/images/1dba4e75330abfcbdd9a82e3118b7da8e619b665a32fce214ff4f56c137ca019.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5635c210d27aba6400255fad6a9d9268ac323fb0 --- /dev/null +++ b/parse/train/SyNPk2R9K7/images/1dba4e75330abfcbdd9a82e3118b7da8e619b665a32fce214ff4f56c137ca019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:747f3586492ab297de1b4c23ce863d2022eb8d6a4f914ae26a516474774713bf +size 36260 diff --git a/parse/train/SyNPk2R9K7/images/416e55e8f8815d11745ee7250b9cd6bb942096a299bade96383eccfd8f2a8ec5.jpg b/parse/train/SyNPk2R9K7/images/416e55e8f8815d11745ee7250b9cd6bb942096a299bade96383eccfd8f2a8ec5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5079fc2f032b657750a32170ef5763b182005625 --- /dev/null +++ b/parse/train/SyNPk2R9K7/images/416e55e8f8815d11745ee7250b9cd6bb942096a299bade96383eccfd8f2a8ec5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c541095b466474aed3b2ae18920abe0c57ee474d73b0630238575b39944fedb2 +size 97450 diff --git a/parse/train/SyNPk2R9K7/images/4b102d7412292a0df3714c606f8d2751ff0564b038d2dbc84cb869137b7dfff4.jpg b/parse/train/SyNPk2R9K7/images/4b102d7412292a0df3714c606f8d2751ff0564b038d2dbc84cb869137b7dfff4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18bfa5b869b66128a3983a3d68af2e7383502c8b --- /dev/null +++ b/parse/train/SyNPk2R9K7/images/4b102d7412292a0df3714c606f8d2751ff0564b038d2dbc84cb869137b7dfff4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d893a8cc2b178e09a18ccee9ddc871056f636e45d718788686956bf33708d041 +size 61604 diff --git a/parse/train/SyNPk2R9K7/images/56ef2291bb5a15f2859f129d00130db7e0162e44573e4f66cb0183a4d11cad53.jpg b/parse/train/SyNPk2R9K7/images/56ef2291bb5a15f2859f129d00130db7e0162e44573e4f66cb0183a4d11cad53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad189b5ca31fa785399753b2887b90f8e3a2ad5b --- /dev/null +++ b/parse/train/SyNPk2R9K7/images/56ef2291bb5a15f2859f129d00130db7e0162e44573e4f66cb0183a4d11cad53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f6e425d25d04f2e990f7eca455ad8710bc0b3c61f3baf8b39fcb9152add90d +size 31585 diff --git a/parse/train/SyNPk2R9K7/images/68bdc40b2ab3f738e0d77fe11a4247daf021ef2a681198029bc03952cbb1c0a4.jpg b/parse/train/SyNPk2R9K7/images/68bdc40b2ab3f738e0d77fe11a4247daf021ef2a681198029bc03952cbb1c0a4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bf743fd3bf479deb2ccd5f18640074dfd04c778 --- /dev/null +++ b/parse/train/SyNPk2R9K7/images/68bdc40b2ab3f738e0d77fe11a4247daf021ef2a681198029bc03952cbb1c0a4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b07ff589d38d9bde6f5691d5c662ec0056b5fd2195062c02b5bbc508227aff +size 79097 diff --git a/parse/train/SyNPk2R9K7/images/68f9e804266f2e229b32ca45c3ff2eacf33d78a5e6e4d24fbca7270efc0ea30b.jpg b/parse/train/SyNPk2R9K7/images/68f9e804266f2e229b32ca45c3ff2eacf33d78a5e6e4d24fbca7270efc0ea30b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55d1f4c12aeb02fc19707812f3564b79a6cd7473 --- /dev/null +++ b/parse/train/SyNPk2R9K7/images/68f9e804266f2e229b32ca45c3ff2eacf33d78a5e6e4d24fbca7270efc0ea30b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e165da347fc4aacaa6b71effaf583ffc7b49a26ce31bd481893bf52ed58fbc +size 46476 diff --git a/parse/train/SyNPk2R9K7/images/6c2d23042edb61a08ea8f3e232011ac2f42aee8e7b234b63fa33bfb8c61b90b3.jpg b/parse/train/SyNPk2R9K7/images/6c2d23042edb61a08ea8f3e232011ac2f42aee8e7b234b63fa33bfb8c61b90b3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f708b73ae0683cbe2fec0726526e4fb676248189 --- /dev/null +++ b/parse/train/SyNPk2R9K7/images/6c2d23042edb61a08ea8f3e232011ac2f42aee8e7b234b63fa33bfb8c61b90b3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed9a87f97cb81675e9208165e82ef78792c590c96671231461d76b8a42da4358 +size 102131 diff --git a/parse/train/SyNPk2R9K7/images/a2c313459353a153635b710ac4b795fdda80d9f328303f0e4d422add49f2d8ab.jpg b/parse/train/SyNPk2R9K7/images/a2c313459353a153635b710ac4b795fdda80d9f328303f0e4d422add49f2d8ab.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6493e8e172220e825a1fe4b98b7b736ecc5787a --- /dev/null +++ b/parse/train/SyNPk2R9K7/images/a2c313459353a153635b710ac4b795fdda80d9f328303f0e4d422add49f2d8ab.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3829f93cba7aa26aa1647927e25488d1f7a88f1c337d3ff0d9aaf834d2574778 +size 32618 diff --git a/parse/train/SyNPk2R9K7/images/ae7e85ab274cd66f461d998bc3e85174200758a38ee4b9ca0c0d7d424c88c86d.jpg b/parse/train/SyNPk2R9K7/images/ae7e85ab274cd66f461d998bc3e85174200758a38ee4b9ca0c0d7d424c88c86d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..81e0d6068585cf44ab4b3c4efbdf6bd750561404 --- /dev/null +++ b/parse/train/SyNPk2R9K7/images/ae7e85ab274cd66f461d998bc3e85174200758a38ee4b9ca0c0d7d424c88c86d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:958f7be707c0d895d767a60d5fa2af9456d6ac7a9a39bd8e7edf33b83f175ac8 +size 9449 diff --git a/parse/train/SyNPk2R9K7/images/af4048826c7d2790f559bfb0675b4663177c9bab690777a250f0e413da739b8d.jpg b/parse/train/SyNPk2R9K7/images/af4048826c7d2790f559bfb0675b4663177c9bab690777a250f0e413da739b8d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f1a2a4794af6f3f6b46174f15209de36ea1c18c --- /dev/null +++ b/parse/train/SyNPk2R9K7/images/af4048826c7d2790f559bfb0675b4663177c9bab690777a250f0e413da739b8d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4ac049d66808a0177d493f88c71462952bbc41cb603aceb58c913fad84651b3 +size 39131 diff --git a/parse/train/SyNPk2R9K7/images/f902a269648a531e1f52c1da2fd190b7194daa318fbcd47ea35ea16d3440a4ad.jpg b/parse/train/SyNPk2R9K7/images/f902a269648a531e1f52c1da2fd190b7194daa318fbcd47ea35ea16d3440a4ad.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4618e05e07b6814652324b03c41bf9befdf6c4de --- /dev/null +++ b/parse/train/SyNPk2R9K7/images/f902a269648a531e1f52c1da2fd190b7194daa318fbcd47ea35ea16d3440a4ad.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1721bf990b65424abebbeecf595f7751b2db550b70e7769d60708581b973212e +size 51277 diff --git a/parse/train/SyfXKoRqFQ/images/15a42f39e74054cd3abe5c93fa9923710f1f78662a93fd746d354336dddd18aa.jpg b/parse/train/SyfXKoRqFQ/images/15a42f39e74054cd3abe5c93fa9923710f1f78662a93fd746d354336dddd18aa.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d656c15a4833f0ef649f42f0b874b3071e844d0 --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/15a42f39e74054cd3abe5c93fa9923710f1f78662a93fd746d354336dddd18aa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:327cefd0587286bf73a3c8e7d82debb1a4442c065a499600043cf11dad863771 +size 128006 diff --git a/parse/train/SyfXKoRqFQ/images/175ced99aab1c4e4426290a0915da4bbb104d9cfb016743cc63fe36638617c2f.jpg b/parse/train/SyfXKoRqFQ/images/175ced99aab1c4e4426290a0915da4bbb104d9cfb016743cc63fe36638617c2f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21ec9c7210188c4e405b45c9bd1deb0b81ea2251 --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/175ced99aab1c4e4426290a0915da4bbb104d9cfb016743cc63fe36638617c2f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2538c0494eabcca7803494befb5e9c2452695238d123dac25c5296414047622 +size 14963 diff --git a/parse/train/SyfXKoRqFQ/images/1a37d709d08c1c981ac40de09eba357e44c5a41bc20e29655e5e098a0945cd7f.jpg b/parse/train/SyfXKoRqFQ/images/1a37d709d08c1c981ac40de09eba357e44c5a41bc20e29655e5e098a0945cd7f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80be972821ed55e650b4fd73527e5045aa80a42b --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/1a37d709d08c1c981ac40de09eba357e44c5a41bc20e29655e5e098a0945cd7f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1b95b29140c97c08982e9896aadcb5278bc662cdd45fe96d77354b712e2f53e +size 11277 diff --git a/parse/train/SyfXKoRqFQ/images/23ee2678f70ce578fc159f487cc7e52e2d66854e54785c9119c11b05080e328d.jpg b/parse/train/SyfXKoRqFQ/images/23ee2678f70ce578fc159f487cc7e52e2d66854e54785c9119c11b05080e328d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2dddf6c35ce793e0636af1f708a3dbe41f555ff5 --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/23ee2678f70ce578fc159f487cc7e52e2d66854e54785c9119c11b05080e328d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:246caf23e014ed87a6478bf6ac45ef3c7da483651a02fe34770625df73a22feb +size 137270 diff --git a/parse/train/SyfXKoRqFQ/images/3914e3a434e2c4040aceef9ae1a85a383fc02a93a41b7e448a09fdddaa3f4975.jpg b/parse/train/SyfXKoRqFQ/images/3914e3a434e2c4040aceef9ae1a85a383fc02a93a41b7e448a09fdddaa3f4975.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad801c47bd7cca424a9e19ea3154d1ebea58ca58 --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/3914e3a434e2c4040aceef9ae1a85a383fc02a93a41b7e448a09fdddaa3f4975.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abbf5277293801c26060fdf4d9c68b909ed7e4c5d5c658696eae1d2bca0ce21b +size 45006 diff --git a/parse/train/SyfXKoRqFQ/images/3c39ad02be09810a54dca8df6a3212ec3047d520f89387ea11e4b8104479527f.jpg b/parse/train/SyfXKoRqFQ/images/3c39ad02be09810a54dca8df6a3212ec3047d520f89387ea11e4b8104479527f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd89fc9a62d1c17924f3780922c891b567b48bc2 --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/3c39ad02be09810a54dca8df6a3212ec3047d520f89387ea11e4b8104479527f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb4e18851f4ee21f4d9010c189d5d3082c53c3c15bef997b5e71680825bd90c2 +size 72033 diff --git a/parse/train/SyfXKoRqFQ/images/3dcf4e14010db7173bf7ee9bd132ff1810f6d66e6ca9db84eb6ae9542a7d4cf4.jpg b/parse/train/SyfXKoRqFQ/images/3dcf4e14010db7173bf7ee9bd132ff1810f6d66e6ca9db84eb6ae9542a7d4cf4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37678ac6d0dab70e5629b37e6ed72336f8502c66 --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/3dcf4e14010db7173bf7ee9bd132ff1810f6d66e6ca9db84eb6ae9542a7d4cf4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e20919d9b2bcfa7abdbb33770a21b88190abe4f67ab3fd82e29901a60849e03 +size 43046 diff --git a/parse/train/SyfXKoRqFQ/images/40c0e575e636a611f5f9e96bdd5a189f77d83ee1eafe25d298fc3d67c2a967c4.jpg b/parse/train/SyfXKoRqFQ/images/40c0e575e636a611f5f9e96bdd5a189f77d83ee1eafe25d298fc3d67c2a967c4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64b00da643956866ed981eb1b1a2e0ca6d0fb792 --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/40c0e575e636a611f5f9e96bdd5a189f77d83ee1eafe25d298fc3d67c2a967c4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd86e70370c91306eddc5419e09e1862790875ce9e4bff64f47160f35bf64b65 +size 145496 diff --git a/parse/train/SyfXKoRqFQ/images/421427af452dd81ff21ad506700eaef0918cb82015326deb10e81fffb18e9146.jpg b/parse/train/SyfXKoRqFQ/images/421427af452dd81ff21ad506700eaef0918cb82015326deb10e81fffb18e9146.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a34e1c56faf24fa7f86e991300a9e6b893a9156b --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/421427af452dd81ff21ad506700eaef0918cb82015326deb10e81fffb18e9146.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:905c565c95828d8fd1f254a3c112fc5dbe3be56a7839616c71755d1a65731993 +size 57507 diff --git a/parse/train/SyfXKoRqFQ/images/55e134340cf5e7662c425e903d7d14a06b0b7838a25dbbdfb8a47467c2c30108.jpg b/parse/train/SyfXKoRqFQ/images/55e134340cf5e7662c425e903d7d14a06b0b7838a25dbbdfb8a47467c2c30108.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a4de9ed3cfdddb24fe47d999db8bd531631af69 --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/55e134340cf5e7662c425e903d7d14a06b0b7838a25dbbdfb8a47467c2c30108.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b059ed28c117b9b7545462d3f5c43c15ec9301c9bb48352c81eb7212cbe5934b +size 41506 diff --git a/parse/train/SyfXKoRqFQ/images/67e1cc940858f050eee2fca084c404fe4afb4c83b67d3f3483874c1ac124fb55.jpg b/parse/train/SyfXKoRqFQ/images/67e1cc940858f050eee2fca084c404fe4afb4c83b67d3f3483874c1ac124fb55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6320b651407ba057c841c1f551fd48214e04f4d6 --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/67e1cc940858f050eee2fca084c404fe4afb4c83b67d3f3483874c1ac124fb55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46788fef7b12df0a8a6208d1f7ec61139a6bf328411ed9f1368cb09c8e0aede5 +size 45035 diff --git a/parse/train/SyfXKoRqFQ/images/6c97e7f703e995bfbe707bae5ac77b2f9127a482b74c8344b27c34083648f710.jpg b/parse/train/SyfXKoRqFQ/images/6c97e7f703e995bfbe707bae5ac77b2f9127a482b74c8344b27c34083648f710.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d74b819e3ac35972d05b1f330c21aa0c480a5cb --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/6c97e7f703e995bfbe707bae5ac77b2f9127a482b74c8344b27c34083648f710.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:192e64573bca35f3d60bd867bd505a53f2de1634e59d96fd2f9edbf9fca7a68e +size 100966 diff --git a/parse/train/SyfXKoRqFQ/images/6f445c6c6ba6c862d83624d46db454b3c819180c326bf647300e4a6c298a0c6c.jpg b/parse/train/SyfXKoRqFQ/images/6f445c6c6ba6c862d83624d46db454b3c819180c326bf647300e4a6c298a0c6c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..402602e8f2f9eea5695d276caecd4c155205bedd --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/6f445c6c6ba6c862d83624d46db454b3c819180c326bf647300e4a6c298a0c6c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dcb53b7b005ba5027f63de2ade4a54dc547a876cbe439eae2b2dfd91ac1b77b +size 5165 diff --git a/parse/train/SyfXKoRqFQ/images/818425af6176f7a58f39732b449692ee2fd10818da5fdfdedfb03ef21205855a.jpg b/parse/train/SyfXKoRqFQ/images/818425af6176f7a58f39732b449692ee2fd10818da5fdfdedfb03ef21205855a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..396c61837d476f1c4bff5d93b4f56e0f0d61acf9 --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/818425af6176f7a58f39732b449692ee2fd10818da5fdfdedfb03ef21205855a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e98e59db196fa7e9eaa3c96b96038eb5d41d202e9890d1f916f987593c4b6d +size 30929 diff --git a/parse/train/SyfXKoRqFQ/images/a557dd60ed6a09255913841405b85b9befec88f289d1d5392f1f994a030b3032.jpg b/parse/train/SyfXKoRqFQ/images/a557dd60ed6a09255913841405b85b9befec88f289d1d5392f1f994a030b3032.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4c67d1e1496d228d75e862ebc265a531adec004 --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/a557dd60ed6a09255913841405b85b9befec88f289d1d5392f1f994a030b3032.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614b386968df949279766bff9fb4bd983dbb682c3664919fba597e11994b6758 +size 153399 diff --git a/parse/train/SyfXKoRqFQ/images/b00734dc6148bed1ea8c20a2a2f8ea854f57ea90bedf69ea29f1d5667a1a5846.jpg b/parse/train/SyfXKoRqFQ/images/b00734dc6148bed1ea8c20a2a2f8ea854f57ea90bedf69ea29f1d5667a1a5846.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6471515bfaa0440e750ff98e3c734b68dea86464 --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/b00734dc6148bed1ea8c20a2a2f8ea854f57ea90bedf69ea29f1d5667a1a5846.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cb5c1a682da2a36c2d37d88d33b8c366bb4b34ec9bd5f5b454cc793341126a3 +size 25229 diff --git a/parse/train/SyfXKoRqFQ/images/b542b960e93cce6cccca4a4363b8ec340db8bc96b9160183176b05500ab9b600.jpg b/parse/train/SyfXKoRqFQ/images/b542b960e93cce6cccca4a4363b8ec340db8bc96b9160183176b05500ab9b600.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8264b9d9c2435776022a0e5e91b4623deea18991 --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/b542b960e93cce6cccca4a4363b8ec340db8bc96b9160183176b05500ab9b600.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d15f60849e51cc566dbb6979f86a06321209e0770a7a246f2d5eb4a1f43b9cb3 +size 22242 diff --git a/parse/train/SyfXKoRqFQ/images/c432d33a941b7aa4086568bd0dfa0984d63ebb051d743aefa956e3100f73c71e.jpg b/parse/train/SyfXKoRqFQ/images/c432d33a941b7aa4086568bd0dfa0984d63ebb051d743aefa956e3100f73c71e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..10450891f2add578f2a18c210b4951f5a53a46de --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/c432d33a941b7aa4086568bd0dfa0984d63ebb051d743aefa956e3100f73c71e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c6a7f568e45dcc149ee04368654150d1df589256c7362322e18a71cdb9a6d22 +size 18092 diff --git a/parse/train/SyfXKoRqFQ/images/c59490b9574ceffe08369ad85eea82cc3e2d0cf5baa3ba60d16193f4d0884fc3.jpg b/parse/train/SyfXKoRqFQ/images/c59490b9574ceffe08369ad85eea82cc3e2d0cf5baa3ba60d16193f4d0884fc3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71bd1f797b1da19ed3d9e55ec63de29971aaa9c4 --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/c59490b9574ceffe08369ad85eea82cc3e2d0cf5baa3ba60d16193f4d0884fc3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e0c0ce4df8e90390fb3a5c5ebe3a4481da5da550072e6c95c1c69839d702d4 +size 7617 diff --git a/parse/train/SyfXKoRqFQ/images/e036f28923efb7f9d976efd3c7a018696e2b783826e365a8e56abbf0de818a0b.jpg b/parse/train/SyfXKoRqFQ/images/e036f28923efb7f9d976efd3c7a018696e2b783826e365a8e56abbf0de818a0b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cfc2af3af9f7d18804efb0ad226a04b1d2449477 --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/e036f28923efb7f9d976efd3c7a018696e2b783826e365a8e56abbf0de818a0b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aff7572a95235e51c6e314517495fb1b8c5039b7ce75a10f18b699f019e72eb5 +size 3378 diff --git a/parse/train/SyfXKoRqFQ/images/f33034103110e8cc9fce0acf513f986630543d8150251e4575a040e62b36e8f7.jpg b/parse/train/SyfXKoRqFQ/images/f33034103110e8cc9fce0acf513f986630543d8150251e4575a040e62b36e8f7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e6bf9650b07ecbaaa5848e2b1b06a9b7fa9d2eb9 --- /dev/null +++ b/parse/train/SyfXKoRqFQ/images/f33034103110e8cc9fce0acf513f986630543d8150251e4575a040e62b36e8f7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1e53d612aa2b9481ef81d202da41c07a50bd8c49775933eef08075c9166ad02 +size 32303 diff --git a/parse/train/TgSVWXw22FQ/images/035e5666e4a4592d315b6e6c392af030e5ae1b29ecf37e5bbae09eb661379500.jpg b/parse/train/TgSVWXw22FQ/images/035e5666e4a4592d315b6e6c392af030e5ae1b29ecf37e5bbae09eb661379500.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd948e60330964eaa2dc128cbb8a89cb33d4b466 --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/035e5666e4a4592d315b6e6c392af030e5ae1b29ecf37e5bbae09eb661379500.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c5a5c010e8edddb2eda79eb02cee77efc00c2904b9cd2c90183e2979ab565dd +size 13400 diff --git a/parse/train/TgSVWXw22FQ/images/1481b85f3f8409b371afc4a08d4e594be1e612a036a6df94d7d87300b412afbc.jpg b/parse/train/TgSVWXw22FQ/images/1481b85f3f8409b371afc4a08d4e594be1e612a036a6df94d7d87300b412afbc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1793b51deea9b34ed169c2a94ba94f63d67764c --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/1481b85f3f8409b371afc4a08d4e594be1e612a036a6df94d7d87300b412afbc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8566c9d5954ef17b2c472358185ebc87f136ab4acb83837242ee6785763a3fa1 +size 11237 diff --git a/parse/train/TgSVWXw22FQ/images/14b6fadc12a091d2aa1d552b0e199445b730272f733a35f3b3c182f50da8e70e.jpg b/parse/train/TgSVWXw22FQ/images/14b6fadc12a091d2aa1d552b0e199445b730272f733a35f3b3c182f50da8e70e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc9816a01b6a79e7bf9cb5e6475dff60c3df63b7 --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/14b6fadc12a091d2aa1d552b0e199445b730272f733a35f3b3c182f50da8e70e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c3ced2b18c684b9a52b5d2bb332d93f77f8011ffc3cd95270adaeec708c926 +size 34215 diff --git a/parse/train/TgSVWXw22FQ/images/4055a23250caa3130af7478d6117eaae67b3726f5bc35c7aa62b46c9d67c5c10.jpg b/parse/train/TgSVWXw22FQ/images/4055a23250caa3130af7478d6117eaae67b3726f5bc35c7aa62b46c9d67c5c10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e8e78a1888f1ea1fc5033d65304f7bb29d1a3f8 --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/4055a23250caa3130af7478d6117eaae67b3726f5bc35c7aa62b46c9d67c5c10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6bcd39e65231497d50417ada3da5d4cf97f753bdde65fef2dd6e1cfa01f7117 +size 13842 diff --git a/parse/train/TgSVWXw22FQ/images/4726e224d38f87bfaf48076f1d7800912001181db37ea84ec0726b47880eb7ab.jpg b/parse/train/TgSVWXw22FQ/images/4726e224d38f87bfaf48076f1d7800912001181db37ea84ec0726b47880eb7ab.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c822a194940a6c2667c6e1749114465314681c6 --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/4726e224d38f87bfaf48076f1d7800912001181db37ea84ec0726b47880eb7ab.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cda8ef698fb615e12b9cc6a18434a43b617d1fae20f9a471c9b2f026b2f8a3 +size 9559 diff --git a/parse/train/TgSVWXw22FQ/images/49eb8d52383f2f877a1546711e5b0f7b4d073ca4a8800001f2aee488249c822c.jpg b/parse/train/TgSVWXw22FQ/images/49eb8d52383f2f877a1546711e5b0f7b4d073ca4a8800001f2aee488249c822c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78f97376e4f99a7a4f596d1802069a2536eee019 --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/49eb8d52383f2f877a1546711e5b0f7b4d073ca4a8800001f2aee488249c822c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c14ec27e0455bfe2bd91fea3b6ddcaa34507c4817774436a3a61dca808fc669 +size 52337 diff --git a/parse/train/TgSVWXw22FQ/images/526a936a0c3f2fac2c684f2ab6b1a70c0adc1236e57dafe77b41af58dcf053a3.jpg b/parse/train/TgSVWXw22FQ/images/526a936a0c3f2fac2c684f2ab6b1a70c0adc1236e57dafe77b41af58dcf053a3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff5457315926a84615d49cd1b5d1510b9019b423 --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/526a936a0c3f2fac2c684f2ab6b1a70c0adc1236e57dafe77b41af58dcf053a3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbc6385a033389427a5022718bc941e0a10964a175e7dbb9ed4f250e231c0a82 +size 6680 diff --git a/parse/train/TgSVWXw22FQ/images/58190c929edee4858d038e7a4dd70bec12a44ed1025380cd548ac054e79d2e83.jpg b/parse/train/TgSVWXw22FQ/images/58190c929edee4858d038e7a4dd70bec12a44ed1025380cd548ac054e79d2e83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14efb36b0ed98920c4a99ea51e238a3a20f24f8f --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/58190c929edee4858d038e7a4dd70bec12a44ed1025380cd548ac054e79d2e83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5269c0bd3a1c49ff600fd0e7409efd64e399fcbea648bc3dd58621e4025598f +size 7848 diff --git a/parse/train/TgSVWXw22FQ/images/59d21668ffd521aed11e0603aa88d08069fae713c70a93f717f8019ba776aa1f.jpg b/parse/train/TgSVWXw22FQ/images/59d21668ffd521aed11e0603aa88d08069fae713c70a93f717f8019ba776aa1f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc82bf07a938c2920803ad7cfe9bb984a5867891 --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/59d21668ffd521aed11e0603aa88d08069fae713c70a93f717f8019ba776aa1f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5486516ca4870993fab76f66ff17b62af7ef7a1a1b42d2067bed1ce737ef1605 +size 7820 diff --git a/parse/train/TgSVWXw22FQ/images/6b582b1d9dadfa47cab2f94b7090d8878092a61b53bc79d2a18b689eb1b3f0ee.jpg b/parse/train/TgSVWXw22FQ/images/6b582b1d9dadfa47cab2f94b7090d8878092a61b53bc79d2a18b689eb1b3f0ee.jpg new file mode 100644 index 0000000000000000000000000000000000000000..82b02e9a125fde5ac87998a1e8aa26d8f798d8ea --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/6b582b1d9dadfa47cab2f94b7090d8878092a61b53bc79d2a18b689eb1b3f0ee.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2fcfdad801ec993c0405f9e42e41b77af08b6c143cf4a0ea5c47c831a05b5b0 +size 26277 diff --git a/parse/train/TgSVWXw22FQ/images/7f3ca2b008418ad21b9e28d0de5e15bd13c76b3f292ea5c7e0f8feef1f8e0207.jpg b/parse/train/TgSVWXw22FQ/images/7f3ca2b008418ad21b9e28d0de5e15bd13c76b3f292ea5c7e0f8feef1f8e0207.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abea68c532696e630805ed6af5ba7623171b6d4d --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/7f3ca2b008418ad21b9e28d0de5e15bd13c76b3f292ea5c7e0f8feef1f8e0207.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556a87f1e88ee7d399d83007180ee2d4eb6517a5a0f9ecb0129032f3f2c488b1 +size 12301 diff --git a/parse/train/TgSVWXw22FQ/images/89fe967f1f4f9ae4a77bec2528a7b0c730e4b35a8554564c14746c99e1121729.jpg b/parse/train/TgSVWXw22FQ/images/89fe967f1f4f9ae4a77bec2528a7b0c730e4b35a8554564c14746c99e1121729.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d6d50004f3dd35eaa9832bcd55d855eb26d5e73 --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/89fe967f1f4f9ae4a77bec2528a7b0c730e4b35a8554564c14746c99e1121729.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91953431d7d09833253d4510d95034e34d40b82fa28f017b9a669d3c540b0c08 +size 12750 diff --git a/parse/train/TgSVWXw22FQ/images/8c796ef0057306b8549d60b22f4c370b973973273fad317a0a529bbb97731174.jpg b/parse/train/TgSVWXw22FQ/images/8c796ef0057306b8549d60b22f4c370b973973273fad317a0a529bbb97731174.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d780d2f89fb2e0abe404efda00b2088f2c37717 --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/8c796ef0057306b8549d60b22f4c370b973973273fad317a0a529bbb97731174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:194f510c1c2664ca12ef10956cb1f31799fbe303559b436624b397b790c8c256 +size 3595 diff --git a/parse/train/TgSVWXw22FQ/images/a850aeb915fbe7f1de1c35009aee2ad7471f8c60eabf196b348110b45df9ee5a.jpg b/parse/train/TgSVWXw22FQ/images/a850aeb915fbe7f1de1c35009aee2ad7471f8c60eabf196b348110b45df9ee5a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92dbb953c1635e87ea0367e7b0f5813ad8c96ad5 --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/a850aeb915fbe7f1de1c35009aee2ad7471f8c60eabf196b348110b45df9ee5a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d51ca03acdc78b779596515f5f73f8fbc085efacb1a660e91b42c94428ffa2c +size 6182 diff --git a/parse/train/TgSVWXw22FQ/images/b27891ce3d07448729e6549df6f2879916a773bd1fa446549efcf469c29e8b93.jpg b/parse/train/TgSVWXw22FQ/images/b27891ce3d07448729e6549df6f2879916a773bd1fa446549efcf469c29e8b93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..42227b4a5eac9f99faa3b2b747224964b5f1285d --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/b27891ce3d07448729e6549df6f2879916a773bd1fa446549efcf469c29e8b93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6734bf10c393450349ae1d3bd6dce4c463e6816e98289c2711d1948da97d353 +size 11492 diff --git a/parse/train/TgSVWXw22FQ/images/c23818841ae94bc2c9ad823996791022922eb9806a7ce7141a8abc55bba47948.jpg b/parse/train/TgSVWXw22FQ/images/c23818841ae94bc2c9ad823996791022922eb9806a7ce7141a8abc55bba47948.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8522e38b3ad6e9dcb30d8769abf6bc3cccb7b771 --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/c23818841ae94bc2c9ad823996791022922eb9806a7ce7141a8abc55bba47948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:737a5c2a4f73afe6ab292403e173030d6ffe0d3d104ff762f03ec2e9c5bdfc36 +size 10028 diff --git a/parse/train/TgSVWXw22FQ/images/d01569d7c9b9320b9546c16159cb93a055b2741162a50bcc63b2e874baa6e960.jpg b/parse/train/TgSVWXw22FQ/images/d01569d7c9b9320b9546c16159cb93a055b2741162a50bcc63b2e874baa6e960.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1db4aa85aa5072b56c6f07a089fabc648511b637 --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/d01569d7c9b9320b9546c16159cb93a055b2741162a50bcc63b2e874baa6e960.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4089b2cf6e24c5780e9c46ef9ee8db498d27320a5896942e77a49ca7904707dd +size 6436 diff --git a/parse/train/TgSVWXw22FQ/images/dcc2b6604d142214a7019ba17af80a4e4e66b71fb68fe549292fe1a772c73614.jpg b/parse/train/TgSVWXw22FQ/images/dcc2b6604d142214a7019ba17af80a4e4e66b71fb68fe549292fe1a772c73614.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1896589413b5d9feb6b81533705d1f68ce807a02 --- /dev/null +++ b/parse/train/TgSVWXw22FQ/images/dcc2b6604d142214a7019ba17af80a4e4e66b71fb68fe549292fe1a772c73614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3504e15de0b89a6696db997c994475e18e3ef684bbbbb546682e1b4aac40418 +size 41240 diff --git a/parse/train/XxP75wV6JGH/images/11550e4fd7633d5dd3d9fe091e75404ead349aa2331cd61684fbcc342336fcf8.jpg b/parse/train/XxP75wV6JGH/images/11550e4fd7633d5dd3d9fe091e75404ead349aa2331cd61684fbcc342336fcf8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f8d75315c6570338025fee9f85345b886e328a3a --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/11550e4fd7633d5dd3d9fe091e75404ead349aa2331cd61684fbcc342336fcf8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:819d899baa939dd38f8656177522d053d13761eb1bf5d99a8ee8fb71a24d492f +size 87070 diff --git a/parse/train/XxP75wV6JGH/images/11b1def83d1cea199c31a8258fcf8acc1adedee8ba465436fc1e15dbc91d8f69.jpg b/parse/train/XxP75wV6JGH/images/11b1def83d1cea199c31a8258fcf8acc1adedee8ba465436fc1e15dbc91d8f69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b92472f53d5f0a658dcd3f7a6e5689c08b7e7065 --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/11b1def83d1cea199c31a8258fcf8acc1adedee8ba465436fc1e15dbc91d8f69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6425be41414ffe510b96a93774fa5f1456fee1a340d0b1210451c79284869ff8 +size 11010 diff --git a/parse/train/XxP75wV6JGH/images/1aabea13018878a456f459d33ce152a1235c4526d536a357823b96c0f18e30e5.jpg b/parse/train/XxP75wV6JGH/images/1aabea13018878a456f459d33ce152a1235c4526d536a357823b96c0f18e30e5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d62f0b43965742aca2f5f55c53d2b919a2cac35 --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/1aabea13018878a456f459d33ce152a1235c4526d536a357823b96c0f18e30e5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6ae3a27d4182d50caf90fb47618b606c08790595664e7eac42e8a2c0196dc33 +size 13590 diff --git a/parse/train/XxP75wV6JGH/images/20230cb2d5c3423ecc42a49436cd9fd108a067fbad20ff40f0aa3458210174ae.jpg b/parse/train/XxP75wV6JGH/images/20230cb2d5c3423ecc42a49436cd9fd108a067fbad20ff40f0aa3458210174ae.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31a25dd3f42d558a1d9875818793595a01a26a43 --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/20230cb2d5c3423ecc42a49436cd9fd108a067fbad20ff40f0aa3458210174ae.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ef9e4af905f1ac6b8a5653e1f15cd49dac41b2fafe45071a5a6f0871691ae1c +size 8725 diff --git a/parse/train/XxP75wV6JGH/images/387886d7f125f40bd6ab77138c0e1a53b0a1feb43b182d0b87f1e311a79c437a.jpg b/parse/train/XxP75wV6JGH/images/387886d7f125f40bd6ab77138c0e1a53b0a1feb43b182d0b87f1e311a79c437a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85cc1a69b28b9f81ca7636485b40ae7245f70307 --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/387886d7f125f40bd6ab77138c0e1a53b0a1feb43b182d0b87f1e311a79c437a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5964659e07f9cd6b129c5c577586b321401d73d05a9894c70fcf37e635c35067 +size 6331 diff --git a/parse/train/XxP75wV6JGH/images/3c36868d9e68c3c2a380bc31b7825498feb56a0543109bd9c5ef7fbf47eb1c99.jpg b/parse/train/XxP75wV6JGH/images/3c36868d9e68c3c2a380bc31b7825498feb56a0543109bd9c5ef7fbf47eb1c99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07cd7375cb9a4dbdd2b43db2979f6c9bf05adb23 --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/3c36868d9e68c3c2a380bc31b7825498feb56a0543109bd9c5ef7fbf47eb1c99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d83d4f2f02b410af953c48d61e49a22c8a38682fcf0c1a5ab9663dcf847d38 +size 8985 diff --git a/parse/train/XxP75wV6JGH/images/59c8e9476c71089d37840c005b45926d325d528214140af03a2a5755e3d0bb44.jpg b/parse/train/XxP75wV6JGH/images/59c8e9476c71089d37840c005b45926d325d528214140af03a2a5755e3d0bb44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f68e2838eee371efd6e65c763cba04d856bfa7b9 --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/59c8e9476c71089d37840c005b45926d325d528214140af03a2a5755e3d0bb44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad65fcb450e3549a66e28444d1b9302d30bfaef39132763d8c29cfedaa45c86c +size 9871 diff --git a/parse/train/XxP75wV6JGH/images/72177bbf24c2f16987f1989b6c984eacc3284ff370f1b7d77dfe1ae00c3220d8.jpg b/parse/train/XxP75wV6JGH/images/72177bbf24c2f16987f1989b6c984eacc3284ff370f1b7d77dfe1ae00c3220d8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f84398a909eaa52c43f0e3d9ce4f1bb27089d97c --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/72177bbf24c2f16987f1989b6c984eacc3284ff370f1b7d77dfe1ae00c3220d8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:264f9135f8381259670e29c009a9c96515e9f779c0e9466fba329938a3759874 +size 11528 diff --git a/parse/train/XxP75wV6JGH/images/734a4aeb88a1789b0583b553274c31f930eaf411a2cfbcbf779af8a3b9f60fb8.jpg b/parse/train/XxP75wV6JGH/images/734a4aeb88a1789b0583b553274c31f930eaf411a2cfbcbf779af8a3b9f60fb8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d24175f576c4b442a8e7df0cefab3c337c813ae0 --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/734a4aeb88a1789b0583b553274c31f930eaf411a2cfbcbf779af8a3b9f60fb8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5720e6967a0c03a1bd65248ce79c93147787ec02b216d7dd49b6ec9cd8680786 +size 11298 diff --git a/parse/train/XxP75wV6JGH/images/9f773481d07b948211dc9a8cffebaad609a31409505d8e15bec2e7c529c5424c.jpg b/parse/train/XxP75wV6JGH/images/9f773481d07b948211dc9a8cffebaad609a31409505d8e15bec2e7c529c5424c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40b8e3ac9d3df22bcf6e3179e300a61c9e9210af --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/9f773481d07b948211dc9a8cffebaad609a31409505d8e15bec2e7c529c5424c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a7aaa83c8fd49e565aaaa2a743ed56322beca08120c4ea6e82ffe16d172318e +size 194539 diff --git a/parse/train/XxP75wV6JGH/images/a15bbb84d6070b9aea0c70ee0fd41736f6e92bf99394f428fb83abbeac850491.jpg b/parse/train/XxP75wV6JGH/images/a15bbb84d6070b9aea0c70ee0fd41736f6e92bf99394f428fb83abbeac850491.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11f3504bb411086ff1a8b3b86b7ef7f830620b37 --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/a15bbb84d6070b9aea0c70ee0fd41736f6e92bf99394f428fb83abbeac850491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd7ba400c79793a9dd1168fb79d3927e750f60f68728d25a2908390fd6b99d07 +size 8169 diff --git a/parse/train/XxP75wV6JGH/images/b3cdbe721450ac272cb641aad83b868a5e75312be9b78dae7e732110db27f388.jpg b/parse/train/XxP75wV6JGH/images/b3cdbe721450ac272cb641aad83b868a5e75312be9b78dae7e732110db27f388.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cca14e0af1b072b7ebb9534974a59b44a9701ff3 --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/b3cdbe721450ac272cb641aad83b868a5e75312be9b78dae7e732110db27f388.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61cd0f20b5508674be760f03f13e2723491b67ea5e0e8f6819fa949b629a71d2 +size 118691 diff --git a/parse/train/XxP75wV6JGH/images/b589cbb88ac465663b88ece1d8ad79994d86e2c58540556cc3dbe5b300901828.jpg b/parse/train/XxP75wV6JGH/images/b589cbb88ac465663b88ece1d8ad79994d86e2c58540556cc3dbe5b300901828.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fdd5c30c2cb132468a43f5e5079b7bc1ceddd9e --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/b589cbb88ac465663b88ece1d8ad79994d86e2c58540556cc3dbe5b300901828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fe0dad17efa5fd45bc73c74aebb644bf5b1e4fc4298801fa19562782bf911e8 +size 9836 diff --git a/parse/train/XxP75wV6JGH/images/c39aa9dabea733611cf1a5b3555b34f8f9585fc16da872b8068b7febc7d5ddf0.jpg b/parse/train/XxP75wV6JGH/images/c39aa9dabea733611cf1a5b3555b34f8f9585fc16da872b8068b7febc7d5ddf0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bd9d2e71e43a06aa68ce6b91f45ea877acc80a6 --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/c39aa9dabea733611cf1a5b3555b34f8f9585fc16da872b8068b7febc7d5ddf0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c24251aab458d1409551399656ea300f3e4bbc32a1ec0e93d4872d3b7e67740f +size 8628 diff --git a/parse/train/XxP75wV6JGH/images/cdd91a2e541695afe351b6eafabfb3e030f4a1aafed01b589cdff1812686dcdf.jpg b/parse/train/XxP75wV6JGH/images/cdd91a2e541695afe351b6eafabfb3e030f4a1aafed01b589cdff1812686dcdf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a53a1837ec3110dade9e5d530d21bdbcea110a84 --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/cdd91a2e541695afe351b6eafabfb3e030f4a1aafed01b589cdff1812686dcdf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ffa259ba6b8b733ffb8fec6fae9560d33c6353245acd13c71151fc86b880a03 +size 25825 diff --git a/parse/train/XxP75wV6JGH/images/cf36a08fa37d2fcfad9bf72fd362c316fcf029f976c1bec52abb28fc4d4fb3fc.jpg b/parse/train/XxP75wV6JGH/images/cf36a08fa37d2fcfad9bf72fd362c316fcf029f976c1bec52abb28fc4d4fb3fc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94df19d6e6d770f9ba965f362b4d3694cf9f2f66 --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/cf36a08fa37d2fcfad9bf72fd362c316fcf029f976c1bec52abb28fc4d4fb3fc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1bbcc1a95be2ed4ccae1e1cf47fe0af175d006b5037f2334fe6a604a2ac0413 +size 13075 diff --git a/parse/train/XxP75wV6JGH/images/d4453ff20c0fd1d58bba0d47ce6ba27c00989503176bf5ea6db652eba6781631.jpg b/parse/train/XxP75wV6JGH/images/d4453ff20c0fd1d58bba0d47ce6ba27c00989503176bf5ea6db652eba6781631.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ed592c3bf103efa41f917858459cb1d00e8002c --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/d4453ff20c0fd1d58bba0d47ce6ba27c00989503176bf5ea6db652eba6781631.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43978fee5feb530e670e1e074d8c3a28fa57fec82fd333c958bc38ba0904d7a2 +size 10637 diff --git a/parse/train/XxP75wV6JGH/images/e212537b11cc94c2d02028a10fafb30e299828de920616be28588661d5f5fca0.jpg b/parse/train/XxP75wV6JGH/images/e212537b11cc94c2d02028a10fafb30e299828de920616be28588661d5f5fca0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f8ca0e0082a25d69557a087f9bc682b444766ff --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/e212537b11cc94c2d02028a10fafb30e299828de920616be28588661d5f5fca0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99265fb59f2b179172731217266400c3d25bdb81b97bc3ae2f9202ff2c251866 +size 22785 diff --git a/parse/train/XxP75wV6JGH/images/ecc5305eb0bd24a4d5180fc2d808568ba4769409b85473f5b4c102a0c9053c39.jpg b/parse/train/XxP75wV6JGH/images/ecc5305eb0bd24a4d5180fc2d808568ba4769409b85473f5b4c102a0c9053c39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab258c0a4ae6492d00f64a013c042f3d87851082 --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/ecc5305eb0bd24a4d5180fc2d808568ba4769409b85473f5b4c102a0c9053c39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:863020ac35405706773902163e4aee8d9d7680606da256340dc3ba7812b4e06a +size 25013 diff --git a/parse/train/XxP75wV6JGH/images/f4955a742cf60d4c17168d6e85637deb0162ec6bbaff20d46982bb07d1fe5dfb.jpg b/parse/train/XxP75wV6JGH/images/f4955a742cf60d4c17168d6e85637deb0162ec6bbaff20d46982bb07d1fe5dfb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9298aabe9a15c7bc349aee7d0305b7f649450a54 --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/f4955a742cf60d4c17168d6e85637deb0162ec6bbaff20d46982bb07d1fe5dfb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ae305db71c753b23562adeb093ce16308a4f314b451f79ccbe587b34925b1ac +size 8952 diff --git a/parse/train/XxP75wV6JGH/images/f5079b2288a0b450639332f6207c47ef5db1c926505fe05822893ef855faa9df.jpg b/parse/train/XxP75wV6JGH/images/f5079b2288a0b450639332f6207c47ef5db1c926505fe05822893ef855faa9df.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7075c8877072302a48504465d10888904e444bcf --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/f5079b2288a0b450639332f6207c47ef5db1c926505fe05822893ef855faa9df.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62e9b3fea53c12003ad77d58f58bc4ead96de1d702dbea3184c0ddb25eb10d04 +size 9192 diff --git a/parse/train/XxP75wV6JGH/images/ff20ef6eef2f391578570f4d4f3df0f3a92f8535932a54211d22dd18ff4ef626.jpg b/parse/train/XxP75wV6JGH/images/ff20ef6eef2f391578570f4d4f3df0f3a92f8535932a54211d22dd18ff4ef626.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d57407b34d6b4ba174e8df0d18180297765096a --- /dev/null +++ b/parse/train/XxP75wV6JGH/images/ff20ef6eef2f391578570f4d4f3df0f3a92f8535932a54211d22dd18ff4ef626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:371c325a393d04cbf29adc5d2195866766fac97a928da7ef0561222971601fa5 +size 7912 diff --git a/parse/train/d7KBjmI3GmQ/images/04835485ee72307b08f63af0288bd0b1395743a266a7e171e1f708ebcd0cb6da.jpg b/parse/train/d7KBjmI3GmQ/images/04835485ee72307b08f63af0288bd0b1395743a266a7e171e1f708ebcd0cb6da.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5874b9c1d5be6eab23ef829249b0c1789607c768 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/04835485ee72307b08f63af0288bd0b1395743a266a7e171e1f708ebcd0cb6da.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd808aac93a90386c13d203cc8d4189e7a9d47ae1e9d35bd12974cb09da187d +size 51588 diff --git a/parse/train/d7KBjmI3GmQ/images/053aafe93d77306b39c3b3684795dc4ea23308817882c1ef9abf83a20cb45b86.jpg b/parse/train/d7KBjmI3GmQ/images/053aafe93d77306b39c3b3684795dc4ea23308817882c1ef9abf83a20cb45b86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f0771a1f8d9eff3a0372e9f9919498acdbde91e --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/053aafe93d77306b39c3b3684795dc4ea23308817882c1ef9abf83a20cb45b86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3d1c65165997c750d658d92086ca2cbe4177d805e4a7f038914c8f49adf675c +size 33059 diff --git a/parse/train/d7KBjmI3GmQ/images/083f7d838c660da94841f394a2c75692742516937478a9ae2285f195a000ffa8.jpg b/parse/train/d7KBjmI3GmQ/images/083f7d838c660da94841f394a2c75692742516937478a9ae2285f195a000ffa8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..afab5f7cf6f433866c79eaa4926bc1cb0defebcb --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/083f7d838c660da94841f394a2c75692742516937478a9ae2285f195a000ffa8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e298c863f1cd333df053709c6fd55ef352eaa56144e1b4977a32d09183260444 +size 4132 diff --git a/parse/train/d7KBjmI3GmQ/images/09e0c8acaa40029a0188bbc8536a88f38979a905c2ad6683efb3a2432db004c9.jpg b/parse/train/d7KBjmI3GmQ/images/09e0c8acaa40029a0188bbc8536a88f38979a905c2ad6683efb3a2432db004c9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca9c4ba63af7af23db4f614b89ab280e088844b4 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/09e0c8acaa40029a0188bbc8536a88f38979a905c2ad6683efb3a2432db004c9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f422f9976fb7f9d935bb2d193d458068b54026d5dd70de39abbd2505f7d6735e +size 74118 diff --git a/parse/train/d7KBjmI3GmQ/images/0aee6bf2e79a7228a5195da8f8593be81c73a45555bd6c8403c3faf3045356f2.jpg b/parse/train/d7KBjmI3GmQ/images/0aee6bf2e79a7228a5195da8f8593be81c73a45555bd6c8403c3faf3045356f2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f730fdb1f131c7917a5c409f30e2f285a44e98a --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/0aee6bf2e79a7228a5195da8f8593be81c73a45555bd6c8403c3faf3045356f2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a424f9b4e7fb14b5c7ecbdf093c978d8907c70a5fcbfcc9e136d3ee7aed27d2d +size 34353 diff --git a/parse/train/d7KBjmI3GmQ/images/0fafbd66b658b2f581ade86190f1115600d0cbad7c7262a523ded5840455a1a5.jpg b/parse/train/d7KBjmI3GmQ/images/0fafbd66b658b2f581ade86190f1115600d0cbad7c7262a523ded5840455a1a5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb7422b51bee4324136d8dfe8e562845712193b9 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/0fafbd66b658b2f581ade86190f1115600d0cbad7c7262a523ded5840455a1a5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d170270880a296099b6a4ec47d4f3f0726c8e210e8ab7107639d52dd4fc1e1e9 +size 158566 diff --git a/parse/train/d7KBjmI3GmQ/images/1670256fc8b6e615ea702b32937855ff5e6b26073288af244c27b2bc7f0522e6.jpg b/parse/train/d7KBjmI3GmQ/images/1670256fc8b6e615ea702b32937855ff5e6b26073288af244c27b2bc7f0522e6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee942d0fa1e41004763733f7c465bfd54d1d9fa3 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/1670256fc8b6e615ea702b32937855ff5e6b26073288af244c27b2bc7f0522e6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9636a40778a85c62c49b48a6d8de999392ae392d802497bb6228678d27f7f0b +size 57855 diff --git a/parse/train/d7KBjmI3GmQ/images/1fbc2ab52abc77b14ce01013a7f15d70efb01571e5c816221c74a2ad5a09229a.jpg b/parse/train/d7KBjmI3GmQ/images/1fbc2ab52abc77b14ce01013a7f15d70efb01571e5c816221c74a2ad5a09229a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efef770fb3662fd3e7f573db3f6f002cab5c758b --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/1fbc2ab52abc77b14ce01013a7f15d70efb01571e5c816221c74a2ad5a09229a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1cbf3fd93d6f04efc1cad75b7cee52feb4fc6d819a9aeaf43cc9c4e30f894d4 +size 23656 diff --git a/parse/train/d7KBjmI3GmQ/images/2018d0aac5f7a72d780aeac4acd9784d458ab5e9c20be1c58981705512310452.jpg b/parse/train/d7KBjmI3GmQ/images/2018d0aac5f7a72d780aeac4acd9784d458ab5e9c20be1c58981705512310452.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed06d6522224df2abd469e5ce5fcf5584ea2bc31 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/2018d0aac5f7a72d780aeac4acd9784d458ab5e9c20be1c58981705512310452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cf526de26b89ad981a532a727dd29ada69dbeb799d26fbe2bbfeac59bbbceaf +size 54307 diff --git a/parse/train/d7KBjmI3GmQ/images/3097ba5357528d67eb27225a91ac69dc00b8c898947a9dcc10486c38050f799c.jpg b/parse/train/d7KBjmI3GmQ/images/3097ba5357528d67eb27225a91ac69dc00b8c898947a9dcc10486c38050f799c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc356da2c0365be80812be1686d5d3d9e427333f --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/3097ba5357528d67eb27225a91ac69dc00b8c898947a9dcc10486c38050f799c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bdb9bddca3eb6ec2d4930c059b5be24d8288ad15926072ecbd57a9f612f4f2b +size 14127 diff --git a/parse/train/d7KBjmI3GmQ/images/338b8dc1cd186c3a09f99c2cc6ca109645f823bd7882b61418e5d811fdff9618.jpg b/parse/train/d7KBjmI3GmQ/images/338b8dc1cd186c3a09f99c2cc6ca109645f823bd7882b61418e5d811fdff9618.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca68aedb20deaa9ccfaa2c06667e1778f8dd0af8 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/338b8dc1cd186c3a09f99c2cc6ca109645f823bd7882b61418e5d811fdff9618.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5836443bb393649b6316d914d96f943eb18ab29c7b19f5b17f86788bff9a717 +size 84484 diff --git a/parse/train/d7KBjmI3GmQ/images/34a6b47a6d525f5b7f965c4e739ea22ac4607b801cfbcabc6831220a07928853.jpg b/parse/train/d7KBjmI3GmQ/images/34a6b47a6d525f5b7f965c4e739ea22ac4607b801cfbcabc6831220a07928853.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b376476dab826951eae7982b9f76bc66bfb204de --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/34a6b47a6d525f5b7f965c4e739ea22ac4607b801cfbcabc6831220a07928853.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ba095148bc05d5a77f7f57c866921a62ff12f2ccedcd9890860de9096b6081 +size 38814 diff --git a/parse/train/d7KBjmI3GmQ/images/3ce579e93ccc89449fb54d3007c7fea6fb71722e929db5ab3a73eafc97808145.jpg b/parse/train/d7KBjmI3GmQ/images/3ce579e93ccc89449fb54d3007c7fea6fb71722e929db5ab3a73eafc97808145.jpg new file mode 100644 index 0000000000000000000000000000000000000000..217e63a6ccd24a7353df647cbc1b5d94e928253f --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/3ce579e93ccc89449fb54d3007c7fea6fb71722e929db5ab3a73eafc97808145.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2083aa33dfe96ec308fcf950ac078b7296bc7484e34d1a503e41752fd673eae +size 31483 diff --git a/parse/train/d7KBjmI3GmQ/images/41d1d9c42f9aa1ffeca158119ab042af32afe3a51d8e9df39bf8e1a534b8e61f.jpg b/parse/train/d7KBjmI3GmQ/images/41d1d9c42f9aa1ffeca158119ab042af32afe3a51d8e9df39bf8e1a534b8e61f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e557ad47ed14346be85326ec4c1176d52259fc9d --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/41d1d9c42f9aa1ffeca158119ab042af32afe3a51d8e9df39bf8e1a534b8e61f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f62425696a7c8238a793a717b17788539862a854a4a7ffb0dc04d588ab46f9f +size 36861 diff --git a/parse/train/d7KBjmI3GmQ/images/4818c4ba833505441e629168f9b11bb1dbffa9d80ccaed6e4fb716e0ab45f581.jpg b/parse/train/d7KBjmI3GmQ/images/4818c4ba833505441e629168f9b11bb1dbffa9d80ccaed6e4fb716e0ab45f581.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5cb364371b455e14661fe3f0a8c4a8908882571 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/4818c4ba833505441e629168f9b11bb1dbffa9d80ccaed6e4fb716e0ab45f581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a630722f13984e10dd6a1490f2795df7fb37a7e0c112b06411b0231c45122dd6 +size 29021 diff --git a/parse/train/d7KBjmI3GmQ/images/484cfdc51bae1aa5ddfa3857d57bb526d1e1e20a77a8edce6398c445b36c7082.jpg b/parse/train/d7KBjmI3GmQ/images/484cfdc51bae1aa5ddfa3857d57bb526d1e1e20a77a8edce6398c445b36c7082.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f1298b62f63b5d3d6a8d13769f5b6e1525e6a24 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/484cfdc51bae1aa5ddfa3857d57bb526d1e1e20a77a8edce6398c445b36c7082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:426bf8ca5e192266e4b79031ff7cc60bfc2084ac28bfb0cb516cea09f4f49697 +size 9320 diff --git a/parse/train/d7KBjmI3GmQ/images/682f359e80205ea8ff880d763947054f63baec00a23875b8230a5b50da685fbb.jpg b/parse/train/d7KBjmI3GmQ/images/682f359e80205ea8ff880d763947054f63baec00a23875b8230a5b50da685fbb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f92c7cddfae251e89c4615ca99c196f9e3827b14 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/682f359e80205ea8ff880d763947054f63baec00a23875b8230a5b50da685fbb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f1d7c8330d41b63f92f677eba14f822c176508cdd62f570be4af24825aec4e1 +size 19546 diff --git a/parse/train/d7KBjmI3GmQ/images/720bb51804c66c67e2a287ed0f83e904834c687f96a78a9d8e228cbd52420a56.jpg b/parse/train/d7KBjmI3GmQ/images/720bb51804c66c67e2a287ed0f83e904834c687f96a78a9d8e228cbd52420a56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d60e93b82e7651bf6b0376ac3c6df55d9f3b7f18 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/720bb51804c66c67e2a287ed0f83e904834c687f96a78a9d8e228cbd52420a56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e0ccfa1b9ecaaeea73662c4a365856733a23c43e032c05a1fda86309be7bfd +size 25458 diff --git a/parse/train/d7KBjmI3GmQ/images/73b33c8ef88b587b88e1958267e89b58a686d13cd2e726f04ddb9edaf302801c.jpg b/parse/train/d7KBjmI3GmQ/images/73b33c8ef88b587b88e1958267e89b58a686d13cd2e726f04ddb9edaf302801c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23d6f3ced2615dcae535a6033bdac7888c79cd84 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/73b33c8ef88b587b88e1958267e89b58a686d13cd2e726f04ddb9edaf302801c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51d2a5245193ee385ffa722c8e4415f9028e1c7478c4a12aeca143c838af147d +size 32420 diff --git a/parse/train/d7KBjmI3GmQ/images/7d0f5cd49ea6f5edf2c8439cdeeb37c79e01f23e138d1b3a4ddc627bcd364b12.jpg b/parse/train/d7KBjmI3GmQ/images/7d0f5cd49ea6f5edf2c8439cdeeb37c79e01f23e138d1b3a4ddc627bcd364b12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ac682b8784627f401296983324e3edfd7232892 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/7d0f5cd49ea6f5edf2c8439cdeeb37c79e01f23e138d1b3a4ddc627bcd364b12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa9114e4994765a30db36af2a3972e9b6e3fe8c607d5268d801a52c59b215b27 +size 44799 diff --git a/parse/train/d7KBjmI3GmQ/images/869e90cdbe6203349083b4f54b8b7286edb2dd5b24f4123edc5c8d3155362db9.jpg b/parse/train/d7KBjmI3GmQ/images/869e90cdbe6203349083b4f54b8b7286edb2dd5b24f4123edc5c8d3155362db9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..edcabe2ec2d5b9fd9d50d785ef85959523c813f7 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/869e90cdbe6203349083b4f54b8b7286edb2dd5b24f4123edc5c8d3155362db9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0492e099009c6f2dd63475755ef7fe5b390c340297d7ceeb216eccf72f0acf9c +size 7039 diff --git a/parse/train/d7KBjmI3GmQ/images/8a9a52fe9f635db507d31c894560c4382f757970c39c8ff716958aa69f43f82a.jpg b/parse/train/d7KBjmI3GmQ/images/8a9a52fe9f635db507d31c894560c4382f757970c39c8ff716958aa69f43f82a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4dd65746d0e300dc6d329b3d6db414389e55730c --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/8a9a52fe9f635db507d31c894560c4382f757970c39c8ff716958aa69f43f82a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30183d5820de54e07191c00023ccd46dc5b8f5dda167422aa9d415a5fe356aea +size 34462 diff --git a/parse/train/d7KBjmI3GmQ/images/a199407c3a1364f10fd34ef6d79cb3324bfa38ff2eb65161660d765968487e3f.jpg b/parse/train/d7KBjmI3GmQ/images/a199407c3a1364f10fd34ef6d79cb3324bfa38ff2eb65161660d765968487e3f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b64ceba748481a3d4ec39d89a308d569d1cbeee --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/a199407c3a1364f10fd34ef6d79cb3324bfa38ff2eb65161660d765968487e3f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9273967ac83b9ad80c150a313e89b381ba6e8a4c15ad0a9bfc81d3154eead16a +size 119910 diff --git a/parse/train/d7KBjmI3GmQ/images/a916262b3beea5f471a9f4eec528c6bafaedf5eced7cbbc46d5c8b14707a52ae.jpg b/parse/train/d7KBjmI3GmQ/images/a916262b3beea5f471a9f4eec528c6bafaedf5eced7cbbc46d5c8b14707a52ae.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94b9840bc1d67c57ea636db2050c7acdd5c22528 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/a916262b3beea5f471a9f4eec528c6bafaedf5eced7cbbc46d5c8b14707a52ae.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:011acfab451a4b3b21c5943f6340daa268a74378e25c0d1c0afae4b9b806acce +size 31430 diff --git a/parse/train/d7KBjmI3GmQ/images/a98dcafa492f41b955b02e91b9fb34f148e172a9e27cae948d26d42a02a4ddaa.jpg b/parse/train/d7KBjmI3GmQ/images/a98dcafa492f41b955b02e91b9fb34f148e172a9e27cae948d26d42a02a4ddaa.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f604b5c8fc11aac9967195fd112a6b86b0cb2f7d --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/a98dcafa492f41b955b02e91b9fb34f148e172a9e27cae948d26d42a02a4ddaa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:973a8ba886e9565b4634f720c7a6424bf6a5f4ca001a79621f9c0b6b696f8bb2 +size 44409 diff --git a/parse/train/d7KBjmI3GmQ/images/ab95b2d59a8a7810ecff91f08de3b878dfbcd5312892b4d16920703bdbaa36cf.jpg b/parse/train/d7KBjmI3GmQ/images/ab95b2d59a8a7810ecff91f08de3b878dfbcd5312892b4d16920703bdbaa36cf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..13889e843ab70d005145c3b920c7fc77f56101b8 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/ab95b2d59a8a7810ecff91f08de3b878dfbcd5312892b4d16920703bdbaa36cf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a58411f1b048c61754f9d2e590a5693cf14c31bed10cffeb81eeec3c2c7640 +size 539627 diff --git a/parse/train/d7KBjmI3GmQ/images/b71c9b90e491d418ca542d4adcd3d6fc0b1d12e8845dc24af963ad2ba7f06b6f.jpg b/parse/train/d7KBjmI3GmQ/images/b71c9b90e491d418ca542d4adcd3d6fc0b1d12e8845dc24af963ad2ba7f06b6f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d0d21c1dd1a3b6e939bc29882e802761e96a5dc --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/b71c9b90e491d418ca542d4adcd3d6fc0b1d12e8845dc24af963ad2ba7f06b6f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28fd020d3d67c30f52671f1f35c83db63d0d839d33d82592af06e47ece16e896 +size 23519 diff --git a/parse/train/d7KBjmI3GmQ/images/b753857861072e5125ebb14d7eac2d4e0c3f1711a834691c9be74ddc7bfd4d7a.jpg b/parse/train/d7KBjmI3GmQ/images/b753857861072e5125ebb14d7eac2d4e0c3f1711a834691c9be74ddc7bfd4d7a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8d2f81bdf1c2a182e9201e47dde4c4941a82c8a --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/b753857861072e5125ebb14d7eac2d4e0c3f1711a834691c9be74ddc7bfd4d7a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e13df649985050a37a0196829bbb1fa5443bffcb59c55a10c1791b38bf66f773 +size 37057 diff --git a/parse/train/d7KBjmI3GmQ/images/c0578f5199d9630fc8203c4d92151fdd446e9f670806ec71a633a436e0e2ef30.jpg b/parse/train/d7KBjmI3GmQ/images/c0578f5199d9630fc8203c4d92151fdd446e9f670806ec71a633a436e0e2ef30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb263b17b54adb8e1e98eef0bd32c2af60d5ad31 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/c0578f5199d9630fc8203c4d92151fdd446e9f670806ec71a633a436e0e2ef30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:128bc514c11f2ca9701afe8e1f0ed0dbb062ebbc9f1104b41e310adc1b6015ef +size 23259 diff --git a/parse/train/d7KBjmI3GmQ/images/c0ad05c5ffce925d5a6c4ee66a918c11f6968165046725c3c57791f96e7a92b6.jpg b/parse/train/d7KBjmI3GmQ/images/c0ad05c5ffce925d5a6c4ee66a918c11f6968165046725c3c57791f96e7a92b6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87e4d4f03440d4f7e75d817ea7879b5183ad638b --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/c0ad05c5ffce925d5a6c4ee66a918c11f6968165046725c3c57791f96e7a92b6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c929d687166c16dae11ae60e1bc567225706ff315dc9688777c154f3ae815b26 +size 32750 diff --git a/parse/train/d7KBjmI3GmQ/images/ccc60356a128161dfdd90fe032711edcc08a8daad745fefb4326739269d6488e.jpg b/parse/train/d7KBjmI3GmQ/images/ccc60356a128161dfdd90fe032711edcc08a8daad745fefb4326739269d6488e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..319ff326e1de77deb974b5e68795b39a5f44ba70 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/ccc60356a128161dfdd90fe032711edcc08a8daad745fefb4326739269d6488e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c33b3508b2e7c03640cb2da8bd864cff8ff28c74af0e3e49249242c437572435 +size 301934 diff --git a/parse/train/d7KBjmI3GmQ/images/d0a2f3ca638941672b792a0e0eebdb59c5d910c14f492589114241149c8ae4d0.jpg b/parse/train/d7KBjmI3GmQ/images/d0a2f3ca638941672b792a0e0eebdb59c5d910c14f492589114241149c8ae4d0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4e95e745b8afc52dd5e740999739b28486a761a7 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/d0a2f3ca638941672b792a0e0eebdb59c5d910c14f492589114241149c8ae4d0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0ac164de0194aed9ae9d848db66f356e8525c55801472f6dd043678f142a7c6 +size 43394 diff --git a/parse/train/d7KBjmI3GmQ/images/d783bc8070114afd8ffe64d1f6e984a7ec1122891b75db7d014b25d86fa4aefe.jpg b/parse/train/d7KBjmI3GmQ/images/d783bc8070114afd8ffe64d1f6e984a7ec1122891b75db7d014b25d86fa4aefe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f4d71faa993a342b34b4185714df303b9ba250c --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/d783bc8070114afd8ffe64d1f6e984a7ec1122891b75db7d014b25d86fa4aefe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:002bfd2a414e37eb649b514b907e4ee0d5c2952315cb29931ae3d06baf713470 +size 37960 diff --git a/parse/train/d7KBjmI3GmQ/images/ea3b9c469e97f8018fcc44afe199bcb3d65f8210ff694ef8464f331ab7bca94f.jpg b/parse/train/d7KBjmI3GmQ/images/ea3b9c469e97f8018fcc44afe199bcb3d65f8210ff694ef8464f331ab7bca94f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..367e2fe7947b21b17ccfa737b75e17a56ee5b559 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/ea3b9c469e97f8018fcc44afe199bcb3d65f8210ff694ef8464f331ab7bca94f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77a24e1b3a501f326fc2366f422cac6bfe96d6b568e00653a879e2632ddbaa3d +size 72517 diff --git a/parse/train/d7KBjmI3GmQ/images/ec2bf66cc68ad0b8b3e28707066ac4282820073d4e419043111358943d6aa7c7.jpg b/parse/train/d7KBjmI3GmQ/images/ec2bf66cc68ad0b8b3e28707066ac4282820073d4e419043111358943d6aa7c7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..423ca323b0b41430a137701bc4d615fa9cf7f02c --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/ec2bf66cc68ad0b8b3e28707066ac4282820073d4e419043111358943d6aa7c7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f01e2c255e9f34c0dd07d313e5b47c3757dcab333a78547e6089be16356b01d2 +size 36665 diff --git a/parse/train/d7KBjmI3GmQ/images/f6107d35861aac485cf60154d154c0f0dd587c78332ab6ecaee0f43a240241f9.jpg b/parse/train/d7KBjmI3GmQ/images/f6107d35861aac485cf60154d154c0f0dd587c78332ab6ecaee0f43a240241f9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bff248bbca4d8cde4b1fb04560b5572d04b6b50 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/f6107d35861aac485cf60154d154c0f0dd587c78332ab6ecaee0f43a240241f9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd2d350a6c111789dd346c4416186fd8f70ea75c3d19e870506dc2a83a37001 +size 53047 diff --git a/parse/train/d7KBjmI3GmQ/images/f82d5ee1cd98378997a3257b72273349ed15b48d67373c79af68c55d2adfde5d.jpg b/parse/train/d7KBjmI3GmQ/images/f82d5ee1cd98378997a3257b72273349ed15b48d67373c79af68c55d2adfde5d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4244db9562d7ac14e5bf6a6beb2b4dddd4178a09 --- /dev/null +++ b/parse/train/d7KBjmI3GmQ/images/f82d5ee1cd98378997a3257b72273349ed15b48d67373c79af68c55d2adfde5d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27697a1704a89282354fc67cc3f0180c2688eb939b70a3e9152ce5e7483530de +size 36337 diff --git a/parse/train/gl3D-xY7wLq/images/016bb24b63fa3298d195117c9d6a9788565b3f7dbe82b00e7b47189f3314c63c.jpg b/parse/train/gl3D-xY7wLq/images/016bb24b63fa3298d195117c9d6a9788565b3f7dbe82b00e7b47189f3314c63c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6df939270a606da494bdc9c0d7bcadc3fa6642d --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/016bb24b63fa3298d195117c9d6a9788565b3f7dbe82b00e7b47189f3314c63c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e5a2388a8a9a333b7a156f145be1acd047b6b99dec06df83b0052bbfe361405 +size 45136 diff --git a/parse/train/gl3D-xY7wLq/images/02750bdf680ae94d36d8b368cc4f6893b2746d020b49b0f32582e96fca4ca0bb.jpg b/parse/train/gl3D-xY7wLq/images/02750bdf680ae94d36d8b368cc4f6893b2746d020b49b0f32582e96fca4ca0bb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec5086d1353e4d80761dd46c9f5d9c848e899c00 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/02750bdf680ae94d36d8b368cc4f6893b2746d020b49b0f32582e96fca4ca0bb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c2dd47f189b968efaa357e320ed89681748b1372c6602020d00de476d9a722a +size 33867 diff --git a/parse/train/gl3D-xY7wLq/images/0c11dbe95ae025b2429111a819209f084a7a7408c92576bdc1a0f1f806ea0e7f.jpg b/parse/train/gl3D-xY7wLq/images/0c11dbe95ae025b2429111a819209f084a7a7408c92576bdc1a0f1f806ea0e7f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a28959d646b187ec09c4216f00b767f4a956b304 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/0c11dbe95ae025b2429111a819209f084a7a7408c92576bdc1a0f1f806ea0e7f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de56e1cb173a9624f67adb25009c7aface1c305795b3511927d93aaaec4b87cb +size 42556 diff --git a/parse/train/gl3D-xY7wLq/images/1f3caf29239940996696ea65f147de7240e4a9c9c745dd4b1418d9e99de3285b.jpg b/parse/train/gl3D-xY7wLq/images/1f3caf29239940996696ea65f147de7240e4a9c9c745dd4b1418d9e99de3285b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63855f01c9cd95ab5a6c78123c0123484cecbdc3 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/1f3caf29239940996696ea65f147de7240e4a9c9c745dd4b1418d9e99de3285b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e8c88387ad8d66bbc90cb536159273e1a042bbb46c1ba1fa1ee666661bbdadf +size 29553 diff --git a/parse/train/gl3D-xY7wLq/images/265fbe3f78498cc560496ef38ce52ead5f21923775b58fbd2419079d9be8c0c4.jpg b/parse/train/gl3D-xY7wLq/images/265fbe3f78498cc560496ef38ce52ead5f21923775b58fbd2419079d9be8c0c4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4963ef7bdc205968d1bd2bedb532de6ab6cc70c --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/265fbe3f78498cc560496ef38ce52ead5f21923775b58fbd2419079d9be8c0c4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64cc1d8a2cf3e29f20ef8439d543b9a7d317330091604ae200e3b2831a631828 +size 50272 diff --git a/parse/train/gl3D-xY7wLq/images/291dcfe5536b4ddad86b4b4803c4e99cc32ebfb4c2bf6152f83be2e530cf3ecb.jpg b/parse/train/gl3D-xY7wLq/images/291dcfe5536b4ddad86b4b4803c4e99cc32ebfb4c2bf6152f83be2e530cf3ecb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3046912ac19e5e73da23af617733f63302ae27d4 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/291dcfe5536b4ddad86b4b4803c4e99cc32ebfb4c2bf6152f83be2e530cf3ecb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a029a005d01aa07682a971fb3bd85edd3b958f325bc924c7fedce4f3f107b4bf +size 38218 diff --git a/parse/train/gl3D-xY7wLq/images/39d95c29922404808c2cd28fca51c6adf4e63af3c90e97a411d4b039c35130d2.jpg b/parse/train/gl3D-xY7wLq/images/39d95c29922404808c2cd28fca51c6adf4e63af3c90e97a411d4b039c35130d2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0056849f4035add98486ef5e22647346e2917520 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/39d95c29922404808c2cd28fca51c6adf4e63af3c90e97a411d4b039c35130d2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a99a54824455367e74bb5e9bee1b478c755b891ce865d69efc545e3b88376a4 +size 75522 diff --git a/parse/train/gl3D-xY7wLq/images/3fbdf4d21158ba7d6d6fda6b8f8a37ead145e4e4b429844a6e7f9c7e5f3ba2bb.jpg b/parse/train/gl3D-xY7wLq/images/3fbdf4d21158ba7d6d6fda6b8f8a37ead145e4e4b429844a6e7f9c7e5f3ba2bb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cfeac917c47fa2e1c2305fb99b98bb2b30f3f7cb --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/3fbdf4d21158ba7d6d6fda6b8f8a37ead145e4e4b429844a6e7f9c7e5f3ba2bb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18711065e9d72aff0d27b6e014781c4281038c64d9553d3322cd56f47de672a6 +size 20945 diff --git a/parse/train/gl3D-xY7wLq/images/402556d294d3c4f52a0a9b3e5c9ae1c79dfc89a269bf2e4a7719f03b099429ba.jpg b/parse/train/gl3D-xY7wLq/images/402556d294d3c4f52a0a9b3e5c9ae1c79dfc89a269bf2e4a7719f03b099429ba.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a64a3771ad92ccfcbe3cda588ac414cc948eff2 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/402556d294d3c4f52a0a9b3e5c9ae1c79dfc89a269bf2e4a7719f03b099429ba.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b898f78cf2a4e195918f0d955efb4b822f590fce81b86d485d9f76c1534500e4 +size 33872 diff --git a/parse/train/gl3D-xY7wLq/images/41965a255e38b31ba803f195622ac1f63dcf19e12d1f2eaa25cebca0d6119ee3.jpg b/parse/train/gl3D-xY7wLq/images/41965a255e38b31ba803f195622ac1f63dcf19e12d1f2eaa25cebca0d6119ee3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4bc3cff3bacf4bd3a2e891a0b3e9056c6f97f46b --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/41965a255e38b31ba803f195622ac1f63dcf19e12d1f2eaa25cebca0d6119ee3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b3c474b69f58e09f37480fcc87d96bade0d2b38873fef47d5aaa0a9ab40a489 +size 64785 diff --git a/parse/train/gl3D-xY7wLq/images/463f57c63ecc0ceb3377bafd01e2f8589ed87f07318d93eb7cabe6b264e17ffd.jpg b/parse/train/gl3D-xY7wLq/images/463f57c63ecc0ceb3377bafd01e2f8589ed87f07318d93eb7cabe6b264e17ffd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a56f1871a21676e3f508336fd2503d4284843986 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/463f57c63ecc0ceb3377bafd01e2f8589ed87f07318d93eb7cabe6b264e17ffd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9c3eddbf863d3d1126bd6096ba5f21a2a0182be2fec56dd7960175e956dfbbf +size 81357 diff --git a/parse/train/gl3D-xY7wLq/images/4f07b5a203b6ce76cf0662fa6875b387c2fd5b722b2aa4c9e52031760b9cfcc9.jpg b/parse/train/gl3D-xY7wLq/images/4f07b5a203b6ce76cf0662fa6875b387c2fd5b722b2aa4c9e52031760b9cfcc9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d01eb84828fe303a3cdca4d967754cc1c822475 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/4f07b5a203b6ce76cf0662fa6875b387c2fd5b722b2aa4c9e52031760b9cfcc9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b15491ba56de3b5ea8fbbc6def2e8fe42efd2a1dbe032e5f0821591569f09e6b +size 37594 diff --git a/parse/train/gl3D-xY7wLq/images/5478c12e299f6c05895d1f9bd465f955a594fb3ef14ddb5371cca7fb5f896667.jpg b/parse/train/gl3D-xY7wLq/images/5478c12e299f6c05895d1f9bd465f955a594fb3ef14ddb5371cca7fb5f896667.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14c500e48bba88bfe9a0c4487fa31d29b2ab8767 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/5478c12e299f6c05895d1f9bd465f955a594fb3ef14ddb5371cca7fb5f896667.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc55780cbcc77d6ec3347369a4926032872ba3a3c80e3081f1d8ab86a07bd5c +size 57944 diff --git a/parse/train/gl3D-xY7wLq/images/613a6a063be1a86e6a68d45f5a949f7e0b8fc3cffea5584830b9bb53b2c52362.jpg b/parse/train/gl3D-xY7wLq/images/613a6a063be1a86e6a68d45f5a949f7e0b8fc3cffea5584830b9bb53b2c52362.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be7c7ebdb9c45c348f9eb34b230660b12bda4d26 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/613a6a063be1a86e6a68d45f5a949f7e0b8fc3cffea5584830b9bb53b2c52362.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57db926688f182cc8062e82f515b402bd38136dbad1aeef4fc7bbf19c62108c +size 31950 diff --git a/parse/train/gl3D-xY7wLq/images/6ade084d43d689ccaa03e1e9f38bfb8208cc10fec44f78afb4a08878d054fd5e.jpg b/parse/train/gl3D-xY7wLq/images/6ade084d43d689ccaa03e1e9f38bfb8208cc10fec44f78afb4a08878d054fd5e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd8882a7688d28b260a4c6d0b4f9fdfeebdd3380 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/6ade084d43d689ccaa03e1e9f38bfb8208cc10fec44f78afb4a08878d054fd5e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb1ce156e068ce2bef346b1f03ff6e1578e8f0a0714676cd982b97ec78cbdead +size 86664 diff --git a/parse/train/gl3D-xY7wLq/images/6f8c132f39029a8914d3aa9e2073e4be02a6f6588edbe4958fcd363d05ab0264.jpg b/parse/train/gl3D-xY7wLq/images/6f8c132f39029a8914d3aa9e2073e4be02a6f6588edbe4958fcd363d05ab0264.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f55e5e958e5f49f0294dcd5c32269529939eca5f --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/6f8c132f39029a8914d3aa9e2073e4be02a6f6588edbe4958fcd363d05ab0264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59836277928fcca828d17603dc7bbd29f36157b106b3b5776471bcfc9f52a415 +size 39457 diff --git a/parse/train/gl3D-xY7wLq/images/77fb8acd18b0401a966745975e93b2c823a86bcb9bf2ccdb343c0252d8ff8d8d.jpg b/parse/train/gl3D-xY7wLq/images/77fb8acd18b0401a966745975e93b2c823a86bcb9bf2ccdb343c0252d8ff8d8d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee982357de2dfdca8ac610bf38e58dba2b23b706 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/77fb8acd18b0401a966745975e93b2c823a86bcb9bf2ccdb343c0252d8ff8d8d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:528d3dd05edd1c965de57f9930ede73c0883b8596ecb6d16ea51a1c7882b0c1d +size 41190 diff --git a/parse/train/gl3D-xY7wLq/images/7b8077c01878794251e63ce6a8989a6077de391d35554b2d95522f8459bf4cfd.jpg b/parse/train/gl3D-xY7wLq/images/7b8077c01878794251e63ce6a8989a6077de391d35554b2d95522f8459bf4cfd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a079b9b52e1ca11eda8b9f828120d36a943d3d3 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/7b8077c01878794251e63ce6a8989a6077de391d35554b2d95522f8459bf4cfd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04191f6f6a31b919fd359e134e00a983a5a2542da7e3d1eacbb533f037f7d4b4 +size 69873 diff --git a/parse/train/gl3D-xY7wLq/images/7fc4839c382e661cb531f173ef2da7ce7085fd249bd9504acee3fcec107beff4.jpg b/parse/train/gl3D-xY7wLq/images/7fc4839c382e661cb531f173ef2da7ce7085fd249bd9504acee3fcec107beff4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5955c2ba4ebdf46f7c3b5d7586ce083baa288f6 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/7fc4839c382e661cb531f173ef2da7ce7085fd249bd9504acee3fcec107beff4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96b45779af6c693d584730a7049db327688e0cf56e125e0eddc6e57bd2d6ee89 +size 39331 diff --git a/parse/train/gl3D-xY7wLq/images/8214308816790e1c58cc8f77f33d8000cb192e1ed03b3881d75f8caa6a0e8a1e.jpg b/parse/train/gl3D-xY7wLq/images/8214308816790e1c58cc8f77f33d8000cb192e1ed03b3881d75f8caa6a0e8a1e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eef608e1800862fcccbb3ffc436f5b54ccdefff3 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/8214308816790e1c58cc8f77f33d8000cb192e1ed03b3881d75f8caa6a0e8a1e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d006c744b55fbdaec863fb4e28a853b29e07872eefa383031071ef611041e164 +size 60624 diff --git a/parse/train/gl3D-xY7wLq/images/85f64cb15f5d4c38ab1d1b25dd4b585a0dff59ef3614be337885294cd7de7332.jpg b/parse/train/gl3D-xY7wLq/images/85f64cb15f5d4c38ab1d1b25dd4b585a0dff59ef3614be337885294cd7de7332.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90b64002e25906551e07d9b68083a801ac93a64f --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/85f64cb15f5d4c38ab1d1b25dd4b585a0dff59ef3614be337885294cd7de7332.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77b06d0cbf7995fc80a4961cc2bdcfb04a5dccd92a1dc777319784425aa99460 +size 36101 diff --git a/parse/train/gl3D-xY7wLq/images/892f1f1b94579f96e557ab1e8efea7a276d17bf96b6cd9673e7a5bdd3f939d4a.jpg b/parse/train/gl3D-xY7wLq/images/892f1f1b94579f96e557ab1e8efea7a276d17bf96b6cd9673e7a5bdd3f939d4a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c296e75126a9459db34ed41da3fb637bcc66062f --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/892f1f1b94579f96e557ab1e8efea7a276d17bf96b6cd9673e7a5bdd3f939d4a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b36d72e0303bbd19f4c974714fc59d949436383e39f5c2ebedc9c0f5655eea1 +size 45520 diff --git a/parse/train/gl3D-xY7wLq/images/9835ef84b01fb95331d73d20bc8002e80e79cffeb016286548601e1a40fc9048.jpg b/parse/train/gl3D-xY7wLq/images/9835ef84b01fb95331d73d20bc8002e80e79cffeb016286548601e1a40fc9048.jpg new file mode 100644 index 0000000000000000000000000000000000000000..431ffee6cd6e0bb2179a2491e73511a5bdf5429e --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/9835ef84b01fb95331d73d20bc8002e80e79cffeb016286548601e1a40fc9048.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a642d6aadf834fd39012042269d0c86bd0faae9967380c31918384be896c159 +size 39915 diff --git a/parse/train/gl3D-xY7wLq/images/9b2aef1d6412ea678772268879d1d934d1a97652bfb61acbdc72d12069ff2786.jpg b/parse/train/gl3D-xY7wLq/images/9b2aef1d6412ea678772268879d1d934d1a97652bfb61acbdc72d12069ff2786.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99257a0632d7e1f87b7e753e67a8fa103a48f3b9 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/9b2aef1d6412ea678772268879d1d934d1a97652bfb61acbdc72d12069ff2786.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21c83115e033f4fc7089068b7b1d1c67a0b0883f9f94f860553fa81aea82beb4 +size 85057 diff --git a/parse/train/gl3D-xY7wLq/images/9e51cfaf6aa1a725c74c20a8a666d750f928b3308269432f717b0065f1057111.jpg b/parse/train/gl3D-xY7wLq/images/9e51cfaf6aa1a725c74c20a8a666d750f928b3308269432f717b0065f1057111.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88152619baf00b9d791973e716cd125000fc7f04 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/9e51cfaf6aa1a725c74c20a8a666d750f928b3308269432f717b0065f1057111.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8866000a582435aa2834ee697bd0baefe40758d26e39cc33cb9af5a8d58996c4 +size 66632 diff --git a/parse/train/gl3D-xY7wLq/images/9f449cc64fe3338fb1951947b0892df6ddc81a2d1a8c8cd4893a31174c021af5.jpg b/parse/train/gl3D-xY7wLq/images/9f449cc64fe3338fb1951947b0892df6ddc81a2d1a8c8cd4893a31174c021af5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98573024d61ff14d42c4a0862e392cd3fe9eed9b --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/9f449cc64fe3338fb1951947b0892df6ddc81a2d1a8c8cd4893a31174c021af5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c3228404217b5b1406e813ee4df67e59f9a4b6af19d97a11c99e294f2dad9d1 +size 70958 diff --git a/parse/train/gl3D-xY7wLq/images/ad6ec1fefc8a0fbf9a08aa03a777bd6af4bc89f9438443a0ce8a3c5c2dab9ebd.jpg b/parse/train/gl3D-xY7wLq/images/ad6ec1fefc8a0fbf9a08aa03a777bd6af4bc89f9438443a0ce8a3c5c2dab9ebd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d45ac1e094731f78fd271ed4a2ddf606a78a7ca --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/ad6ec1fefc8a0fbf9a08aa03a777bd6af4bc89f9438443a0ce8a3c5c2dab9ebd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10a3f7ffdc695d9997457d6bb47b36375b8f8263189e6e7198b38cb8ce6fd449 +size 39320 diff --git a/parse/train/gl3D-xY7wLq/images/b3db98680e9d06fb8e11ff829208e14e474e255f2bb437fa3961b7b6cdf20df0.jpg b/parse/train/gl3D-xY7wLq/images/b3db98680e9d06fb8e11ff829208e14e474e255f2bb437fa3961b7b6cdf20df0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7dbc7fdb2c703db6f56572ad9c779ade1e65364 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/b3db98680e9d06fb8e11ff829208e14e474e255f2bb437fa3961b7b6cdf20df0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7b06bd1928985a75ea0a63a6ec3f7271fff24a72d6d582bbf718bfeae1d272e +size 40506 diff --git a/parse/train/gl3D-xY7wLq/images/bdd1a0fdf417684f6d28119cc5ace1c358fa962a6eb904d5a2683a744923f7ea.jpg b/parse/train/gl3D-xY7wLq/images/bdd1a0fdf417684f6d28119cc5ace1c358fa962a6eb904d5a2683a744923f7ea.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00f475886edb7dc3959b717e828e87ab8aacfcfe --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/bdd1a0fdf417684f6d28119cc5ace1c358fa962a6eb904d5a2683a744923f7ea.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f3a652f0a7c6976d5c00e4328fb9d42715ab0c8a80eb25bf91925de4027c8c +size 42815 diff --git a/parse/train/gl3D-xY7wLq/images/c09596a8ea723dca937a7dffcb38c7fa1b58d53f4c673815f69bd04c885b96e3.jpg b/parse/train/gl3D-xY7wLq/images/c09596a8ea723dca937a7dffcb38c7fa1b58d53f4c673815f69bd04c885b96e3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbc265d892d3b75e709fbd9e763092508e0364a2 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/c09596a8ea723dca937a7dffcb38c7fa1b58d53f4c673815f69bd04c885b96e3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56f0ae3b7245fc2a35c432f0c39b4711331473011a3ff1a3dfafefe8c601f1a1 +size 85063 diff --git a/parse/train/gl3D-xY7wLq/images/c1eb336dc22ff03a50ba457584d78b7e8695369b313a7152ef183fadbca43966.jpg b/parse/train/gl3D-xY7wLq/images/c1eb336dc22ff03a50ba457584d78b7e8695369b313a7152ef183fadbca43966.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7fd6ceb43a56fc0cff358cb7e742aa8a5ebd8a87 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/c1eb336dc22ff03a50ba457584d78b7e8695369b313a7152ef183fadbca43966.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ff97c1ee97b8425b4ecd36d3231f048c5de0990ad59fe00bf6530dff69b54f0 +size 78467 diff --git a/parse/train/gl3D-xY7wLq/images/c31e2c14dc6cbce259c9b4de5db5d8a4d8d7ab98e6844b17808bccb3d56d6b65.jpg b/parse/train/gl3D-xY7wLq/images/c31e2c14dc6cbce259c9b4de5db5d8a4d8d7ab98e6844b17808bccb3d56d6b65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85b6d8746528df5bc8a22e2b2b09938e7e664c01 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/c31e2c14dc6cbce259c9b4de5db5d8a4d8d7ab98e6844b17808bccb3d56d6b65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08e46b8c60b07f40ef5adef5901724994bc72dd5ba7cd146ed9e9e9feb0008d4 +size 41340 diff --git a/parse/train/gl3D-xY7wLq/images/c4275d2c278c4f0d83f40fd9ae95d97c0f5e7db66d759b623cbd343e7a677d98.jpg b/parse/train/gl3D-xY7wLq/images/c4275d2c278c4f0d83f40fd9ae95d97c0f5e7db66d759b623cbd343e7a677d98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c96409536fac1b1028abe2eeb4fb36d9fa2481f3 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/c4275d2c278c4f0d83f40fd9ae95d97c0f5e7db66d759b623cbd343e7a677d98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0891c6f15a3f133d27b2a820e428b6dba3de936bd5fa403aa7f02b4bbce67784 +size 37866 diff --git a/parse/train/gl3D-xY7wLq/images/c5ea85335c3fbbb759e04732674002f24dfd57524653bd705592cc50d7948a8c.jpg b/parse/train/gl3D-xY7wLq/images/c5ea85335c3fbbb759e04732674002f24dfd57524653bd705592cc50d7948a8c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01accd2e89ed0827de89c464aecc694f64dd6c68 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/c5ea85335c3fbbb759e04732674002f24dfd57524653bd705592cc50d7948a8c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d6aec45bfdc14aebf7390488825ac0255d32fcddf5388e0a7f6a9249b9d3515 +size 38925 diff --git a/parse/train/gl3D-xY7wLq/images/c924a9c55b3e6bd07b49e111a60b770e6e386cc276796c073fbc614d8f679fb4.jpg b/parse/train/gl3D-xY7wLq/images/c924a9c55b3e6bd07b49e111a60b770e6e386cc276796c073fbc614d8f679fb4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba20186308d94f9949e1938bfa661c3f3893f211 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/c924a9c55b3e6bd07b49e111a60b770e6e386cc276796c073fbc614d8f679fb4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc5e731e85538612ec8d3ebe282db9e782a55e0e682f2ff2278fc4fb03045e7 +size 79081 diff --git a/parse/train/gl3D-xY7wLq/images/cf3f7eb68c748c80aa4c4a3b669f21fcfd02f69892bc6e20394e9bab603ae1da.jpg b/parse/train/gl3D-xY7wLq/images/cf3f7eb68c748c80aa4c4a3b669f21fcfd02f69892bc6e20394e9bab603ae1da.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa47cf483265aeaba09a91d34432323a9afdd6c2 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/cf3f7eb68c748c80aa4c4a3b669f21fcfd02f69892bc6e20394e9bab603ae1da.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce21fee8efc732f084bd83c1e20269d5f4c14e1bafa5f47d3b1f6e8eb031965b +size 71713 diff --git a/parse/train/gl3D-xY7wLq/images/e641edd9f6e185e5c2839c43667d7e244346fd2bc78e33a175f9a713e7509abf.jpg b/parse/train/gl3D-xY7wLq/images/e641edd9f6e185e5c2839c43667d7e244346fd2bc78e33a175f9a713e7509abf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9363ab4b4107c7c06f95d108b678e3602422b84 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/e641edd9f6e185e5c2839c43667d7e244346fd2bc78e33a175f9a713e7509abf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a4222f5b2c232c47a81d1b0a0cd5df435685905637c07c4615951b58cfe4e5 +size 38643 diff --git a/parse/train/gl3D-xY7wLq/images/ec5f8124f05ad3b2dff8ae50a7db2b018ace3067938b5cf55443fafd5933dbb4.jpg b/parse/train/gl3D-xY7wLq/images/ec5f8124f05ad3b2dff8ae50a7db2b018ace3067938b5cf55443fafd5933dbb4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3295679faa4226ea4fd3db2379c1def1cf09fe4 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/ec5f8124f05ad3b2dff8ae50a7db2b018ace3067938b5cf55443fafd5933dbb4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a800d6b33a293996dbf14ae60222cb6c072c4fe7bb8320da3216d383f811f17b +size 35475 diff --git a/parse/train/gl3D-xY7wLq/images/edf8af1e23a124aee3888c17bbdeed2d3c46db7a0da8bbe4dc7399fa5c411a5d.jpg b/parse/train/gl3D-xY7wLq/images/edf8af1e23a124aee3888c17bbdeed2d3c46db7a0da8bbe4dc7399fa5c411a5d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d7963cd275702358e1fbfd20056e0c68b48a8a2 --- /dev/null +++ b/parse/train/gl3D-xY7wLq/images/edf8af1e23a124aee3888c17bbdeed2d3c46db7a0da8bbe4dc7399fa5c411a5d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b067ff9535ffcc536b2cfa8de2516497fd27fce52e43f1016e5a000e1ab9782e +size 33113 diff --git a/parse/train/jM76BCb6F9m/images/003a0d0b590f2740367e849212a5e09db4a86bbac1184aaf4028bf9d7416e280.jpg b/parse/train/jM76BCb6F9m/images/003a0d0b590f2740367e849212a5e09db4a86bbac1184aaf4028bf9d7416e280.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea4a5f6c46e9a2b9cb1e5d5f120f8d6e5b3d12e7 --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/003a0d0b590f2740367e849212a5e09db4a86bbac1184aaf4028bf9d7416e280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c68dcffa1a0380001e375c3d97bf37fbe4824a0945cac6b0ab48b74cd66e9d3a +size 45807 diff --git a/parse/train/jM76BCb6F9m/images/0679ecc25b24fb5cc92b1cd4d1d17b80031e02bd7879db13d3ef013bb9af4fa8.jpg b/parse/train/jM76BCb6F9m/images/0679ecc25b24fb5cc92b1cd4d1d17b80031e02bd7879db13d3ef013bb9af4fa8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..974b9a737d3fedc4d6e306df8a66aee6f9e1cd9d --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/0679ecc25b24fb5cc92b1cd4d1d17b80031e02bd7879db13d3ef013bb9af4fa8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b89eccbeb6f5c5430d799bdcde4683604e8ef303a4dee8c66f30f227c040ffb +size 48740 diff --git a/parse/train/jM76BCb6F9m/images/28c8462ec6afa410f0b86bbb496c9607533199817dc345f744afd01e7b872e1d.jpg b/parse/train/jM76BCb6F9m/images/28c8462ec6afa410f0b86bbb496c9607533199817dc345f744afd01e7b872e1d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5498a4c6eae38cf921a6068270c3903a266e87ab --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/28c8462ec6afa410f0b86bbb496c9607533199817dc345f744afd01e7b872e1d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:658fc02ad55c670fc1f8d9bb9b11173ea4942788b0c3fa68ccc099f1b430b12a +size 6054 diff --git a/parse/train/jM76BCb6F9m/images/43f482ee1041495d9d2e13998411ef15c87a6a6f2f61fe0d14e70ed9c373400f.jpg b/parse/train/jM76BCb6F9m/images/43f482ee1041495d9d2e13998411ef15c87a6a6f2f61fe0d14e70ed9c373400f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8a0f3d36376cca462030a1cc8ce1587fc8a9014 --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/43f482ee1041495d9d2e13998411ef15c87a6a6f2f61fe0d14e70ed9c373400f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74165d563c999a023d513452e596d070ec2b84f9dac90e8b0de7acbf6dc5499c +size 65597 diff --git a/parse/train/jM76BCb6F9m/images/5045197e3d12df5eb183a0ea64565cbd68a253f06403171b6b4359d3cab0742c.jpg b/parse/train/jM76BCb6F9m/images/5045197e3d12df5eb183a0ea64565cbd68a253f06403171b6b4359d3cab0742c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0bd8be1734bdf0b330d806c14b6c57690c43919 --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/5045197e3d12df5eb183a0ea64565cbd68a253f06403171b6b4359d3cab0742c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f8f8c7f663d2dc067f8e5d97d57e16249e48ecdddf2854e78aecee6403b056a +size 8360 diff --git a/parse/train/jM76BCb6F9m/images/5b2ee8f2bd50839e3db65a1a8dfdb9f6fee5a9e83c4291375f1c3910d114b3ec.jpg b/parse/train/jM76BCb6F9m/images/5b2ee8f2bd50839e3db65a1a8dfdb9f6fee5a9e83c4291375f1c3910d114b3ec.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a36ded0c9d6218f7bfc57b8b2f899a7df1ae799 --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/5b2ee8f2bd50839e3db65a1a8dfdb9f6fee5a9e83c4291375f1c3910d114b3ec.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9df356ac219ec1d89ec7861836a7a42716067821cd41d73e731f6b92dea59ba7 +size 4159 diff --git a/parse/train/jM76BCb6F9m/images/62ca47c7c7d7f81cf4ea99b2caaf8c1400efd301922762deb2f365b8ff3177f9.jpg b/parse/train/jM76BCb6F9m/images/62ca47c7c7d7f81cf4ea99b2caaf8c1400efd301922762deb2f365b8ff3177f9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..faa7a15142b41f8f83e08db1bbab7ea2a4f19a74 --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/62ca47c7c7d7f81cf4ea99b2caaf8c1400efd301922762deb2f365b8ff3177f9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87a63e30e3f630baa2bca03d06114ad78ea30888e4c2f705c9e62356c346564e +size 5633 diff --git a/parse/train/jM76BCb6F9m/images/6acfe308d30803c48b9553683f6462e63c3c14d2210d26e66074c4b30d5ccb69.jpg b/parse/train/jM76BCb6F9m/images/6acfe308d30803c48b9553683f6462e63c3c14d2210d26e66074c4b30d5ccb69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65940b69dfe7e73c9b469fd52a866ce35fa5143e --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/6acfe308d30803c48b9553683f6462e63c3c14d2210d26e66074c4b30d5ccb69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b90699c4648e2a33214ed803f9429f1a30c51acb12368c8883d6de11112065a +size 76938 diff --git a/parse/train/jM76BCb6F9m/images/96826f630f45395be1f7b24c86d48890d3d93821d4871cadb522f6ecc5a33d0e.jpg b/parse/train/jM76BCb6F9m/images/96826f630f45395be1f7b24c86d48890d3d93821d4871cadb522f6ecc5a33d0e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..934e41b5a8722770963907c32d67b19165ec4931 --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/96826f630f45395be1f7b24c86d48890d3d93821d4871cadb522f6ecc5a33d0e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5fa4b6d537db233c66e4591ff2a1f0001a76b7ee794b5de9488e5b077789596 +size 43392 diff --git a/parse/train/jM76BCb6F9m/images/a2bc369c176eaa4408f7a1cb1cd59d118888305dbfe79904f3466db07f0015e1.jpg b/parse/train/jM76BCb6F9m/images/a2bc369c176eaa4408f7a1cb1cd59d118888305dbfe79904f3466db07f0015e1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66fa7fdf07eca15494c66dd1f05a7d8aec53341a --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/a2bc369c176eaa4408f7a1cb1cd59d118888305dbfe79904f3466db07f0015e1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a6c58a6aa93148cffa5a7553a27376432fe9a36165a209169c3957ef2d1e9e6 +size 50819 diff --git a/parse/train/jM76BCb6F9m/images/a7a2888dd1f85671fe2530fe0140f4515e378b6c98a176f98cc04b02c1b2923f.jpg b/parse/train/jM76BCb6F9m/images/a7a2888dd1f85671fe2530fe0140f4515e378b6c98a176f98cc04b02c1b2923f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6bfd1636ef74000bc9dc2300e2dd64f3188fbd10 --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/a7a2888dd1f85671fe2530fe0140f4515e378b6c98a176f98cc04b02c1b2923f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e4a3d324d966c6c934495bda666a16416f4b264bb16a7588f6bef2f1b51678c +size 5961 diff --git a/parse/train/jM76BCb6F9m/images/aea00a4cf2e2d8e8504fbe4cc571ebb4281067501fb140958a843a8b6093d3ef.jpg b/parse/train/jM76BCb6F9m/images/aea00a4cf2e2d8e8504fbe4cc571ebb4281067501fb140958a843a8b6093d3ef.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ec3a929c9bf2eace8f95084a86ad213ed28359b --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/aea00a4cf2e2d8e8504fbe4cc571ebb4281067501fb140958a843a8b6093d3ef.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57d7a518c1f23b1f20fe8bec7e359bedabcc459ebe5047cda30b7a99ebdf4e08 +size 25337 diff --git a/parse/train/jM76BCb6F9m/images/b901e8e24bfc7d652c90abd5293f94a15787c398c550e315c8ecba71213eab38.jpg b/parse/train/jM76BCb6F9m/images/b901e8e24bfc7d652c90abd5293f94a15787c398c550e315c8ecba71213eab38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6758fbbc2bd42b7e53f8d9a410ee559f4e2a048 --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/b901e8e24bfc7d652c90abd5293f94a15787c398c550e315c8ecba71213eab38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e509ff5339e9307c4ba5c166b091c06644f34b5385c115f1dad206c8620cc39 +size 8134 diff --git a/parse/train/jM76BCb6F9m/images/bb16d3c1fe10d88c43b8d976566f5dbd6d07e142837f5b294490637dd32c4060.jpg b/parse/train/jM76BCb6F9m/images/bb16d3c1fe10d88c43b8d976566f5dbd6d07e142837f5b294490637dd32c4060.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fcbd45d167382a415e1e62a59b24f5d02a11ef69 --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/bb16d3c1fe10d88c43b8d976566f5dbd6d07e142837f5b294490637dd32c4060.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dd2dce4e83e9d367c96d1057f4ee0ec8a59ab785326905627fef6ad8f9efcef +size 59141 diff --git a/parse/train/jM76BCb6F9m/images/bc4b9e48e7ce47447f4ec2cae15d1c700194a7a5b2126f74d97a4cf6ff063ef4.jpg b/parse/train/jM76BCb6F9m/images/bc4b9e48e7ce47447f4ec2cae15d1c700194a7a5b2126f74d97a4cf6ff063ef4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50dfefed3a11d12fd8ac3d099976c8f335c9c2ba --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/bc4b9e48e7ce47447f4ec2cae15d1c700194a7a5b2126f74d97a4cf6ff063ef4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ce595052069acdf96ba7ddd4da9d60fc4c430cbff5ee63f1f7fa0bbd08dc76 +size 56415 diff --git a/parse/train/jM76BCb6F9m/images/c982f096032ab915218b552f395fb370198ea87152f61446ee0cbc3d54f1b9fb.jpg b/parse/train/jM76BCb6F9m/images/c982f096032ab915218b552f395fb370198ea87152f61446ee0cbc3d54f1b9fb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49fe082f11d0af612ebf0594ea0fb27dce3a9626 --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/c982f096032ab915218b552f395fb370198ea87152f61446ee0cbc3d54f1b9fb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fdeab21aa858658cf7f9bde0c557e54344f6ad4a03a35f66c2bc76abdbe051d +size 35276 diff --git a/parse/train/jM76BCb6F9m/images/ea4a0adef0aafc6b4d3ab1101a9bf0e45645b0595fec97d9e4f72d1177d8553a.jpg b/parse/train/jM76BCb6F9m/images/ea4a0adef0aafc6b4d3ab1101a9bf0e45645b0595fec97d9e4f72d1177d8553a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2363ac11b732c6bb5b449281063f2de309af1a66 --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/ea4a0adef0aafc6b4d3ab1101a9bf0e45645b0595fec97d9e4f72d1177d8553a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b0594e01eaefc04e61071ba604eab8b59e7164750e0d9a1d2c85e8c6173b38e +size 35671 diff --git a/parse/train/jM76BCb6F9m/images/ed9d8a3208a40ff6a0003f29416bfe56972a1c7a24cc865b130ba6c46e11a669.jpg b/parse/train/jM76BCb6F9m/images/ed9d8a3208a40ff6a0003f29416bfe56972a1c7a24cc865b130ba6c46e11a669.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2968858471cd8ef570e1e1ff2347a632814c4fbd --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/ed9d8a3208a40ff6a0003f29416bfe56972a1c7a24cc865b130ba6c46e11a669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f90d32172600f87261d8d6631d8185d3eae0e131f01e9aa4d0a5153a9c0a3a +size 67982 diff --git a/parse/train/jM76BCb6F9m/images/f19eb48ef28e84c9315a799fe8124462e2d8cc4378700ede6448562d57f1d86e.jpg b/parse/train/jM76BCb6F9m/images/f19eb48ef28e84c9315a799fe8124462e2d8cc4378700ede6448562d57f1d86e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8d93c7ec011fec3c521b5a523e390c545333900 --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/f19eb48ef28e84c9315a799fe8124462e2d8cc4378700ede6448562d57f1d86e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e98d17c5e26146a2feab9a29f2d4f3f29f02d0744f7cb23aaec6d0c3eb811658 +size 70202 diff --git a/parse/train/jM76BCb6F9m/images/fb691cf3b2cc2e01a88e85a8cc124622be857e9ef1a7e94ab55075195841884d.jpg b/parse/train/jM76BCb6F9m/images/fb691cf3b2cc2e01a88e85a8cc124622be857e9ef1a7e94ab55075195841884d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e6e5212fd6eed07f592733070641478b2a7eadb --- /dev/null +++ b/parse/train/jM76BCb6F9m/images/fb691cf3b2cc2e01a88e85a8cc124622be857e9ef1a7e94ab55075195841884d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76d4cc5c0c3f62634b03b2cdf81fa2c93d609d73fa55747b5f7467b3b274f626 +size 7646 diff --git a/parse/train/r1-4BLaQz/images/0418768456cd74f938b93dc2cbe35706c6e52515ae1a5d795838820068268b5b.jpg b/parse/train/r1-4BLaQz/images/0418768456cd74f938b93dc2cbe35706c6e52515ae1a5d795838820068268b5b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5cd680c2395d4ad39bf5c3f131e1e5e3c76e19b4 --- /dev/null +++ b/parse/train/r1-4BLaQz/images/0418768456cd74f938b93dc2cbe35706c6e52515ae1a5d795838820068268b5b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fefae150f9de28a91b297b297b5f914350c97fe932a629872569610da37f020e +size 4791 diff --git a/parse/train/r1-4BLaQz/images/267382a8c11ea2d13a8405e789dc3ec7b077d5b50a014517a25d438aa1015309.jpg b/parse/train/r1-4BLaQz/images/267382a8c11ea2d13a8405e789dc3ec7b077d5b50a014517a25d438aa1015309.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efa5e4c69342ec5dc2c5bef86c73acb56f247bc9 --- /dev/null +++ b/parse/train/r1-4BLaQz/images/267382a8c11ea2d13a8405e789dc3ec7b077d5b50a014517a25d438aa1015309.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2e59f093136e2b12b4be5b004aee7e55509dbc6d38823f90b2069f80043218b +size 58854 diff --git a/parse/train/r1-4BLaQz/images/2b2c8f03bfe04e64f0b4715f232253e163b02cfb498b4c6bf2c253df1ccd9cbc.jpg b/parse/train/r1-4BLaQz/images/2b2c8f03bfe04e64f0b4715f232253e163b02cfb498b4c6bf2c253df1ccd9cbc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d6b8c01c7416f1ed4e7e8b636a73dc3be247b36 --- /dev/null +++ b/parse/train/r1-4BLaQz/images/2b2c8f03bfe04e64f0b4715f232253e163b02cfb498b4c6bf2c253df1ccd9cbc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73e3a61de350b31e3400609b927456336ae33fb55b324cd934d2b9a74d262782 +size 65923 diff --git a/parse/train/r1-4BLaQz/images/2f72a2f29051112b9ff5efb86e026de477cc48c737ced8c19365ed766c97a788.jpg b/parse/train/r1-4BLaQz/images/2f72a2f29051112b9ff5efb86e026de477cc48c737ced8c19365ed766c97a788.jpg new file mode 100644 index 0000000000000000000000000000000000000000..195e002521886d51709c4f91215dd2b318a1a5eb --- /dev/null +++ b/parse/train/r1-4BLaQz/images/2f72a2f29051112b9ff5efb86e026de477cc48c737ced8c19365ed766c97a788.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f689499fad7457de88d77faf1971ecd0644c5135a2a5ba1f02b652180816e46 +size 8928 diff --git a/parse/train/r1-4BLaQz/images/3b325157bb9a4216b8f5fa8baff35b1fb724c5eb554b439ebc802f6db4a8f58f.jpg b/parse/train/r1-4BLaQz/images/3b325157bb9a4216b8f5fa8baff35b1fb724c5eb554b439ebc802f6db4a8f58f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df7a67e8f3ac20e12d9db76b1d3ff7000ec06964 --- /dev/null +++ b/parse/train/r1-4BLaQz/images/3b325157bb9a4216b8f5fa8baff35b1fb724c5eb554b439ebc802f6db4a8f58f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c8b098f659003be6ff4256d808646da68e30b68e66e2d79f5fd9f82061d0010 +size 67433 diff --git a/parse/train/r1-4BLaQz/images/4dc15f0a3b71bc97215371bdfe733a0c14e1a8afac9bcc2012e4a382a9a5eae5.jpg b/parse/train/r1-4BLaQz/images/4dc15f0a3b71bc97215371bdfe733a0c14e1a8afac9bcc2012e4a382a9a5eae5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1dde23ece85624a37429c66cbc85363dfc817213 --- /dev/null +++ b/parse/train/r1-4BLaQz/images/4dc15f0a3b71bc97215371bdfe733a0c14e1a8afac9bcc2012e4a382a9a5eae5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22f351df90aed06b65f84c4570a6471211d284b63a8450d07d739961cbef8113 +size 67536 diff --git a/parse/train/r1-4BLaQz/images/560b62ba4f40d2eea4ed79f5986a5c606e20e79a7a30c96a948e7e38acfe160e.jpg b/parse/train/r1-4BLaQz/images/560b62ba4f40d2eea4ed79f5986a5c606e20e79a7a30c96a948e7e38acfe160e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..405565e8f4394dcd9108735ff0b668665f627688 --- /dev/null +++ b/parse/train/r1-4BLaQz/images/560b62ba4f40d2eea4ed79f5986a5c606e20e79a7a30c96a948e7e38acfe160e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f6d42f5b3d62739cef947cd3815bd369138e64e078c39fd68b5cab403c87931 +size 41426 diff --git a/parse/train/r1-4BLaQz/images/7f8124c73dced2aa0f78106eab2a851360b420115872be0ee912903754e96da6.jpg b/parse/train/r1-4BLaQz/images/7f8124c73dced2aa0f78106eab2a851360b420115872be0ee912903754e96da6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cec9c90827653d8523b51446b2dbc130b256b0fd --- /dev/null +++ b/parse/train/r1-4BLaQz/images/7f8124c73dced2aa0f78106eab2a851360b420115872be0ee912903754e96da6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4372adbfe7cd3d14141b5ee61df159d9cbc26c616e896db6acb4a4c5e3cf5737 +size 5588 diff --git a/parse/train/r1-4BLaQz/images/a72c159113b92f8c536176837b61a6ca7237947ff8e534d0cbf2286e02239b7b.jpg b/parse/train/r1-4BLaQz/images/a72c159113b92f8c536176837b61a6ca7237947ff8e534d0cbf2286e02239b7b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e0be46670c9169df0b71e30e7058c54d8d11665 --- /dev/null +++ b/parse/train/r1-4BLaQz/images/a72c159113b92f8c536176837b61a6ca7237947ff8e534d0cbf2286e02239b7b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a91621510783a6c156f2d27a9a373f92703e8960cf4072c33e06d77e9db5e9a +size 33863 diff --git a/parse/train/r1-4BLaQz/images/a8990135f6d1aafc86247b26a23967600823155298c1769f10985048200a7f11.jpg b/parse/train/r1-4BLaQz/images/a8990135f6d1aafc86247b26a23967600823155298c1769f10985048200a7f11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03aec25996a196ee10c16bc3c19c058e4bf5efce --- /dev/null +++ b/parse/train/r1-4BLaQz/images/a8990135f6d1aafc86247b26a23967600823155298c1769f10985048200a7f11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9ba9f322ada361ceeaf833943925d08ca7118343b7b3a4fb7838d15914bc64 +size 64978 diff --git a/parse/train/r1-4BLaQz/images/c751ec74231b40986e76cf6183577dc664e8807abf7061a09418db3bd1e4d8cc.jpg b/parse/train/r1-4BLaQz/images/c751ec74231b40986e76cf6183577dc664e8807abf7061a09418db3bd1e4d8cc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c8e644cc8fb6016d179c5ba19e236e758c05013 --- /dev/null +++ b/parse/train/r1-4BLaQz/images/c751ec74231b40986e76cf6183577dc664e8807abf7061a09418db3bd1e4d8cc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65b204dc6052f3d3896b22c76bfa2597d03cd4d4c79463eabce87982ae322c43 +size 60633 diff --git a/parse/train/r1-4BLaQz/images/d109f64e1e19bf4dd834b8e96d8eaa5fdfa21c10b6af5980ce49aef3aade5439.jpg b/parse/train/r1-4BLaQz/images/d109f64e1e19bf4dd834b8e96d8eaa5fdfa21c10b6af5980ce49aef3aade5439.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6243b07afe10eefa64a913583fcfd492e7be2c2 --- /dev/null +++ b/parse/train/r1-4BLaQz/images/d109f64e1e19bf4dd834b8e96d8eaa5fdfa21c10b6af5980ce49aef3aade5439.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cbc817199380cd0af56db115830f336232c718c6fc145b698b4200b6398156f +size 67699 diff --git a/parse/train/r1-4BLaQz/images/d965d87dc528603f4b223475197e0c8e5e3b8a84147858383ec90a6638cf1c8a.jpg b/parse/train/r1-4BLaQz/images/d965d87dc528603f4b223475197e0c8e5e3b8a84147858383ec90a6638cf1c8a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ab1f59852192ac80b8fe9c4df92cd85cc3e225d --- /dev/null +++ b/parse/train/r1-4BLaQz/images/d965d87dc528603f4b223475197e0c8e5e3b8a84147858383ec90a6638cf1c8a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736c0f1d26515a4c30e98e37cb25e5326409d8a75cfa8e9e7f84e77df6cad7d7 +size 66593 diff --git a/parse/train/r1-4BLaQz/images/dda884d66cab9d7d7b697f66bc83d1770b76b7c4337ef8e82246a1eb8133716c.jpg b/parse/train/r1-4BLaQz/images/dda884d66cab9d7d7b697f66bc83d1770b76b7c4337ef8e82246a1eb8133716c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3774495f366bfb0673d585c5d35ff76b4cc51fd --- /dev/null +++ b/parse/train/r1-4BLaQz/images/dda884d66cab9d7d7b697f66bc83d1770b76b7c4337ef8e82246a1eb8133716c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13d35e12b9886d3ce4a756cec7a6c218ed957d9641cb12f2be03e5ac4d7a95d +size 20052 diff --git a/parse/train/r1-4BLaQz/images/ec1b27e93ebb2ef0da41150796dbb3489c15ac11fc98dafb1229eaa3f236febf.jpg b/parse/train/r1-4BLaQz/images/ec1b27e93ebb2ef0da41150796dbb3489c15ac11fc98dafb1229eaa3f236febf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51c9e6e6591a191324c26de72e2f5fbf0c79dec4 --- /dev/null +++ b/parse/train/r1-4BLaQz/images/ec1b27e93ebb2ef0da41150796dbb3489c15ac11fc98dafb1229eaa3f236febf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eac0dcda30a30f4460244fc5d542b8fac81f7c7ff1adbefc2b08704fed4a4fb8 +size 8711 diff --git a/parse/train/r1-4BLaQz/images/f8cfe17876cbbaf94ee482764253089d623f6643bb4551bbd2477838da5a2c46.jpg b/parse/train/r1-4BLaQz/images/f8cfe17876cbbaf94ee482764253089d623f6643bb4551bbd2477838da5a2c46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e57a49dc1392f601c8bc8dacdac6cb8319212f17 --- /dev/null +++ b/parse/train/r1-4BLaQz/images/f8cfe17876cbbaf94ee482764253089d623f6643bb4551bbd2477838da5a2c46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2afafbe523ec99fc43f9bdfd33ae97c1ef6d86bcb7c95ab0ac6c2776710e6518 +size 19055 diff --git a/parse/train/r1-4BLaQz/images/fe2b3905cbc46bc7cf256753eb284946a22b77a879476085c03d23a987fe7014.jpg b/parse/train/r1-4BLaQz/images/fe2b3905cbc46bc7cf256753eb284946a22b77a879476085c03d23a987fe7014.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b344ee9b9841e57515211c9f0d7b194d83bb25d1 --- /dev/null +++ b/parse/train/r1-4BLaQz/images/fe2b3905cbc46bc7cf256753eb284946a22b77a879476085c03d23a987fe7014.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f1339582da5855e00d2cbf897de893f86f8beb9df851d7c04dc11b2cb77c5a0 +size 24803 diff --git a/parse/train/r1saNM-RW/images/01a4aa21d46e102360146a54cc2dab26e9b6c46cfa7c0409f71b39fb71c8b5ca.jpg b/parse/train/r1saNM-RW/images/01a4aa21d46e102360146a54cc2dab26e9b6c46cfa7c0409f71b39fb71c8b5ca.jpg new file mode 100644 index 0000000000000000000000000000000000000000..498e6fe1e729817149029018a4320e6d44782afa --- /dev/null +++ b/parse/train/r1saNM-RW/images/01a4aa21d46e102360146a54cc2dab26e9b6c46cfa7c0409f71b39fb71c8b5ca.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16d1139122f9ce17448cb2989e44068d982165cbb6d928f6eb2f5c965a4e9db5 +size 5061 diff --git a/parse/train/r1saNM-RW/images/0a318130aa7d8131575f2edbf552ef63456647ce87ff242a13da1e6416e503d3.jpg b/parse/train/r1saNM-RW/images/0a318130aa7d8131575f2edbf552ef63456647ce87ff242a13da1e6416e503d3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80ba9cc9e57b2d7f9e6555af4de2d730e01315a5 --- /dev/null +++ b/parse/train/r1saNM-RW/images/0a318130aa7d8131575f2edbf552ef63456647ce87ff242a13da1e6416e503d3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5146b0e132211226bdf113b2fcf8920029e9274e950718db869cd01d89a9957d +size 5732 diff --git a/parse/train/r1saNM-RW/images/0a90bd56f6678efd69380b3baeb766dcd418d14bc7bc5b1c25a54f2a55b6dd0a.jpg b/parse/train/r1saNM-RW/images/0a90bd56f6678efd69380b3baeb766dcd418d14bc7bc5b1c25a54f2a55b6dd0a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..292dbc50ef3417ba7758a8c0c173248cc7897993 --- /dev/null +++ b/parse/train/r1saNM-RW/images/0a90bd56f6678efd69380b3baeb766dcd418d14bc7bc5b1c25a54f2a55b6dd0a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:280ddc7b0a195fc424add43df3ee18eb74f1a7ec11e92d580b3cf78560435b65 +size 5191 diff --git a/parse/train/r1saNM-RW/images/126522a1d8b5673f50a9da2a0a10f00cdc5b78036a626d61fb938373275798d1.jpg b/parse/train/r1saNM-RW/images/126522a1d8b5673f50a9da2a0a10f00cdc5b78036a626d61fb938373275798d1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b292f4b690b56af57c92363c801f03e173b00d56 --- /dev/null +++ b/parse/train/r1saNM-RW/images/126522a1d8b5673f50a9da2a0a10f00cdc5b78036a626d61fb938373275798d1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7f1dcbeed22b88170ea4a4abb5f639bbcf4da21f1664871ea6053c772a8215b +size 14397 diff --git a/parse/train/r1saNM-RW/images/2236ae70751b6eef7b84406f2bac945277c73a92e89c08fe901239bf2a05448c.jpg b/parse/train/r1saNM-RW/images/2236ae70751b6eef7b84406f2bac945277c73a92e89c08fe901239bf2a05448c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c2eb96e4c1b077bf0bac83fe7d17f0827819b5d --- /dev/null +++ b/parse/train/r1saNM-RW/images/2236ae70751b6eef7b84406f2bac945277c73a92e89c08fe901239bf2a05448c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e896393f3d18905e79bdd399c14f616d726bc5d4fe57dd731422ce683dca6b73 +size 8840 diff --git a/parse/train/r1saNM-RW/images/2776700681649cb20e09a023382438d97384515657efa893f2bcfde125c7bbba.jpg b/parse/train/r1saNM-RW/images/2776700681649cb20e09a023382438d97384515657efa893f2bcfde125c7bbba.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4fab0208f3b3ed487e8c0b9aca77521ce73b0db --- /dev/null +++ b/parse/train/r1saNM-RW/images/2776700681649cb20e09a023382438d97384515657efa893f2bcfde125c7bbba.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07ace5e0559ad91c5699f889d1150e4602ea19c06e15f8d2950954ce856486df +size 8946 diff --git a/parse/train/r1saNM-RW/images/32fabdaed2b4c869085221defc6d59cd85df127a9bc021ac0e679ca486bcb18b.jpg b/parse/train/r1saNM-RW/images/32fabdaed2b4c869085221defc6d59cd85df127a9bc021ac0e679ca486bcb18b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f83e9340a0037ded7300b2c3fcb3fe1e42865d43 --- /dev/null +++ b/parse/train/r1saNM-RW/images/32fabdaed2b4c869085221defc6d59cd85df127a9bc021ac0e679ca486bcb18b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8763ac96e5497535c265f0c301820eedc8ba6265027b345a214449a06d8b82d2 +size 4251 diff --git a/parse/train/r1saNM-RW/images/358164e84efa662b698a3f10cfa773da40fe46d389b58dfaa595076f7a2d6e57.jpg b/parse/train/r1saNM-RW/images/358164e84efa662b698a3f10cfa773da40fe46d389b58dfaa595076f7a2d6e57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f397ab511616191e2f84d1c0c9754ce40f79f731 --- /dev/null +++ b/parse/train/r1saNM-RW/images/358164e84efa662b698a3f10cfa773da40fe46d389b58dfaa595076f7a2d6e57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2531081b45fd57cb1203d045597c1ca47d5ae1ed99b15ab5c69e39992af9c6e +size 16952 diff --git a/parse/train/r1saNM-RW/images/370b30d6f7fe563ca0d68e34633c7ab12a134898355eb1c1dce73d67d74a9b33.jpg b/parse/train/r1saNM-RW/images/370b30d6f7fe563ca0d68e34633c7ab12a134898355eb1c1dce73d67d74a9b33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..668e6025e64a57c77034919b992c33d2e3c41b75 --- /dev/null +++ b/parse/train/r1saNM-RW/images/370b30d6f7fe563ca0d68e34633c7ab12a134898355eb1c1dce73d67d74a9b33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeca91004e519d2f700197b9cabc9eed5d38bd1ddde5d894bcfefa97943d8460 +size 5591 diff --git a/parse/train/r1saNM-RW/images/3bdba41a8229f72afb34f6b66072d8941993f1992759320bccb0a9601091d682.jpg b/parse/train/r1saNM-RW/images/3bdba41a8229f72afb34f6b66072d8941993f1992759320bccb0a9601091d682.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1695fc3529d5e2f892636010723b9e815fffd02f --- /dev/null +++ b/parse/train/r1saNM-RW/images/3bdba41a8229f72afb34f6b66072d8941993f1992759320bccb0a9601091d682.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93d8229fe5a1190a5a880dc37d4e584323f578b2edf23006bbe3636e1ea298cb +size 10606 diff --git a/parse/train/r1saNM-RW/images/48c7e6299b00ef3ac909831e797d40f65c79fbb759144e69f0ce5229acccae3d.jpg b/parse/train/r1saNM-RW/images/48c7e6299b00ef3ac909831e797d40f65c79fbb759144e69f0ce5229acccae3d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0dc90387eeef6fbe2675b914403e9c678d93b6a5 --- /dev/null +++ b/parse/train/r1saNM-RW/images/48c7e6299b00ef3ac909831e797d40f65c79fbb759144e69f0ce5229acccae3d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fde9a37ee5e0a1273e6137dbacff6867e73139c3ac56fe0786aeb341134ce3f8 +size 41399 diff --git a/parse/train/r1saNM-RW/images/4d7200ab6ce7cd65036f493e8ec2b2b133f0893122502b8d51c6190c28480962.jpg b/parse/train/r1saNM-RW/images/4d7200ab6ce7cd65036f493e8ec2b2b133f0893122502b8d51c6190c28480962.jpg new file mode 100644 index 0000000000000000000000000000000000000000..279207d2a707d1a25174b32bd1e856bd7f2e1452 --- /dev/null +++ b/parse/train/r1saNM-RW/images/4d7200ab6ce7cd65036f493e8ec2b2b133f0893122502b8d51c6190c28480962.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4f46595d298d06bd2de27a4d51be845e6016b8b534cb91737d0643e670bb21c +size 71284 diff --git a/parse/train/r1saNM-RW/images/4d9cc5e12bdfcaa0138e315685f53d32723cca835ba431d1fddb765566bf6f60.jpg b/parse/train/r1saNM-RW/images/4d9cc5e12bdfcaa0138e315685f53d32723cca835ba431d1fddb765566bf6f60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b5222ce79792be682c39d7e0eed919c71dd6a5f --- /dev/null +++ b/parse/train/r1saNM-RW/images/4d9cc5e12bdfcaa0138e315685f53d32723cca835ba431d1fddb765566bf6f60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a9e4c0e5858a7a288b3d80787648fa82e1e25a8cab867b2e9670798543bdbe +size 5353 diff --git a/parse/train/r1saNM-RW/images/4eb91223f4b3e4c46527be97cbf8524f443f6982e648b54866bac5ab030e9573.jpg b/parse/train/r1saNM-RW/images/4eb91223f4b3e4c46527be97cbf8524f443f6982e648b54866bac5ab030e9573.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1905627f6c4dedb39a40bebf72a99deac9aeccb --- /dev/null +++ b/parse/train/r1saNM-RW/images/4eb91223f4b3e4c46527be97cbf8524f443f6982e648b54866bac5ab030e9573.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11ba04883c7c0df49e8b1d3b205a5c756afdd4bcf12b5f5859bb2cf981b6321c +size 5597 diff --git a/parse/train/r1saNM-RW/images/52add35574fd609e576b6ced84331c51c735d49f326f65846bca2c1149cd4b8d.jpg b/parse/train/r1saNM-RW/images/52add35574fd609e576b6ced84331c51c735d49f326f65846bca2c1149cd4b8d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68732ce1cc7eaa6dbd391e8aeb8c1eb921f611eb --- /dev/null +++ b/parse/train/r1saNM-RW/images/52add35574fd609e576b6ced84331c51c735d49f326f65846bca2c1149cd4b8d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e09f5c553c3389bf5e4c4bd71f9906bf0da6ea5f9fdfddf38e3ad842a52f33b0 +size 27230 diff --git a/parse/train/r1saNM-RW/images/5848e6da3f62659fc0bec82a38c2d9de2e4152022fca4af30a439888d3f26eca.jpg b/parse/train/r1saNM-RW/images/5848e6da3f62659fc0bec82a38c2d9de2e4152022fca4af30a439888d3f26eca.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0160cb7dde2e0f65bba3a7e722d2722ce05f201d --- /dev/null +++ b/parse/train/r1saNM-RW/images/5848e6da3f62659fc0bec82a38c2d9de2e4152022fca4af30a439888d3f26eca.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f30a58e849286eee5cc6f9a1826c8a5ed99a37a064fc015e85c8a349b501dde8 +size 79700 diff --git a/parse/train/r1saNM-RW/images/69649f45f8a344a1663cc31d3a62823ee90b5f60d490ff7e8e7763715c3a203d.jpg b/parse/train/r1saNM-RW/images/69649f45f8a344a1663cc31d3a62823ee90b5f60d490ff7e8e7763715c3a203d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b3834b973e327e1346798f50bae15ecab96ea6c --- /dev/null +++ b/parse/train/r1saNM-RW/images/69649f45f8a344a1663cc31d3a62823ee90b5f60d490ff7e8e7763715c3a203d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62d2d3d7e8f637c73ac179d230ba1760a67271fecc575ac7d77b3f15ffcc6760 +size 80448 diff --git a/parse/train/r1saNM-RW/images/6b8c91867d25f2f48c851c7a4e15a1b50ae1f643dfd3d2d6b8bbcb6e07dc2dc3.jpg b/parse/train/r1saNM-RW/images/6b8c91867d25f2f48c851c7a4e15a1b50ae1f643dfd3d2d6b8bbcb6e07dc2dc3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..62c94103ab7ed74632ef04c0baada652189035ff --- /dev/null +++ b/parse/train/r1saNM-RW/images/6b8c91867d25f2f48c851c7a4e15a1b50ae1f643dfd3d2d6b8bbcb6e07dc2dc3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f489f7e91d9586f60a70d3d46a08c4bd78ead2d1afe1638ad15afaa663f6d014 +size 5267 diff --git a/parse/train/r1saNM-RW/images/6eb680480cb92411c951fe28b1f5ec7136b19c5168b916d065335b43ca57a782.jpg b/parse/train/r1saNM-RW/images/6eb680480cb92411c951fe28b1f5ec7136b19c5168b916d065335b43ca57a782.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ef80c801ce9e23a63f3cc6449f200f3c11254d3 --- /dev/null +++ b/parse/train/r1saNM-RW/images/6eb680480cb92411c951fe28b1f5ec7136b19c5168b916d065335b43ca57a782.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f10a6a48e2acee5113a1cdfebade7335bb2bb25a42a597f66ab2f9bc37c078 +size 8605 diff --git a/parse/train/r1saNM-RW/images/73e66b56995202227374d95dac7abbd773e9f670f0350983e37793e463376a6f.jpg b/parse/train/r1saNM-RW/images/73e66b56995202227374d95dac7abbd773e9f670f0350983e37793e463376a6f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b4a7bfb25e36b68634acf66a5498c830a3b6651 --- /dev/null +++ b/parse/train/r1saNM-RW/images/73e66b56995202227374d95dac7abbd773e9f670f0350983e37793e463376a6f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc704025040a4c5d27a810057f0cf491979793aa6443d649f925c57e3a58c672 +size 17845 diff --git a/parse/train/r1saNM-RW/images/7909d40499e40951b0a559b04c9c5ba2a7b8932a3c59a23896443b144c5e9d38.jpg b/parse/train/r1saNM-RW/images/7909d40499e40951b0a559b04c9c5ba2a7b8932a3c59a23896443b144c5e9d38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7a3df535337b46bf99fe22cdad26286df6954e3 --- /dev/null +++ b/parse/train/r1saNM-RW/images/7909d40499e40951b0a559b04c9c5ba2a7b8932a3c59a23896443b144c5e9d38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:687d14192888b9bf5cd6317473441fcfa7d52d66fbea128c6ea68f57c13f4a45 +size 8105 diff --git a/parse/train/r1saNM-RW/images/7a9d4e92b19305c987734d22abb51619153bac5384a25fefa04927aff83aa4eb.jpg b/parse/train/r1saNM-RW/images/7a9d4e92b19305c987734d22abb51619153bac5384a25fefa04927aff83aa4eb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..520cb2262151e3225cd9a999f3eab5ac83178501 --- /dev/null +++ b/parse/train/r1saNM-RW/images/7a9d4e92b19305c987734d22abb51619153bac5384a25fefa04927aff83aa4eb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2b674b49ffa98a53f812f86e7da8afe6a8575a11ce89fba06d1f3459c5e2c6 +size 5875 diff --git a/parse/train/r1saNM-RW/images/8442d626b9832136c32393d7d6fefe5c433201f9d8d52538d054fa9793e845d4.jpg b/parse/train/r1saNM-RW/images/8442d626b9832136c32393d7d6fefe5c433201f9d8d52538d054fa9793e845d4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31a01137d5ee1120881fb32ef15fe2c96c02a7ff --- /dev/null +++ b/parse/train/r1saNM-RW/images/8442d626b9832136c32393d7d6fefe5c433201f9d8d52538d054fa9793e845d4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecc5858814ea3760fcc8451bf384782a287e37f8f223def7ccb0d6d6518142b3 +size 7913 diff --git a/parse/train/r1saNM-RW/images/8608ffb0645f4b24bbf0536bc1ee7501cbc8bdec1cc923485d3bd14114297da1.jpg b/parse/train/r1saNM-RW/images/8608ffb0645f4b24bbf0536bc1ee7501cbc8bdec1cc923485d3bd14114297da1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9bb208c0b921d7cddc283519b9389dbceb5bd469 --- /dev/null +++ b/parse/train/r1saNM-RW/images/8608ffb0645f4b24bbf0536bc1ee7501cbc8bdec1cc923485d3bd14114297da1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ba46e8d81c7a5a077352100f70b36d7a467403a2f2cd786e99e96ea7ee4fb7f +size 7231 diff --git a/parse/train/r1saNM-RW/images/8a571549678a69ce5a50f96c77ecb3adf700761c804fd4c7fa4cc47ea7565a4c.jpg b/parse/train/r1saNM-RW/images/8a571549678a69ce5a50f96c77ecb3adf700761c804fd4c7fa4cc47ea7565a4c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f8b6f28142ffa5182cb5956c42f6e50508e442f5 --- /dev/null +++ b/parse/train/r1saNM-RW/images/8a571549678a69ce5a50f96c77ecb3adf700761c804fd4c7fa4cc47ea7565a4c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5965d64e0313fb33a1b1f1a9ee9573cd777c0f7308e0b9a9bac89e943623df64 +size 11815 diff --git a/parse/train/r1saNM-RW/images/8f9a9aced72fa58bec081084940b1795be40ab2a80e5286947b2276d057c2019.jpg b/parse/train/r1saNM-RW/images/8f9a9aced72fa58bec081084940b1795be40ab2a80e5286947b2276d057c2019.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ccaea52debf7c29a2e1a87ecf3f8dc37c37d8610 --- /dev/null +++ b/parse/train/r1saNM-RW/images/8f9a9aced72fa58bec081084940b1795be40ab2a80e5286947b2276d057c2019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b776509d4189ea7c61f37d1033cf70023a4ffed9c8e8c7fbdec5330ab8800a3 +size 16232 diff --git a/parse/train/r1saNM-RW/images/922cb5fa5b34fe3674515a9f60de4ca207e9a12d586a517f79386dd0e4fd58e1.jpg b/parse/train/r1saNM-RW/images/922cb5fa5b34fe3674515a9f60de4ca207e9a12d586a517f79386dd0e4fd58e1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1688b6efe2925a5b25f069415ce6fa0826e6ee5 --- /dev/null +++ b/parse/train/r1saNM-RW/images/922cb5fa5b34fe3674515a9f60de4ca207e9a12d586a517f79386dd0e4fd58e1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e837e59ee8dc69b3cf887604477be445e9f27d4839b239364365f3a2c2ecd1 +size 11201 diff --git a/parse/train/r1saNM-RW/images/987ce92da26bc4f88c3aa5371a3ef424dfbb48d1fc123d89eccd546fe9110c4e.jpg b/parse/train/r1saNM-RW/images/987ce92da26bc4f88c3aa5371a3ef424dfbb48d1fc123d89eccd546fe9110c4e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5cc72d51f0ee66e531fe8fbdebdff349ce305f0b --- /dev/null +++ b/parse/train/r1saNM-RW/images/987ce92da26bc4f88c3aa5371a3ef424dfbb48d1fc123d89eccd546fe9110c4e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81dd8792a4228e650c4b62f9a971eac6fb5a6cba3d10a7a0f1112c86a5a6c2d2 +size 7707 diff --git a/parse/train/r1saNM-RW/images/98ec7c0f2bdb09ba100c19411f58bf5cf125017dae89a53f8c6437fe81c3ac67.jpg b/parse/train/r1saNM-RW/images/98ec7c0f2bdb09ba100c19411f58bf5cf125017dae89a53f8c6437fe81c3ac67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c936702039e915b7fa7bd57f7200e6b3e360b5a --- /dev/null +++ b/parse/train/r1saNM-RW/images/98ec7c0f2bdb09ba100c19411f58bf5cf125017dae89a53f8c6437fe81c3ac67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fae4e78dc5f974abe1e0e5b1572c21ef9ec6ea8795c10d8a7a01de2781c84f55 +size 22582 diff --git a/parse/train/r1saNM-RW/images/9bafefe6cf06670a7e3af63846725307c5f1753c5ee3ef5ef7ed095046fee888.jpg b/parse/train/r1saNM-RW/images/9bafefe6cf06670a7e3af63846725307c5f1753c5ee3ef5ef7ed095046fee888.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86635a56a2d6635a9a43effa7ac3f2fbf639bb5c --- /dev/null +++ b/parse/train/r1saNM-RW/images/9bafefe6cf06670a7e3af63846725307c5f1753c5ee3ef5ef7ed095046fee888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f979983614ed780bcbd6219654f16393c4d5e5032a969c526590604f5f98e0e +size 8049 diff --git a/parse/train/r1saNM-RW/images/9e2709f72bf5835885cc51e552bf62d963d8cae7553094b11586d5e20886dae6.jpg b/parse/train/r1saNM-RW/images/9e2709f72bf5835885cc51e552bf62d963d8cae7553094b11586d5e20886dae6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17bfbe8a2f727f79f7c70c28926b8584fc32f458 --- /dev/null +++ b/parse/train/r1saNM-RW/images/9e2709f72bf5835885cc51e552bf62d963d8cae7553094b11586d5e20886dae6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e79f32eac6d88d33d045894f304dd3bfc46fce2f577aabd868245c4690dd13ac +size 3541 diff --git a/parse/train/r1saNM-RW/images/a328bf1280cb9048e388c37eeff5c9c9db577f1d75913a1a9fb0ba97b68b86ed.jpg b/parse/train/r1saNM-RW/images/a328bf1280cb9048e388c37eeff5c9c9db577f1d75913a1a9fb0ba97b68b86ed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2968b0fbdb14a0ad121b607aa37300f0bbfdab7c --- /dev/null +++ b/parse/train/r1saNM-RW/images/a328bf1280cb9048e388c37eeff5c9c9db577f1d75913a1a9fb0ba97b68b86ed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:601deca572fcf0c2bfaaa705f84ae745f864da2c9621c220a6f7a2e072f2849e +size 28950 diff --git a/parse/train/r1saNM-RW/images/a57561e8aed2c4027f4373faf994c80bae452ce6826283db13e21bffe168cdea.jpg b/parse/train/r1saNM-RW/images/a57561e8aed2c4027f4373faf994c80bae452ce6826283db13e21bffe168cdea.jpg new file mode 100644 index 0000000000000000000000000000000000000000..acd894c7d1e4e1635291df46180bc9235796f4ba --- /dev/null +++ b/parse/train/r1saNM-RW/images/a57561e8aed2c4027f4373faf994c80bae452ce6826283db13e21bffe168cdea.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc31fe65e14023b5ab36e3ddcf94bb5fdd50b0c96b221ede56def2b14d70db9c +size 7693 diff --git a/parse/train/r1saNM-RW/images/b7aeaa863c22b115e246a14648b84ded34644301412965518e606145b14c8018.jpg b/parse/train/r1saNM-RW/images/b7aeaa863c22b115e246a14648b84ded34644301412965518e606145b14c8018.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2609d915689eb64d0a4f035828e65d24467934d --- /dev/null +++ b/parse/train/r1saNM-RW/images/b7aeaa863c22b115e246a14648b84ded34644301412965518e606145b14c8018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df2ba8b14d8aaa2ede0840ef38a2eedfc9831d3720364d28d5f9e229998de4b +size 3124 diff --git a/parse/train/r1saNM-RW/images/bef03e55bae96b909833f79df5cce31f258281c5e4b3ed351f2e90d1cba2fdc6.jpg b/parse/train/r1saNM-RW/images/bef03e55bae96b909833f79df5cce31f258281c5e4b3ed351f2e90d1cba2fdc6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78e9a0621f5ed64290a84eb348da51c5e66934ee --- /dev/null +++ b/parse/train/r1saNM-RW/images/bef03e55bae96b909833f79df5cce31f258281c5e4b3ed351f2e90d1cba2fdc6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c33da3fac648271ad3590c75bfd12e10aecdbfc44cbf0d3004287d1ba94422 +size 15655 diff --git a/parse/train/r1saNM-RW/images/d075d986aad9dd7eac2e81cef1cdc49fcd809bfdb34ae4959935f9fd8ff39fb2.jpg b/parse/train/r1saNM-RW/images/d075d986aad9dd7eac2e81cef1cdc49fcd809bfdb34ae4959935f9fd8ff39fb2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..505cb911afb9e0a70bc98bb891a14e7fef2d52e9 --- /dev/null +++ b/parse/train/r1saNM-RW/images/d075d986aad9dd7eac2e81cef1cdc49fcd809bfdb34ae4959935f9fd8ff39fb2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a0df76dd09fe3f7a65f4c0442f70eab1764f39f49140cccd53f7ae11d1fa4d +size 6207 diff --git a/parse/train/r1saNM-RW/images/ddc6e4dc198fda45747f6847c30d62ce45d3cfc9247207da8fa111431df242f2.jpg b/parse/train/r1saNM-RW/images/ddc6e4dc198fda45747f6847c30d62ce45d3cfc9247207da8fa111431df242f2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e33454c385de7dd8f5b45f681f11624c9e1af7e3 --- /dev/null +++ b/parse/train/r1saNM-RW/images/ddc6e4dc198fda45747f6847c30d62ce45d3cfc9247207da8fa111431df242f2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e1bf089b6462d0f659b40ee047e7076b5d6cd73e14fd4752e5b79a517d97926 +size 54683 diff --git a/parse/train/r1saNM-RW/images/e0b68a729dcd11f32a1c4d77c39493ec72dda5eb0c7d294e59040c15872482d5.jpg b/parse/train/r1saNM-RW/images/e0b68a729dcd11f32a1c4d77c39493ec72dda5eb0c7d294e59040c15872482d5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c9772d6fe2e1fdfc403e44fd860c416cb6de0cb --- /dev/null +++ b/parse/train/r1saNM-RW/images/e0b68a729dcd11f32a1c4d77c39493ec72dda5eb0c7d294e59040c15872482d5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de9ca9b2a159121f00e5360d625146725887c9168698c3583f22d97e27cc4720 +size 6599 diff --git a/parse/train/r1saNM-RW/images/e20432f4146cd84e1821f398dd04e03cd235015b8f630dbb3368f8435d1dab45.jpg b/parse/train/r1saNM-RW/images/e20432f4146cd84e1821f398dd04e03cd235015b8f630dbb3368f8435d1dab45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3e8a80e67e46b2087164ce518661e522a049a6b --- /dev/null +++ b/parse/train/r1saNM-RW/images/e20432f4146cd84e1821f398dd04e03cd235015b8f630dbb3368f8435d1dab45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:466e29bebb9896ebde2eb88953bd619a9b1bc0f2d2254b0acdca81e8819c638e +size 99954 diff --git a/parse/train/r1saNM-RW/images/e46265e4e82a8bf152ab86dd0c27c3eb17db3072693a11dbd87dcdbf59d9c2df.jpg b/parse/train/r1saNM-RW/images/e46265e4e82a8bf152ab86dd0c27c3eb17db3072693a11dbd87dcdbf59d9c2df.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c35122f8d56b9961aeb15c8053756d8ac2e9259 --- /dev/null +++ b/parse/train/r1saNM-RW/images/e46265e4e82a8bf152ab86dd0c27c3eb17db3072693a11dbd87dcdbf59d9c2df.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5be2a6254d99ea00e428a3e0878a09b75c58386d7937c656b0a5c34bb73df7b7 +size 5606 diff --git a/parse/train/r1saNM-RW/images/e988f3a1b836f4b60a26c78ae3a801b7254ac0a63ba8952633a1857d4b7629b4.jpg b/parse/train/r1saNM-RW/images/e988f3a1b836f4b60a26c78ae3a801b7254ac0a63ba8952633a1857d4b7629b4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58d61f5a2d1caaf8cc6ce08f2594a5989af5e709 --- /dev/null +++ b/parse/train/r1saNM-RW/images/e988f3a1b836f4b60a26c78ae3a801b7254ac0a63ba8952633a1857d4b7629b4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:950286999ffd8f5de79e6527f46c4368771bdda71cad30c9c9bb57ea04a5167c +size 81390 diff --git a/parse/train/r1saNM-RW/images/f0cb48ea190049b42a4e65c401a9218848a8dfa587edf9359fe116122d9d4ce2.jpg b/parse/train/r1saNM-RW/images/f0cb48ea190049b42a4e65c401a9218848a8dfa587edf9359fe116122d9d4ce2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d1bfee6e848bba3b25c50a9501b09722ce5a731 --- /dev/null +++ b/parse/train/r1saNM-RW/images/f0cb48ea190049b42a4e65c401a9218848a8dfa587edf9359fe116122d9d4ce2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fd4c1c3652e0f160f5eb8e706d7b76ca9d12dcc35eb847d7899d2549026b269 +size 19517 diff --git a/parse/train/r1saNM-RW/images/f141a0bd6014124c9d2f8918e26f0f0c8a702d121006d69ead7c31b9a7d6428a.jpg b/parse/train/r1saNM-RW/images/f141a0bd6014124c9d2f8918e26f0f0c8a702d121006d69ead7c31b9a7d6428a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3755974a61f12e29bd7abbfcb8cd7b804a90783 --- /dev/null +++ b/parse/train/r1saNM-RW/images/f141a0bd6014124c9d2f8918e26f0f0c8a702d121006d69ead7c31b9a7d6428a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1817d76934aace09627aa5d6cf7b8d2f15c33f99a23f483b517de95b7e904df6 +size 17998 diff --git a/parse/train/r1saNM-RW/images/f28c5d9f43603b4422507063de3117115d9b594cb6b2ef41a443fa164e371172.jpg b/parse/train/r1saNM-RW/images/f28c5d9f43603b4422507063de3117115d9b594cb6b2ef41a443fa164e371172.jpg new file mode 100644 index 0000000000000000000000000000000000000000..24a896c8a770367a792766addc9644728d48729e --- /dev/null +++ b/parse/train/r1saNM-RW/images/f28c5d9f43603b4422507063de3117115d9b594cb6b2ef41a443fa164e371172.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa79ffc187eee7fb1a97b4b25fb6e25b284a4789fafa8684dd8cabd7a75896b0 +size 87844 diff --git a/parse/train/r1saNM-RW/images/fdc9a9ebe0daa80a3fb408b0774f82b0a7021ae3d713cd9db1128c92c783ea07.jpg b/parse/train/r1saNM-RW/images/fdc9a9ebe0daa80a3fb408b0774f82b0a7021ae3d713cd9db1128c92c783ea07.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6cd70470b54ef4157ed46bf70d614be97b266629 --- /dev/null +++ b/parse/train/r1saNM-RW/images/fdc9a9ebe0daa80a3fb408b0774f82b0a7021ae3d713cd9db1128c92c783ea07.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c421295bdfd99034c6907092fe1703544af57ef45c7ef097ebe4b21c129d86fa +size 2591 diff --git a/parse/train/rJ4km2R5t7/images/21fc636ddcb5fc61f339ea417b3bc6064e0039743a3aa5f8b0e17fbc4935979b.jpg b/parse/train/rJ4km2R5t7/images/21fc636ddcb5fc61f339ea417b3bc6064e0039743a3aa5f8b0e17fbc4935979b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..156f8a67d4be828fb9ff91b7dfc4fe6dc22cfd6c --- /dev/null +++ b/parse/train/rJ4km2R5t7/images/21fc636ddcb5fc61f339ea417b3bc6064e0039743a3aa5f8b0e17fbc4935979b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea3e5c66d57c0c2fb2ec9ec0aa49eba29cec6b168360fed6c84bca7aea48945 +size 84964 diff --git a/parse/train/rJ4km2R5t7/images/3494db8a5d843857a9e8a7a67c4359d846e69097fda9fab85f896079b10c5e4c.jpg b/parse/train/rJ4km2R5t7/images/3494db8a5d843857a9e8a7a67c4359d846e69097fda9fab85f896079b10c5e4c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8cbc246f4a00ad575273fd4d46f8b4be9f08de17 --- /dev/null +++ b/parse/train/rJ4km2R5t7/images/3494db8a5d843857a9e8a7a67c4359d846e69097fda9fab85f896079b10c5e4c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bcaa10c146855e3275750587edc145208ef0f92eac261ef275fb4cf78787936 +size 108727 diff --git a/parse/train/rJ4km2R5t7/images/4af39f33d182c863f092615f81934b37e4a74c0afea95812245514c167731e68.jpg b/parse/train/rJ4km2R5t7/images/4af39f33d182c863f092615f81934b37e4a74c0afea95812245514c167731e68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07a70383e37bc811ac5e2f6c49a5a6c4867a73ce --- /dev/null +++ b/parse/train/rJ4km2R5t7/images/4af39f33d182c863f092615f81934b37e4a74c0afea95812245514c167731e68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:184dd94c726c8f137a815888c657d721877874ddc18176bf5bc8dc909e43fa46 +size 165215 diff --git a/parse/train/rJ4km2R5t7/images/5ace62a0df84b32c315bd604a6eaf87c620682fe65100dd5d9c4a19f1af9e5e0.jpg b/parse/train/rJ4km2R5t7/images/5ace62a0df84b32c315bd604a6eaf87c620682fe65100dd5d9c4a19f1af9e5e0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cde57970af55d0a419992bd9f3100456a6284190 --- /dev/null +++ b/parse/train/rJ4km2R5t7/images/5ace62a0df84b32c315bd604a6eaf87c620682fe65100dd5d9c4a19f1af9e5e0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd9e9d26e1b92ffd67e09a66d15e4201741c6216b30ffe953179bd0dfec3a37 +size 175457 diff --git a/parse/train/rJ4km2R5t7/images/5c0047df8637222eb5fd2988766d320a1eb8a4caea4c4a0e6cb098d96ffe0d9a.jpg b/parse/train/rJ4km2R5t7/images/5c0047df8637222eb5fd2988766d320a1eb8a4caea4c4a0e6cb098d96ffe0d9a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4ff12e210ac79f3a42c3e37e855eecb90576ff6 --- /dev/null +++ b/parse/train/rJ4km2R5t7/images/5c0047df8637222eb5fd2988766d320a1eb8a4caea4c4a0e6cb098d96ffe0d9a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:090c4c638f697fe21428947d151db5d8eef3a66c00b80044c5cb89c7623c59a3 +size 74129 diff --git a/parse/train/rJ4km2R5t7/images/a7e40d5889da590c6bc683a5f9449075a1a4372b41e15ca1921a015d90afa34d.jpg b/parse/train/rJ4km2R5t7/images/a7e40d5889da590c6bc683a5f9449075a1a4372b41e15ca1921a015d90afa34d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a27682844e9641a091370caa38c711da48ea567d --- /dev/null +++ b/parse/train/rJ4km2R5t7/images/a7e40d5889da590c6bc683a5f9449075a1a4372b41e15ca1921a015d90afa34d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62eeb237601db00432cac3c83c5353f7f9ddbd6643ab50fb7b1842606e8775a6 +size 31751 diff --git a/parse/train/rJ4km2R5t7/images/ceb3904d1a071a3630bd7138d97fc87bf437202e931d7eee1cd5b83e642f485c.jpg b/parse/train/rJ4km2R5t7/images/ceb3904d1a071a3630bd7138d97fc87bf437202e931d7eee1cd5b83e642f485c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e9651b1b2171b29bc06c6a9a308a1d2e50ceed7 --- /dev/null +++ b/parse/train/rJ4km2R5t7/images/ceb3904d1a071a3630bd7138d97fc87bf437202e931d7eee1cd5b83e642f485c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dade53db560bab58cd3d3c49b239a69e74b1d537b5af1cd31a72569f1a6a8f2 +size 80756 diff --git a/parse/train/rJ4km2R5t7/images/e236302c70629dac186d5eda57e4562b7879bbe9ed605d8981a965d31a67a990.jpg b/parse/train/rJ4km2R5t7/images/e236302c70629dac186d5eda57e4562b7879bbe9ed605d8981a965d31a67a990.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44191763004096f8cec712ea95ec5dd24811b5e2 --- /dev/null +++ b/parse/train/rJ4km2R5t7/images/e236302c70629dac186d5eda57e4562b7879bbe9ed605d8981a965d31a67a990.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9459d9c38652927d18334ec4a12963e2e3830276f595dd5df30bb707e91e0a49 +size 108707 diff --git a/parse/train/rJ5C67-C-/images/09a95c934bd51a2d03ccabf6b6fceb3db5a5834366496562ed05243abe98fde5.jpg b/parse/train/rJ5C67-C-/images/09a95c934bd51a2d03ccabf6b6fceb3db5a5834366496562ed05243abe98fde5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5a6e7df60a8df139b9dc15acf28d84dc2a37362 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/09a95c934bd51a2d03ccabf6b6fceb3db5a5834366496562ed05243abe98fde5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b758a4787140394a14a94014b2041b7a8ebfeb2f8b8a3e86f541c7b6213e42 +size 3859 diff --git a/parse/train/rJ5C67-C-/images/0b925fb627a59a1b78967e4d2b3c2981393f5ce6961efe6441eb6f7a8b057bfa.jpg b/parse/train/rJ5C67-C-/images/0b925fb627a59a1b78967e4d2b3c2981393f5ce6961efe6441eb6f7a8b057bfa.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a3c344079c1c3a5a70c15aaace06d78d8d42245 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/0b925fb627a59a1b78967e4d2b3c2981393f5ce6961efe6441eb6f7a8b057bfa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7496c7756150fee443d5b2fa981f186c312e4948074ca0ef019691d430a9ed4d +size 11035 diff --git a/parse/train/rJ5C67-C-/images/152b84fab748fd28c49ff37d285f54353cb075c1adecff8b36709299b2cbb0a8.jpg b/parse/train/rJ5C67-C-/images/152b84fab748fd28c49ff37d285f54353cb075c1adecff8b36709299b2cbb0a8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..199da4c02a7eade5fdb4828933058338527ad5c2 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/152b84fab748fd28c49ff37d285f54353cb075c1adecff8b36709299b2cbb0a8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2db39148e1646c9647e0414b4ab1574dce7a330d37c5115a774ed333e1c7293a +size 3081 diff --git a/parse/train/rJ5C67-C-/images/1bbe3bf63a91e2bd1c12f499f09e56415513dc687d1df8ed65596a4ddbb4ba0d.jpg b/parse/train/rJ5C67-C-/images/1bbe3bf63a91e2bd1c12f499f09e56415513dc687d1df8ed65596a4ddbb4ba0d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d09edd13a637ce6cc333d4d7134cc7f1735dc56b --- /dev/null +++ b/parse/train/rJ5C67-C-/images/1bbe3bf63a91e2bd1c12f499f09e56415513dc687d1df8ed65596a4ddbb4ba0d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5813087bd080c8eb1a2e0db85078ea4f0ec5f4dd21676de905b734677d1360b +size 41395 diff --git a/parse/train/rJ5C67-C-/images/21e1d8b8e8c34b30ea15e84a59418f901b567f99285a05cae92520058531292c.jpg b/parse/train/rJ5C67-C-/images/21e1d8b8e8c34b30ea15e84a59418f901b567f99285a05cae92520058531292c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bca50dc90e20cd845e5dca2c5d2e41ee7c2831f5 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/21e1d8b8e8c34b30ea15e84a59418f901b567f99285a05cae92520058531292c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:494fa67e69b6a61777db7b800968e8a4c2fe5df3eca3023f16dd8afeb8adb223 +size 2185 diff --git a/parse/train/rJ5C67-C-/images/27813ee2055e492499d4aca296c3c30c5cde429511809fc3eb439f4dae2fc22a.jpg b/parse/train/rJ5C67-C-/images/27813ee2055e492499d4aca296c3c30c5cde429511809fc3eb439f4dae2fc22a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83de73eba0ebfa51c12a3279cf8dfad1e2acc27d --- /dev/null +++ b/parse/train/rJ5C67-C-/images/27813ee2055e492499d4aca296c3c30c5cde429511809fc3eb439f4dae2fc22a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a133318fa9a84380c8c8f9d8c2cb20938fd59216262c7da78e291126f9f39db +size 4225 diff --git a/parse/train/rJ5C67-C-/images/303929718f8854ff19c1941e1022db299d6f7534561c53d75a8c5943e5769b42.jpg b/parse/train/rJ5C67-C-/images/303929718f8854ff19c1941e1022db299d6f7534561c53d75a8c5943e5769b42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca241861e73aa374f5628723a15ad200f73ee94d --- /dev/null +++ b/parse/train/rJ5C67-C-/images/303929718f8854ff19c1941e1022db299d6f7534561c53d75a8c5943e5769b42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:656bf3d0159b182efa8d7426703208bf5b0686071f703edc4a36b0778dd3812b +size 77324 diff --git a/parse/train/rJ5C67-C-/images/37d5a12b6028c544126b59532d81bbe9ff5e0fc8205190e4e68f80ae47b2c222.jpg b/parse/train/rJ5C67-C-/images/37d5a12b6028c544126b59532d81bbe9ff5e0fc8205190e4e68f80ae47b2c222.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b6e1559232acbc05486dcff30eeacae05411759 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/37d5a12b6028c544126b59532d81bbe9ff5e0fc8205190e4e68f80ae47b2c222.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:887ff09a20a3d8d2217f7594b1026e57e5c597b1d633be570021617d17be1163 +size 53781 diff --git a/parse/train/rJ5C67-C-/images/3f77f09bbba57368277989c8a7e1522ddf1a9a30029ad871ac9c554eefd2e324.jpg b/parse/train/rJ5C67-C-/images/3f77f09bbba57368277989c8a7e1522ddf1a9a30029ad871ac9c554eefd2e324.jpg new file mode 100644 index 0000000000000000000000000000000000000000..858c69ab6aa319a99fe374d23560a38bca205c8a --- /dev/null +++ b/parse/train/rJ5C67-C-/images/3f77f09bbba57368277989c8a7e1522ddf1a9a30029ad871ac9c554eefd2e324.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a17a60a3aeded8639fb4ba465adb9bfffe025caeab7755b83e79acda664eff11 +size 36189 diff --git a/parse/train/rJ5C67-C-/images/42c53c683099610e60c3b902068d6d2dc63665e3383d25ace870eb77b8c686e4.jpg b/parse/train/rJ5C67-C-/images/42c53c683099610e60c3b902068d6d2dc63665e3383d25ace870eb77b8c686e4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5f8ec69cb1228cba7bc958e0fd24a084af5b47c3 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/42c53c683099610e60c3b902068d6d2dc63665e3383d25ace870eb77b8c686e4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:862d5f99dd4594cc4fd2bf40c3647b54329b0e4299d508bf9a929a8ae887abae +size 9263 diff --git a/parse/train/rJ5C67-C-/images/48d0de61c3f59555af14c5d4aff226e10b0e4c6eda9d3fe1f0acd3c48d453075.jpg b/parse/train/rJ5C67-C-/images/48d0de61c3f59555af14c5d4aff226e10b0e4c6eda9d3fe1f0acd3c48d453075.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8585f05a7e2588451fd59516b36ed43c2fc055f9 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/48d0de61c3f59555af14c5d4aff226e10b0e4c6eda9d3fe1f0acd3c48d453075.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d7de6a342fc6c4c240d683f53215d8bc0674ce4a5712c9fc2b87f30f73343a +size 3396 diff --git a/parse/train/rJ5C67-C-/images/51ce22cc85cd054bac24acd50bf2c95a93f8333938106cbfc5bd2384f705ac93.jpg b/parse/train/rJ5C67-C-/images/51ce22cc85cd054bac24acd50bf2c95a93f8333938106cbfc5bd2384f705ac93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76f6c8d7b378532da1df6a625a7c6c8c875cd8f5 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/51ce22cc85cd054bac24acd50bf2c95a93f8333938106cbfc5bd2384f705ac93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8666c48f94b01eef3f27c0cb19611345f2c2988aedb2c47f8d4bd7e10c27ec4 +size 2229 diff --git a/parse/train/rJ5C67-C-/images/5673e5d3ff2a680a4163ef84a34218dd8d11264827cca7b99e4de5cc00e81a4b.jpg b/parse/train/rJ5C67-C-/images/5673e5d3ff2a680a4163ef84a34218dd8d11264827cca7b99e4de5cc00e81a4b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4d36020197b40f6982657d6d4a0143d6c284862 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/5673e5d3ff2a680a4163ef84a34218dd8d11264827cca7b99e4de5cc00e81a4b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffab74564eb6873adeb72a96b6d4a0cf67267e3120a16244fc03830589268426 +size 69853 diff --git a/parse/train/rJ5C67-C-/images/5aaa8eef7079466790c6ebc28d4f851e798dad7b2f2407696b6e6b188897fa0c.jpg b/parse/train/rJ5C67-C-/images/5aaa8eef7079466790c6ebc28d4f851e798dad7b2f2407696b6e6b188897fa0c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ca92001225e1779510bc461c3ba7b79850fe305 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/5aaa8eef7079466790c6ebc28d4f851e798dad7b2f2407696b6e6b188897fa0c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46a1c9132ed61b0e47baba70c2db4120c05f7f403e2dcb539f09c1a83a84c127 +size 3240 diff --git a/parse/train/rJ5C67-C-/images/612d964933d73b617aee5455d891c4d83e5f0559a6e54ab56897472107fe8c35.jpg b/parse/train/rJ5C67-C-/images/612d964933d73b617aee5455d891c4d83e5f0559a6e54ab56897472107fe8c35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e7eb8676f1dd908a9ce2093d5198fc7240f1f59 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/612d964933d73b617aee5455d891c4d83e5f0559a6e54ab56897472107fe8c35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dffa32a7804b9f5d7ad26c0cfcd7a4901ec0e68f1c9aacdae4184e9b5b2cb3c3 +size 9512 diff --git a/parse/train/rJ5C67-C-/images/664c8c448aa505334078899c9c346e82f55c6bc8b6431641a7c4e789ebb537fb.jpg b/parse/train/rJ5C67-C-/images/664c8c448aa505334078899c9c346e82f55c6bc8b6431641a7c4e789ebb537fb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ff53ead9bc4bf94def25c42369392b5ac05688d --- /dev/null +++ b/parse/train/rJ5C67-C-/images/664c8c448aa505334078899c9c346e82f55c6bc8b6431641a7c4e789ebb537fb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1c696bffe830bd5f9d5b6d79d731a5e048bc102806c279e7450c94912625964 +size 6302 diff --git a/parse/train/rJ5C67-C-/images/7a2af5bc488219c9e465de6a13a0ee4d901928c4e9309eb8a1b035e2c14bfdd2.jpg b/parse/train/rJ5C67-C-/images/7a2af5bc488219c9e465de6a13a0ee4d901928c4e9309eb8a1b035e2c14bfdd2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb8cd21506ba2331612621d60bbdcc6b93c2b042 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/7a2af5bc488219c9e465de6a13a0ee4d901928c4e9309eb8a1b035e2c14bfdd2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51164228b62a09da867b58dc327f8e580ea2497137a57e1789489210b9c41d8e +size 15223 diff --git a/parse/train/rJ5C67-C-/images/868cf21e2c41e70a9a63897c32f807fc87ede646bda83377e3941623d69c2934.jpg b/parse/train/rJ5C67-C-/images/868cf21e2c41e70a9a63897c32f807fc87ede646bda83377e3941623d69c2934.jpg new file mode 100644 index 0000000000000000000000000000000000000000..136067cb3d8a37a884ea17efce82e6056d51a97f --- /dev/null +++ b/parse/train/rJ5C67-C-/images/868cf21e2c41e70a9a63897c32f807fc87ede646bda83377e3941623d69c2934.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7019d12cdedf79b09e82027fa587e562709e5958a64eb190e2b1fa8860fb8d4 +size 1868 diff --git a/parse/train/rJ5C67-C-/images/90d811bfb277862c608267f3f8203e49ad88ad9f37b5f030f3471cf8469fdde8.jpg b/parse/train/rJ5C67-C-/images/90d811bfb277862c608267f3f8203e49ad88ad9f37b5f030f3471cf8469fdde8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84e872b08e55db97f8e466b3d1fdaab0871af4b0 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/90d811bfb277862c608267f3f8203e49ad88ad9f37b5f030f3471cf8469fdde8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b54d98d264b022f40af61efafee2fb85d09c3cd873a70bfca2b8a080984da9 +size 4272 diff --git a/parse/train/rJ5C67-C-/images/9f1a8ccb3709a130506f58e5780dbe8e65fad398162ce4a0e5b031d975657352.jpg b/parse/train/rJ5C67-C-/images/9f1a8ccb3709a130506f58e5780dbe8e65fad398162ce4a0e5b031d975657352.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f25cb3243107b49b7d49f89bbee344b9a0e579d7 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/9f1a8ccb3709a130506f58e5780dbe8e65fad398162ce4a0e5b031d975657352.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3756c7932441765521609d34a6d2afcc902701ef4a178106ed981ee212a2b359 +size 7878 diff --git a/parse/train/rJ5C67-C-/images/9f65e8e35f028b30bbbf3eeafa5cec3d720defbe7f139efbe3bbc6ceae666b33.jpg b/parse/train/rJ5C67-C-/images/9f65e8e35f028b30bbbf3eeafa5cec3d720defbe7f139efbe3bbc6ceae666b33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5699943948b2abf1edc565ad31f08c2699e14fb --- /dev/null +++ b/parse/train/rJ5C67-C-/images/9f65e8e35f028b30bbbf3eeafa5cec3d720defbe7f139efbe3bbc6ceae666b33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59187b15dc0ae2791f1b31d3b04d856930272686ea189cc7e47e377e2160f442 +size 25669 diff --git a/parse/train/rJ5C67-C-/images/b0e66302dcf14c24bd1973118096b15ab79a9b8bc93f1f9b972e60efedb7e07a.jpg b/parse/train/rJ5C67-C-/images/b0e66302dcf14c24bd1973118096b15ab79a9b8bc93f1f9b972e60efedb7e07a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bc41c60aa186f39abe7a7d7b05c462cc75ad352 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/b0e66302dcf14c24bd1973118096b15ab79a9b8bc93f1f9b972e60efedb7e07a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c1a92b95c127db4246dafe05cdaa85a101e34b196a03502ddff46bd171b8c4 +size 3262 diff --git a/parse/train/rJ5C67-C-/images/b47128dc8198ed382d93b316eee9c176ed049baa7fa5876a194164e93c415cb0.jpg b/parse/train/rJ5C67-C-/images/b47128dc8198ed382d93b316eee9c176ed049baa7fa5876a194164e93c415cb0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..140fc4a572987cec57cacdb7833602b960567725 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/b47128dc8198ed382d93b316eee9c176ed049baa7fa5876a194164e93c415cb0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb6045dc1f21fd6002cbb0ab4743582ee0a5b09ac2a4a322e9e8d92845994e7 +size 8787 diff --git a/parse/train/rJ5C67-C-/images/b73ac9cfd515c5461959a0ea23a45a311f779661b79c0a765b5422dcc72ba238.jpg b/parse/train/rJ5C67-C-/images/b73ac9cfd515c5461959a0ea23a45a311f779661b79c0a765b5422dcc72ba238.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92850d32acc2a198f160da489f2672645c444719 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/b73ac9cfd515c5461959a0ea23a45a311f779661b79c0a765b5422dcc72ba238.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed15a344f589f1293b025fec0401fb47f738a5471ced38dad1a1a7e2ed5dd413 +size 4690 diff --git a/parse/train/rJ5C67-C-/images/c9612bf36186d0fd911b49d67ca6de48b2fb28dcf3e3a98a8c3603505f672c11.jpg b/parse/train/rJ5C67-C-/images/c9612bf36186d0fd911b49d67ca6de48b2fb28dcf3e3a98a8c3603505f672c11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a132c70d1c7214c8ae2846823f699543e1d69447 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/c9612bf36186d0fd911b49d67ca6de48b2fb28dcf3e3a98a8c3603505f672c11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e02696ca90f185c4db122ee9c5a3f95780f0725b1f77c7dfba8f3ca744882721 +size 16799 diff --git a/parse/train/rJ5C67-C-/images/cd895fbebafc2c292c9155a656e3297b3995315f687a719f6e49568e58df6ea8.jpg b/parse/train/rJ5C67-C-/images/cd895fbebafc2c292c9155a656e3297b3995315f687a719f6e49568e58df6ea8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89a700a89f23a178c49bd2fa266c5192a9af1b6b --- /dev/null +++ b/parse/train/rJ5C67-C-/images/cd895fbebafc2c292c9155a656e3297b3995315f687a719f6e49568e58df6ea8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a822b7dfe0c0f8f53ff64f9c33aed1eb7cbca155262e7322d70311947338b55f +size 10309 diff --git a/parse/train/rJ5C67-C-/images/d054e78cb1895bf3541b0b46890cb55fe1084f2639e58a61aec67b2a7259bf88.jpg b/parse/train/rJ5C67-C-/images/d054e78cb1895bf3541b0b46890cb55fe1084f2639e58a61aec67b2a7259bf88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..026068dd8af36a5fb396fa06a2509db31fecc5d7 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/d054e78cb1895bf3541b0b46890cb55fe1084f2639e58a61aec67b2a7259bf88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6a5a8c7447d9c221298cafafce46d5f73d9fcdfa23b2a302cb35244aa4f8c04 +size 12947 diff --git a/parse/train/rJ5C67-C-/images/d4cff23d9e695ebe341d867b7127e60b09a87a52636c0e0b62162215825e7049.jpg b/parse/train/rJ5C67-C-/images/d4cff23d9e695ebe341d867b7127e60b09a87a52636c0e0b62162215825e7049.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f74cec19881fd7f10119d323fae3766b604c4b4 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/d4cff23d9e695ebe341d867b7127e60b09a87a52636c0e0b62162215825e7049.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6073ddb7c65fbf33559596d3d7961a30d775d5a75a133ba3a9c2926ec52436a3 +size 3630 diff --git a/parse/train/rJ5C67-C-/images/d9529e3eec2c18a9da98aa3b1dc1936c4df10b7d8828075081b7cb5ebd941335.jpg b/parse/train/rJ5C67-C-/images/d9529e3eec2c18a9da98aa3b1dc1936c4df10b7d8828075081b7cb5ebd941335.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a76a93688b0eff131a6ac294441e7bef4cc6dc6 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/d9529e3eec2c18a9da98aa3b1dc1936c4df10b7d8828075081b7cb5ebd941335.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c942521f58edb27c5b397c99a7bf8894459ba3b681f4b7451aa307f2cc53f3f +size 53655 diff --git a/parse/train/rJ5C67-C-/images/e3cb10f8b0cddc4cc8afdaf6e7ecb730c4c82ce98850af1796c1ddcb27179353.jpg b/parse/train/rJ5C67-C-/images/e3cb10f8b0cddc4cc8afdaf6e7ecb730c4c82ce98850af1796c1ddcb27179353.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c840f8e9b473933f26a21b957b7c0e8c053a0a5e --- /dev/null +++ b/parse/train/rJ5C67-C-/images/e3cb10f8b0cddc4cc8afdaf6e7ecb730c4c82ce98850af1796c1ddcb27179353.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7760fb89f4d5045c9066e20cfaeab1fe5bf3f480c9d0e63270bda8bd668226d5 +size 19654 diff --git a/parse/train/rJ5C67-C-/images/ee414ab253a66167e672803e25f168c925912065b6c8298c53c42bc8c7c556c6.jpg b/parse/train/rJ5C67-C-/images/ee414ab253a66167e672803e25f168c925912065b6c8298c53c42bc8c7c556c6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d966f1525c74647e1ecf0ae8d0318966e2f9f22 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/ee414ab253a66167e672803e25f168c925912065b6c8298c53c42bc8c7c556c6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b842c74e34d846ce12841be751535e5c109d69bd576ed852cee698abed7c02ec +size 2473 diff --git a/parse/train/rJ5C67-C-/images/f1e0b6d0e7a99e3d3285dd02e121fcd06bd673a7e18a3b5c4a0c79e93bcac0e6.jpg b/parse/train/rJ5C67-C-/images/f1e0b6d0e7a99e3d3285dd02e121fcd06bd673a7e18a3b5c4a0c79e93bcac0e6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d3370e7a1626e6e6241790c14e19629b0d5f657 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/f1e0b6d0e7a99e3d3285dd02e121fcd06bd673a7e18a3b5c4a0c79e93bcac0e6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b745442679822f80f0fb1c5c3c3472c95a7ec7004bf963f75282da217f835dbc +size 5282 diff --git a/parse/train/rJ5C67-C-/images/fb91d6d81f7e594229f27b5ae7d5b4df86eb736feb9da3f027ef1d34d85bf212.jpg b/parse/train/rJ5C67-C-/images/fb91d6d81f7e594229f27b5ae7d5b4df86eb736feb9da3f027ef1d34d85bf212.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2640eb39dbea08efcc48ecc1fa8bbba6aa67607 --- /dev/null +++ b/parse/train/rJ5C67-C-/images/fb91d6d81f7e594229f27b5ae7d5b4df86eb736feb9da3f027ef1d34d85bf212.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eeab8d212c6a402501e5855bf75ce0daaf33545be85423fa55f17bc93f94c54 +size 56229 diff --git a/parse/train/rkgqN1SYvr/images/0977b25d796db176c817c1dfbba8cbc0d0facf503c8d4389469bb74165b72ead.jpg b/parse/train/rkgqN1SYvr/images/0977b25d796db176c817c1dfbba8cbc0d0facf503c8d4389469bb74165b72ead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4723ae5c78b6ff28ef87a74a81dc4e16e18f94f5 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/0977b25d796db176c817c1dfbba8cbc0d0facf503c8d4389469bb74165b72ead.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:668296c633b4799a31f3527bcda4fd1b5ea20d25753a698872421486ddff0249 +size 11012 diff --git a/parse/train/rkgqN1SYvr/images/0b2571dac3bbaa76285188db7d0d866bd6671c6541379b060e8f5363430f36f2.jpg b/parse/train/rkgqN1SYvr/images/0b2571dac3bbaa76285188db7d0d866bd6671c6541379b060e8f5363430f36f2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec62d59b50f6e48bc1572dd4ca1c69baddc8e10f --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/0b2571dac3bbaa76285188db7d0d866bd6671c6541379b060e8f5363430f36f2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b3d1110719d2bd85279f7c31876fd9d754562bea57a20ec9e70f0fd20e780b +size 8672 diff --git a/parse/train/rkgqN1SYvr/images/15c7863ca78d7c93305391c81a852d96fc91b7b77b2ce0cfbbc8553840020002.jpg b/parse/train/rkgqN1SYvr/images/15c7863ca78d7c93305391c81a852d96fc91b7b77b2ce0cfbbc8553840020002.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46f3232d9cdd8d6ec3281026992910a69d50fb16 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/15c7863ca78d7c93305391c81a852d96fc91b7b77b2ce0cfbbc8553840020002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0630561392dc52233a7fe389e813234be67c0daea0e474e4da6eb4718d8db055 +size 6372 diff --git a/parse/train/rkgqN1SYvr/images/16807c221a0409cab36996b88356918d4408e5b19a0c7c6ed4cf8bc9de7e0fb0.jpg b/parse/train/rkgqN1SYvr/images/16807c221a0409cab36996b88356918d4408e5b19a0c7c6ed4cf8bc9de7e0fb0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65ea186ac95ee7c064a1e99352dbf4050ae3b882 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/16807c221a0409cab36996b88356918d4408e5b19a0c7c6ed4cf8bc9de7e0fb0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3680623c3744b2941a55f3b4a9db1ae890aa776386d5ee516feabaab175a973d +size 18564 diff --git a/parse/train/rkgqN1SYvr/images/1bd125a74a5abd8ddc26fe55b24371045fb67d1ab35b771b411197d564e0ab45.jpg b/parse/train/rkgqN1SYvr/images/1bd125a74a5abd8ddc26fe55b24371045fb67d1ab35b771b411197d564e0ab45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7c1b25f3fa7e2363fba0b1a9628df6e34604978 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/1bd125a74a5abd8ddc26fe55b24371045fb67d1ab35b771b411197d564e0ab45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cebe6577a18293fa0aebec5d367e7d8ff6311e56fce92f9182c32eeec3d22695 +size 7600 diff --git a/parse/train/rkgqN1SYvr/images/21a17b4582b356e7d3152ca6dfecf05f4bcabca40745dbfcdd46df437a9cd508.jpg b/parse/train/rkgqN1SYvr/images/21a17b4582b356e7d3152ca6dfecf05f4bcabca40745dbfcdd46df437a9cd508.jpg new file mode 100644 index 0000000000000000000000000000000000000000..736d5cfce1229fe5133d237fe91e1ef8c1e51fd7 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/21a17b4582b356e7d3152ca6dfecf05f4bcabca40745dbfcdd46df437a9cd508.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e65dd1229761e3ff1f5c207b646275bef1493ea013e546ea6e1aba20254ad6b +size 13408 diff --git a/parse/train/rkgqN1SYvr/images/28132f45579c58efcfa24b24cc44fcafb8effd311491bca8b24567edb5ce8d99.jpg b/parse/train/rkgqN1SYvr/images/28132f45579c58efcfa24b24cc44fcafb8effd311491bca8b24567edb5ce8d99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f326f7539f1122df84ac48f7262316a2d5a9703e --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/28132f45579c58efcfa24b24cc44fcafb8effd311491bca8b24567edb5ce8d99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77434ddae8e2f0f6728414f10bf6caef100d25d9ec5cf5c5f1f44d9e9e572479 +size 7332 diff --git a/parse/train/rkgqN1SYvr/images/34cb01db8fae26e6be33d52cb2907df279e2a2f50893ab3e1d5ba5f3ddd76e3c.jpg b/parse/train/rkgqN1SYvr/images/34cb01db8fae26e6be33d52cb2907df279e2a2f50893ab3e1d5ba5f3ddd76e3c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e669db4dd27db9f9612a760ffbb3c65d518cd4ea --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/34cb01db8fae26e6be33d52cb2907df279e2a2f50893ab3e1d5ba5f3ddd76e3c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41078355ac5a831c9da71cab730ac9f5df798ba665eccc2c0cdee96c97eac26a +size 12138 diff --git a/parse/train/rkgqN1SYvr/images/37909b22011216296bab988e70a0ff1b5fe77799dbcab05b05bab50d1c1d8502.jpg b/parse/train/rkgqN1SYvr/images/37909b22011216296bab988e70a0ff1b5fe77799dbcab05b05bab50d1c1d8502.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e7fe5c0e55d9e078ae16f1a289fd71a70f16c52 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/37909b22011216296bab988e70a0ff1b5fe77799dbcab05b05bab50d1c1d8502.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:220ebac2cf9c21a668f586a4713d455f7a44565ba1efd649da767b345c020649 +size 10766 diff --git a/parse/train/rkgqN1SYvr/images/42f70886b3f74758bb57d8d3c4ef8317fc57e55c2a3bd3fbf218ba3923d0e34a.jpg b/parse/train/rkgqN1SYvr/images/42f70886b3f74758bb57d8d3c4ef8317fc57e55c2a3bd3fbf218ba3923d0e34a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0cabd2659e876cb35cec348e37157b762e700d1 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/42f70886b3f74758bb57d8d3c4ef8317fc57e55c2a3bd3fbf218ba3923d0e34a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:716b564b2a98776cfbe4a3c12a8da3426cf98e9d6b2768fd4b0d88b6fcaa77be +size 2996 diff --git a/parse/train/rkgqN1SYvr/images/45de4827d724f03bdff2f92259aea723d78f3cde6b1aba5c78b8d307f7dcb8e4.jpg b/parse/train/rkgqN1SYvr/images/45de4827d724f03bdff2f92259aea723d78f3cde6b1aba5c78b8d307f7dcb8e4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d5c9e3d69be6c4a7cdd6c4658c95d58d3c3fa06 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/45de4827d724f03bdff2f92259aea723d78f3cde6b1aba5c78b8d307f7dcb8e4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1f6153f505d2cd101892dee1a103aca3c151747dede6d0b3119495bd1812ef8 +size 17495 diff --git a/parse/train/rkgqN1SYvr/images/4bd651020c0e3c6bb555bf1d53bee766e6589fccdc7b8fc45465e7cc0d50183f.jpg b/parse/train/rkgqN1SYvr/images/4bd651020c0e3c6bb555bf1d53bee766e6589fccdc7b8fc45465e7cc0d50183f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..197c57412d01793c267d596b4205ef5bdd276e31 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/4bd651020c0e3c6bb555bf1d53bee766e6589fccdc7b8fc45465e7cc0d50183f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35dbc33bac286546fb3b335d70c19a61099112ce71439a28796b5d14fadd3169 +size 32159 diff --git a/parse/train/rkgqN1SYvr/images/4d5460d037779b8c6a71dc63449176cd25324252a5fca7dd69267de4e32938f5.jpg b/parse/train/rkgqN1SYvr/images/4d5460d037779b8c6a71dc63449176cd25324252a5fca7dd69267de4e32938f5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb4729cbaffc479be9bf80f976f3d0b57ab190c4 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/4d5460d037779b8c6a71dc63449176cd25324252a5fca7dd69267de4e32938f5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c583209dfb2c331fdaa68642cbc240017f121ca85b5a14614d73851ba2390d5 +size 9941 diff --git a/parse/train/rkgqN1SYvr/images/4dd717a62b3926a3e6a5fa07343b2ce4c83579877cb5afda5aa29e31c0fda682.jpg b/parse/train/rkgqN1SYvr/images/4dd717a62b3926a3e6a5fa07343b2ce4c83579877cb5afda5aa29e31c0fda682.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c57bf5e50981c5fb853dd073ff318e360cf9938 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/4dd717a62b3926a3e6a5fa07343b2ce4c83579877cb5afda5aa29e31c0fda682.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:289024785749edcd13c353c6731e410d66b765509f8b5ba6d36a79ac211dfc88 +size 23573 diff --git a/parse/train/rkgqN1SYvr/images/575ce348baa811a1255df80258def3937459797bb435a416942e9f734453c71c.jpg b/parse/train/rkgqN1SYvr/images/575ce348baa811a1255df80258def3937459797bb435a416942e9f734453c71c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b071c1dfca5b44549f536103f23deadff96d5135 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/575ce348baa811a1255df80258def3937459797bb435a416942e9f734453c71c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:395cc2b2d884fc2e188541406e91719699216a760a5ea8e16c149e0f46128389 +size 13726 diff --git a/parse/train/rkgqN1SYvr/images/59e1b4a8aa67b0e4d4d4181a1371995ebaac3e2d9f725e06ef78ff6fe2a8d963.jpg b/parse/train/rkgqN1SYvr/images/59e1b4a8aa67b0e4d4d4181a1371995ebaac3e2d9f725e06ef78ff6fe2a8d963.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06ed9dfea07fb4ee9128fe137794cfde35bf9e47 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/59e1b4a8aa67b0e4d4d4181a1371995ebaac3e2d9f725e06ef78ff6fe2a8d963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ac6ce1b4b71893b0cd05820a28b998f518aa49d2d1bec9d6d2b248f25542714 +size 8845 diff --git a/parse/train/rkgqN1SYvr/images/5ed945daa225913a4c3c55c52adb7e29e4680102a2019c5e2b85c58858071e2d.jpg b/parse/train/rkgqN1SYvr/images/5ed945daa225913a4c3c55c52adb7e29e4680102a2019c5e2b85c58858071e2d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6244eb00699dd6efc3b7e1029255188806520e8 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/5ed945daa225913a4c3c55c52adb7e29e4680102a2019c5e2b85c58858071e2d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6d42fdee30996fcacd497e66aaf71ade9f460f3b15001b458df677feaea22b9 +size 29275 diff --git a/parse/train/rkgqN1SYvr/images/5fbf8cf4efea2c897548709b193e6f8fc98c7015288a73d6fd28f2ef99b08dba.jpg b/parse/train/rkgqN1SYvr/images/5fbf8cf4efea2c897548709b193e6f8fc98c7015288a73d6fd28f2ef99b08dba.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d241dc2f237b8e2023bf6d1865c13589276fe75 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/5fbf8cf4efea2c897548709b193e6f8fc98c7015288a73d6fd28f2ef99b08dba.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0efcf8d5f35488fdc044a8d8e9fe3a4594814a458ba8f8687d67b295b13a725 +size 15090 diff --git a/parse/train/rkgqN1SYvr/images/6593f7854d6693a495cf6d58b57d1657908e097c382f27cd3ef3118184ed6582.jpg b/parse/train/rkgqN1SYvr/images/6593f7854d6693a495cf6d58b57d1657908e097c382f27cd3ef3118184ed6582.jpg new file mode 100644 index 0000000000000000000000000000000000000000..309d54160ef29559b7d54959fc5b1b66740674fd --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/6593f7854d6693a495cf6d58b57d1657908e097c382f27cd3ef3118184ed6582.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de22c235c3fc70988b0e1928a0f9e55acf1487dfd97f0f6488b2c16dfadbb14a +size 21838 diff --git a/parse/train/rkgqN1SYvr/images/6c6a59d5681ac9351ca98920548d357423bc44e0d0151269c847f4dc82d52ad1.jpg b/parse/train/rkgqN1SYvr/images/6c6a59d5681ac9351ca98920548d357423bc44e0d0151269c847f4dc82d52ad1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d153bbafb82e551290a91f3a0144e4289429232f --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/6c6a59d5681ac9351ca98920548d357423bc44e0d0151269c847f4dc82d52ad1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51abc938e7231552cff358288404eb7b63c5b434594e09701162e0d7aa4d0404 +size 9716 diff --git a/parse/train/rkgqN1SYvr/images/6f23e31b1ef9b6538ce85441607e5c1f4666092ac70798f1c7cb7be9bfcb4355.jpg b/parse/train/rkgqN1SYvr/images/6f23e31b1ef9b6538ce85441607e5c1f4666092ac70798f1c7cb7be9bfcb4355.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22ca214d70be1986f9440699486d08c02fc501db --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/6f23e31b1ef9b6538ce85441607e5c1f4666092ac70798f1c7cb7be9bfcb4355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c1e13f7f75a782ce8c7065f0802fd94ba6bd1f4dde9322b7c23e3b6e331dc8d +size 3737 diff --git a/parse/train/rkgqN1SYvr/images/75ff4cf21a7253fe5962436d8d5b7aa9265b91869aa9d26f1541930b8fc35fb2.jpg b/parse/train/rkgqN1SYvr/images/75ff4cf21a7253fe5962436d8d5b7aa9265b91869aa9d26f1541930b8fc35fb2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ffa33f43c0385fd8f9b736304104bae42328a5c8 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/75ff4cf21a7253fe5962436d8d5b7aa9265b91869aa9d26f1541930b8fc35fb2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0efc23114b882714b1c2aea51b0fc348e6cd7fba7e28f398cdc9405c52242c9c +size 10135 diff --git a/parse/train/rkgqN1SYvr/images/77c78c93695462151a4bd6c2854670c55e94c304feb038d8d5e7823fcabe286f.jpg b/parse/train/rkgqN1SYvr/images/77c78c93695462151a4bd6c2854670c55e94c304feb038d8d5e7823fcabe286f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1cce1534a49a4c5adfd37634f6a9f0cadd69e80c --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/77c78c93695462151a4bd6c2854670c55e94c304feb038d8d5e7823fcabe286f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a33dc7cefe4e51a5d8ea7d43b5970e5b1c97fba730787b222c692688728fc6de +size 6630 diff --git a/parse/train/rkgqN1SYvr/images/7ef619e94260d795ee96277c5acb181219379975ce5d4d01c90e828b6c453512.jpg b/parse/train/rkgqN1SYvr/images/7ef619e94260d795ee96277c5acb181219379975ce5d4d01c90e828b6c453512.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80e6bcb70aca349810404ea096b893c6d6d11fd3 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/7ef619e94260d795ee96277c5acb181219379975ce5d4d01c90e828b6c453512.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32d7286c05b0afa4d7c1de180ccd8aef70c07749f8654cfb142eade84c9aca44 +size 8042 diff --git a/parse/train/rkgqN1SYvr/images/7f6b168cdc105d50aeb9d92c4a132cf9a35671921964e3b9fd8a566f0688527d.jpg b/parse/train/rkgqN1SYvr/images/7f6b168cdc105d50aeb9d92c4a132cf9a35671921964e3b9fd8a566f0688527d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf2514a784ca4dc422e800f83fc90516d9158501 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/7f6b168cdc105d50aeb9d92c4a132cf9a35671921964e3b9fd8a566f0688527d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffde3252cad05c5f88540e013893433b1cf7cb7a4d1f4b1cf18dda096506e222 +size 87760 diff --git a/parse/train/rkgqN1SYvr/images/87a95a4eaa7ce282abee05e52db9ec845d9332d3f8b9ff1689b000decd6b51e2.jpg b/parse/train/rkgqN1SYvr/images/87a95a4eaa7ce282abee05e52db9ec845d9332d3f8b9ff1689b000decd6b51e2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e19b94213410f5337cdac60d837e1c0ae9d8dd6 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/87a95a4eaa7ce282abee05e52db9ec845d9332d3f8b9ff1689b000decd6b51e2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74688618938c9d19c8cb072d3dad1bfb73ffd81cace3635b7453c6fb7ed2deb0 +size 16550 diff --git a/parse/train/rkgqN1SYvr/images/8b7c542dbea54c2d04b31a7b368d343f87784268dbae87fba9ef752973e569c2.jpg b/parse/train/rkgqN1SYvr/images/8b7c542dbea54c2d04b31a7b368d343f87784268dbae87fba9ef752973e569c2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4cac87129579e3f358cf18e5c3af0bdc2b13229 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/8b7c542dbea54c2d04b31a7b368d343f87784268dbae87fba9ef752973e569c2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:840073c6a0f0e59b2fbc995843ec1ccb225d25a5774d837472281e953fd2ba15 +size 16018 diff --git a/parse/train/rkgqN1SYvr/images/95f84485e9e091adec8bf00e9a152af3633f929248e134d0e1fd3cae8fbbd300.jpg b/parse/train/rkgqN1SYvr/images/95f84485e9e091adec8bf00e9a152af3633f929248e134d0e1fd3cae8fbbd300.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bad1add232ecb8e8605c45ecdb69ec5cc047e71 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/95f84485e9e091adec8bf00e9a152af3633f929248e134d0e1fd3cae8fbbd300.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc4c53d860dbbd06cec648ffc0a810420bbd4cbe1944fffe67e25f1485a232a8 +size 31575 diff --git a/parse/train/rkgqN1SYvr/images/990fb14ad9555b29534b399f5985113b043fc7276a174ab9b803d8b766640660.jpg b/parse/train/rkgqN1SYvr/images/990fb14ad9555b29534b399f5985113b043fc7276a174ab9b803d8b766640660.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a29d3b9ae8364b5187efc74fab658e528e08f63c --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/990fb14ad9555b29534b399f5985113b043fc7276a174ab9b803d8b766640660.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:415c4eb76a8de0f2952bdea70acd1da0139901316ed85a4eddf9d94e1fcdd656 +size 8067 diff --git a/parse/train/rkgqN1SYvr/images/a30c7c831935643d2e50cebab1bdb568b75df4f3d96c6e8ebae767c41b269ec8.jpg b/parse/train/rkgqN1SYvr/images/a30c7c831935643d2e50cebab1bdb568b75df4f3d96c6e8ebae767c41b269ec8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ac342f5b01e089c2b164ed6a6fa988a420f518e --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/a30c7c831935643d2e50cebab1bdb568b75df4f3d96c6e8ebae767c41b269ec8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd14fde09bced91cb4155214669471bada2d17d6288870ab6145eb39bd28c0d2 +size 60214 diff --git a/parse/train/rkgqN1SYvr/images/a31f85d06619efe96a52a40c562be6c43a86bc67ff900029b3f939b4a0dd0d57.jpg b/parse/train/rkgqN1SYvr/images/a31f85d06619efe96a52a40c562be6c43a86bc67ff900029b3f939b4a0dd0d57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28df81fe1f0102b0385c7425a1a774be19c06806 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/a31f85d06619efe96a52a40c562be6c43a86bc67ff900029b3f939b4a0dd0d57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ea6d516f41ebfe8c6b60d1c822a18f9684b834ab6a52372770a7997100ec09a +size 7573 diff --git a/parse/train/rkgqN1SYvr/images/a7e65ae9d5a7c9bc243520cc1e1332622a36428e4b0ace02ab4c7dc6b7455df0.jpg b/parse/train/rkgqN1SYvr/images/a7e65ae9d5a7c9bc243520cc1e1332622a36428e4b0ace02ab4c7dc6b7455df0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ed3db5116372150cd6e288835788ed50b847824 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/a7e65ae9d5a7c9bc243520cc1e1332622a36428e4b0ace02ab4c7dc6b7455df0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b4ed1a085e13e29dd1432fa2febe5daf52f5c68108c585334b69cb5dc618b3a +size 8820 diff --git a/parse/train/rkgqN1SYvr/images/acd14cf836c9885fb800a1b93f66fac986f7b7fad4641d48f6a1e1eaf5cf613b.jpg b/parse/train/rkgqN1SYvr/images/acd14cf836c9885fb800a1b93f66fac986f7b7fad4641d48f6a1e1eaf5cf613b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..522d12ea11290656681b9d79d8b8e675489cfe62 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/acd14cf836c9885fb800a1b93f66fac986f7b7fad4641d48f6a1e1eaf5cf613b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54fa28681d1886e23cf5ee512b6325b0cad77a876badbc151bb0466ae9bd615f +size 7485 diff --git a/parse/train/rkgqN1SYvr/images/aefc574fd47aef7677aad74b6adf9a32fc69a2c9343898879b3c8229c569c0b5.jpg b/parse/train/rkgqN1SYvr/images/aefc574fd47aef7677aad74b6adf9a32fc69a2c9343898879b3c8229c569c0b5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd51b8ab29a565e3596424941dbfb79a7a51f6c5 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/aefc574fd47aef7677aad74b6adf9a32fc69a2c9343898879b3c8229c569c0b5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d09aad8e283cc99a79334a5784bf6f6319e2039ce543d53ae99eb07b364f56fd +size 3938 diff --git a/parse/train/rkgqN1SYvr/images/b69b49e216c8cae1f607c5ffbf65b06c730aa32b5f5e7e124acd25b1baf8ed14.jpg b/parse/train/rkgqN1SYvr/images/b69b49e216c8cae1f607c5ffbf65b06c730aa32b5f5e7e124acd25b1baf8ed14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d00212bacc4f2a5c8712f9effc1df5cf23f3d200 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/b69b49e216c8cae1f607c5ffbf65b06c730aa32b5f5e7e124acd25b1baf8ed14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14c7243b5bea56d3198e509481c5aea62de2da81eb6ec2f0dc0be5a8ee32bff7 +size 12678 diff --git a/parse/train/rkgqN1SYvr/images/c01b39b9b1e23b0ea002948df1334be36661ac6b988935aadfe632be2b7ac766.jpg b/parse/train/rkgqN1SYvr/images/c01b39b9b1e23b0ea002948df1334be36661ac6b988935aadfe632be2b7ac766.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2cfb38421623228fcabd420d9f4622b2ec45d751 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/c01b39b9b1e23b0ea002948df1334be36661ac6b988935aadfe632be2b7ac766.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c4f13d33d9a220d575f5abc834507673a2379b121c4c6ac611f33c9ae67a5d1 +size 14590 diff --git a/parse/train/rkgqN1SYvr/images/c73a2c930259b8d3443a9c68262259d0ca97153a5c2404385bcb0e6c9a58c24f.jpg b/parse/train/rkgqN1SYvr/images/c73a2c930259b8d3443a9c68262259d0ca97153a5c2404385bcb0e6c9a58c24f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd6b4b341594a07548994082e062ba9d98d24b77 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/c73a2c930259b8d3443a9c68262259d0ca97153a5c2404385bcb0e6c9a58c24f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4c72f2809debc86e4b6eac43b3279eb6a5c6c824c3980d5303b86de5f4899f4 +size 44847 diff --git a/parse/train/rkgqN1SYvr/images/c85a9e4d42468dbe1af920a1ce082d4af75a87989fa4ba49decf2c34cf753d4c.jpg b/parse/train/rkgqN1SYvr/images/c85a9e4d42468dbe1af920a1ce082d4af75a87989fa4ba49decf2c34cf753d4c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a7f572dd1472d4c2a5628fe5d627dab16f8583e --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/c85a9e4d42468dbe1af920a1ce082d4af75a87989fa4ba49decf2c34cf753d4c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:993c098f6b5c46a52d1d8948ad76d7e675b945726efa7611d934413edd0f48d9 +size 23596 diff --git a/parse/train/rkgqN1SYvr/images/c9e9836abaf72e4aa26aaa91494af123d9f90ee4cbdeba332bd544f7af7efd46.jpg b/parse/train/rkgqN1SYvr/images/c9e9836abaf72e4aa26aaa91494af123d9f90ee4cbdeba332bd544f7af7efd46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0851e02421329bf83433558e52ed99faa88048bc --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/c9e9836abaf72e4aa26aaa91494af123d9f90ee4cbdeba332bd544f7af7efd46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e472afc56fe99393aa986f8098ab12315f0397b9758f1adfb90fdd94b9152e1 +size 17619 diff --git a/parse/train/rkgqN1SYvr/images/dadbdb3ee3636ea7f9e0681ab4af181599a5ff56f6169e26a2504734c56a1d9a.jpg b/parse/train/rkgqN1SYvr/images/dadbdb3ee3636ea7f9e0681ab4af181599a5ff56f6169e26a2504734c56a1d9a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d577741239a96b35fe76ff596a8204e9e9671482 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/dadbdb3ee3636ea7f9e0681ab4af181599a5ff56f6169e26a2504734c56a1d9a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a43cdef93e22a508fa0e551ce592abc8c0987c066b5f421e8c9f452d93c619e3 +size 5354 diff --git a/parse/train/rkgqN1SYvr/images/dbf6e21e89bb683ee9c82a6c5fa57041e18fdbe0252e36a36447c3029e8a2cd1.jpg b/parse/train/rkgqN1SYvr/images/dbf6e21e89bb683ee9c82a6c5fa57041e18fdbe0252e36a36447c3029e8a2cd1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d25755c0db2ec14017b64379887210d2e97dc19a --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/dbf6e21e89bb683ee9c82a6c5fa57041e18fdbe0252e36a36447c3029e8a2cd1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:863fd2562c1f5181b7d64aeb187c21c19f37018b102e8c632aef20a413e52f95 +size 7590 diff --git a/parse/train/rkgqN1SYvr/images/dc72551087a8eca54ee6bb2fecbf1b8621c9aa32d170e4d8938a3feb2ef08679.jpg b/parse/train/rkgqN1SYvr/images/dc72551087a8eca54ee6bb2fecbf1b8621c9aa32d170e4d8938a3feb2ef08679.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c3aa757244ef3475219f84f13cbc238f13e4047 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/dc72551087a8eca54ee6bb2fecbf1b8621c9aa32d170e4d8938a3feb2ef08679.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef3ada73f0b333ec057a0731e7411f721b006bfff8de3b4f798e878308366fc9 +size 4643 diff --git a/parse/train/rkgqN1SYvr/images/e2d3b7f429b91f98584017abdc90b3ccf7c5e6a62b6048844daca59d370d1bb4.jpg b/parse/train/rkgqN1SYvr/images/e2d3b7f429b91f98584017abdc90b3ccf7c5e6a62b6048844daca59d370d1bb4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..953cb596307f814c68b7e81e808c176bbef8131f --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/e2d3b7f429b91f98584017abdc90b3ccf7c5e6a62b6048844daca59d370d1bb4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368af6c3e848734c43ddf1ab6089cbab38a19456ab7a9e79bfd0c1e0f32c7942 +size 28379 diff --git a/parse/train/rkgqN1SYvr/images/e879e238c2c3d008f6b0300f1f7f42cfaa3e3245bae032641b458e43227b919f.jpg b/parse/train/rkgqN1SYvr/images/e879e238c2c3d008f6b0300f1f7f42cfaa3e3245bae032641b458e43227b919f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..328ddbc2ba0affba33bfb6f1296526ea0bf8842c --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/e879e238c2c3d008f6b0300f1f7f42cfaa3e3245bae032641b458e43227b919f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86eaba39d24aa10f2c93262645e00773e40d9c3e1781e8223968215cfa8db68f +size 18989 diff --git a/parse/train/rkgqN1SYvr/images/ed0965f0ef5c679b8676ef87cb910f4922c74e94b2f3005859c0f6f7424d75c9.jpg b/parse/train/rkgqN1SYvr/images/ed0965f0ef5c679b8676ef87cb910f4922c74e94b2f3005859c0f6f7424d75c9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e1935b8b151a409be23b2a5cfe1f9d45b9cd33d --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/ed0965f0ef5c679b8676ef87cb910f4922c74e94b2f3005859c0f6f7424d75c9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d66cc28d7a4c6c924bd241eb14c3af4593cb39a455f6ac1b951f1508af26336 +size 18495 diff --git a/parse/train/rkgqN1SYvr/images/ef990298858e16c395e98cfa8c60ec95496ff5258dec6742fe41241d2951f375.jpg b/parse/train/rkgqN1SYvr/images/ef990298858e16c395e98cfa8c60ec95496ff5258dec6742fe41241d2951f375.jpg new file mode 100644 index 0000000000000000000000000000000000000000..62d81915b6dff463d298ce95dcf0b6078eb2630f --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/ef990298858e16c395e98cfa8c60ec95496ff5258dec6742fe41241d2951f375.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c2b84b9ff197ac62a104eab186513163264eb63abbb2f7d5ffdc9df84a2497 +size 38484 diff --git a/parse/train/rkgqN1SYvr/images/f70fd89949029a2cdba45a523f6181324db1c8b4452421085bff9ddb14f3305f.jpg b/parse/train/rkgqN1SYvr/images/f70fd89949029a2cdba45a523f6181324db1c8b4452421085bff9ddb14f3305f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1699d6fc8450b57dd4d26a32cc495af83dc6f8b7 --- /dev/null +++ b/parse/train/rkgqN1SYvr/images/f70fd89949029a2cdba45a523f6181324db1c8b4452421085bff9ddb14f3305f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9586d716fbe9ae9cba6890a507f4dd0da98a1ad4e82aa1007f6a6be9b8efa0e +size 10903 diff --git a/parse/train/rkgz2aEKDr/images/2b06ae5fbfd40f478bad176ad4b8bc6635da54c9f4a2f28b5e5c18ea02d67a58.jpg b/parse/train/rkgz2aEKDr/images/2b06ae5fbfd40f478bad176ad4b8bc6635da54c9f4a2f28b5e5c18ea02d67a58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ccfa96134ffd5c3cd87d14248530018d75ce55be --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/2b06ae5fbfd40f478bad176ad4b8bc6635da54c9f4a2f28b5e5c18ea02d67a58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0560b6f4c73803ed5374f51dfd99ea2852854286b082b16d57af2e8863810ddf +size 16221 diff --git a/parse/train/rkgz2aEKDr/images/2bcbe7d69530063b78d06b38316d33f1623fb2c1ec18a55d5780992c1a9a7bd1.jpg b/parse/train/rkgz2aEKDr/images/2bcbe7d69530063b78d06b38316d33f1623fb2c1ec18a55d5780992c1a9a7bd1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff38efc225b863d81f975ef4d997cece220d5064 --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/2bcbe7d69530063b78d06b38316d33f1623fb2c1ec18a55d5780992c1a9a7bd1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f76a98e0f7676e943194ec57166fd41dd7bb193cde167c93fc385ae8f5671f55 +size 13513 diff --git a/parse/train/rkgz2aEKDr/images/2c37e4a5e73292a2c4f76f3284121bfbb32e39ddd248373e6bf36a3c173b8e7f.jpg b/parse/train/rkgz2aEKDr/images/2c37e4a5e73292a2c4f76f3284121bfbb32e39ddd248373e6bf36a3c173b8e7f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0798411b133df99613035bb9839287e71f4503ca --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/2c37e4a5e73292a2c4f76f3284121bfbb32e39ddd248373e6bf36a3c173b8e7f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:900aea147289bc2edd48089449859a0ccf7fa105146bbb1dae4feb61a34c58a7 +size 28542 diff --git a/parse/train/rkgz2aEKDr/images/373a41f5932e3ffef8ce1ac227a41b1b954c78ade3aa31f36219c7646156a52d.jpg b/parse/train/rkgz2aEKDr/images/373a41f5932e3ffef8ce1ac227a41b1b954c78ade3aa31f36219c7646156a52d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b0cb4ad0d22d8f7af6c4b417da41df518163ad3 --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/373a41f5932e3ffef8ce1ac227a41b1b954c78ade3aa31f36219c7646156a52d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1e44a79819473a131f0365034ae4addd99bb25a1f949a67ee92f07e5d615571 +size 8501 diff --git a/parse/train/rkgz2aEKDr/images/4731c0000ffbb79e62b7117d5e904f2d8871c0e1860b8538b72d763ea671e1c1.jpg b/parse/train/rkgz2aEKDr/images/4731c0000ffbb79e62b7117d5e904f2d8871c0e1860b8538b72d763ea671e1c1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78e5bd8c1ee81b75ca34870a3f3b072b63f521cf --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/4731c0000ffbb79e62b7117d5e904f2d8871c0e1860b8538b72d763ea671e1c1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8756d6775d1daad824c992992f9b7fd76004a5a6fdbeb7608e4df8a72c6cb6b1 +size 11702 diff --git a/parse/train/rkgz2aEKDr/images/6345f7afa7e7a63d9229d9a8dfe723d4ffb9cfb0f3992b2f052dd4d31c0db1fa.jpg b/parse/train/rkgz2aEKDr/images/6345f7afa7e7a63d9229d9a8dfe723d4ffb9cfb0f3992b2f052dd4d31c0db1fa.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75505189a523cbc02fb567e88706d89a5a1565d2 --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/6345f7afa7e7a63d9229d9a8dfe723d4ffb9cfb0f3992b2f052dd4d31c0db1fa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faf04f6d237e7fbea1205d9ebb9b2bb871eb1a10ab0219b8598eaa595f3dadc0 +size 80698 diff --git a/parse/train/rkgz2aEKDr/images/793d8562d11ed3ea916b4ad47f5781c1153cbebc559f3a479f34f31434576002.jpg b/parse/train/rkgz2aEKDr/images/793d8562d11ed3ea916b4ad47f5781c1153cbebc559f3a479f34f31434576002.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95ff4475e3092e2d51823f97877a556e42ed230b --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/793d8562d11ed3ea916b4ad47f5781c1153cbebc559f3a479f34f31434576002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bea06a066240baa98678e6f220b2121b7f94aa14c73c9c4931d45d0e01c39183 +size 10231 diff --git a/parse/train/rkgz2aEKDr/images/8719717e482e66abfab474babc6767344179cb7f72e9817c59b381c68cbf46f8.jpg b/parse/train/rkgz2aEKDr/images/8719717e482e66abfab474babc6767344179cb7f72e9817c59b381c68cbf46f8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..13027a80b011ce3233edfbfe6d3f9e8ae2879733 --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/8719717e482e66abfab474babc6767344179cb7f72e9817c59b381c68cbf46f8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:410aaad306c66ee64d40439a516ff0f0f075af21f6f4b6c7f50ff36afd5edf75 +size 6815 diff --git a/parse/train/rkgz2aEKDr/images/9250d1cc74971050e057c907265dd057a56c53c19498aa7f986c61efd12b2617.jpg b/parse/train/rkgz2aEKDr/images/9250d1cc74971050e057c907265dd057a56c53c19498aa7f986c61efd12b2617.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90dca8bf1d51fc8c16c4542bcbc196a044cd4d2c --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/9250d1cc74971050e057c907265dd057a56c53c19498aa7f986c61efd12b2617.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b65e076a96c541f69e43767d791bc20f5ec720dd4b6c8fc4b0053028acb10b06 +size 8257 diff --git a/parse/train/rkgz2aEKDr/images/9c064b4557cec0de11192a2e3afddf9644489286614bd06d38e5f5cee88ba410.jpg b/parse/train/rkgz2aEKDr/images/9c064b4557cec0de11192a2e3afddf9644489286614bd06d38e5f5cee88ba410.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0da009f66ac2979b94b990694f4a50c44e635518 --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/9c064b4557cec0de11192a2e3afddf9644489286614bd06d38e5f5cee88ba410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0540a0f8b3d437aa3ad703270be176a6da8e27bb4d9e250c303a14c482e21f8e +size 16545 diff --git a/parse/train/rkgz2aEKDr/images/9e07baec4bf47bd9075fa89a9a4a4cab421e0a129a16eb042e7e1b7d64da16fe.jpg b/parse/train/rkgz2aEKDr/images/9e07baec4bf47bd9075fa89a9a4a4cab421e0a129a16eb042e7e1b7d64da16fe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d60ae8499959bfb2895b053c8a620e7d584f82b --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/9e07baec4bf47bd9075fa89a9a4a4cab421e0a129a16eb042e7e1b7d64da16fe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe3b8372908f998c16c938dd47acb1686bd965000659d6175644964ff21bec99 +size 21459 diff --git a/parse/train/rkgz2aEKDr/images/a2a70ac3e31572d07fa579594e5e8c99c30ff3fd34366528b34a910690d7a0da.jpg b/parse/train/rkgz2aEKDr/images/a2a70ac3e31572d07fa579594e5e8c99c30ff3fd34366528b34a910690d7a0da.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6736dffdb89aaab2ac38b0609c80a05991950804 --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/a2a70ac3e31572d07fa579594e5e8c99c30ff3fd34366528b34a910690d7a0da.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75ede328a2a9b007c7d8e6c62a7ef045e4daa1c7862fcdd4c1e97c90fdb54633 +size 13058 diff --git a/parse/train/rkgz2aEKDr/images/a68306e481a2e257390d61e1e82b658f0b513631373ef01210937ac2b15d1d5c.jpg b/parse/train/rkgz2aEKDr/images/a68306e481a2e257390d61e1e82b658f0b513631373ef01210937ac2b15d1d5c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..771cfbf10a75ee0659ae4f826ac05aed3db2c6c8 --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/a68306e481a2e257390d61e1e82b658f0b513631373ef01210937ac2b15d1d5c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22b5a379439032489ef9a10acdae686d18f32a66820f3fa78502a49d9954ca9e +size 10438 diff --git a/parse/train/rkgz2aEKDr/images/a8fe3dfdbb40c1eb36ceeadac1a0d9d2b8896d7e820a4e3e7cf0047e895f9ed8.jpg b/parse/train/rkgz2aEKDr/images/a8fe3dfdbb40c1eb36ceeadac1a0d9d2b8896d7e820a4e3e7cf0047e895f9ed8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..496200e8f064818a6cbc4d9d702ac33ff5e44b3f --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/a8fe3dfdbb40c1eb36ceeadac1a0d9d2b8896d7e820a4e3e7cf0047e895f9ed8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80e5cdd3278c5fcc5484dccf9d7d9f9461eadefc71795e9af1c4028113317f0 +size 21196 diff --git a/parse/train/rkgz2aEKDr/images/ad11f900d73d2167f23839df7c4d72b8c5485331e01abbf9ed891a61f460d72f.jpg b/parse/train/rkgz2aEKDr/images/ad11f900d73d2167f23839df7c4d72b8c5485331e01abbf9ed891a61f460d72f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f23e19370c2d37addade82cf9abf3e68c3a71d0f --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/ad11f900d73d2167f23839df7c4d72b8c5485331e01abbf9ed891a61f460d72f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6a27ef00c90057593e3caf8466369216d89bde0be94dcf3e95a3ee4b3d20ca0 +size 43785 diff --git a/parse/train/rkgz2aEKDr/images/b8c26508ad736bb85b105e7794abce9ade7ded1d3b0ac44aa62399f7497eb5eb.jpg b/parse/train/rkgz2aEKDr/images/b8c26508ad736bb85b105e7794abce9ade7ded1d3b0ac44aa62399f7497eb5eb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dcf0bbdc284558afb7db529abe3da5810829879c --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/b8c26508ad736bb85b105e7794abce9ade7ded1d3b0ac44aa62399f7497eb5eb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42fef7c5f88d90afd77c7dee59a0380e415572b67542a2b3aae84f6e67dba4d7 +size 50099 diff --git a/parse/train/rkgz2aEKDr/images/bb74ac762ae180f94b6c6c55e5c1b8414301b44371f1f8fbfd2e1825dfee7518.jpg b/parse/train/rkgz2aEKDr/images/bb74ac762ae180f94b6c6c55e5c1b8414301b44371f1f8fbfd2e1825dfee7518.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86a45e2203f546c81a426540ac0d26c53f23cc2e --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/bb74ac762ae180f94b6c6c55e5c1b8414301b44371f1f8fbfd2e1825dfee7518.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:481cee9e12698ad26092c1075bad3e9608ec76fb38e3aea698e13eecfef46210 +size 92653 diff --git a/parse/train/rkgz2aEKDr/images/bfa5cdf77c87e44a8a93bc2010ec5df6421df1855b31d0f5551a951ec91161c1.jpg b/parse/train/rkgz2aEKDr/images/bfa5cdf77c87e44a8a93bc2010ec5df6421df1855b31d0f5551a951ec91161c1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c7c7edc57c079739f956455fd2a8e254c68b09c --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/bfa5cdf77c87e44a8a93bc2010ec5df6421df1855b31d0f5551a951ec91161c1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b22eba93e909ced22d1825b7be2eee8f186c88c903108b7a1616c4477eca8788 +size 8326 diff --git a/parse/train/rkgz2aEKDr/images/c8779d131e033f69524303bfd6e6b6c707693f95b1efbdf7a0772e68fcc51b91.jpg b/parse/train/rkgz2aEKDr/images/c8779d131e033f69524303bfd6e6b6c707693f95b1efbdf7a0772e68fcc51b91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02d0196e7e547adbfbd3ac1acbb468923c9bd339 --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/c8779d131e033f69524303bfd6e6b6c707693f95b1efbdf7a0772e68fcc51b91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:793ce722b1bf7241142592186e94f4e7e551ca85d8b44bca4e79f8d13c997970 +size 36418 diff --git a/parse/train/rkgz2aEKDr/images/d56e8f3aad70b54c98bf6133479504e8efa59f49a3d2ddac5840de4e4efcfe5b.jpg b/parse/train/rkgz2aEKDr/images/d56e8f3aad70b54c98bf6133479504e8efa59f49a3d2ddac5840de4e4efcfe5b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b62a1ab28a37d2fdfd08c0dd2305af47735745d1 --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/d56e8f3aad70b54c98bf6133479504e8efa59f49a3d2ddac5840de4e4efcfe5b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f6e46831e10a16dde1a4e5477be5d0bb64fd2ce1e4d354daf07234953e1fb8 +size 4173 diff --git a/parse/train/rkgz2aEKDr/images/f18994052fffccd4c8bab55617eb816a201046261b1cb00d5677631ff50f31c9.jpg b/parse/train/rkgz2aEKDr/images/f18994052fffccd4c8bab55617eb816a201046261b1cb00d5677631ff50f31c9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a216a7d83337dec3bd0c87797054c174ecff7481 --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/f18994052fffccd4c8bab55617eb816a201046261b1cb00d5677631ff50f31c9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f9e470b552dd3fd29eb974adfbaa5c2645331d6b6f33351e700da6e98b1d77 +size 8046 diff --git a/parse/train/rkgz2aEKDr/images/f6a97576169a32c6305a6ee627ea0b484b90eb44fab15f8c21938439fed9c40e.jpg b/parse/train/rkgz2aEKDr/images/f6a97576169a32c6305a6ee627ea0b484b90eb44fab15f8c21938439fed9c40e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c3be5e8b0a411dbaeb0f2b89a49930f364f1db4 --- /dev/null +++ b/parse/train/rkgz2aEKDr/images/f6a97576169a32c6305a6ee627ea0b484b90eb44fab15f8c21938439fed9c40e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf94e1352b280837b901047601fa2dcdbc1fe46e8ddd3357d10505b4ab158495 +size 9136 diff --git a/parse/train/roNqYL0_XP/images/0c3b214acb3bf2abbf61b8e5e54f781071d6d03d708ee0e7afdc1744019b9c01.jpg b/parse/train/roNqYL0_XP/images/0c3b214acb3bf2abbf61b8e5e54f781071d6d03d708ee0e7afdc1744019b9c01.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f2f9616d7c8c4738033ed1ded21d6d646577cb7 --- /dev/null +++ b/parse/train/roNqYL0_XP/images/0c3b214acb3bf2abbf61b8e5e54f781071d6d03d708ee0e7afdc1744019b9c01.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b71817b4ba161f7542229fca89854a831027042042b173afd0de0281f140e9f3 +size 42649 diff --git a/parse/train/roNqYL0_XP/images/0dc5faa4707aae3372fdba06a8695974c6d6ec7896eb25e9e82f77f04745cfa1.jpg b/parse/train/roNqYL0_XP/images/0dc5faa4707aae3372fdba06a8695974c6d6ec7896eb25e9e82f77f04745cfa1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2d6b6df836e1cc05219e9f3a1f7bfff79133af2 --- /dev/null +++ b/parse/train/roNqYL0_XP/images/0dc5faa4707aae3372fdba06a8695974c6d6ec7896eb25e9e82f77f04745cfa1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4708584986820a6d9b01a96d940136a36a6cc9d2b13bc2d12d77bb4c6a7caf20 +size 9693 diff --git a/parse/train/roNqYL0_XP/images/0e26b78821d0184723a85f6d7f98b0c8889ff213404daacfc5de9398dd63d90f.jpg b/parse/train/roNqYL0_XP/images/0e26b78821d0184723a85f6d7f98b0c8889ff213404daacfc5de9398dd63d90f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0db6dbaa59b9cfb88b5bb45d3664ccdd7b00849 --- /dev/null +++ b/parse/train/roNqYL0_XP/images/0e26b78821d0184723a85f6d7f98b0c8889ff213404daacfc5de9398dd63d90f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1e0cb99a2285adb37005a011c2b8023c666ec628684d5da30a533f969918d9 +size 11007 diff --git a/parse/train/roNqYL0_XP/images/165bcda690eacc57dc849a018227f739c111e93dd88d46cb1fc9986672513003.jpg b/parse/train/roNqYL0_XP/images/165bcda690eacc57dc849a018227f739c111e93dd88d46cb1fc9986672513003.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e67c4b69e5312b2bf93b153efe2df33974722dd2 --- /dev/null +++ b/parse/train/roNqYL0_XP/images/165bcda690eacc57dc849a018227f739c111e93dd88d46cb1fc9986672513003.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab19ee090c6e4c0742273eab0f74f864002335c11182ce22d251c793cab9963e +size 21349 diff --git a/parse/train/roNqYL0_XP/images/17a069fe13c279d0e08381548bce8ad1205a7093897fbfb79c690d0a5bad8d8a.jpg b/parse/train/roNqYL0_XP/images/17a069fe13c279d0e08381548bce8ad1205a7093897fbfb79c690d0a5bad8d8a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5546bfecafd080efcaafcbf92d7b93f2c523e86 --- /dev/null +++ b/parse/train/roNqYL0_XP/images/17a069fe13c279d0e08381548bce8ad1205a7093897fbfb79c690d0a5bad8d8a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4397996a26aa756e8763866a1a03713e683af1ac9a48e3597423a0d8e93cee96 +size 61518 diff --git a/parse/train/roNqYL0_XP/images/3cfa508389e34a69e7b94bcafd1e2e9520a80df9fea5f3ce302ebcb709fa8fc7.jpg b/parse/train/roNqYL0_XP/images/3cfa508389e34a69e7b94bcafd1e2e9520a80df9fea5f3ce302ebcb709fa8fc7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1b80bce21493420ae7936f8b3ae44893e9b847a --- /dev/null +++ b/parse/train/roNqYL0_XP/images/3cfa508389e34a69e7b94bcafd1e2e9520a80df9fea5f3ce302ebcb709fa8fc7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b11582f5e0a844754a0b4561234e448c809753e6c241fe49e468ded7d1587faf +size 63895 diff --git a/parse/train/roNqYL0_XP/images/56e2e90affdedb4c72754b4015b1e2d06f178cc64d1ff10fb604c0f67430b4eb.jpg b/parse/train/roNqYL0_XP/images/56e2e90affdedb4c72754b4015b1e2d06f178cc64d1ff10fb604c0f67430b4eb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e262e3f65056c8bab15f8e9906a80e0487da992d --- /dev/null +++ b/parse/train/roNqYL0_XP/images/56e2e90affdedb4c72754b4015b1e2d06f178cc64d1ff10fb604c0f67430b4eb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:426ae6507488cc9c38801e21c581223afff80563be0ec4f0763ddc753cd9f2b4 +size 58918 diff --git a/parse/train/roNqYL0_XP/images/6eef425440b05c75914e47e3bf240524aef38c5401d8f3b005f24577a22777f3.jpg b/parse/train/roNqYL0_XP/images/6eef425440b05c75914e47e3bf240524aef38c5401d8f3b005f24577a22777f3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d702dd9084412dc31e91132b0878355283985807 --- /dev/null +++ b/parse/train/roNqYL0_XP/images/6eef425440b05c75914e47e3bf240524aef38c5401d8f3b005f24577a22777f3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:638f69841fc22df70c4a931444574f14d1cd8042cc8692ef158450bccd846717 +size 51544 diff --git a/parse/train/roNqYL0_XP/images/7481159f50fa36d34484f4276a339780c74c3f7fb1c696a8e48d70245dbec013.jpg b/parse/train/roNqYL0_XP/images/7481159f50fa36d34484f4276a339780c74c3f7fb1c696a8e48d70245dbec013.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58cdcd17dc151d9db6f6b10e305226fb01bb6e0c --- /dev/null +++ b/parse/train/roNqYL0_XP/images/7481159f50fa36d34484f4276a339780c74c3f7fb1c696a8e48d70245dbec013.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d94c22dfaf66dcaf1dc32e0d7c8970687d24222e1c9ebf10a0026f8a9c237b8 +size 67455 diff --git a/parse/train/roNqYL0_XP/images/9652e89452ab4bddaa7a1ad15ee2212c62c9e21528aac5cc1f68fef6939fdf06.jpg b/parse/train/roNqYL0_XP/images/9652e89452ab4bddaa7a1ad15ee2212c62c9e21528aac5cc1f68fef6939fdf06.jpg new file mode 100644 index 0000000000000000000000000000000000000000..73d3491756632bfef834246e1431e1385035caa0 --- /dev/null +++ b/parse/train/roNqYL0_XP/images/9652e89452ab4bddaa7a1ad15ee2212c62c9e21528aac5cc1f68fef6939fdf06.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deb9b5d70c3d5adf9c2ca1e5d74d06392f9a8d2fdd43fd7810d78511deaaadb3 +size 47002 diff --git a/parse/train/roNqYL0_XP/images/97144ad8761bc40c1b3b666df69674875983262003fca4b90ce6a483c2c1418e.jpg b/parse/train/roNqYL0_XP/images/97144ad8761bc40c1b3b666df69674875983262003fca4b90ce6a483c2c1418e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52e12614167e548ece46f49ad4cd181e8dc03836 --- /dev/null +++ b/parse/train/roNqYL0_XP/images/97144ad8761bc40c1b3b666df69674875983262003fca4b90ce6a483c2c1418e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74046790cea9921bf617d64555aac870d338214b53d904e4c15e492dbc75722b +size 50756 diff --git a/parse/train/roNqYL0_XP/images/9bf83b12b8da5451859bf6bddc7ff6a957771840f9ae98c5ca7bf37ad778f210.jpg b/parse/train/roNqYL0_XP/images/9bf83b12b8da5451859bf6bddc7ff6a957771840f9ae98c5ca7bf37ad778f210.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e60ddf2d0f5f8b43bfc89a47c124d0b6202c0048 --- /dev/null +++ b/parse/train/roNqYL0_XP/images/9bf83b12b8da5451859bf6bddc7ff6a957771840f9ae98c5ca7bf37ad778f210.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99b0ac515c04e778f34d3263d88dea5e7eec80cf49e25d611cd7d7cc68b02157 +size 81705 diff --git a/parse/train/roNqYL0_XP/images/a8d2cd718ae0b32e7e5b63772038d2629112de5c78281c3c5a8a45350b333e73.jpg b/parse/train/roNqYL0_XP/images/a8d2cd718ae0b32e7e5b63772038d2629112de5c78281c3c5a8a45350b333e73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ec499b6479235309b1a7cbcd30b276e60178f6d --- /dev/null +++ b/parse/train/roNqYL0_XP/images/a8d2cd718ae0b32e7e5b63772038d2629112de5c78281c3c5a8a45350b333e73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b8728f791e4f39635300d271755c1cfe792dd3d344f13dce7c5a3338a9c0050 +size 66063 diff --git a/parse/train/roNqYL0_XP/images/b18abd206c638bf0da4080d97fc3337d50a2cc05882c9fa863ba07c54d90beed.jpg b/parse/train/roNqYL0_XP/images/b18abd206c638bf0da4080d97fc3337d50a2cc05882c9fa863ba07c54d90beed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50f1df5c8f8bf48aca9d9f8c89044e43c3cef13c --- /dev/null +++ b/parse/train/roNqYL0_XP/images/b18abd206c638bf0da4080d97fc3337d50a2cc05882c9fa863ba07c54d90beed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85195de4d6a83cf00837a91923f783c85b29997d26ff095c1a25a1302973c774 +size 29975 diff --git a/parse/train/roNqYL0_XP/images/d26c0b97433aaaae4e1b8f13f9b9b8b5630fba2ba95870c69539a0c691223f71.jpg b/parse/train/roNqYL0_XP/images/d26c0b97433aaaae4e1b8f13f9b9b8b5630fba2ba95870c69539a0c691223f71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7bb9f3755eb294f19ef8d1c234e9f2fc3d1f5ac --- /dev/null +++ b/parse/train/roNqYL0_XP/images/d26c0b97433aaaae4e1b8f13f9b9b8b5630fba2ba95870c69539a0c691223f71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26babd612594bd38823130d0dcdc49f50a6c3e5a0ba390c3894cbb0ddefff827 +size 7587 diff --git a/parse/train/roNqYL0_XP/images/ef4242523ae956aa0257d256ff9ac46d32970a31bcedce54f42104ce3638952a.jpg b/parse/train/roNqYL0_XP/images/ef4242523ae956aa0257d256ff9ac46d32970a31bcedce54f42104ce3638952a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74cce438086fb627b317b16d756622b696b77630 --- /dev/null +++ b/parse/train/roNqYL0_XP/images/ef4242523ae956aa0257d256ff9ac46d32970a31bcedce54f42104ce3638952a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b95bc26948be63bd244794180676a3aa6355c5baa11776f890a5604eb0dcaa7f +size 69028 diff --git a/parse/train/roNqYL0_XP/images/f54612aeb54df266375f723cfdfb521250b73831b909def7f2df4b9422453bd0.jpg b/parse/train/roNqYL0_XP/images/f54612aeb54df266375f723cfdfb521250b73831b909def7f2df4b9422453bd0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6dadf91e5efc86543a252d6c2e53e2de9f162d1 --- /dev/null +++ b/parse/train/roNqYL0_XP/images/f54612aeb54df266375f723cfdfb521250b73831b909def7f2df4b9422453bd0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ceb631997fa5d3c34039256f340692ddb18ed5d77764c26254adbae70b64d71 +size 78924 diff --git a/parse/train/ryfMLoCqtQ/ryfMLoCqtQ.md b/parse/train/ryfMLoCqtQ/ryfMLoCqtQ.md new file mode 100644 index 0000000000000000000000000000000000000000..d045899c557197d0640e243ad4347abf8b6860cf --- /dev/null +++ b/parse/train/ryfMLoCqtQ/ryfMLoCqtQ.md @@ -0,0 +1,476 @@ +# AN ANALYTIC THEORY OF GENERALIZATION DYNAMICS AND TRANSFER LEARNING IN DEEP LINEAR NETWORKS + +Andrew K. Lampinen Department of Psychology Stanford University lampinen@stanford.edu + +Surya Ganguli +Department of Applied Physics +Stanford University +and +Google Brain +sganguli@stanford.edu + +# ABSTRACT + +Much attention has been devoted recently to the generalization puzzle in deep learning: large, deep networks can generalize well, but existing theories bounding generalization error are exceedingly loose, and thus cannot explain this striking performance. Furthermore, a major hope is that knowledge may transfer across tasks, so that multi-task learning can improve generalization on individual tasks. However we lack analytic theories that can quantitatively predict how the degree of knowledge transfer depends on the relationship between the tasks. We develop an analytic theory of the nonlinear dynamics of generalization in deep linear networks, both within and across tasks. In particular, our theory provides analytic solutions to the training and testing error of deep networks as a function of training time, number of examples, network size and initialization, and the task structure and SNR. Our theory reveals that deep networks progressively learn the most important task structure first, so that generalization error at the early stopping time primarily depends on task structure and is independent of network size. This suggests any tight bound on generalization error must take into account task structure, and explains observations about real data being learned faster than random data. Intriguingly our theory also reveals the existence of a learning algorithm that proveably out-performs neural network training through gradient descent. Finally, for transfer learning, our theory reveals that knowledge transfer depends sensitively, but computably, on the SNRs and input feature alignments of pairs of tasks. + +# 1 INTRODUCTION + +Many deep learning practitioners closely monitor both training and test errors, hoping to achieve both a small training error and a small generalization error, or gap between testing and training errors. Training is usually stopped early, before overfitting sets in and increases the test error. This procedure often results in large networks that generalize well on structured tasks, raising an important generalization puzzle (Zhang et al., 2016): many existing theories that upper bound generalization error (Bartlett & Mendelson, 2002; Neyshabur et al., 2015; Dziugaite & Roy, 2017; Golowich et al., 2017; Neyshabur et al., 2017; Bartlett et al., 2017; Arora et al., 2018, e.g) in terms of various measures of network complexity yield very loose bounds. Therefore they cannot explain the impressive generalization capabilities of deep nets. + +In the absence of any such tight and computable theory of deep network generalization error, we develop an analytic theory of generalization error for deep linear networks. Such networks exhibit highly nonlinear learning dynamics (Saxe et al., 2013a;b) including many prominent phenomena like learning plateaus, saddle points, and sudden drops in training error. Moreover, theory developed for the learning dynamics of deep linear networks directly inspired better initialization schemes for nonlinear networks (Schoenholz et al., 2016; Pennington et al., 2017; 2018). Here we show that deep linear networks also provide a good theoretical model for generalization dynamics. In particular we develop an analytic theory for both the training and test error of a deep linear network as a function of training time, number of training examples, network architecture, initialization, and task structure and SNR. Our theory matches simulations and reveals that deep networks with small weight initialization learn the most important aspects of a task first. Thus the optimal test error at the early stopping time depends largely on task structure and SNR, and not on network architecture, as long as the architecture is expressive enough to attain small training error. Thus our exact analysis of generalization dynamics reveals the important lesson that any theory that seeks to upper bound generalization error based only on network architecture, and not on task structure, is likely to yield exceedingly loose upper bounds. Intriguingly our theory also reveals a non-gradient-descent learning algorithm that proveably out-performs neural network training through gradient descent. + +We also apply our theory to multi-task learning, which enables knowledge transfer from one task to another, thereby further lowering generalization error (Dong et al., 2015; Rusu et al., 2015; Luong et al., 2016, e.g.). Moreover, knowledge transfer across tasks may be key to human generalization capabilities (Hansen et al., 2017; Lampinen et al., 2017). We provide an analytic theory for how much knowledge is transferred between pairs of tasks, and we find that it displays a sensitive but computable dependence on the relationship between pairs of tasks, in particular, their SNRs and feature space alignments. + +We note that a related prior work (Advani & Saxe, 2017) studied generalization in shallow and deep linear networks, but that work was limited to networks with a single output, thereby precluding the possibility of addressing the issue of transfer learning. Moreover, analyzing networks with a single output also precludes the possibility of addressing interesting tasks that require higher dimensional outputs, for example in language (Dong et al., 2015, e.g.), generative models (Goodfellow et al., 2014, e.g), and reinforcement learning (Mnih et al., 2015; Silver et al., 2016, e.g). + +# 2 THEORETICAL FRAMEWORK + +We work in a student-teacher scenario in which we consider an ensemble of low rank, noisy teacher networks that generate training data for a potentially more complex student network, and define the training and test errors whose dynamics we wish to understand. + +# 2.1 AN ENSEMBLE OF LOW-RANK NOISY TEACHERS + +We first consider an ensemble of 3-layer linear teacher networks with $\overline { { N } } _ { i }$ units in layer $i$ , and weight matrices $\overline { { \mathbf { W } } } ^ { 2 1 } \in \mathbb { R } ^ { \overline { { N _ { 2 } } } \times \overline { { N } } _ { 1 } }$ and $\overline { { \mathbf { W } } } ^ { 3 2 } \in \mathbb { R } ^ { \overline { { N _ { 3 } } } \times \overline { { N _ { 2 } } } }$ between the input to hidden, and hidden to output layers, respectively. The teacher network thus computes the composite map $\overline { { \mathbf { y } } } = \overline { { \mathbf { W } } } \mathbf { x }$ , where $\dot { \overline { { \mathbf { W } } } } \equiv \overline { { \mathbf { W } } } ^ { 3 \bar { 2 } } \overline { { \mathbf { W } } } ^ { 2 1 }$ . Of critical importance is the singular value decomposition (SVD) of $\overline { { \mathbf { W } } }$ : + +$$ +\overline { { \mathbf { W } } } = \overline { { \mathbf { U } } } \overline { { \mathbf { S } } } \overline { { \mathbf { V } } } ^ { T } = \sum _ { \alpha = 1 } ^ { \overline { { N _ { 2 } } } } \overline { { s } } ^ { \alpha } \overline { { \mathbf { u } } } ^ { \alpha } \overline { { \mathbf { v } } } ^ { \alpha T } , +$$ + +Where $\overline { { \mathbf { U } } } \in \mathbb { R } ^ { \overline { { N _ { 3 } } } \times \overline { { N } } _ { 2 } }$ and $\overline { { \mathbf { V } } } \in \mathbb { R } ^ { \overline { { N _ { 1 } } } \times \overline { { N } } _ { 2 } }$ are both matrices with orthonormal columns and $\overline { \mathbf { S } }$ is an $\overline { { N _ { 2 } } } \times \overline { { N _ { 2 } } }$ diagonal matrix. We construct a random teacher by picking $\overline { { \mathbf { U } } }$ and $\overline { { \mathbf { V } } }$ to be random matrices with orthonormal columns and choosing $O ( 1 )$ values for the diagonal elements of $\overline { { \mathbf { S } } }$ . We work in the limit $\overline { { N _ { 1 } } } , \overline { { N _ { 3 } } } \infty$ with an $O ( 1 )$ aspect ratio $\mathcal { A } = \overline { { N _ { 3 } } } / \overline { { N _ { 1 } } } \in ( 0 , 1 ]$ so that the teacher has fewer outputs than inputs. Also, we hold $\overline { { N } } _ { 2 } \sim O ( 1 )$ , so the teacher has a low, finite rank, and we study generalization performance as a function of the $\overline { { N } } _ { 2 }$ teacher singular values. + +We further assume the teacher generates noisy outputs from a set of $\overline { { N } } _ { 1 }$ orthonormal inputs: + +$$ +\hat { { \bf y } } ^ { \mu } = \overline { { { \bf W } } } \hat { \bf x } ^ { \mu } + { \bf z } ^ { \mu } \qquad \mathrm { f o r } \quad \mu = { \bf 1 } , \ldots , \overline { { { \bf N } } } _ { \bf 1 } . +$$ + +This training set yields important second-order training statistics that will guide student learning: + +$$ +\begin{array} { r } { \pmb { \Sigma } ^ { 1 1 } \equiv \overset { \overline { { \boldsymbol { N } } } _ { 1 } } { \mu = 1 } \hat { \mathbf { x } } ^ { \mu } \hat { \mathbf { x } } ^ { \mu T } = \mathbf { I } , \qquad \pmb { \Sigma } ^ { 3 1 } \equiv \overset { \overline { { \boldsymbol { N } } } _ { 1 } } { \mu = 1 } \hat { \mathbf { y } } ^ { \mu } \hat { \mathbf { x } } ^ { \mu T } = \overline { { \mathbf { W } } } + \mathbf { Z } \hat { \mathbf { X } } ^ { T } . } \end{array} +$$ + +Here the input covariance $\pmb { \Sigma } ^ { 1 1 }$ is assumed to be white (a common pre-processing step), the inputoutput covariance $\pmb { \Sigma } ^ { 3 1 }$ is simplified using (2), and $\mathbf { Z } \in \mathbb { R } ^ { \overline { { N } } _ { 3 } \times \overline { { N } } _ { 1 } }$ is the noise matrix, whose $\mu$ ’th column is $\mathbf { z } ^ { \mu }$ . Its matrix elements $z _ { i } ^ { \mu }$ are drawn iid. from a Gaussian with zero mean and variance $\sigma _ { z } ^ { 2 } / \overline { { N } } _ { 1 }$ . The noise scaling is chosen so the singular values of the teacher $\overline { { \mathbf { W } } }$ and the noise $\mathbf { Z }$ are both $O ( 1 )$ , leading to non-trivial generalization effects. As generalization performance will depend on the ratio of teacher singular values to the noise variance parameter $\sigma _ { z } ^ { 2 }$ , we simply set $\sigma _ { z } = 1$ in the following. Thus we can think of teacher singular values as signal to noise ratios (SNRs). + +Finally, we note that while we focus for ease of exposition in the main paper on the case of one hidden layer networks and a full orthonormal basis of $P = { \overline { { N _ { 1 } } } }$ training inputs in the main paper, neither of these assumptions are essential to our theory. Indeed in Section 3.4 and App. A we extend our theory to networks of arbitrary depth, and in App. G we extend our theory to the case of white inputs with $P \neq \overline { { N } } _ { 1 }$ , obtaining a good match between theory and experiment in both cases. + +# 2.2 STUDENT TRAINING AND TEST ERROR + +Now consider a student network with $N _ { i }$ units in each layer. We assume the first and last layers match the teacher (i.e. $N _ { 1 } = \overline { { N _ { 1 } } }$ and $N _ { 3 } = \overline { { N _ { 3 } } }$ ) but $N _ { 2 } \geq \overline { { N _ { 2 } } }$ , allowing the student to have more hidden units than the teacher. We also consider deeper students (see below and App. A). Now consider any student whose input-output map is given by $\mathbf { \dot { y } } = \mathbf { W } ^ { 3 2 } \mathbf { W } ^ { 2 1 } \equiv \mathbf { W } \mathbf { x }$ . Its training error on the teacher dataset in (2) and its test error over a distribution of new inputs are given by + +$$ +\varepsilon _ { \mathrm { t r a i n } } \equiv \frac { \sum _ { \mu = 1 } ^ { \overline { { N _ { 1 } } } } | | \mathbf { W } \hat { \mathbf { x } } ^ { \mu } - \hat { \mathbf { y } } ^ { \mu } | | _ { 2 } ^ { 2 } } { \sum _ { \mu = 1 } ^ { \overline { { N _ { 1 } } } } | | \hat { \mathbf { y } } ^ { \mu } | | _ { 2 } ^ { 2 } } , \varepsilon _ { \mathrm { t e s t } } \equiv \frac { \langle | | \mathbf { W } \overline { { \mathbf { x } } } - \overline { { \mathbf { y } } } | | _ { 2 } ^ { 2 } \rangle } { \langle | | \overline { { \mathbf { y } } } | | _ { 2 } ^ { 2 } \rangle } , +$$ + +respectively. Here $\hat { \mathbf { x } } ^ { \mu }$ and ${ \hat { \mathbf { y } } } ^ { \mu }$ are the noisy training set inputs and outputs in (2), whereas $\overline { { \mathbf { x } } }$ denotes a random test input drawn from zero mean Gaussian with identity covariance, $\overline { { \mathbf { y } } } ^ { \mu } = \overline { { \mathbf { W } } } \overline { { \mathbf { x } } } ^ { \mu }$ is noise free teacher output, and $\langle \cdot \rangle$ denotes an average w.r.t the distribution of the test input $\overline { { \mathbf { x } } }$ . Due to the orthonormality of the training and isotropy of the test inputs, both $\varepsilon _ { \mathrm { t r a i n } }$ and ${ \varepsilon } _ { \mathrm { t e s t } }$ can be expressed as + +$$ +\mathrm { ~ \xi ~ } _ { \mathrm { t r a i n } } = \frac { \mathrm { T } \mathbf { F } \mathbf { W } ^ { T } \mathbf { W } - 2 \mathrm { T r } \mathbf { W } ^ { T } { \boldsymbol { \Sigma } } ^ { 3 1 } + \mathrm { T r } { \boldsymbol { \Sigma } } ^ { 3 1 T } { \boldsymbol { \Sigma } } ^ { 3 1 } } { \mathrm { T r } \boldsymbol { \Sigma } ^ { 3 1 T } \boldsymbol { \Sigma } ^ { 3 1 } } , \mathrm { ~ \xi ~ } _ { \mathrm { f e s t } } = \frac { \mathrm { T r } \mathbf { W } ^ { T } \mathbf { W } - 2 \mathrm { T r } \mathbf { W } ^ { T } \overline { { \mathbf { W } } } + \mathrm { T r } \overline { { \mathbf { W } } } ^ { T } \overline { { \mathbf { W } } } } { \mathrm { T r } \overline { { \mathbf { W } } } ^ { T } \overline { { \mathbf { W } } } } . +$$ + +Both $\varepsilon _ { \mathrm { t r a i n } }$ and $\varepsilon _ { \mathrm { t e s t } }$ can be further expressed in terms of the student, training data and teacher SVDs, which we denote by $\mathbf { W } = \mathbf { U } \mathbf { S } \mathbf { V } ^ { T }$ , $\begin{array} { r } { \pmb { \Sigma } ^ { 3 1 } = \hat { \mathbf { U } } \hat { \mathbf { S } } \hat { \mathbf { V } } ^ { T } } \end{array}$ , and $\overline { { \mathbf { W } } } = \overline { { \mathbf { U } } } \overline { { \mathbf { S } } } \overline { { \mathbf { V } } } ^ { T }$ respectively. Specifically, + +$$ +\begin{array} { r l } & { \varepsilon _ { \mathrm { t r a i n } } = \left[ \overbrace { \sum _ { \beta = 1 } ^ { N _ { 3 } } } ^ { \overline { { S } } _ { 3 } } \hat { s } _ { \beta } ^ { 2 } \right] ^ { - 1 } \left[ \underset { \alpha = 1 } { \overset { N _ { 2 } } { \sum _ { \alpha } } } s _ { \alpha } ^ { 2 } + \underset { \beta = 1 } { \overset { \overline { { N } } _ { 3 } } { \sum _ { \beta } } } \hat { s } _ { \beta } ^ { 2 } - 2 \underset { \alpha = 1 } { \overset { N _ { 2 } } { \sum _ { \beta = 1 } } } \sum _ { \beta = 1 } ^ { \overline { { N _ { 3 } } } } s _ { \alpha } \hat { s } _ { \beta } \left( \mathbf { u } ^ { \alpha } \cdot \hat { \mathbf { u } } ^ { \beta } \right) \left( \mathbf { v } ^ { \alpha } \cdot \hat { \mathbf { v } } ^ { \beta } \right) \right] , } \\ & { \varepsilon _ { \mathrm { t e s t } } = \left[ \underset { \beta = 1 } { \overset { \overline { { N } } _ { 2 } } { \sum _ { \beta } } } \overline { { s } } _ { \beta } ^ { 2 } \right] ^ { - 1 } \left[ \underset { \alpha = 1 } { \overset { N _ { 2 } } { \sum _ { \alpha } } } s _ { \alpha } ^ { 2 } + \underset { \beta = 1 } { \overset { \overline { { N } } _ { 2 } } { \sum _ { \beta } } } \frac { 1 } { s _ { \beta } ^ { 2 } } - 2 \underset { \alpha = 1 } { \overset { N _ { 2 } } { \sum _ { \alpha } } } \sum _ { \beta = 1 } ^ { \overline { { N _ { 2 } } } } s _ { \alpha } \overline { { s } } _ { \beta } \left( \mathbf { u } ^ { \alpha } \cdot \overline { { \mathbf { u } } } ^ { \beta } \right) \left( \mathbf { v } ^ { \alpha } \cdot \overline { { \mathbf { v } } } ^ { \beta } \right) \right] . } \end{array} +$$ + +Thus as the student learns, its training and test error dynamics depends on the alignment of the time-evolving student singular modes $\{ s ^ { \alpha } , \mathbf { u } ^ { \alpha } , \mathbf { v } ^ { \alpha } \}$ with the fixed training data $\{ \hat { s } ^ { \alpha } , \hat { \mathbf { u } } ^ { \alpha } , \hat { \mathbf { v } } ^ { \alpha } \}$ and teacher $\{ \overline { { s } } ^ { \alpha } , \bar { \overline { { \mathbf { u } } } } ^ { \alpha } , \overline { { \mathbf { v } } } ^ { \alpha } \}$ singular modes respectively. + +# 3 SINGLE TASK GENERALIZATION DYNAMICS: THEORY AND EXPERIMENT + +Here we derive and numerically test analytic formulas for both the training and test errors of a student network as it learns from training data generated from a teacher network. We explore the dependence of these quantitites on the student network size, student initialization, teacher SNR, and training time. + +# 3.1 STUDENT TRAINING DYNAMICS AND TRAINING-ALIGNED (TA) NETWORKS + +We assume the student weights undergo batch gradient descent with learning rate $\lambda$ on the training error $\begin{array} { r } { \sum _ { \mu } | | \hat { \mathbf { y } } ^ { \mu } - \mathbf { W } ^ { 3 2 } \mathbf { W } ^ { 2 1 } \bar { \hat { \mathbf { x } } ^ { \mu } } | | _ { 2 } ^ { 2 } } \end{array}$ , which for small $\lambda$ is well approximated by the differential equations: + +![](images/df635d5402308d3a9a9f10644ccaa9227749fea9232affb61828b212aa929642.jpg) +Figure 1: Learning dynamics as a function of singular dimension strength. (a) shows how modes of different singular value are learned, (b) shows that there is a wave of learning that picks up singular dimensions with smaller and smaller singular values as $t \to \infty$ . + +$$ +\tau \frac { d } { d t } \mathbf { W } ^ { 2 1 } = \mathbf { W } ^ { 3 2 ^ { T } } \left( \boldsymbol { \Sigma } ^ { 3 1 } - \mathbf { W } ^ { 3 2 } \mathbf { W } ^ { 2 1 } \boldsymbol { \Sigma } ^ { 1 1 } \right) , \qquad \tau \frac { d } { d t } \mathbf { W } ^ { 3 2 } = \left( \boldsymbol { \Sigma } ^ { 3 1 } - \mathbf { W } ^ { 3 2 } \mathbf { W } ^ { 2 1 } \boldsymbol { \Sigma } ^ { 1 1 } \right) \mathbf { W } ^ { 2 1 ^ { T } } , +$$ + +(where $\tau \equiv 1 / \lambda$ ), which must be solved from an initial set of student weights at time $t = 0$ (Saxe et al., 2013a). We consider two classes of student initializations. The first initialization corresponds to a random student where the weights $\mathbf { W } ^ { 2 1 }$ and $\mathbf { W ^ { 3 2 } }$ are chosen such that the composite map $\mathbf { W } = \mathbf { W ^ { 3 2 } W ^ { 2 1 } }$ has an SVD $\mathbf { W } = \epsilon \mathbf { U } \mathbf { V } ^ { \mathbf { T } }$ , where $\mathbf { U }$ and $\mathbf { V }$ are random singular vector matrices and all student singular vala time dependent evolution $\epsilon$ te map undergoes. For white inputs, $\begin{array} { r } { \mathbf { W } ( t ) = \mathbf { U } ( t ) \mathbf { S } ( t ) \mathbf { V } ( t ) ^ { T } = \sum _ { \alpha = 1 } ^ { N _ { 2 } } \mathbf { s } _ { \alpha } ( t ) \mathbf { u } ^ { \alpha } ( t ) \mathbf { v } ^ { \alpha } ( t ) ^ { T } . } \end{array}$ as , , and so the time-dependent student singular modes $\{ s ^ { \alpha } ( t ) , \mathbf { u } ^ { \alpha } ( \mathbf { t } ) , \mathbf { v } ^ { ( } \mathbf { t } ) \}$ converge to the training data singular modes $\{ \hat { s } ^ { \alpha } , \hat { \mathbf { u } } ^ { \alpha } , \hat { \mathbf { v } } ^ { \alpha } \}$ . However, the explicit dynamics of the student singular modes can be difficult to obtain analytically from random initial conditions. + +Thus we also consider a special class of training aligned (TA) initial conditions in which $\mathbf { W ^ { 2 1 } }$ and $\mathbf { W ^ { 3 2 } }$ are chosen such that the composite map $\mathbf { W } = \mathbf { W ^ { 3 2 } W ^ { 2 1 } }$ has an SVD $\mathbf { W } = \epsilon \hat { \mathbf { U } } \hat { \mathbf { V } } ^ { \mathbf { T } }$ . That is, the TA network (henceforth referred to simply as the TA) has the same singular vectors as the training data covariance $\boldsymbol { \Sigma } ^ { 3 1 }$ , but has all singular values equal to $\epsilon$ . As shown in (Saxe et al., 2013a), as the TA learns according to (8), the singular vectors of its composite map W remain unchanged, while the singular values evolve as $s ^ { \alpha } ( t ) \stackrel { \textstyle - } { = } s ( t , { \hat { s } } ^ { \alpha } )$ , where the learning curve function $s ( t , { \hat { s } } )$ as well as its functional inverse $t ( s , { \hat { s } } )$ is given by + +$$ +s ( t , \hat { s } ) = \frac { \hat { s } e ^ { 2 \hat { s } t / \tau } } { e ^ { 2 \hat { s } t / \tau } - 1 + \hat { s } / \epsilon } , \qquad t ( s , \hat { s } ) = \frac { \tau } { 2 \hat { s } } \ln \frac { \hat { s } / \epsilon - 1 } { \hat { s } / s - 1 } . +$$ + +Here the function $s ( t , { \hat { s } } )$ describes analytically how each training set singular value $\hat { s }$ drives the dynamics of the corresponding TA singular value $s$ , and for notational simplicity, we have suppressed the dependence of $s ( t , { \hat { s } } )$ on $\tau$ and the initial condition $\epsilon$ . As shown in Fig. 1A, for each $\hat { s }$ , $s ( t , { \hat { s } } )$ is a sigmoidal learning curve that undergoes aat which it rises from its small initial value of haat sition around time to its asymptotic v $\begin{array} { r } { t / \tau = \frac { 1 } { 2 \hat { s } } \ln { \left( \hat { s } / \epsilon - \mathrm { 1 } \right) } } \end{array}$ $\epsilon$ $t = 0$ $\hat { s }$ $t / \tau \to \infty$ Alternatively, we can plot $s ( t , { \hat { s } } ) / { \hat { s } }$ as a function of $\hat { s }$ for different training times $t / \tau$ , as in Fig. 1B. This shows that TA learning corresponds to a singular mode detection wave which progressively sweeps from large to small singular values. At any given training time $t$ , training data modes with singular values $\hat { s } > t / \tau$ have been learned, while those with singular values $\hat { s } < t / \tau$ have not. + +While the TA is more sophisticated than the random student, since it already knows the singular vectors of the training data before learning, we will see that the analytic solution for the TA learning dynamics provides a good approximation to the student learning dynamics, not only for the training error, as shown in (Saxe et al., 2013a), but also for the generalization error as shown below. + +The results in this section assume a single hidden layer, but Saxe et al. (2013a) derived $t ( s , { \hat { s } } )$ for networks of arbitrary depth and we apply our theory to some deeper networks. The general differential equation and derivations for deeper networks can be found in Appendix A. + +# 3.2 HOW THE TEACHER IS BURIED IN THE TRAINING DATA: A RANDOM MATRIX ANALYSIS + +In the previous section, we reviewed an exact analytic solution for the composite map of a TA network, namely that its singular modes are related to those of the training data through the relation + +$$ +\begin{array} { r } { s _ { \alpha } ( t ) = s ( t , \hat { s } _ { \alpha } ) , \qquad { \bf u } ^ { \alpha } ( t ) = \hat { \bf u } ^ { \alpha } , \qquad { \bf v } ^ { \alpha } ( t ) = \hat { \bf v } ^ { \alpha } . } \end{array} +$$ + +However, computation of the generalization error through (5) then requires understanding how the teacher singular modes of $\overline { { \mathbf { W } } }$ are buried within the noisy training data singular modes of $\pmb { \Sigma } ^ { 3 1 }$ through the relation (3). Since the input matrix $\hat { \mathbf X }$ is orthonormal, $\pmb { \Sigma } ^ { 3 1 }$ is simply a perturbation of the low rank teacher $\overline { { \mathbf { W } } }$ by a high dimensional noise matrix $\mathbf { Z }$ . The relation between the singular modes of a low rank matrix and its noise perturbed version has been studied extensively in Benaych-Georges $\&$ Nadakuditi (2012), in the high dimensional limit we are working in, namely $\overline { { N _ { 1 } } } , \overline { { N _ { 3 } } } \overline { { } } \infty$ with the aspect ratio $\mathcal { A } = \overline { { N _ { 3 } } } / \overline { { N _ { 1 } } } \in \overline { { ( 0 , 1 ] } }$ , and $\overline { { N } } _ { 2 } \sim O ( 1 )$ . + +![](images/74aa5b143963ba7d2cf4b03e7444309ed0f7fd59b33a147d86b619f88f63f9e7.jpg) +Figure 2: The teacher’s signal through the noise. Theoretical vs. empirical (a) histogram of singular values of noisy teacher $\hat { s }$ . (b) $\hat { s }$ as a function of $\overline { { s } }$ . (c) alignment of noisy teacher and noiseless teacher singular vectors as a function of $\overline { { s } }$ . ${ \widetilde { N _ { 1 } } } = { \overline { { N _ { 3 } } } } = 1 0 0 .$ ) + +In this limit, the top $\overline { { N } } _ { 2 }$ singular values and vectors of $\pmb { \Sigma } ^ { 3 1 }$ converge to $\hat { s } ( \overline { { s } } _ { \alpha } )$ , where the transfer function from a teacher singular value $\overline { { s } }$ to a training data singular value $\hat { s }$ is given by the function + +$$ +{ \hat { s } } ( { \overline { { s } } } ) = { \left\{ \begin{array} { l l } { ( { \overline { { s } } } ) ^ { - 1 } { \sqrt { ( 1 + { \overline { { s } } } ^ { 2 } ) ( A + { \overline { { s } } } ^ { 2 } ) } } } & { { \mathrm { ~ i f ~ } } { \overline { { s } } } > A ^ { 1 / 4 } } \\ { 1 + { \sqrt { A } } } & { { \mathrm { ~ o t h e r w i s e . } } } \end{array} \right. } +$$ + +The associated top $\overline { { N } } _ { 2 }$ singular vectors of $\pmb { \Sigma } ^ { 3 1 }$ can also acquire a nontrivial overlap with the $\overline { { N } } _ { 2 }$ modes of the teacher through the relation $\left| \hat { \mathbf { u } } ^ { \alpha } \cdot \overline { { \mathbf { u } } } ^ { \alpha } \right| \left| \hat { \mathbf { v } } ^ { \alpha } \cdot \overline { { \mathbf { v } } } ^ { \alpha } \right| = \mathcal { O } ( \overline { { s } } _ { \alpha } )$ , where the singular vector overlap function is given by + +$$ +\begin{array} { r } { \mathcal { O } ( \overline { { s } } ) = \left\{ \begin{array} { l l } { \left[ 1 - \frac { \mathcal { A } ( 1 + \overline { { s } } ^ { 2 } ) } { \overline { { s } } ^ { 2 } ( A + \overline { { s } } ^ { 2 } ) } \right] ^ { 1 / 2 } \left[ 1 - \frac { ( \mathcal { A } + \overline { { s } } ^ { 2 } ) } { \overline { { s } } ^ { 2 } ( 1 + \overline { { s } } ^ { 2 } ) } \right] ^ { 1 / 2 } } & { \mathrm { i f } \overline { { s } } > \mathcal { A } ^ { 1 / 4 } } \\ { 0 } & { \mathrm { o t h e r w i s e } } \end{array} \right. } \end{array} +$$ + +The rest of the $N _ { 3 } - { \overline { { N _ { 2 } } } }$ singular vectors of $\pmb { \Sigma } ^ { 3 1 }$ are orthogonal to the top $\overline { { N } } _ { 2 }$ ones, and their singular values are distributed according to the the Marchenko-Pastur (MP) distribution: + +$$ +P ( \hat { s } ) = \left\{ \begin{array} { l l } { \frac { \sqrt { 4 A - ( \hat { s } ^ { 2 } - ( 1 + A ) ) ^ { 2 } } } { \pi A \hat { s } } } & { \hat { s } \in [ 1 - \sqrt { \mathcal { A } } , 1 + \sqrt { \mathcal { A } } ] } \\ { 0 } & { \mathrm { o t h e r w i s e } . } \end{array} \right. +$$ + +Overall, these equations describe a singular vector phase transition in the training data, as illustrated in Fig. 2BC. For example in the case of no teacher, the training data is simply noise and the singular values of $\pmb { \Sigma } ^ { 3 1 }$ are distributed as an MP sea spread between $1 \pm { \sqrt { A } }$ . When one adds a teacher, how each teacher singular mode is imprinted on the training data depends crucially on the teacher singular value $\overline { { s } }$ , and the nature of this imprinting undergoes a phase transition at $\overline { { s } } = \mathcal { A } ^ { 1 / 4 }$ . For $\overline { { s } } \leq { \mathcal { A } } ^ { 1 / 4 }$ , the teacher mode SNR is too low and this mode is not imprinted in the noisy training data; the associated√ training data singular value $\hat { s }$ remains at the edge of the MP sea at $1 + { \sqrt { A } }$ , and the overlap $\mathcal { O } ( \overline { { s } } )$ between training and teacher singular vectors remains zero. + +However, when $\overline { { s } } > \mathcal { A } ^ { 1 / 4 }$ , this teacher mode is imprinted in the training data; there is an associated training data singular value $\hat { s }$ that pops out of the MP sea (Fig. 2AB). However, the training data singular value emerges at a position $\hat { s } > \overline { { s } }$ that is inflated by the noise, though the inflation effect decreases at larger $\overline { { s } }$ , with the ratio $\hat { s } / \overline { { s } }$ approaching the unity line as $\overline { { s } }$ becomes large (Fig. 2B). Similarly, the corresponding training data singular vectors acquire a non-trivial overlap with the teacher singular vectors when $\overline { { s } } > \mathcal { A } ^ { 1 / 4 }$ , and the alignment approaches unity as $\overline { { s } }$ increases (Fig. 2C). + +# 3.3 PUTTING IT ALL TOGETHER: AN ANALYTIC THEORY OF GENERALIZATION DYNAMICS + +Based on an analytic understanding of how the singular mode structure $\{ \overline { { s } } ^ { \alpha } , \overline { { \mathbf { u } } } ^ { \alpha } , \overline { { \mathbf { v } } } ^ { \alpha } \}$ of the teacher $\overline { { \mathbf { W } } }$ is imprinted in the modes $\{ \hat { s } ^ { \alpha } , \hat { \mathbf { u } } ^ { \alpha } , \hat { \mathbf { v } } ^ { \alpha } \}$ of the training data covariance $\pmb { \Sigma } ^ { 3 1 }$ through (11), (12) and (13), and in turn how this training data singular structure drives the time evolving singular modes of a + +![](images/314c03e7d659a75d3bce2929de3fdf61f6a46155c699119ff46ac7743510ffe3.jpg) +Figure 3: Match between theory and experiment for rank 1 (row 1, a-d) and rank 3 (row 2, e-h) teachers with single-hidden-layer students: (a-b, e-f) log train and test error, respectively, showing very close match between theory and experiment for TA, and close match for the random student. (c,g) comparing TA and randomly initialized students minimum generalization errors, showing almost perfect match. (d,h) comparing TA and randomly initialized students optimal stopping times, showing small lag due to alignment. ( $N _ { 1 } = 1 0 0$ , $N _ { 2 } = 5 0$ , $N _ { 3 } = 5 0 .$ ) + +TA network $\{ s ^ { \alpha } ( t ) , \hat { \mathbf { u } } ^ { \alpha } , \hat { \mathbf { v } } ^ { \alpha } \}$ of through (9), we can now derive analytic expressions for $\varepsilon _ { \mathrm { t r a i n } }$ and $\varepsilon _ { \mathrm { t e s t } }$ in (6) and (7), for a TA network. We will also show that these learning curves closely approximate those of a random student with time-evolving singular vectors $\{ \mathbf { u } ^ { \alpha } ( t ) , \mathbf { \bar { v } } ^ { \alpha } ( t ) \}$ , and match on several key aspects. First, inserting the TA dynamics in (10) into $\varepsilon _ { \mathrm { t r a i n } }$ in (6), we obtain + +$$ +\mathfrak { c } _ { \mathrm { r e a i n } } ( t ) = \left[ \sum _ { \alpha = 1 } ^ { \overline { { N } } _ { 3 } } \hat { s } _ { \alpha } ^ { 2 } \right] ^ { - 1 } \left[ ( N _ { 3 } - N _ { 2 } ) \langle \hat { s } ^ { 2 } \rangle _ { \mathcal { R } _ { o u t } } + ( N _ { 2 } - \overline { { N } } _ { 2 } ) \langle ( s ( \hat { s } , t ) - \hat { s } ) ^ { 2 } \rangle _ { \mathcal { R } _ { i n } } + \sum _ { \alpha = 1 } ^ { \overline { { N } } _ { 2 } } \left[ s _ { \alpha } ( t ) - \hat { s } _ { \alpha } \right] ^ { 2 } \right] +$$ + +Here, $s _ { \alpha } ( t ) = s ( \hat { s } _ { \alpha } , t )$ as defined in (9) are the TA singular values, and $\hat { s } _ { \alpha } = \hat { s } ( \overline { { s } } _ { \alpha } )$ as defined in (11) are the training data singular values associated with the teacher singular values $\overline { { s } } _ { \alpha }$ . Also $\langle \cdot \rangle _ { \mathcal { R } }$ denotes an average with respect to the MP distribution in (13) over a region $\mathcal { R }$ . Two distinct regions contribute to training error. First $\mathcal { R } _ { i n }$ contains those top $N _ { 2 } - \overline { { N } } _ { 2 }$ training data singular values that do not correspond to the $\overline { { N } } _ { 2 }$ singular values of the teacher but will be learned by a rank $N _ { 2 }$ student. Second, $\mathcal { R } _ { o u t }$ corresponds to the remaining $N _ { 3 } - N _ { 2 }$ lowest training data singular values√ that cannot be learned by a rank √ $N _ { 2 }$ student. In terms of the MP distribution, $\mathcal { R } _ { o u t } = [ 1 - \sqrt { \mathcal { A } } , f ]$ and $\mathcal { R } _ { i n } = [ f , 1 + \sqrt { \mathcal { A } } ]$ , where $f$ is the point at which the MP density has $1 - N _ { 2 } / N _ { 3 }$ of its mass to the left and $N _ { 2 } / N _ { 3 }$ of its mass to the right. In the simple case of a full rank student, $f = 1 - \sqrt { \mathcal { A } }$ , and one need only integrate over $\mathcal { R } _ { i n }$ which is the entire range. Equation (14) for $\varepsilon _ { \mathrm { t r a i n } }$ makes it manifest that it will go to zero for a full rank student as its singular values approach those of the training data. + +Of course the test error can behave very differently. Inserting the TA training dynamics in (10) into $\varepsilon _ { \mathrm { t e s t } }$ in (7), and using (11), (12) and (13) to relate training data to the teacher, we find + +$$ +\varepsilon _ { \mathrm { t e x t } } ( t ) = \left[ \sum _ { \alpha = 1 } ^ { \overline { { N } } _ { 2 } } \overline { { s } } _ { \alpha } ^ { 2 } \right] ^ { - 1 } \left[ ( N _ { 2 } - \overline { { N } } _ { 2 } ) \langle s ( \hat { s } , t ) ^ { 2 } \rangle _ { \mathcal { R } _ { i n } } + \sum _ { \alpha = 1 } ^ { \overline { { N } } _ { 2 } } \left[ ( s _ { \alpha } ( t ) - \overline { { s } } _ { \alpha } ) ^ { 2 } + 2 s _ { \alpha } ( t ) \overline { { s } } _ { \alpha } ( 1 - \mathcal { O } ( \overline { { s } } _ { \alpha } ) ) \right] \right] +$$ + +Together (14) and (15) constitute a complete theory of generalization dynamics in terms of the structure of the data distribution (i.e. the teacher rank $\overline { { N } } _ { 2 }$ , teacher SNRs $\left\{ \overline { { s } } _ { \alpha } \right\}$ , and the teacher aspect ratio $\mathcal { A } = \overline { { N } } _ { 3 } / \overline { { N } } _ { 1 } )$ , the architectural complexity of the student (i.e. its rank $N _ { 2 }$ , its number of layers $N _ { l }$ , and the norm $\epsilon$ of its initialization), and the training time $t$ . They yield considerable insight into the dynamics of good generalization early in learning and overfitting later, as we show below. + +![](images/be9716a9b1de318c5906d81cbfaaab3bf19f9183b7b3ce2f88ef2d6bf3ba7e80.jpg) +Figure 4: Our theory applies to deeper networks: match between theory and simulation for rank 1 (row 1, a-d) and rank 3 (row 2, e-h) teachers with $n _ { l } = 5$ students: (a-b, e-f) log train and test error, respectively, showing very close match between theory and experiment for TA. (c,g) comparing TA and randomly initialized students minimum generalization errors, showing almost perfect match. (d,h) comparing TA and randomly initialized students optimal stopping times, showing large lag due to slower alignment in deeper networks. $N _ { 1 } = 1 0 0$ , $N _ { 2 } = 5 0$ , $N _ { 3 } = 5 0 .$ .) + +# 3.4 NUMERICAL TESTS OF THE THEORY OF NEURAL NETWORK GENERALIZATION DYNAMICS + +Fig. 3 demonstrates an excellent match between the theory and simulations for the TA, and a close match for random students, for single-hidden-layer students and various teacher ranks $\overline { { N } } _ { 2 }$ . Intuitively, as time $t$ proceeds, learning corresponds to singular mode detection wave sweeping from large to small training data singular values (i.e. the wave in Fig. 1B sweeps across the training data spectrum in Fig 2A). Initially, strong singular values associated with large SNR teacher modes are learned and both $\varepsilon _ { \mathrm { t r a i n } }$ and $\varepsilon _ { \mathrm { t e s t } }$ drop. Fig. 3A-D are for a rank 1 teacher, and so in Fig 3AB we see a single sharp drop early on, if the teacher SNR is sufficiently high. By contrast, with a rank 3 teacher in Fig. 3E-H, there are several early drops as the three modes are picked up. However, as time progresses, the singular mode detection wave penetrates the MP sea, and the student picks up noise structure in the data, so $\varepsilon _ { \mathrm { t r a i n } }$ drops but $\varepsilon _ { \mathrm { t e s t } }$ rises, indicating the onset of overfitting. + +The main difference between the random student and TA learning curves is that the random student learning is slightly delayed relative to the TA, especially late in training. This is understandable because the TA already knows the singular vectors of the training data, while the random student must learn them. Nevertheless, two of the most important aspects of learning, namely the optimal early stopping time $t _ { \mathrm { g r a d i e n t } } ^ { \mathrm { o p t } } \equiv \mathrm { a r g m i n } _ { t } \varepsilon _ { \mathrm { t e s t } } ( t )$ and the minimal test error achieved at this time $\varepsilon _ { \mathrm { g r a d i e n t } } ^ { \mathrm { o p t } } \equiv$ $\mathrm { m i n } _ { t } \varepsilon _ { \mathrm { t e s t } } ( t )$ , match well between TA and random student, as shown in Fig. 3CD. At low teacher SNRs, the student takes a little longer to learn than the TA, but their optimal test errors match. + +Our theory can also be easily extended to describe the learning dynamics deeper networks. Saxe et al. (2013a) derived $t ( s , { \hat { s } } )$ for networks of arbitrary depth, so we only need to adjust this factor in our formulas, see App. A for details. In Fig. 4 we show that again there is an excellent match between TA networks and theory for student networks with $N _ { l } = 5$ layers (i.e. 3 hidden layers). Randomly-initialized networks show a much longer alignment lag for deeper networks (see App. B for details), but the curves are qualitatively similar and optimal stopping errors match. We also demonstrate extensions of our theory to different numbers of training examples (App. G). + +Importantly, many of the phenomena we observe in linear networks are qualitatively replicated in nonlinear networks (Fig. 5), suggesting that our theory may help guide understanding of the nonlinear case. In particular, features such as stage-like initial learning, followed by a plateau if SNR is high, and finally followed by overfitting, are replicated. However, there are some discrepancies, in particular nonlinear networks (especially deeper ones) begin overfitting earlier than linear networks. This is likely because a mode in a non-linear network can be co-opted by an orthogonal mode, while in a linear network it cannot. Thus noise modes are able to “stow away” on the strong signal modes once they are learned. However, overall learning patterns are similar, and we show below that many interesting phenomena in nonlinear networks are understandable in the linear case, such as the (non-)effects of overparameterization, the dynamics of memorization, and the benefits of transfer. + +![](images/4c96fe2cc1b69b79f16e01bb40a77f5c5b9805452e0fd502c4194097a289ca0c.jpg) +Figure 5: Train (first row, A-D) and test (second row, E-H) error for nonlinear networks (leaky relu at all hidden layers) with one hidden layer (first two columns) or three hidden layers (last two columns) trained on the tasks above, with a rank 1 teacher (first and third columns) or a rank 3 teacher (second and fourth columns). Note that many of the qualitative phenomena observed in linear networks, such as stage-like improvement in the errors, followed by a plateau, followed by overfitting, also appear in nonlinear networks. Compare the first column to Fig. 3AB, the second column to Fig. 3EF, the third to Fig. 4AB, and the fourth to Fig. 4EF. ( $N _ { 1 } = 1 0 0$ , $N _ { 2 } = 5 0$ , $N _ { 3 } = 5 0 .$ ) + +# .5 RANDOMIZED DATA VS. REAL DATA: A LEARNING TIME PUZZLE + +An intriguing observation that resurrected the generalization puzzle in deep learning was the observation by Zhang et al. (2016) that deep networks can memorize data with the labels randomly permuted. However, as Arpit et al. (2017) pointed out, the learning dynamics of training error for randomized labels can be slower than than for structured data. This phenomenon also arises in deep linear networks, and our theory yields an analytic explanation for why. We randomize data by choosing orthonormal inputs $\hat { \mathbf { x } } ^ { \mu }$ as in the structured case, but we choose the outputs ${ \hat { \mathbf { y } } } ^ { \mu }$ to be i.i.d. Gaussian with zero mean and the same diagonal variance as the structured training data generated by the teacher. For structured data generated by a low rank teacher with singular values $\overline { { s } } _ { \alpha }$ , the diagonal output variance is given by $\begin{array} { r } { \sigma _ { r } ^ { 2 } = \frac { 1 } { N _ { 3 } } \left[ \sum _ { i = \alpha } ^ { \overline { { N } } _ { 2 } } \bar { s } _ { \alpha } ^ { 2 } \right] + \frac { 1 } { \overline { { N } } _ { 1 } } \sigma _ { z } ^ { 2 } } \end{array}$ , where $\sigma _ { z }$ is the noise variance, as before. Since there is no relation between input and output, $\pmb { \Sigma } ^ { 3 1 }$ is now distributed as a MP distribution whose support is $[ ( \sigma _ { r } ( 1 - \sqrt { \mathcal { A } } ) , \sigma _ { r } ( 1 + \sqrt { \mathcal { A } } ) ]$ . Thus randomization essentially destroys the outlier signal singular values in $\pmb { \Sigma } ^ { 3 1 }$ reflecting the teacher, and distributes them across all randomized data modes, yielding this stretched MP distribution (compare 6A top and bottom). However, even on this stretched MP distribution, the right edge will be much smaller than the signal singular values, since the signal variance will be diluted by spreading it out over many more modes in the randomized data. Thus the randomized data will lead to slower initial training error drops relative to the structured data (Fig. 6B) since the singular mode detection wave encounters the first signal singular values in structured data earlier than it encounters the edge of the stretched MP sea in randomized data. + +![](images/214421209393a1f729207d74055cfc8b2447742fb08e8821164fae3a79d95a61.jpg) +Figure 6: Learning randomized data: Comparing (a) singular value distributions and (b) learning curves for data with a signal vs. random data that preserves basic statistics (mean, variance). Randomizing the data dilutes the signal singular values, spreading their variance out over many modes, hence randomly labelled data is learned more slowly. $N _ { 1 } = 1 0 0$ , $N _ { 2 } = 5 0$ , $N _ { 3 } = 5 0 .$ .) + +![](images/6f50ba8e93b7f0f0f5390f316c743f888d62c7d9566d1790b18925c63d2e3904.jpg) +Figure 7: Transfer setting– If two different tasks are combined, how well students of the combined teacher perform on each task depends on the alignment and SNRs of the teachers. + +![](images/0a5b9a9dbd5641d64b838b1df6081e9aedcd5fcf53c8a71c1f83e3bbc6d1722c.jpg) +Figure 8: Transfer benefit $\mathcal { T } ^ { A B } ( \overline { { s } } _ { A } , \overline { { s } } _ { B } , q )$ plotted at different values of ${ \overline { { s } } } _ { A }$ . (a) $\overline { { s } } _ { A } = 0 . 8 4 = \sqrt [ 4 ] { A }$ . Although this task is impossible to learn on its own, with support from another aligned task, especially one with high SNR, learning can occur. (b) ${ \overline { { s } } } _ { A } = 3$ . Tasks with modest signals will face interference from poorly aligned tasks, but benefits from well aligned tasks. These effects are amplified by SNR. (c) $\overline { { s } } _ { A } = 1 0 0$ . Tasks with very strong signals will show little effect from other tasks (note y-axis scales), but any impact will be negative unless the tasks are very well aligned. $N _ { 1 } = 1 0 0$ $\dot { \overline { { { N } } } } _ { 2 } ^ { A } = \overline { { { N } } } _ { 2 } ^ { B } = 1 .$ , $N _ { 2 } = 5 0$ , $N _ { 3 } = 5 0 .$ ) + +# 3.6 OUT-PERFORMING OPTIMAL EARLY STOPPING THROUGH A NON-GRADIENT ALGORITHM + +For the case of a rank 1 teacher, it is straightforward to derive a good analytic approximation to the important quantities $\varepsilon _ { \mathrm { g r a d i e n t } } ^ { \mathrm { o p t } }$ and topt $t _ { \mathrm { g r a d i e n t } } ^ { \mathrm { o p t } }$ . We assume the teacher SNR is beyond the phase transition point so its unique singular value $\overline { { s } } _ { 1 } > A ^ { 1 / 4 }$ , yielding a separation between the training data singular value $\hat { s _ { 1 } }$ in (11) and the edge of the MP sea. In this scenario, optimal early stopping will occur at a time before the detection wave in Fig. 1B penetrates the MP sea, so to minimize test error, we can neglect the first term in (15). Then optimizing the second term yields the optimal student singular value $s _ { 1 } = \overline { { s } } _ { 1 } \mathcal { O } ( \overline { { s } } _ { 1 } )$ . Inserting this value into (15) yields εoptgradient = 1 − O(s1)2, and inserting it into (9) yields $t _ { \mathrm { g r a d i e n t } } ^ { \mathrm { o p t } }$ . Thus the optimal generalization error with a rank 1 teacher is very simply related to the alignment of the top training data singular vectors with the teacher singular vectors, and it decreases as this alignment increases. In App. E, we show this match in the rank 1 case. + +With higher rank teachers, teacher modes with differen $\varepsilon _ { \mathrm { g r a d i e n t } } ^ { \mathrm { o p t } }$ and For must negotiate a more complex trade-off betweene, as the singular mode detection wave passes the top training data singular value, $s _ { 1 } ( t ) \to \hat { s } _ { 1 }$ which is greater than the optimal $s _ { 1 } = \overline { { s } } _ { 1 } \mathcal { O } ( \overline { { s } } _ { 1 } )$ for mode 1. Thus as learning progresses, the student overfits on the first mode but learns lower modes. However, this neural generalization dynamics suggests a superior non-gradient training algorithm that simply optimally sets each $s _ { \alpha }$ to $\overline { { s } } _ { \alpha } \mathcal { O } ( \overline { { s } } _ { \alpha } )$ in (15), yielding an optimal generalization error: + +$$ +\varepsilon _ { \mathrm { n o n - g r a d i e n t } } ^ { \mathrm { o p t } } = \left[ \sum _ { \alpha = 1 } ^ { \overline { { N } } _ { 2 } } \overline { { s } } _ { \alpha } ^ { 2 } \right] ^ { - 1 } \left[ \sum _ { \alpha = 1 } ^ { \overline { { N } } _ { 2 } } \overline { { s } } _ { \alpha } ^ { 2 } ( 1 - \mathcal { O } ( \overline { { s } } _ { \alpha } ) ^ { 2 } ) \right] . +$$ + +Standard gradient descent learning cannot achieve this low generalization error because it cannot independently adjust all student singular values. A simple algorithm that achieves $\varepsilon _ { \mathrm { n o n - g r a d i e n t } } ^ { \mathrm { o p t } }$ is as follows. From the training data covariance $\pmb { \Sigma } ^ { 3 1 }$ , extract the top singular values $\hat { s } _ { \alpha }$ that pop-out of the MP sea, use the functional inverse of (11) to compute $\overline { { s } } _ { a } ( \widehat { s } _ { \alpha } )$ , use (12) to compute the optimal $s _ { \alpha }$ , and then construct a matrix $\mathbf { W }$ with the same top singular vectors as $\pmb { \Sigma } ^ { 3 1 }$ , but with the outlier singular values shrunk from $\hat { s } _ { \alpha }$ to $s _ { \alpha }$ and the rest set to zero. This non-gradient singular value shrinkage algorithm provably outperforms neural network training with $\varepsilon _ { \mathrm { n o n - g r a d i e n t } } ^ { \mathrm { o p t } ^ { - } } \le \varepsilon _ { \mathrm { g r a d i e n t } } ^ { \mathrm { o p t } } .$ . + +# 4 A THEORY FOR THE TRANSFER OF KNOWLEDGE ACROSS MULTIPLE TASKS + +Consider two tasks $A$ and $B$ , described by $\overline { { N } } _ { 3 }$ by $\overline { { N } } _ { 1 }$ teacher maps $\overline { { \mathbf { W } } } ^ { A }$ and $\overline { { \mathbf { W } } } ^ { B }$ , of ranks $\overline { { N } } _ { 2 } ^ { A }$ and $\overline { { N } } _ { 2 } ^ { B }$ , respectively. Now two student networks can learn from the two teacher networks separately, each achieving optimal early stopping test errors composite teacher (and student) that concatenate $\varepsilon _ { A } ^ { \mathrm { { o p t } } }$ and hid $\varepsilon _ { B } ^ { \mathrm { { o p t } } }$ . Alternatively, one could construct a and output units, but shares the same $\overline { { N } } _ { 3 }$ ut units (Fig. 7). The composite student and teacher each have two heads, one for each tasneurons per head. Optimal early stopping on each head of the student yields test errors opt opt $\varepsilon _ { A B } ^ { \mathrm { o p t } }$ and . We define the transfer benefit that task B confers on task A to be $\mathcal { T } ^ { A B } \equiv \varepsilon _ { A } ^ { \mathrm { o p t } } - \varepsilon _ { A B } ^ { \mathrm { o p t } }$ A postive (negative) transfer benefit implies learning tasks A and B simultaneously yields a lower (higher) optimal test error on task A compared to just learning task A alone. + +A foundational question is how the transfer benefit $\scriptstyle { \mathcal { T } } ^ { A B }$ depends on the two tasks defined by the teachers $\overline { { \mathbf { W } } } ^ { A }$ and $\overline { { \mathbf { W } } } ^ { B }$ . To answer this, consider the SVDs of each teacher alone: $\begin{array} { r } { \overline { { \mathbf { W } } } ^ { A } = } \end{array}$ $\overline { { \mathbf { U } } } ^ { A } \overline { { \mathbf { S } } } ^ { A } \overline { { \mathbf { V } } } ^ { A ^ { T } }$ and $\overline { { \mathbf { W } } } ^ { B } = \overline { { \mathbf { U } } } ^ { B } \overline { { \mathbf { S } } } ^ { B } \overline { { \mathbf { V } } } ^ { B ^ { T } }$ . From the above, we know that $\varepsilon _ { A } ^ { \mathrm { { o p t } } }$ depends on $\overline { { \mathbf { W } } } ^ { A }$ only through $\overline { { \mathbf { S } } } ^ { A }$ . In App. D we show that the transfer benefit depends on both $\overline { { \mathbf { W } } } ^ { A }$ and $\overline { { \mathbf { W } } } ^ { B }$ only through $\overline { { \mathbf { S } } } ^ { A } , \overline { { \mathbf { S } } } ^ { B }$ , and the $\overline { { N } } _ { 2 } ^ { A }$ by $\overline { { N } } _ { 2 } ^ { B }$ similarity matrix $\mathbf { \overline { { Q } } } = \mathbf { \overline { { V } } } ^ { A ^ { T } } \mathbf { \overline { { V } } } ^ { B }$ . If we think of the columns of each $\overline { { \mathbf { V } } }$ as spanning a low dimensional feature space in $\overline { { N } } _ { 1 }$ dimensional input space that is important for each task, then $\overline { { \mathbf { Q } } }$ reflects the input feature subspace similarity matrix. Interestingly, the transfer benefit is independent of output singular vectors $\bar { \mathbf { U } } ^ { A }$ and $\overline { { \mathbf { U } } } ^ { B }$ . What matters for knowledge transfer in this setting are the relevant input features, not how you must respond to them. + +We describe the transfer benefit for the simple case of two rank one teachers. Then $\overline { { \mathbf { S } } } ^ { A } , \overline { { \mathbf { S } } } ^ { B }$ , and $\overline { { \mathbf { Q } } }$ are simply scalars $s _ { A } , s _ { B }$ and $q$ , and we explore the function $\mathcal { T } ^ { A B } ( \overline { { s } } _ { A } , \overline { { s } } _ { B } , q )$ in Fig. 5ABC, which reveals several interesting features. First, knowledge can be transferred from a high SNR task to a low SNR task (Fig. 5A) and the degree of transfer increases with task alignment $q$ . This can make it possible to capture signals from task $A$ which would otherwise sink into the MP sea by learning jointly with a related task, even if the tasks are only weakly aligned (Fig. 5A). However, if task $A$ already has a high SNR, task $B$ must be very well aligned to it for transfer to be beneficial – otherwise there will be interference. The degree of alignment required increases as the task $A$ SNR increases, but the quantity of benefit or interference decreases correspondingly (Fig. 5BC). In Appendix D we explain why our theory predicts these results. Furthermore, in Appendix F we demonstrate these phenomena are qualitatively recapitulated in nonlinear networks, which suggests that our theory may give insight into how to choose auxiliary tasks. + +# 5 DISCUSSION + +In summary, our analytic theory of generalization dynamics in deep linear networks reveals that many puzzling aspects of generalization in deep learning already arise in the simple linear setting, where the puzzles can be understood analytically. In particular, deep linear networks learn more important structure in data first, leading to generalization errors that depend on task structure much more than network size. Our theory explains why deep linear networks learn randomized data more slowly than structured data, and provides a non-gradient based learning method that out-performs gradient descent learning in the linear case. Finally, we provide an analytic theory of how knowledge is transferred from one task to another, demonstrating that the degree of alignment of input features important for each task, but not how one must respond to these features, is critical for facilitating knowledge transfer. We think these analytic results provide useful insight into the similar generalization and transfer phenomena observed in the nonlinear case. Among other things, we hope our work will motivate and enable: (1) the search for tighter upper bounds on generalization error that take into account task structure; (2) the design of non gradient based training algorithms that outperform gradient-based learning; and (3) the theory-driven selection of auxiliary tasks that maximize knowledge transfer. + +# REFERENCES + +Madhu S. Advani and Andrew M. Saxe. High-dimensional dynamics of generalization error in neural networks. arXiv, pp. 1–32, 2017. + +Sanjeev Arora, Rong Ge, Behnam Neyshabur, and Yi Zhang. Stronger generalization bounds for deep nets via a compression approach. arXiv preprint, pp. 1–39, 2018. URL http://arxiv. org/abs/1802.05296. + +Devansh Arpit, Stanisław Jastrze¸bski, Nicolas Ballas, David Krueger, Emmanuel Bengio, Maxinder S Kanwal, Tegan Maharaj, Asja Fischer, Aaron Courville, Yoshua Bengio, and Simon Lacoste-Julien. A Closer Look at Memorization in Deep Networks. arXiv preprint, 2017. ISSN 1938-7228. URL http://arxiv.org/abs/1706.05394. + +Peter Bartlett, Dylan J. Foster, and Matus Telgarsky. Spectrally-normalized margin bounds for neural networks. arXiv preprint, pp. 1–24, 2017. URL http://arxiv.org/abs/1706.08498. + +Peter L Bartlett and Shahar Mendelson. Rademacher and Gaussian Complexities $:$ Risk Bounds and Structural Results. Journal of Machine Learning Research, 3:463–482, 2002. + +Florent Benaych-Georges and Raj Rao Nadakuditi. The singular values and vectors of low rank perturbations of large rectangular random matrices. Journal of Multivariate Analysis, 111:120–135, 2012. ISSN 0047259X. doi: 10.1016/j.jmva.2012.04.019. + +Daxiang Dong, Hua Wu, Wei He, Dianhai Yu, and Haifeng Wang. Multi-Task Learning for Multiple Language Translation. Acl, pp. 1723–1732, 2015. + +Gintare Karolina Dziugaite and Daniel M. Roy. Computing Nonvacuous Generalization Bounds for Deep (Stochastic) Neural Networks with Many More Parameters than Training Data. arXiv preprint, 2017. URL http://arxiv.org/abs/1703.11008. + +Noah Golowich, Alexander Rakhlin, and Ohad Shamir. Size-Independent Sample Complexity of Neural Networks. arXiv preprint, (1):1–26, 2017. URL http://arxiv.org/abs/1712. 06541. + +I.J. Goodfellow, J Pouget-Abadie, and Mehdi Mirza. Generative Adversarial Networks. arXiv preprint, pp. 1–9, 2014. ISSN 10495258. doi: 10.1001/jamainternmed.2016.8245. + +Steven S. Hansen, Andrew Lampinen, Gaurav Suri, and James L. McClelland. Building on prior knowledge without building it in. Behavioral and Brain Sciences, 40, 2017. + +Andrew Lampinen, Shaw Hsu, and James L Mcclelland. Analogies Emerge from Learning Dyamics in Neural Networks. Proceedings of the 39th Annual Conference of the Cognitive Science Society, pp. 2512–2517, 2017. + +Minh-Thang Luong, Quoc V. Le, Ilya Sutskever, Oriol Vinyals, and Lukasz Kaiser. Multi-task Sequence to Sequence Learning. Iclr, pp. 1–9, 2016. + +Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei a Rusu, Joel Veness, Marc G Bellemare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, Stig Petersen, Charles Beattie, Amir Sadik, Ioannis Antonoglou, Helen King, Dharshan Kumaran, Daan Wierstra, Shane Legg, and Demis Hassabis. Human-level control through deep reinforcement learning. Nature, 518(7540):529–533, 2015. ISSN 0028-0836. doi: 10.1038/nature14236. + +Behnam Neyshabur, Ryota Tomioka, and Nathan Srebro. Norm-based capacity control in neural networks. Conference on Learning Theory (COLT), pp. 1376–1401, 2015. ISSN 15337928. URL http://arxiv.org/abs/1503.00036. + +Behnam Neyshabur, Srinadh Bhojanapalli, and Nathan Srebro. A PAC-Bayesian Approach to Spectrally-Normalized Margin Bounds for Neural Networks. arXiv preprint, (2017):1–9, 2017. URL http://arxiv.org/abs/1707.09564. + +Jeffrey Pennington, Samuel S. Schoenholz, and Surya Ganguli. Resurrecting the sigmoid in deep learning through dynamical isometry: theory and practice. Advances in Neural Information Processing Systems 30, (Nips):1–11, 2017. URL http://arxiv.org/abs/1711.04735. + +Jeffrey Pennington, Samuel S. Schoenholz, and Surya Ganguli. The Emergence of Spectral Universality in Deep Networks. In AISTATS 2018, 2018. URL http://arxiv.org/abs/1802. 09979. + +Andrei A Rusu, Sergio Gomez Colmenarejo, Caglar Gulcehre, Guillaume Desjardins, James Kirkpatrick, Razvan Pascanu, Volodymyr Mnih, Koray Kavukcuoglu, and Raia Hadsell. Policy Distillation. arXiv, pp. 1–12, 2015. ISSN 0028-0836. doi: 10.1038/nature14236. + +Andrew M. Saxe, James L. McClelland, and Surya Ganguli. Exact solutions to the nonlinear dynamics of learning in deep linear neural networks. Advances in Neural Information Processing Systems, pp. 1–9, 2013a. + +Andrew M Saxe, James L Mcclelland, and Surya Ganguli. Learning hierarchical category structure in deep neural networks. Proceedings of the 35th annual meeting of the Cognitive Science Society, pp. 1271–1276, 2013b. + +Samuel S. Schoenholz, Justin Gilmer, Surya Ganguli, and Jascha Sohl-Dickstein. Deep Information Propagation. In International Conference on Learning Representations (ICLR),, number 2016, pp. 1–18, 2016. URL http://arxiv.org/abs/1611.01232. + +David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche, Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, Sander Dieleman, Dominik Grewe, John Nham, Nal Kalchbrenner, Ilya Sutskever, Timothy Lillicrap, Madeleine Leach, and Koray Kavukcuoglu. Mastering the game of Go with deep neural networks and tree search. Nature, 529(7585):484–489, 2016. ISSN 0028-0836. doi: 10.1038/nature16961. URL http://dx.doi.org/10.1038/nature16961. + +Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Understanding deep learning requires rethinking generalization. arXiv preprint, 2016. ISSN 10414347. doi: 10.1109/TKDE.2015.2507132. URL http://arxiv.org/abs/1611.03530. + +# A LEARNING DYNAMICS FOR DEEPER NETWORKS + +In the main text, we described the dynamics of how a single-hidden-layer network converges toward the training data singular modes $\{ \hat { s } ^ { \alpha } , \hat { \mathbf { u } } ^ { \alpha } , \hat { \mathbf { v } } ^ { \alpha } \}$ , which were originally derived in Saxe et al. (2013a). There it was also proven that for a network with $N _ { l }$ layers (i.e. $N _ { l } - 2$ hidden layers), the strength of the mode obeys the differential equation: + +$$ +\tau { \frac { d } { d t } } u = ( N _ { l } - 1 ) u ^ { 2 - 2 / ( N _ { l } - 1 ) } ( s - u ) +$$ + +This equation is separable and can be integrated for any integer number of layers. In particular, we consider the case of 5 layers (3 hidden), in which case: + +$$ +t ( s , \hat { s } ) = \frac { \tau } { 2 } \left[ \frac { \operatorname { t a n h } ^ { - 1 } \left( \sqrt { \frac { u } { \hat { s } } } \right) } { \hat { s } ^ { 3 / 2 } } - \frac { 1 } { \hat { s } \sqrt { u } } \right] _ { \epsilon } ^ { s } +$$ + +This expression cannot be analytically inverted to find $s ( t , { \hat { s } } )$ , so we numerically invert it where necessary. + +# B ALIGNMENT LAG IN RANDOMLY INITIALIZED NETWORKS + +As noted in the main text, the randomly-initialized networks behave quite similarly to the TA networks, except that the randomly-initialized networks show a lag due to the time it takes for the network’s modes to align with the data modes. In fig. 9 we explore this lag by plotting the alignment of the modes and the increase in the singular value for several randomly initialized networks. + +Notice that stronger modes align more quickly. Furthermore, the mode alignment is relatively independent – whether the teacher is rank 1 or rank 3, the alignment of the modes is similar for the mode of singular value 2. Most importantly, note how the deeper networks show substantially slower mode alignment, with alignment not completed until around when the singular value increases. This explains why deeper networks show a larger lag between randomly-initialized and TA networks – the alignment process is much slower for deeper networks. + +# C TRAIN AND TEST ERRORS AFTER A PROJECTION + +In the case of transfer learning, or more generally when we want to evaluate a network’s loss on a subset of its outputs, we need to use a slight generalization of the train and test error formulas given in the main text. Suppose we are interested in the train and test errors after applying a projection operator $\mathbf { P }$ : + +$$ +\varepsilon _ { \mathrm { t r a i n } } \equiv \frac { \sum _ { \mu = 1 } ^ { \overline { { N _ { 1 } } } } | | \mathbf { P } \mathbf { W } \hat { \mathbf { x } } ^ { \mu } - \mathbf { P } \hat { \mathbf { y } } ^ { \mu } | | _ { 2 } ^ { 2 } } { \sum _ { \mu = 1 } ^ { \overline { { N _ { 1 } } } } | | \mathbf { P } \hat { \mathbf { y } } ^ { \mu } | | _ { 2 } ^ { 2 } } , \varepsilon _ { \mathrm { t e s t } } \equiv \frac { \sum _ { \mu = 1 } ^ { \overline { { N _ { 1 } } } } | | \mathbf { P } \mathbf { W } \overline { { \mathbf { x } } } ^ { \mu } - \mathbf { P } \overline { { \mathbf { y } } } ^ { \mu } | | _ { 2 } ^ { 2 } } { \sum _ { \mu = 1 } ^ { \overline { { N _ { 1 } } } } | | \mathbf { P } \overline { { \mathbf { y } } } ^ { \mu } | | _ { 2 } ^ { 2 } } , +$$ + +respectively. As in the main text, we can rexpress these as: + +$$ +\varepsilon _ { \mathrm { t r a i n } } = \frac { \mathrm { T r } { \mathbf { W } } ^ { T } { \mathbf { P } } ^ { T } { \mathbf { P } } { \mathbf { W } } - 2 \mathrm { T r } { \mathbf { W } } ^ { T } { \mathbf { P } } ^ { T } { \mathbf { P } } \Sigma ^ { 3 1 } + \mathrm { T r } { \Sigma ^ { 3 1 } } ^ { T } { \mathbf { P } } ^ { T } { \mathbf { P } } \Sigma ^ { 3 1 } } { \mathrm { T r } \Sigma ^ { 3 1 } ^ { T } { \mathbf { P } } ^ { T } { \mathbf { P } } \Sigma ^ { 3 1 } } , +$$ + +$$ +\varepsilon _ { \mathrm { t e s t } } = \frac { \mathrm { T r } { \mathbf { W } } ^ { T } { \mathbf { P } } ^ { T } { \mathbf { P } } { \mathbf { W } } - 2 \mathrm { T r } { \mathbf { W } } ^ { T } { \mathbf { P } } ^ { T } { \mathbf { P } } \overline { { { \mathbf { W } } } } + \mathrm { T r } \overline { { { \mathbf { W } } } } ^ { T } { \mathbf { P } } ^ { T } { \mathbf { P } } \overline { { { \mathbf { W } } } } } { \mathrm { T r } \overline { { { \mathbf { W } } } } ^ { T } { \mathbf { P } } ^ { T } { \mathbf { P } } \overline { { { \mathbf { W } } } } } . +$$ + +Using the cyclic property of the trace, we can modify these to get: + +$$ +\varepsilon _ { \mathrm { t r a i n } } = \frac { \mathrm { T r } { \bf P } { \bf W } { \bf W } ^ { T } { \bf P } ^ { T } - 2 \mathrm { T r } { \bf P } \Sigma ^ { 3 1 } { \bf W } ^ { T } { \bf P } ^ { T } + \mathrm { T r } { \bf P } \Sigma ^ { 3 1 } \Sigma ^ { 3 1 ^ { T } } { \bf P } ^ { T } } { \mathrm { T r } { \bf P } \Sigma ^ { 3 1 } \Sigma ^ { 3 1 ^ { T } } { \bf P } ^ { T } } , +$$ + +$$ +\varepsilon _ { \mathrm { t e s t } } = \frac { \mathrm { T r } \mathbf { P } \mathbf { W } \mathbf { W } ^ { T } \mathbf { P } ^ { T } - 2 \mathrm { T r } \mathbf { P } \overline { { \mathbf { W } } } \mathbf { W } ^ { T } \mathbf { P } ^ { T } + \mathrm { T r } \mathbf { P } \overline { { \mathbf { W } } } \mathbf { W } ^ { T } \mathbf { P } ^ { T } } { \mathrm { T r } \mathbf { P } \overline { { \mathbf { W } } } \mathbf { W } ^ { T } \mathbf { P } ^ { T } } . +$$ + +As before, we express these in terms of the student, training data and teacher SVDs, $\mathbf { W } = \mathbf { U } \mathbf { S } \mathbf { V } ^ { T }$ $\begin{array} { r } { \pmb { \Sigma } ^ { 3 1 } = \hat { \mathbf { U } } \hat { \mathbf { S } } \hat { \mathbf { V } } ^ { T } } \end{array}$ , and $\overline { { \mathbf { W } } } = \overline { { \mathbf { U } } } \overline { { \mathbf { S } } } \overline { { \mathbf { V } } } ^ { T }$ respectively. Specifically, + +$$ +\begin{array} { r } { \operatorname { t r a i n } = \Big [ \sum _ { \beta = 1 } ^ { \mathbb { N } _ { 3 } } \hat { s } _ { \beta } ^ { 2 } \vert \vert { \mathbf { P } } \hat { \mathbf { a } } ^ { \alpha } \vert \vert _ { 2 } ^ { 2 } \Big ] ^ { - 1 } \Big [ \sum _ { \alpha = 1 } ^ { N _ { 2 } } s _ { \alpha } ^ { 2 } \vert \vert { \mathbf { P } } \mathbf { u } ^ { \alpha } \vert \vert _ { 2 } ^ { 2 } + \sum _ { \beta = 1 } ^ { \mathbb { N } _ { 3 } } \hat { s } _ { \beta } ^ { 2 } \vert \vert { \mathbf { P } } \hat { \mathbf { a } } ^ { \alpha } \vert \vert _ { 2 } ^ { 2 } - 2 \sum _ { \alpha = 1 } ^ { N _ { 2 } } \sum _ { \beta = 1 } ^ { \mathbb { N } _ { 3 } } s _ { \alpha } \hat { s } _ { \beta } \big ( { \mathbf { P } } \mathbf { u } ^ { \alpha } \cdot { \mathbf { P } } \hat { \mathbf { u } } ^ { \beta } \big ) \big ( { \mathbf { v } } ^ { \alpha } \cdot { \mathbf { \hat { v } } } ^ { \beta } \big ) \Big ] , } \end{array} +$$ + +$$ +\begin{array} { r } { \varepsilon _ { \mathrm { t e s t } } = \Big [ \sum _ { \beta = 1 } ^ { \mathbb { N } _ { 2 } } \bar { s } _ { \beta } ^ { 2 } \big | \big | { \bf P } \bar { \bf u } ^ { \alpha } \big | \big | _ { 2 } ^ { 2 } \Big ] ^ { - 1 } \Big [ \sum _ { \alpha = 1 } ^ { N _ { 2 } } s _ { \alpha } ^ { 2 } \big | \big | { \bf P } { \bf u } ^ { \alpha } \big | \big | _ { 2 } ^ { 2 } + \sum _ { \beta = 1 } ^ { \mathbb { N } _ { 2 } } \bar { s } _ { \beta } ^ { 2 } \big | \big | { \bf P } \bar { \bf u } ^ { \alpha } \big | \big | _ { 2 } ^ { 2 } - 2 \sum _ { \alpha = 1 } ^ { N _ { 2 } } \sum _ { \beta = 1 } ^ { \mathbb { N } _ { 2 } } s _ { \alpha } \bar { s } _ { \beta } \big ( { \bf P } { \bf u } ^ { \alpha } \cdot { \bf P } { \bf { \bar { u } } } ^ { \beta } \big ) \big ( { \bf v } ^ { \alpha } \cdot { \bf \bar { v } } ^ { \beta } \big ) \Big ] . } \end{array} +$$ + +# D TRANSFER LEARNING DERIVATIONS & DETAILS + +Thm 1 (Transfer theorem) The transfer benefit $\scriptstyle { \mathcal { T } } ^ { A B }$ : + +• Is unaffected by the $\overline { { \mathbf { U } } } ^ { A }$ and $\overline { { \mathbf { U } } } ^ { B }$ . +• Is completely determined by only $\sigma _ { z } ^ { 2 }$ $, \overline { { \mathbf { S } } } ^ { A } , \overline { { \mathbf { S } } } ^ { B }$ , and the $\overline { { N } } _ { 2 } ^ { A }$ by $\overline { { N } } _ { 2 } ^ { B }$ similarity matrix $\overline { { \mathbf { Q } } } =$ $\overline { { \mathbf { V } } } ^ { A T } \overline { { \mathbf { V } } } ^ { B }$ . + +![](images/f7d69e78559f4561bf6dde026948060bf03ae8cb1ead40ce9131543b8df1331b.jpg) +Figure 9: Alignment of randomly-initialized network modes to data modes and growth of singular values, plotted for 1 hidden layer (first two rows, a-d) and 3 hidden layers (last two rows, e-h), and for a rank 1 teacher (first and third rows, a & e), or a rank 3 teacher (second and fourth rows, b-d & f-h). The columns are the different modes, with respective singular values of 6, 4, and 2. $\sigma _ { z }$ was set to 1. The deeper networks show substantially slower mode alignment, with alignment not completed until around when the singular value increases. + +Proof: We define + +$$ +\begin{array} { l l } { { { \overline { { { \cal { \bf { U } } } } } } ^ { A B } = \begin{array} { c } { { { \overline { { { \cal { N } } } } } _ { 3 } } } \\ { { { \overline { { { \cal { N } } } } } _ { 3 } } } \\ { { { \overline { { { \cal { N } } } } } _ { 3 } } } \end{array} } } & { { { \overline { { { \cal { N } } } } } _ { 3 } ^ { A } \begin{array} { c } { { { \overline { { { \cal { N } } } } } _ { 2 } ^ { B } } } \\ { { \left| \begin{array} { c } { { { \bf { \overline { { { \bf { U } } } } } } ^ { A } } } \end{array} \right| } } } \\ { { { \overline { { { \bf { U } } } } } ^ { B } } } \end{array} } & { { { \overline { { { \bf { S } } } } } ^ { A B } = \begin{array} { c } { { { \overline { { { \cal { N } } } } } _ { 2 } ^ { A } } } \\ { { { \overline { { { \cal { N } } } } } _ { 2 } ^ { B } } } \end{array} } } \\ { { { \overline { { { \cal { N } } } } } _ { 2 } ^ { A B } = \begin{array} { c } { { { \overline { { { \cal { N } } } } } _ { 3 } ^ { A } } } \end{array} } } & { { { \overline { { { \bf { U } } } } } _ { 2 } ^ { B } } } \end{array} +$$ + +$$ +\mathbf { \overline { { W } } } ^ { A + B } = [ \frac { \mathbf { \overline { { U } } } ^ { A } } { \mathbf { 0 } } | \begin{array} { c } { \mathbf { 0 } } \\ { \mathbf { \overline { { U } } } ^ { B } } \end{array} ] [ \frac { \mathbf { \overline { { S } } } ^ { A } } { \mathbf { 0 } } | \begin{array} { c } { \mathbf { 0 } } \\ { \mathbf { \overline { { S } } } ^ { B } } \end{array} ] [ \frac { \mathbf { \overline { { V } } } ^ { A ^ { T } } } { \mathbf { \overline { { V } } } ^ { B ^ { T } } } ] +$$ + +Because of the 0 blocks in UAB, the vectors in blocks corresponding to task $A$ and task $B$ are completely orthogonal, so UAB remains orthonormal. Thus the relationship between the $\overline { { \mathbf { U } } } ^ { A }$ and $\overline { { \mathbf { U } } } ^ { A }$ is irrelevant to the transfer. (In our simulations we use arbitrary orthonormal matrices for $\overline { { \mathbf { U } } } ^ { A }$ and $\overline { { \mathbf { U } } } ^ { B }$ .) Therefore the transfer effects will be entirely driven by the relationship between the matrices $\overline { { \mathbf { V } } } ^ { A }$ and $\overline { { \mathbf { V } } } ^ { B }$ and the singular values. + +We define $\overline { { N } } _ { 2 } ^ { A }$ by $\overline { { N } } _ { 2 } ^ { B }$ similarity matrix $\mathbf { \overline { { Q } } } = \mathbf { \overline { { V } } } ^ { A ^ { T } } \mathbf { \overline { { V } } } ^ { B }$ . If we think of the columns of each $\overline { { \mathbf { V } } }$ as spanning a low dimensional feature space in $\overline { { N } } _ { 1 }$ dimensional input space that is important for each task, then $\overline { { \mathbf { Q } } }$ reflects the input feature subspace similarity matrix. We can now calculate the singular values of WA+ B. First, note that the input singular modes of WA+B a re eigenvectors of $\overline { { \mathbf { W } } } ^ { A + B ^ { T } } \overline { { \mathbf { W } } } ^ { A + B }$ B, and the associated singular values are square roots of the eigenvalues of WA+B. Now + +$$ +\begin{array} { r } { \overline { { \mathbf { W } } } ^ { A + B ^ { T } } \overline { { \mathbf { W } } } ^ { A + B } = \overline { { \mathbf { V } } } ^ { A B } \overline { { \mathbf { S } } } ^ { A B } \overline { { \mathbf { U } } } ^ { A B ^ { T } } \overline { { \mathbf { U } } } ^ { A B } \overline { { \mathbf { S } } } ^ { A B } \overline { { \mathbf { V } } } ^ { A B ^ { T } } = \overline { { \mathbf { V } } } ^ { A B } \overline { { \mathbf { S } } } ^ { A B ^ { 2 } } \overline { { \mathbf { V } } } ^ { A B ^ { T } } } \end{array} +$$ + +Now if $\vec { c }$ is an eigenvector of this matrix: + +$$ +\overline { { { \bf V } } } ^ { A B } \overline { { { \bf S } } } ^ { A B ^ { 2 } } \overline { { { \bf V } } } ^ { A B ^ { T } } \vec { c } = \lambda \vec { c } +$$ + +This implies that + +$$ +\mathbf { \overline { { { V } } } } ^ { A B ^ { T } } \mathbf { \overline { { { V } } } } ^ { A B } \mathbf { \overline { { { S } } } } ^ { A B ^ { 2 } } \mathbf { \overline { { { V } } } } ^ { A B ^ { T } } { \vec { c } } = \lambda \mathbf { \overline { { { V } } } } ^ { A B ^ { T } } { \vec { c } } +$$ + +Hence eigenvalues of VABSAB2V T are also eigenvalues of VABT V $\overline { { { \bf V } } } ^ { A B ^ { T } } \overline { { { \bf V } } } ^ { A B } \overline { { { \bf S } } } ^ { A B ^ { 2 } }$ , with the mapping between the eigenvectors given by $\overline { { \mathbf { V } } } ^ { A B }$ . Furthermore, this mapping must be a bijection for eigenvectors with non-zero eigenvalues, since the matrices have the same rank (the rank of $\overline { { \mathbf { V } } } ^ { A B }$ ). To see this, note that SAB 2 i s full rank. From this, it is clear that + +$$ +\mathrm { r a n k } \overline { { { \mathbf { V } } } } ^ { A B ^ { T } } \overline { { { \mathbf { V } } } } ^ { A B } \overline { { { \mathbf { S } } } } ^ { A B ^ { 2 } } = \mathrm { r a n k } \overline { { { \mathbf { V } } } } ^ { A B ^ { T } } \overline { { { \mathbf { V } } } } ^ { A B } = \mathrm { r a n k } \overline { { { \mathbf { V } } } } ^ { A B } . +$$ + +Furthermore, SAB2 is positive definite, so + +$$ +\operatorname { r a n k } { \overline { { \mathbf { V } } } } ^ { A B } { \overline { { \mathbf { S } } } } ^ { A B ^ { 2 } } { \overline { { \mathbf { V } } } } ^ { A B ^ { T } } = \operatorname { r a n k } { \overline { { \mathbf { V } } } } ^ { A B } . +$$ + +Now that we know the eigenvectors of these matrices are in bijection, note that: + +$$ +\begin{array}{c} \overline { { \mathbf { V } } } ^ { A B ^ { T } } \overline { { \mathbf { V } } } ^ { A B } \overline { { \mathbf { S } } } ^ { A B ^ { 2 } } = [ \frac { \overline { { \mathbf { V } } } ^ { A ^ { T } } } { \overline { { \mathbf { V } } } ^ { B ^ { T } } } ] [ \begin{array} { c } { \overline { { \mathbf { V } } } ^ { A } \begin{array} { c } { \overline { { \mathbf { V } } } ^ { B } } \end{array} } \end{array} ] [ \frac { \overline { { \mathbf { S } } } ^ { A ^ { 2 } } } { \mathbf { 0 } } \end{array} ] \frac { \mathbf { 0 } } { \overline { { \mathbf { S } } } ^ { B ^ { 2 } } } ] = [ \begin{array} { c c } { \mathbf { I } } & { \mathbf { Q } } \\ { \mathbf { Q } ^ { \mathbf { T } } } & { \mathbf { I } } \end{array} ] [ \frac { \overline { { \mathbf { S } } } ^ { A ^ { 2 } } } { \mathbf { 0 } } \begin{array} { c } { \mathbf { [ \begin{array} { c } { \mathbf { 0 } } \\ { \overline { { \mathbf { S } } } ^ { B ^ { 2 } } } \end{array} ] } \overline { { \mathbf { S } } } ^ { B ^ { 2 } } } \end{array} ] +$$ + +Because the output modes don’t matter (as noted above), the alignment between the eigenvectors of VABSAB2V ABT and $\overline { { \mathbf { V } } } ^ { A }$ , weighted by their respective eigenvalues, gives the transfer benefit. + +For any given tasks, the transfer benefit can be calculated using our theory. However, in certain special cases, we can give exact answers. For example, in the rank one case with equal singular values between the tasks $\mathit { \Pi } _ { \overline { { { s } } } _ { A } } ^ { \prime } = \mathit { \Pi } _ { \overline { { { s } } } _ { B } } ^ { \prime } = \mathit { \Pi } _ { \overline { { { s } } } } ^ { \prime }$ ), the matrix + +$$ +\left[ \begin{array} { l l } { \mathbf { I } } & { \mathbf { Q } } \\ { \mathbf { Q } ^ { \mathbf { T } } } & { \mathbf { I } } \end{array} \right] \left[ \frac { \mathbf { \overline { { S } } } ^ { A ^ { 2 } } \mathbf { \Phi } } { \mathbf { 0 } } \right] \mathbf { \overline { { S } } } ^ { B ^ { 2 } } \mathbf { \Phi } ] +$$ + +reduces to + +$$ +\left[ \begin{array} { l l } { 1 } & { q } \\ { q } & { 1 } \end{array} \right] \overline { { s } } ^ { 2 } +$$ + +with eigenvalues $s \sqrt { 1 \pm q }$ and eigenvectors + +$$ +\left[ \begin{array} { c c } { 1 } & { 1 } \\ { 1 } & { - 1 } \end{array} \right] +$$ + +Corresponding to the shared structure between the tasks and the differences between them. We note that the sign of the alignment $q$ is irrelevant as a special case of the fact (noted above) that any orthogonal transformation on the output modes does not affect transfer. + +# D.1 MISALIGNMENT AND INTERFERENCE + +Why is there interference between tasks which are not well aligned? In the rank one case, we are effectively changing the (input) singular dimensions of $\overline { { \mathbf { Y } } } _ { A }$ from $\overline { { \mathbf { V } } } ^ { A }$ to $\overline { { \mathbf { V } } } ^ { A B }$ . The two singular modes of VAB correspond to the shared structure between the tasks (weighted by the relative signal strengths), and the differences between them, respectively. Although we may be improving our estimates of the shared mode if $q > 0$ (by increasing its singular value relative to ${ \overline { { s } } } _ { A }$ ), we are actually decreasing its alignment with $\overline { { \mathbf { V } } } ^ { A }$ unless $q = 1$ . This misalignment is captured by the second mode of $\overline { { \mathbf { V } } } ^ { A B }$ , but the increase in the singular value of the first mode must come at the cost of a decrease in the singular value of the second mode. See Fig. 10 for a conceptual illustration of this. This means that the multi-task setting allows the distinctions between the tasks to sink towards the sea of noise, while pulling out the common structure. In other words, transferring knowledge from one task always comes at the cost of ignoring differences between the tasks. Furthermore, incorporating a task $B$ allows its noise to seep into the task $A$ signal. Together, these two effects help to explain why transfer can be sometimes beneficial but sometimes detrimental. + +![](images/2ff9eeb17e34a1c5c018c10339262e9b2643717551b0503ce8da75485a108ec8.jpg) +Figure 10: Conceptual cartoon of how $\mathcal { T } ^ { A B }$ , the transfer benefit (or cost) arises from alignment between the task’s input modes. + +# E NON-GRADIENT TRAINING ALGORITHM + +In Fig. 11 we show the match between the error achieved by training the student by gradient descent and the optimal stopping error predicted by the non-gradient shrinkage algorithm in the case of a rank-1 teacher. + +![](images/8fe699450a90e0a1da920afb212efc64c0b70cce8fa419ef6569d47e281026cc.jpg) +Figure 11: Match between optimal stopping error prediction from non-gradient training algorithm and empirical optimal stopping error for a rank-1 teacher. + +# F TRANSFER RESULTS GENERALIZE TO NON-LINEAR NETWORKS + +Since most deep learning practitioners do not train linear networks, it is important that our theoretical insights generalize beyond this simple case. In this section we show that the transfer patterns qualitatively generalize to non-linear networks. + +Here, we show results from teacher networks with $\overline { { N } } _ { 1 } = 1 0 0 \overline { { N } } _ { 3 } = 5 0$ , $\overline { { N } } _ { 2 } = 4$ (thus the task is higher rank) and leaky relu non-linearities at the hidden and output layers. We train a student with leaky relu units and $N _ { 2 } = N _ { 3 }$ to solve this task. Results qualitatively look quite similar to those in Fig 5. of the main text for rank one linear teachers, see below. Thus our insights into transfer may help to understand multi-task benefits in more complicated architectures. + +![](images/3aa21b341a46731773f7366f14f4c4df08b4e4ea25985a881fa5ca23d11fc270.jpg) +Figure 12: Transfer benefit $\mathcal { T } ^ { A B } ( \overline { { s } } _ { A } , \overline { { s } } _ { B } , q )$ for non-linear teachers and students, plotted at different values of ${ \overline { { s } } } _ { A }$ . (a) $\overline { { s } } _ { A } = 0 . 8 4 = \sqrt [ 4 ] { A }$ . With support from another aligned task, especially one with moderately higher SNR, performance on a low SNR task will improve. (b) ${ \overline { { s } } } _ { A } = 3$ . Tasks with modest signals will face interference from poorly aligned tasks, but benefits from well aligned tasks. These effects are amplified by SNR. (c) $\overline { { s } } _ { A } = 1 0 0$ . Tasks with very strong signals will show little effect from other tasks (note y-axis scale), but any impact will be negative unless the tasks are very well aligned. + +# G VARYING THE NUMBER OF TRAINING EXAMPLES + +In the main text, we focused on the test error dynamics in the case in which the number of examples equalled the number of inputs. Here we show how the formula for test error curves is modified as the number of training examples $P$ is varied. For simplicity, when $P \neq N _ { 1 }$ , we focus on the case of a full rank student with aspect ratio $A = 1$ (so that $N _ { 1 } = N _ { 2 } = N _ { 3 }$ ). The more general case of lower rank students with non-unity aspect ratios can be easily found from this case, but with some additional bookkeeping. + +As before, we assume the teacher generates noisy outputs from a set of $P$ inputs: + +$$ +\hat { \mathbf { y } } ^ { \mu } = \overline { { \mathbf { W } } } \hat { \mathbf { x } } ^ { \mu } + \mathbf { z } ^ { \mu } \qquad \mathrm { f o r } \quad \mu = 1 , \ldots , \mathbf { P } . +$$ + +![](images/cdfbc5d1756ec978413726647b732f78c395fed4934518082d5a82318c0a50f6.jpg) +Figure 13: The effects of varying the number of training examples $P$ . (a) Test error for a student learning from a rank-1 teacher with an SNR of 3, with different numbers of inputs. (b,c) Minimum generalization error plotted against $\sqrt { P / N _ { 1 } }$ and SNR · $\sqrt { P / N _ { 1 } }$ , respectively, at different SNRs. When $P \geq N _ { 1 }$ , the minimum generalization error is simply determined by $\mathrm { S N R } \sqrt { P / N _ { 1 } }$ , so all curves converge to a single asymptotic line in (c) as $P$ increases. When $P < N _ { 1 }$ , however, the curves for different SNRs separate because the projection and noise effects depend on initial SNR. (d) Optimal stopping error for gaussian vs. orthogonal inputs, showing a strong correlation. Thus our use of orthogonal inputs in the theory also yields insight into the more general case of approximately unit norm Gaussian inputs. (For all panels $N _ { 1 } = N _ { 2 } = N _ { 3 } = 1 0 0$ , ${ \overline { { N } } } _ { 2 } ^ { - } = 1 .$ ) + +This training set yields important second-order training statistics that will guide student learning: + +$$ +\begin{array} { r } { \pmb { \Sigma } ^ { 1 1 } \equiv \hat { \mathbf { X } } \hat { \mathbf { X } } ^ { T } \qquad \pmb { \Sigma } ^ { 3 1 } \equiv \hat { \mathbf { Y } } \hat { \mathbf { X } } ^ { T } = \overline { { \mathbf { W } } } \hat { \mathbf { X } } \hat { \mathbf { X } } ^ { T } + \mathbf { Z } \hat { \mathbf { X } } ^ { T } . } \end{array} +$$ + +Here $\hat { \mathbf { X } } , \hat { \mathbf { Y } }$ , and $\mathbf { Z }$ are each $\overline { { N } } _ { 1 }$ by $P$ , $\overline { { N } } _ { 3 }$ by $P$ , and $\overline { { N } } _ { 3 }$ by $P$ matrices respectively, whose $\mu ^ { \mathrm { i } }$ ’th columns are $\hat { \mathbf { x } } ^ { \mu } , \hat { \mathbf { y } } ^ { \mu }$ , and $\hat { \mathbf { z } } ^ { \mu }$ , respectively. $\dot { \mathbf { \Sigma } } ^ { 1 \mathrm { 1 } }$ is an $\overline { { N } } _ { 1 }$ by $\overline { { N } } _ { 1 }$ input correlation matrix, and $\pmb { \Sigma } ^ { 3 1 }$ is an $\overline { { N } } _ { 3 }$ by $\overline { { N } } _ { 1 }$ the input-output correlation matrix. We choose the matrix elements $z _ { i } ^ { \mu }$ of the noise matrix $\mathbf { Z }$ to be drawn iid from a Gaussian with zero mean and variance $\sigma _ { z } ^ { 2 } / \overline { { N } } _ { 1 }$ . The noise scaling is chosen so the singular values of the teacher $\overline { { \mathbf { W } } }$ and the noise $\mathbf { Z }$ are both $O ( 1 )$ , leading to non-trivial generalization effects. Furthermore, we chose training inputs to be close to unit-norm, and make the input covariance matrix $\pmb { \Sigma } ^ { 1 1 }$ as white as possible (whitening is a common pre-processing step for inputs). When $P > \overline { { N } } _ { 1 }$ , this can be done by choosing the rows of $\hat { \bf X }$ to be orthonormal and then scaling up by $\sqrt { P / \overline { { N } } _ { 1 } }$ , so the columns are approximately unit norm. Then $\Sigma ^ { 1 1 } = P / \overline { { N } } _ { 1 } \mathbf { I }$ is proportional to the identity. On the otherhand, if $P < \overline { { N } } _ { 1 }$ , we choose the columns of $\hat { \bf X }$ to be orthonormal, so that $\pmb { \Sigma } ^ { 1 1 } = \pmb { \mathcal { P } } ^ { | | }$ , where $\mathcal { P } ^ { | | }$ is a projection operator onto the $P$ dimensional column space of $\hat { \mathbf X }$ spanned by the input examples. Both these choices are intended to approximate the situation in which the columns of $\hat { \bf X }$ are chosen to be iid unit-norm vectors. Finally, as generalization performance will depend on the ratio of teacher singular values to the noise variance parameter $\sigma _ { z } ^ { 2 }$ we simply set $\sigma _ { z } = 1$ as in the main text. Thus, given the unit-norm inputs, we can think of the teacher singular values as signal to noise ratios (SNRs). We now examine how the dynamics of the test error evolves as we vary the number of training examples $P$ . We split our analyses into two distinct regimes: (1) the oversampled regime in which the data density $\bar { \mathcal { D } } \equiv P / N _ { 1 } > \mathrm { ~ \bar { ~ } { ~ 1 ~ } ~ }$ , and (2) the undersampled regime in which $\mathcal { D } < 1$ . + +# G.1 THE OVERSAMPLED REGIME + +The oversampled regime $\mathcal { D } > 1 \vert$ ) is relatively simple. First $\pmb { \Sigma } ^ { 1 1 }$ is scaled up by a factor of $\mathcal { D }$ . And in the input-output covariance matrix, ${ \boldsymbol { \Sigma } } ^ { 3 1 } = \overline { { \mathbf { W } } } \hat { \mathbf { X } } \hat { \mathbf { X } } ^ { T } + \mathbf { Z } \hat { \mathbf { X } } ^ { T }$ , the signal component, $\overline { { \mathbf { W } } } \hat { \mathbf { X } } \hat { \mathbf { X } } ^ { T }$ is scaled up by a factor of $\mathcal { D }$ while the noise component √ $\mathbf { Z } \hat { \mathbf { X } } ^ { T }$ has the same singular value spectrum as the $\mathcal { D } = 1$ case, up to an overall scaling by √ $\sqrt { \mathcal { D } }$ (since the rows of $\hat { \mathbf X }$ are orthogonal and all its√ singular values are equal to $\sqrt { \mathcal { D } }$ ). This leads to an increase in the effective SNR by a factor of $\sqrt { \mathcal { D } }$ . Thus overall, the test error curves for the case of $\mathcal { D } > 1$ can be simply obtained from the theory of the test error curves for $\mathcal { D } = 1$ through two modifications: (1) a boost in the SNR for the $\mathcal { D } = 1$ case by a multiplicative factor of $\sqrt { \mathcal { D } }$ , and (2) and an overall speed up in the learning time by a multiplicative factor of $\mathcal { D }$ . + +# G.2 THE UNDERSAMPLED REGIME + +For the undersampled regime $\mathcal { D } < 1 \dot { }$ ), we must account for the fact that the $P$ training inputs do not span the full $N _ { 1 }$ dimensional space of all inputs. Thus the projection operator $\mathcal { P } ^ { | | }$ onto the $P$ dimensional column space of $\hat { \mathbf X }$ plays a crucial role. Indeed the input-correlation $\pmb { \Sigma } ^ { 1 1 } = \pmb { \mathcal { P } } ^ { | | }$ . And ${ \boldsymbol { \Sigma } } ^ { 3 1 } = \overline { { \mathbf { W } } } \mathbf { \mathcal { P } } ^ { | | } + \mathbf { Z } \hat { \mathbf { X } } ^ { T }$ . This implies that the learning dynamics only transforms the composite student map W from the $P$ dimensional subspace spanned by the inputs to the $N _ { 3 }$ dimensional output space. In contrast, the student map from the $N _ { 1 } - P$ dimensional subspace orthogonal to the image of $\mathcal { P } ^ { | | }$ remains frozen. Tracing through the equations of the main paper and accounting for the projection operator $\mathcal { P } ^ { | | }$ , we find the effective aspect ratio for this undersampled learning problem (when $N _ { 3 } = N _ { 2 } = N _ { 1 } ;$ is no longer $\mathcal { A } = N _ { 3 } / \bar { N _ { 1 } }$ but rather $\mathcal { D } = P / N _ { 1 }$ . Furthermore, in the limit $\overline { { N } } _ { 3 } , \overline { { N } } _ { 1 } \infty$ while $\overline { { N } } _ { 2 }$ remains √ $O ( 1 )$ , the singular values of the signal component $\overline { { \mathbf { W } } } \mathcal { P } ^ { | | }$ of $\pmb { \Sigma } ^ { 3 1 }$ are attenuated by a factor of $\sqrt { \mathcal { D } }$ , making the associated singular vectors more susceptible to noise. Again tracing through the equations of the main paper, with all of these modifications, we find the final formula for test error curves in the undersampled measurement regime: + +$$ +\varepsilon _ { \mathsf { t e s t } } ( t ) = { \frac { \left[ ( N _ { 3 } - P ) \epsilon ^ { 2 } + ( P - { \overline { { N } } } _ { 2 } ) \langle s ( { \hat { s } } , t ) ^ { 2 } \rangle + \sum _ { \alpha = 1 } ^ { \overline { { N } } _ { 2 } } \left[ ( s _ { \alpha } ( t ) - { \overline { { s } } } _ { \alpha } ) ^ { 2 } + 2 s _ { \alpha } ( t ) { \overline { { s } } } _ { \alpha } ( 1 - { \mathcal { O } } ( { \sqrt { \overline { { D } } } } { \overline { { s } } } _ { \alpha } ) ) \right] \right] } { \left[ \sum _ { \alpha = 1 } ^ { \overline { { N } } _ { 2 } } { \overline { { s } } } _ { \alpha } ^ { 2 } \right] } } +$$ + +This equation has several modifications compared to the case $P = N _ { 1 }$ in (15). First the term in the numerator involving $N _ { 3 } - P$ reflects generalization error due to the $N _ { 3 } - P$ dimensional frozen subspace, and the initial weight variance $\epsilon ^ { 2 }$ contributes to this generalization error. The second term in the numerator involves all the $P - { \overline { { N } } } _ { 2 }$ training modes which cannot be correlated with the teacher, and the average $\langle \cdot \rangle$ is over a Marcenko-Pasteur distribution of singular values (see (13)) except with the aspect ratio $\mathcal { A }$ replaced by $\mathcal { D }$ . The third term accounts for learned correlations between the student and teacher. It involves the transformation from teacher singular values $\overline { { s } }$ to training data singular values $\hat { s }$ through the formula (11) except with the aspect ratio replacement √ $A \mathcal { D }$ , and the effective teacher singular value attenuation $\overline { { s } } \sqrt { D } \overline { { s } }$ . Similarly, the computation of the singular vector overlap is done through (12) also with the replacements $A \mathcal { D }$ and $\overline { { s } } \sqrt { D } \overline { { s } }$ . + +# G.3 COMPARISON OF THEORY AND EXPERIMENT FOR UNDER AND OVER SAMPLED MEASUREMENT REGIMES + +In Fig. 13, we show an excellent match between our theory and empirical simulations for varying values of $P$ , both in the oversampled and undersampled measurement regimes. There are a number of interesting features to note. First, although the minimum generalization error improves monotonically with $P$ , the asymptotic $t \to \infty$ ) generalization error does not, because of a frozen subspace (Advani & Saxe, 2017) of the modes that are not overfit when $P < N _ { 1 }$ , because the training data rank is $\le P$ . Second, when $P \geq N _ { 1 }$ , the minimum generalization error is simply determined by $\mathbf { S N R } \sqrt { P / N _ { 1 } }$ , so all curves converge to a single asymptotic line as $P$ increases. When $P < N _ { 1 }$ , however, the curves for different SNRs separate because the projection and noise effects depend on initial SNR. Finally, in Fig. 13D we show that approximately unit norm i.i.d. gaussian inputs yield similar results to the orthogonalized data matrices we employed in the theory, although the gaussian inputs do result in slightly higher optimal stopping error. + +# H LESS THAN FULL RANK STUDENTS + +Although we generally assumed students were full rank in the main text to simplify the calculations, our theory remains exact for TA networks of any rank. Furthermore, as shown in Fig. 14, the TA and random networks again show very similar optimal stopping generalization error, but with the optimal stopping time of the random networks lagging behind that of the TA networks. Furthermore, this lag increases as the rank of the random network decreases (because a low rank network will have less initial projection onto the random modes, there is is more alignment to be done). However, reducing the student rank does not change the optimal stopping error (as long as it is still greater than the teacher rank). + +![](images/6f1091544ee918b4ed7b6456f495e4dd5c10e618ea9cc7217b0d7c4d68a60fb8.jpg) +(c) Optimal generalization error vs. optimal(d) Optimal generalization error vs. optimal stopping time for stopping time for randomly initialized networksinitially aligned networks +Figure 14: Empirical verification that the simplifying assumptions of our theory are approximately valid in the regime we are considering at different student ranks. Initializations with random initial weights (random init.) and initializations with initial weight aligned to the noisy data SVD (aligned init.) are compared across varying student ranks. (a) The minimum generalization errors are almost identical between the different initializations and different student ranks. (b) The optimal stopping time in the randomly initialized networks consistently lags behind the aligned networks, because it takes time for the alignment to occur. This lag increases as the students rank decreases. (c) Randomly initialized networks of varying ranks obey qualitatively similar trends of increase in optimal stopping error and optimal stopping time as SNR decreases. (d) The theory predicts the aligned networks trends of increase in optimal stopping error and optimal stopping time with decreasing SNR almost perfectly. (All plots are made with a rank 1 teacher and $N _ { 1 } = N _ { 3 } = 1 0 0 \rangle$ ) \ No newline at end of file diff --git a/parse/train/ryfMLoCqtQ/ryfMLoCqtQ_content_list.json b/parse/train/ryfMLoCqtQ/ryfMLoCqtQ_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..b68b6dd5f07da53c159b230dc934b5be3b76c787 --- /dev/null +++ b/parse/train/ryfMLoCqtQ/ryfMLoCqtQ_content_list.json @@ -0,0 +1,2352 @@ +[ + { + "type": "text", + "text": "AN ANALYTIC THEORY OF GENERALIZATION DYNAMICS AND TRANSFER LEARNING IN DEEP LINEAR NETWORKS ", + "text_level": 1, + "bbox": [ + 173, + 101, + 828, + 170 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Andrew K. Lampinen Department of Psychology Stanford University lampinen@stanford.edu ", + "bbox": [ + 184, + 195, + 392, + 251 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Surya Ganguli \nDepartment of Applied Physics \nStanford University \nand \nGoogle Brain \nsganguli@stanford.edu ", + "bbox": [ + 506, + 195, + 715, + 279 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 315, + 544, + 330 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Much attention has been devoted recently to the generalization puzzle in deep learning: large, deep networks can generalize well, but existing theories bounding generalization error are exceedingly loose, and thus cannot explain this striking performance. Furthermore, a major hope is that knowledge may transfer across tasks, so that multi-task learning can improve generalization on individual tasks. However we lack analytic theories that can quantitatively predict how the degree of knowledge transfer depends on the relationship between the tasks. We develop an analytic theory of the nonlinear dynamics of generalization in deep linear networks, both within and across tasks. In particular, our theory provides analytic solutions to the training and testing error of deep networks as a function of training time, number of examples, network size and initialization, and the task structure and SNR. Our theory reveals that deep networks progressively learn the most important task structure first, so that generalization error at the early stopping time primarily depends on task structure and is independent of network size. This suggests any tight bound on generalization error must take into account task structure, and explains observations about real data being learned faster than random data. Intriguingly our theory also reveals the existence of a learning algorithm that proveably out-performs neural network training through gradient descent. Finally, for transfer learning, our theory reveals that knowledge transfer depends sensitively, but computably, on the SNRs and input feature alignments of pairs of tasks. ", + "bbox": [ + 233, + 345, + 766, + 623 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 641, + 336, + 657 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Many deep learning practitioners closely monitor both training and test errors, hoping to achieve both a small training error and a small generalization error, or gap between testing and training errors. Training is usually stopped early, before overfitting sets in and increases the test error. This procedure often results in large networks that generalize well on structured tasks, raising an important generalization puzzle (Zhang et al., 2016): many existing theories that upper bound generalization error (Bartlett & Mendelson, 2002; Neyshabur et al., 2015; Dziugaite & Roy, 2017; Golowich et al., 2017; Neyshabur et al., 2017; Bartlett et al., 2017; Arora et al., 2018, e.g) in terms of various measures of network complexity yield very loose bounds. Therefore they cannot explain the impressive generalization capabilities of deep nets. ", + "bbox": [ + 174, + 666, + 825, + 791 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In the absence of any such tight and computable theory of deep network generalization error, we develop an analytic theory of generalization error for deep linear networks. Such networks exhibit highly nonlinear learning dynamics (Saxe et al., 2013a;b) including many prominent phenomena like learning plateaus, saddle points, and sudden drops in training error. Moreover, theory developed for the learning dynamics of deep linear networks directly inspired better initialization schemes for nonlinear networks (Schoenholz et al., 2016; Pennington et al., 2017; 2018). Here we show that deep linear networks also provide a good theoretical model for generalization dynamics. In particular we develop an analytic theory for both the training and test error of a deep linear network as a function of training time, number of training examples, network architecture, initialization, and task structure and SNR. Our theory matches simulations and reveals that deep networks with small weight initialization learn the most important aspects of a task first. Thus the optimal test error at the early stopping time depends largely on task structure and SNR, and not on network architecture, as long as the architecture is expressive enough to attain small training error. Thus our exact analysis of generalization dynamics reveals the important lesson that any theory that seeks to upper bound generalization error based only on network architecture, and not on task structure, is likely to yield exceedingly loose upper bounds. Intriguingly our theory also reveals a non-gradient-descent learning algorithm that proveably out-performs neural network training through gradient descent. ", + "bbox": [ + 174, + 799, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 215 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We also apply our theory to multi-task learning, which enables knowledge transfer from one task to another, thereby further lowering generalization error (Dong et al., 2015; Rusu et al., 2015; Luong et al., 2016, e.g.). Moreover, knowledge transfer across tasks may be key to human generalization capabilities (Hansen et al., 2017; Lampinen et al., 2017). We provide an analytic theory for how much knowledge is transferred between pairs of tasks, and we find that it displays a sensitive but computable dependence on the relationship between pairs of tasks, in particular, their SNRs and feature space alignments. ", + "bbox": [ + 174, + 222, + 825, + 319 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We note that a related prior work (Advani & Saxe, 2017) studied generalization in shallow and deep linear networks, but that work was limited to networks with a single output, thereby precluding the possibility of addressing the issue of transfer learning. Moreover, analyzing networks with a single output also precludes the possibility of addressing interesting tasks that require higher dimensional outputs, for example in language (Dong et al., 2015, e.g.), generative models (Goodfellow et al., 2014, e.g), and reinforcement learning (Mnih et al., 2015; Silver et al., 2016, e.g). ", + "bbox": [ + 174, + 325, + 825, + 411 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 THEORETICAL FRAMEWORK ", + "text_level": 1, + "bbox": [ + 176, + 430, + 441, + 446 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We work in a student-teacher scenario in which we consider an ensemble of low rank, noisy teacher networks that generate training data for a potentially more complex student network, and define the training and test errors whose dynamics we wish to understand. ", + "bbox": [ + 174, + 462, + 825, + 503 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 AN ENSEMBLE OF LOW-RANK NOISY TEACHERS ", + "text_level": 1, + "bbox": [ + 174, + 521, + 545, + 535 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We first consider an ensemble of 3-layer linear teacher networks with $\\overline { { N } } _ { i }$ units in layer $i$ , and weight matrices $\\overline { { \\mathbf { W } } } ^ { 2 1 } \\in \\mathbb { R } ^ { \\overline { { N _ { 2 } } } \\times \\overline { { N } } _ { 1 } }$ and $\\overline { { \\mathbf { W } } } ^ { 3 2 } \\in \\mathbb { R } ^ { \\overline { { N _ { 3 } } } \\times \\overline { { N _ { 2 } } } }$ between the input to hidden, and hidden to output layers, respectively. The teacher network thus computes the composite map $\\overline { { \\mathbf { y } } } = \\overline { { \\mathbf { W } } } \\mathbf { x }$ , where $\\dot { \\overline { { \\mathbf { W } } } } \\equiv \\overline { { \\mathbf { W } } } ^ { 3 \\bar { 2 } } \\overline { { \\mathbf { W } } } ^ { 2 1 }$ . Of critical importance is the singular value decomposition (SVD) of $\\overline { { \\mathbf { W } } }$ : ", + "bbox": [ + 173, + 545, + 825, + 612 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/18e92e9c21acd8fdfe61f3b0f2f83ca93e2158c5227d0fe9be82985d71af48cd.jpg", + "text": "$$\n\\overline { { \\mathbf { W } } } = \\overline { { \\mathbf { U } } } \\overline { { \\mathbf { S } } } \\overline { { \\mathbf { V } } } ^ { T } = \\sum _ { \\alpha = 1 } ^ { \\overline { { N _ { 2 } } } } \\overline { { s } } ^ { \\alpha } \\overline { { \\mathbf { u } } } ^ { \\alpha } \\overline { { \\mathbf { v } } } ^ { \\alpha T } ,\n$$", + "text_format": "latex", + "bbox": [ + 387, + 618, + 607, + 664 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Where $\\overline { { \\mathbf { U } } } \\in \\mathbb { R } ^ { \\overline { { N _ { 3 } } } \\times \\overline { { N } } _ { 2 } }$ and $\\overline { { \\mathbf { V } } } \\in \\mathbb { R } ^ { \\overline { { N _ { 1 } } } \\times \\overline { { N } } _ { 2 } }$ are both matrices with orthonormal columns and $\\overline { \\mathbf { S } }$ is an $\\overline { { N _ { 2 } } } \\times \\overline { { N _ { 2 } } }$ diagonal matrix. We construct a random teacher by picking $\\overline { { \\mathbf { U } } }$ and $\\overline { { \\mathbf { V } } }$ to be random matrices with orthonormal columns and choosing $O ( 1 )$ values for the diagonal elements of $\\overline { { \\mathbf { S } } }$ . We work in the limit $\\overline { { N _ { 1 } } } , \\overline { { N _ { 3 } } } \\infty$ with an $O ( 1 )$ aspect ratio $\\mathcal { A } = \\overline { { N _ { 3 } } } / \\overline { { N _ { 1 } } } \\in ( 0 , 1 ]$ so that the teacher has fewer outputs than inputs. Also, we hold $\\overline { { N } } _ { 2 } \\sim O ( 1 )$ , so the teacher has a low, finite rank, and we study generalization performance as a function of the $\\overline { { N } } _ { 2 }$ teacher singular values. ", + "bbox": [ + 173, + 670, + 825, + 765 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We further assume the teacher generates noisy outputs from a set of $\\overline { { N } } _ { 1 }$ orthonormal inputs: ", + "bbox": [ + 169, + 770, + 774, + 786 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/9e0840961c481665c78b2718bcdff3a35f1556ac3337518adc63d8550c81159a.jpg", + "text": "$$\n\\hat { { \\bf y } } ^ { \\mu } = \\overline { { { \\bf W } } } \\hat { \\bf x } ^ { \\mu } + { \\bf z } ^ { \\mu } \\qquad \\mathrm { f o r } \\quad \\mu = { \\bf 1 } , \\ldots , \\overline { { { \\bf N } } } _ { \\bf 1 } .\n$$", + "text_format": "latex", + "bbox": [ + 352, + 791, + 647, + 810 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "This training set yields important second-order training statistics that will guide student learning: ", + "bbox": [ + 169, + 816, + 807, + 832 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/f25ec0c2167a37977c208003ddeb0568aa5c5a202c1a5e030b90eba093b332e8.jpg", + "text": "$$\n\\begin{array} { r } { \\pmb { \\Sigma } ^ { 1 1 } \\equiv \\overset { \\overline { { \\boldsymbol { N } } } _ { 1 } } { \\mu = 1 } \\hat { \\mathbf { x } } ^ { \\mu } \\hat { \\mathbf { x } } ^ { \\mu T } = \\mathbf { I } , \\qquad \\pmb { \\Sigma } ^ { 3 1 } \\equiv \\overset { \\overline { { \\boldsymbol { N } } } _ { 1 } } { \\mu = 1 } \\hat { \\mathbf { y } } ^ { \\mu } \\hat { \\mathbf { x } } ^ { \\mu T } = \\overline { { \\mathbf { W } } } + \\mathbf { Z } \\hat { \\mathbf { X } } ^ { T } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 287, + 838, + 710, + 885 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Here the input covariance $\\pmb { \\Sigma } ^ { 1 1 }$ is assumed to be white (a common pre-processing step), the inputoutput covariance $\\pmb { \\Sigma } ^ { 3 1 }$ is simplified using (2), and $\\mathbf { Z } \\in \\mathbb { R } ^ { \\overline { { N } } _ { 3 } \\times \\overline { { N } } _ { 1 } }$ is the noise matrix, whose $\\mu$ ’th column is $\\mathbf { z } ^ { \\mu }$ . Its matrix elements $z _ { i } ^ { \\mu }$ are drawn iid. from a Gaussian with zero mean and variance $\\sigma _ { z } ^ { 2 } / \\overline { { N } } _ { 1 }$ . The noise scaling is chosen so the singular values of the teacher $\\overline { { \\mathbf { W } } }$ and the noise $\\mathbf { Z }$ are both $O ( 1 )$ , leading to non-trivial generalization effects. As generalization performance will depend on the ratio of teacher singular values to the noise variance parameter $\\sigma _ { z } ^ { 2 }$ , we simply set $\\sigma _ { z } = 1$ in the following. Thus we can think of teacher singular values as signal to noise ratios (SNRs). ", + "bbox": [ + 174, + 892, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 102, + 825, + 176 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Finally, we note that while we focus for ease of exposition in the main paper on the case of one hidden layer networks and a full orthonormal basis of $P = { \\overline { { N _ { 1 } } } }$ training inputs in the main paper, neither of these assumptions are essential to our theory. Indeed in Section 3.4 and App. A we extend our theory to networks of arbitrary depth, and in App. G we extend our theory to the case of white inputs with $P \\neq \\overline { { N } } _ { 1 }$ , obtaining a good match between theory and experiment in both cases. ", + "bbox": [ + 174, + 181, + 825, + 253 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 STUDENT TRAINING AND TEST ERROR ", + "text_level": 1, + "bbox": [ + 176, + 271, + 478, + 285 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Now consider a student network with $N _ { i }$ units in each layer. We assume the first and last layers match the teacher (i.e. $N _ { 1 } = \\overline { { N _ { 1 } } }$ and $N _ { 3 } = \\overline { { N _ { 3 } } }$ ) but $N _ { 2 } \\geq \\overline { { N _ { 2 } } }$ , allowing the student to have more hidden units than the teacher. We also consider deeper students (see below and App. A). Now consider any student whose input-output map is given by $\\mathbf { \\dot { y } } = \\mathbf { W } ^ { 3 2 } \\mathbf { W } ^ { 2 1 } \\equiv \\mathbf { W } \\mathbf { x }$ . Its training error on the teacher dataset in (2) and its test error over a distribution of new inputs are given by ", + "bbox": [ + 174, + 296, + 826, + 367 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/ec10a694331c27b34d51ae231b55eb44404ae9aa4b000936042e75c64c0f3aab.jpg", + "text": "$$\n\\varepsilon _ { \\mathrm { t r a i n } } \\equiv \\frac { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { W } \\hat { \\mathbf { x } } ^ { \\mu } - \\hat { \\mathbf { y } } ^ { \\mu } | | _ { 2 } ^ { 2 } } { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\hat { \\mathbf { y } } ^ { \\mu } | | _ { 2 } ^ { 2 } } , \\varepsilon _ { \\mathrm { t e s t } } \\equiv \\frac { \\langle | | \\mathbf { W } \\overline { { \\mathbf { x } } } - \\overline { { \\mathbf { y } } } | | _ { 2 } ^ { 2 } \\rangle } { \\langle | | \\overline { { \\mathbf { y } } } | | _ { 2 } ^ { 2 } \\rangle } ,\n$$", + "text_format": "latex", + "bbox": [ + 281, + 375, + 715, + 422 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "respectively. Here $\\hat { \\mathbf { x } } ^ { \\mu }$ and ${ \\hat { \\mathbf { y } } } ^ { \\mu }$ are the noisy training set inputs and outputs in (2), whereas $\\overline { { \\mathbf { x } } }$ denotes a random test input drawn from zero mean Gaussian with identity covariance, $\\overline { { \\mathbf { y } } } ^ { \\mu } = \\overline { { \\mathbf { W } } } \\overline { { \\mathbf { x } } } ^ { \\mu }$ is noise free teacher output, and $\\langle \\cdot \\rangle$ denotes an average w.r.t the distribution of the test input $\\overline { { \\mathbf { x } } }$ . Due to the orthonormality of the training and isotropy of the test inputs, both $\\varepsilon _ { \\mathrm { t r a i n } }$ and ${ \\varepsilon } _ { \\mathrm { t e s t } }$ can be expressed as ", + "bbox": [ + 174, + 429, + 825, + 488 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/2164005cd357741499916e1ea4597b4f17af0fa591d2c70c9b6722b832ef8c1d.jpg", + "text": "$$\n\\mathrm { ~ \\xi ~ } _ { \\mathrm { t r a i n } } = \\frac { \\mathrm { T } \\mathbf { F } \\mathbf { W } ^ { T } \\mathbf { W } - 2 \\mathrm { T r } \\mathbf { W } ^ { T } { \\boldsymbol { \\Sigma } } ^ { 3 1 } + \\mathrm { T r } { \\boldsymbol { \\Sigma } } ^ { 3 1 T } { \\boldsymbol { \\Sigma } } ^ { 3 1 } } { \\mathrm { T r } \\boldsymbol { \\Sigma } ^ { 3 1 T } \\boldsymbol { \\Sigma } ^ { 3 1 } } , \\mathrm { ~ \\xi ~ } _ { \\mathrm { f e s t } } = \\frac { \\mathrm { T r } \\mathbf { W } ^ { T } \\mathbf { W } - 2 \\mathrm { T r } \\mathbf { W } ^ { T } \\overline { { \\mathbf { W } } } + \\mathrm { T r } \\overline { { \\mathbf { W } } } ^ { T } \\overline { { \\mathbf { W } } } } { \\mathrm { T r } \\overline { { \\mathbf { W } } } ^ { T } \\overline { { \\mathbf { W } } } } .\n$$", + "text_format": "latex", + "bbox": [ + 181, + 494, + 825, + 535 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Both $\\varepsilon _ { \\mathrm { t r a i n } }$ and $\\varepsilon _ { \\mathrm { t e s t } }$ can be further expressed in terms of the student, training data and teacher SVDs, which we denote by $\\mathbf { W } = \\mathbf { U } \\mathbf { S } \\mathbf { V } ^ { T }$ , $\\begin{array} { r } { \\pmb { \\Sigma } ^ { 3 1 } = \\hat { \\mathbf { U } } \\hat { \\mathbf { S } } \\hat { \\mathbf { V } } ^ { T } } \\end{array}$ , and $\\overline { { \\mathbf { W } } } = \\overline { { \\mathbf { U } } } \\overline { { \\mathbf { S } } } \\overline { { \\mathbf { V } } } ^ { T }$ respectively. Specifically, ", + "bbox": [ + 174, + 545, + 831, + 579 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/9924429ca3ea20bc11ef1ca8fe58cf05d95015678f3a03aceca1e14b494d6ac4.jpg", + "text": "$$\n\\begin{array} { r l } & { \\varepsilon _ { \\mathrm { t r a i n } } = \\left[ \\overbrace { \\sum _ { \\beta = 1 } ^ { N _ { 3 } } } ^ { \\overline { { S } } _ { 3 } } \\hat { s } _ { \\beta } ^ { 2 } \\right] ^ { - 1 } \\left[ \\underset { \\alpha = 1 } { \\overset { N _ { 2 } } { \\sum _ { \\alpha } } } s _ { \\alpha } ^ { 2 } + \\underset { \\beta = 1 } { \\overset { \\overline { { N } } _ { 3 } } { \\sum _ { \\beta } } } \\hat { s } _ { \\beta } ^ { 2 } - 2 \\underset { \\alpha = 1 } { \\overset { N _ { 2 } } { \\sum _ { \\beta = 1 } } } \\sum _ { \\beta = 1 } ^ { \\overline { { N _ { 3 } } } } s _ { \\alpha } \\hat { s } _ { \\beta } \\left( \\mathbf { u } ^ { \\alpha } \\cdot \\hat { \\mathbf { u } } ^ { \\beta } \\right) \\left( \\mathbf { v } ^ { \\alpha } \\cdot \\hat { \\mathbf { v } } ^ { \\beta } \\right) \\right] , } \\\\ & { \\varepsilon _ { \\mathrm { t e s t } } = \\left[ \\underset { \\beta = 1 } { \\overset { \\overline { { N } } _ { 2 } } { \\sum _ { \\beta } } } \\overline { { s } } _ { \\beta } ^ { 2 } \\right] ^ { - 1 } \\left[ \\underset { \\alpha = 1 } { \\overset { N _ { 2 } } { \\sum _ { \\alpha } } } s _ { \\alpha } ^ { 2 } + \\underset { \\beta = 1 } { \\overset { \\overline { { N } } _ { 2 } } { \\sum _ { \\beta } } } \\frac { 1 } { s _ { \\beta } ^ { 2 } } - 2 \\underset { \\alpha = 1 } { \\overset { N _ { 2 } } { \\sum _ { \\alpha } } } \\sum _ { \\beta = 1 } ^ { \\overline { { N _ { 2 } } } } s _ { \\alpha } \\overline { { s } } _ { \\beta } \\left( \\mathbf { u } ^ { \\alpha } \\cdot \\overline { { \\mathbf { u } } } ^ { \\beta } \\right) \\left( \\mathbf { v } ^ { \\alpha } \\cdot \\overline { { \\mathbf { v } } } ^ { \\beta } \\right) \\right] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 232, + 585, + 766, + 693 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Thus as the student learns, its training and test error dynamics depends on the alignment of the time-evolving student singular modes $\\{ s ^ { \\alpha } , \\mathbf { u } ^ { \\alpha } , \\mathbf { v } ^ { \\alpha } \\}$ with the fixed training data $\\{ \\hat { s } ^ { \\alpha } , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}$ and teacher $\\{ \\overline { { s } } ^ { \\alpha } , \\bar { \\overline { { \\mathbf { u } } } } ^ { \\alpha } , \\overline { { \\mathbf { v } } } ^ { \\alpha } \\}$ singular modes respectively. ", + "bbox": [ + 176, + 698, + 823, + 741 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 SINGLE TASK GENERALIZATION DYNAMICS: THEORY AND EXPERIMENT", + "text_level": 1, + "bbox": [ + 171, + 762, + 800, + 779 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Here we derive and numerically test analytic formulas for both the training and test errors of a student network as it learns from training data generated from a teacher network. We explore the dependence of these quantitites on the student network size, student initialization, teacher SNR, and training time. ", + "bbox": [ + 174, + 794, + 826, + 837 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 STUDENT TRAINING DYNAMICS AND TRAINING-ALIGNED (TA) NETWORKS ", + "text_level": 1, + "bbox": [ + 176, + 854, + 733, + 869 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We assume the student weights undergo batch gradient descent with learning rate $\\lambda$ on the training error $\\begin{array} { r } { \\sum _ { \\mu } | | \\hat { \\mathbf { y } } ^ { \\mu } - \\mathbf { W } ^ { 3 2 } \\mathbf { W } ^ { 2 1 } \\bar { \\hat { \\mathbf { x } } ^ { \\mu } } | | _ { 2 } ^ { 2 } } \\end{array}$ , which for small $\\lambda$ is well approximated by the differential equations: ", + "bbox": [ + 174, + 881, + 821, + 911 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/df635d5402308d3a9a9f10644ccaa9227749fea9232affb61828b212aa929642.jpg", + "image_caption": [ + "Figure 1: Learning dynamics as a function of singular dimension strength. (a) shows how modes of different singular value are learned, (b) shows that there is a wave of learning that picks up singular dimensions with smaller and smaller singular values as $t \\to \\infty$ . " + ], + "image_footnote": [], + "bbox": [ + 178, + 102, + 602, + 226 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/8db3ff2fa5cb7fdcf05f43aacd234760cc422e880240ce8bc05e642b67ae268f.jpg", + "text": "$$\n\\tau \\frac { d } { d t } \\mathbf { W } ^ { 2 1 } = \\mathbf { W } ^ { 3 2 ^ { T } } \\left( \\boldsymbol { \\Sigma } ^ { 3 1 } - \\mathbf { W } ^ { 3 2 } \\mathbf { W } ^ { 2 1 } \\boldsymbol { \\Sigma } ^ { 1 1 } \\right) , \\qquad \\tau \\frac { d } { d t } \\mathbf { W } ^ { 3 2 } = \\left( \\boldsymbol { \\Sigma } ^ { 3 1 } - \\mathbf { W } ^ { 3 2 } \\mathbf { W } ^ { 2 1 } \\boldsymbol { \\Sigma } ^ { 1 1 } \\right) \\mathbf { W } ^ { 2 1 ^ { T } } ,\n$$", + "text_format": "latex", + "bbox": [ + 181, + 247, + 816, + 280 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "(where $\\tau \\equiv 1 / \\lambda$ ), which must be solved from an initial set of student weights at time $t = 0$ (Saxe et al., 2013a). We consider two classes of student initializations. The first initialization corresponds to a random student where the weights $\\mathbf { W } ^ { 2 1 }$ and $\\mathbf { W ^ { 3 2 } }$ are chosen such that the composite map $\\mathbf { W } = \\mathbf { W ^ { 3 2 } W ^ { 2 1 } }$ has an SVD $\\mathbf { W } = \\epsilon \\mathbf { U } \\mathbf { V } ^ { \\mathbf { T } }$ , where $\\mathbf { U }$ and $\\mathbf { V }$ are random singular vector matrices and all student singular vala time dependent evolution $\\epsilon$ te map undergoes. For white inputs, $\\begin{array} { r } { \\mathbf { W } ( t ) = \\mathbf { U } ( t ) \\mathbf { S } ( t ) \\mathbf { V } ( t ) ^ { T } = \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } \\mathbf { s } _ { \\alpha } ( t ) \\mathbf { u } ^ { \\alpha } ( t ) \\mathbf { v } ^ { \\alpha } ( t ) ^ { T } . } \\end{array}$ as , , and so the time-dependent student singular modes $\\{ s ^ { \\alpha } ( t ) , \\mathbf { u } ^ { \\alpha } ( \\mathbf { t } ) , \\mathbf { v } ^ { ( } \\mathbf { t } ) \\}$ converge to the training data singular modes $\\{ \\hat { s } ^ { \\alpha } , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}$ . However, the explicit dynamics of the student singular modes can be difficult to obtain analytically from random initial conditions. ", + "bbox": [ + 173, + 290, + 825, + 420 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Thus we also consider a special class of training aligned (TA) initial conditions in which $\\mathbf { W ^ { 2 1 } }$ and $\\mathbf { W ^ { 3 2 } }$ are chosen such that the composite map $\\mathbf { W } = \\mathbf { W ^ { 3 2 } W ^ { 2 1 } }$ has an SVD $\\mathbf { W } = \\epsilon \\hat { \\mathbf { U } } \\hat { \\mathbf { V } } ^ { \\mathbf { T } }$ . That is, the TA network (henceforth referred to simply as the TA) has the same singular vectors as the training data covariance $\\boldsymbol { \\Sigma } ^ { 3 1 }$ , but has all singular values equal to $\\epsilon$ . As shown in (Saxe et al., 2013a), as the TA learns according to (8), the singular vectors of its composite map W remain unchanged, while the singular values evolve as $s ^ { \\alpha } ( t ) \\stackrel { \\textstyle - } { = } s ( t , { \\hat { s } } ^ { \\alpha } )$ , where the learning curve function $s ( t , { \\hat { s } } )$ as well as its functional inverse $t ( s , { \\hat { s } } )$ is given by ", + "bbox": [ + 173, + 426, + 825, + 526 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/7500cbc7044b60e71245e55285a419d9036853bbd5df18959fcf957b69514c1b.jpg", + "text": "$$\ns ( t , \\hat { s } ) = \\frac { \\hat { s } e ^ { 2 \\hat { s } t / \\tau } } { e ^ { 2 \\hat { s } t / \\tau } - 1 + \\hat { s } / \\epsilon } , \\qquad t ( s , \\hat { s } ) = \\frac { \\tau } { 2 \\hat { s } } \\ln \\frac { \\hat { s } / \\epsilon - 1 } { \\hat { s } / s - 1 } .\n$$", + "text_format": "latex", + "bbox": [ + 308, + 527, + 691, + 564 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Here the function $s ( t , { \\hat { s } } )$ describes analytically how each training set singular value $\\hat { s }$ drives the dynamics of the corresponding TA singular value $s$ , and for notational simplicity, we have suppressed the dependence of $s ( t , { \\hat { s } } )$ on $\\tau$ and the initial condition $\\epsilon$ . As shown in Fig. 1A, for each $\\hat { s }$ , $s ( t , { \\hat { s } } )$ is a sigmoidal learning curve that undergoes aat which it rises from its small initial value of haat sition around time to its asymptotic v $\\begin{array} { r } { t / \\tau = \\frac { 1 } { 2 \\hat { s } } \\ln { \\left( \\hat { s } / \\epsilon - \\mathrm { 1 } \\right) } } \\end{array}$ $\\epsilon$ $t = 0$ $\\hat { s }$ $t / \\tau \\to \\infty$ Alternatively, we can plot $s ( t , { \\hat { s } } ) / { \\hat { s } }$ as a function of $\\hat { s }$ for different training times $t / \\tau$ , as in Fig. 1B. This shows that TA learning corresponds to a singular mode detection wave which progressively sweeps from large to small singular values. At any given training time $t$ , training data modes with singular values $\\hat { s } > t / \\tau$ have been learned, while those with singular values $\\hat { s } < t / \\tau$ have not. ", + "bbox": [ + 173, + 565, + 826, + 691 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "While the TA is more sophisticated than the random student, since it already knows the singular vectors of the training data before learning, we will see that the analytic solution for the TA learning dynamics provides a good approximation to the student learning dynamics, not only for the training error, as shown in (Saxe et al., 2013a), but also for the generalization error as shown below. ", + "bbox": [ + 173, + 698, + 825, + 755 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The results in this section assume a single hidden layer, but Saxe et al. (2013a) derived $t ( s , { \\hat { s } } )$ for networks of arbitrary depth and we apply our theory to some deeper networks. The general differential equation and derivations for deeper networks can be found in Appendix A. ", + "bbox": [ + 174, + 761, + 825, + 804 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 HOW THE TEACHER IS BURIED IN THE TRAINING DATA: A RANDOM MATRIX ANALYSIS ", + "text_level": 1, + "bbox": [ + 173, + 819, + 808, + 833 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In the previous section, we reviewed an exact analytic solution for the composite map of a TA network, namely that its singular modes are related to those of the training data through the relation ", + "bbox": [ + 173, + 844, + 825, + 873 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/2b6b38ab2445136253e3c2da9eb4b5601b0e0bf19d86f31d2d59f8f956174964.jpg", + "text": "$$\n\\begin{array} { r } { s _ { \\alpha } ( t ) = s ( t , \\hat { s } _ { \\alpha } ) , \\qquad { \\bf u } ^ { \\alpha } ( t ) = \\hat { \\bf u } ^ { \\alpha } , \\qquad { \\bf v } ^ { \\alpha } ( t ) = \\hat { \\bf v } ^ { \\alpha } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 321, + 876, + 676, + 892 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "However, computation of the generalization error through (5) then requires understanding how the teacher singular modes of $\\overline { { \\mathbf { W } } }$ are buried within the noisy training data singular modes of $\\pmb { \\Sigma } ^ { 3 1 }$ through the relation (3). Since the input matrix $\\hat { \\mathbf X }$ is orthonormal, $\\pmb { \\Sigma } ^ { 3 1 }$ is simply a perturbation of the low rank teacher $\\overline { { \\mathbf { W } } }$ by a high dimensional noise matrix $\\mathbf { Z }$ . The relation between the singular modes of a low rank matrix and its noise perturbed version has been studied extensively in Benaych-Georges $\\&$ Nadakuditi (2012), in the high dimensional limit we are working in, namely $\\overline { { N _ { 1 } } } , \\overline { { N _ { 3 } } } \\overline { { } } \\infty$ with the aspect ratio $\\mathcal { A } = \\overline { { N _ { 3 } } } / \\overline { { N _ { 1 } } } \\in \\overline { { ( 0 , 1 ] } }$ , and $\\overline { { N } } _ { 2 } \\sim O ( 1 )$ . ", + "bbox": [ + 173, + 895, + 828, + 924 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/74aa5b143963ba7d2cf4b03e7444309ed0f7fd59b33a147d86b619f88f63f9e7.jpg", + "image_caption": [ + "Figure 2: The teacher’s signal through the noise. Theoretical vs. empirical (a) histogram of singular values of noisy teacher $\\hat { s }$ . (b) $\\hat { s }$ as a function of $\\overline { { s } }$ . (c) alignment of noisy teacher and noiseless teacher singular vectors as a function of $\\overline { { s } }$ . ${ \\widetilde { N _ { 1 } } } = { \\overline { { N _ { 3 } } } } = 1 0 0 .$ ) " + ], + "image_footnote": [], + "bbox": [ + 181, + 102, + 802, + 209 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 266, + 825, + 340 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In this limit, the top $\\overline { { N } } _ { 2 }$ singular values and vectors of $\\pmb { \\Sigma } ^ { 3 1 }$ converge to $\\hat { s } ( \\overline { { s } } _ { \\alpha } )$ , where the transfer function from a teacher singular value $\\overline { { s } }$ to a training data singular value $\\hat { s }$ is given by the function ", + "bbox": [ + 173, + 347, + 823, + 377 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/2ba1154839d1485804a1e1f85264464ed778061a1065b612c52372f9c5c065a6.jpg", + "text": "$$\n{ \\hat { s } } ( { \\overline { { s } } } ) = { \\left\\{ \\begin{array} { l l } { ( { \\overline { { s } } } ) ^ { - 1 } { \\sqrt { ( 1 + { \\overline { { s } } } ^ { 2 } ) ( A + { \\overline { { s } } } ^ { 2 } ) } } } & { { \\mathrm { ~ i f ~ } } { \\overline { { s } } } > A ^ { 1 / 4 } } \\\\ { 1 + { \\sqrt { A } } } & { { \\mathrm { ~ o t h e r w i s e . } } } \\end{array} \\right. }\n$$", + "text_format": "latex", + "bbox": [ + 331, + 383, + 665, + 426 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The associated top $\\overline { { N } } _ { 2 }$ singular vectors of $\\pmb { \\Sigma } ^ { 3 1 }$ can also acquire a nontrivial overlap with the $\\overline { { N } } _ { 2 }$ modes of the teacher through the relation $\\left| \\hat { \\mathbf { u } } ^ { \\alpha } \\cdot \\overline { { \\mathbf { u } } } ^ { \\alpha } \\right| \\left| \\hat { \\mathbf { v } } ^ { \\alpha } \\cdot \\overline { { \\mathbf { v } } } ^ { \\alpha } \\right| = \\mathcal { O } ( \\overline { { s } } _ { \\alpha } )$ , where the singular vector overlap function is given by ", + "bbox": [ + 174, + 434, + 825, + 477 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/d5c4b3b9ac8ae1dc6fcedacfb57f1842d2fd7cce16e70a28d6b8b5ae04de86ab.jpg", + "text": "$$\n\\begin{array} { r } { \\mathcal { O } ( \\overline { { s } } ) = \\left\\{ \\begin{array} { l l } { \\left[ 1 - \\frac { \\mathcal { A } ( 1 + \\overline { { s } } ^ { 2 } ) } { \\overline { { s } } ^ { 2 } ( A + \\overline { { s } } ^ { 2 } ) } \\right] ^ { 1 / 2 } \\left[ 1 - \\frac { ( \\mathcal { A } + \\overline { { s } } ^ { 2 } ) } { \\overline { { s } } ^ { 2 } ( 1 + \\overline { { s } } ^ { 2 } ) } \\right] ^ { 1 / 2 } } & { \\mathrm { i f } \\overline { { s } } > \\mathcal { A } ^ { 1 / 4 } } \\\\ { 0 } & { \\mathrm { o t h e r w i s e } } \\end{array} \\right. } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 290, + 483, + 704, + 534 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The rest of the $N _ { 3 } - { \\overline { { N _ { 2 } } } }$ singular vectors of $\\pmb { \\Sigma } ^ { 3 1 }$ are orthogonal to the top $\\overline { { N } } _ { 2 }$ ones, and their singular values are distributed according to the the Marchenko-Pastur (MP) distribution: ", + "bbox": [ + 171, + 541, + 825, + 570 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/7cbae00fa09fe50ba7290dcc0e7ab93f7dd633fd65337439d8702ccd8624c824.jpg", + "text": "$$\nP ( \\hat { s } ) = \\left\\{ \\begin{array} { l l } { \\frac { \\sqrt { 4 A - ( \\hat { s } ^ { 2 } - ( 1 + A ) ) ^ { 2 } } } { \\pi A \\hat { s } } } & { \\hat { s } \\in [ 1 - \\sqrt { \\mathcal { A } } , 1 + \\sqrt { \\mathcal { A } } ] } \\\\ { 0 } & { \\mathrm { o t h e r w i s e } . } \\end{array} \\right.\n$$", + "text_format": "latex", + "bbox": [ + 316, + 577, + 679, + 619 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Overall, these equations describe a singular vector phase transition in the training data, as illustrated in Fig. 2BC. For example in the case of no teacher, the training data is simply noise and the singular values of $\\pmb { \\Sigma } ^ { 3 1 }$ are distributed as an MP sea spread between $1 \\pm { \\sqrt { A } }$ . When one adds a teacher, how each teacher singular mode is imprinted on the training data depends crucially on the teacher singular value $\\overline { { s } }$ , and the nature of this imprinting undergoes a phase transition at $\\overline { { s } } = \\mathcal { A } ^ { 1 / 4 }$ . For $\\overline { { s } } \\leq { \\mathcal { A } } ^ { 1 / 4 }$ , the teacher mode SNR is too low and this mode is not imprinted in the noisy training data; the associated√ training data singular value $\\hat { s }$ remains at the edge of the MP sea at $1 + { \\sqrt { A } }$ , and the overlap $\\mathcal { O } ( \\overline { { s } } )$ between training and teacher singular vectors remains zero. ", + "bbox": [ + 173, + 626, + 825, + 743 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "However, when $\\overline { { s } } > \\mathcal { A } ^ { 1 / 4 }$ , this teacher mode is imprinted in the training data; there is an associated training data singular value $\\hat { s }$ that pops out of the MP sea (Fig. 2AB). However, the training data singular value emerges at a position $\\hat { s } > \\overline { { s } }$ that is inflated by the noise, though the inflation effect decreases at larger $\\overline { { s } }$ , with the ratio $\\hat { s } / \\overline { { s } }$ approaching the unity line as $\\overline { { s } }$ becomes large (Fig. 2B). Similarly, the corresponding training data singular vectors acquire a non-trivial overlap with the teacher singular vectors when $\\overline { { s } } > \\mathcal { A } ^ { 1 / 4 }$ , and the alignment approaches unity as $\\overline { { s } }$ increases (Fig. 2C). ", + "bbox": [ + 174, + 750, + 825, + 837 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.3 PUTTING IT ALL TOGETHER: AN ANALYTIC THEORY OF GENERALIZATION DYNAMICS ", + "text_level": 1, + "bbox": [ + 171, + 853, + 805, + 868 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Based on an analytic understanding of how the singular mode structure $\\{ \\overline { { s } } ^ { \\alpha } , \\overline { { \\mathbf { u } } } ^ { \\alpha } , \\overline { { \\mathbf { v } } } ^ { \\alpha } \\}$ of the teacher $\\overline { { \\mathbf { W } } }$ is imprinted in the modes $\\{ \\hat { s } ^ { \\alpha } , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}$ of the training data covariance $\\pmb { \\Sigma } ^ { 3 1 }$ through (11), (12) and (13), and in turn how this training data singular structure drives the time evolving singular modes of a ", + "bbox": [ + 174, + 880, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/314c03e7d659a75d3bce2929de3fdf61f6a46155c699119ff46ac7743510ffe3.jpg", + "image_caption": [ + "Figure 3: Match between theory and experiment for rank 1 (row 1, a-d) and rank 3 (row 2, e-h) teachers with single-hidden-layer students: (a-b, e-f) log train and test error, respectively, showing very close match between theory and experiment for TA, and close match for the random student. (c,g) comparing TA and randomly initialized students minimum generalization errors, showing almost perfect match. (d,h) comparing TA and randomly initialized students optimal stopping times, showing small lag due to alignment. ( $N _ { 1 } = 1 0 0$ , $N _ { 2 } = 5 0$ , $N _ { 3 } = 5 0 .$ ) " + ], + "image_footnote": [], + "bbox": [ + 179, + 98, + 812, + 310 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "TA network $\\{ s ^ { \\alpha } ( t ) , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}$ of through (9), we can now derive analytic expressions for $\\varepsilon _ { \\mathrm { t r a i n } }$ and $\\varepsilon _ { \\mathrm { t e s t } }$ in (6) and (7), for a TA network. We will also show that these learning curves closely approximate those of a random student with time-evolving singular vectors $\\{ \\mathbf { u } ^ { \\alpha } ( t ) , \\mathbf { \\bar { v } } ^ { \\alpha } ( t ) \\}$ , and match on several key aspects. First, inserting the TA dynamics in (10) into $\\varepsilon _ { \\mathrm { t r a i n } }$ in (6), we obtain ", + "bbox": [ + 173, + 434, + 825, + 492 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/5aab040792c1a8dce6a9075a4cc0440ba793d936170b926d5ad03ab0fe901b4f.jpg", + "text": "$$\n\\mathfrak { c } _ { \\mathrm { r e a i n } } ( t ) = \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 3 } } \\hat { s } _ { \\alpha } ^ { 2 } \\right] ^ { - 1 } \\left[ ( N _ { 3 } - N _ { 2 } ) \\langle \\hat { s } ^ { 2 } \\rangle _ { \\mathcal { R } _ { o u t } } + ( N _ { 2 } - \\overline { { N } } _ { 2 } ) \\langle ( s ( \\hat { s } , t ) - \\hat { s } ) ^ { 2 } \\rangle _ { \\mathcal { R } _ { i n } } + \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\left[ s _ { \\alpha } ( t ) - \\hat { s } _ { \\alpha } \\right] ^ { 2 } \\right]\n$$", + "text_format": "latex", + "bbox": [ + 181, + 512, + 821, + 564 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Here, $s _ { \\alpha } ( t ) = s ( \\hat { s } _ { \\alpha } , t )$ as defined in (9) are the TA singular values, and $\\hat { s } _ { \\alpha } = \\hat { s } ( \\overline { { s } } _ { \\alpha } )$ as defined in (11) are the training data singular values associated with the teacher singular values $\\overline { { s } } _ { \\alpha }$ . Also $\\langle \\cdot \\rangle _ { \\mathcal { R } }$ denotes an average with respect to the MP distribution in (13) over a region $\\mathcal { R }$ . Two distinct regions contribute to training error. First $\\mathcal { R } _ { i n }$ contains those top $N _ { 2 } - \\overline { { N } } _ { 2 }$ training data singular values that do not correspond to the $\\overline { { N } } _ { 2 }$ singular values of the teacher but will be learned by a rank $N _ { 2 }$ student. Second, $\\mathcal { R } _ { o u t }$ corresponds to the remaining $N _ { 3 } - N _ { 2 }$ lowest training data singular values√ that cannot be learned by a rank √ $N _ { 2 }$ student. In terms of the MP distribution, $\\mathcal { R } _ { o u t } = [ 1 - \\sqrt { \\mathcal { A } } , f ]$ and $\\mathcal { R } _ { i n } = [ f , 1 + \\sqrt { \\mathcal { A } } ]$ , where $f$ is the point at which the MP density has $1 - N _ { 2 } / N _ { 3 }$ of its mass to the left and $N _ { 2 } / N _ { 3 }$ of its mass to the right. In the simple case of a full rank student, $f = 1 - \\sqrt { \\mathcal { A } }$ , and one need only integrate over $\\mathcal { R } _ { i n }$ which is the entire range. Equation (14) for $\\varepsilon _ { \\mathrm { t r a i n } }$ makes it manifest that it will go to zero for a full rank student as its singular values approach those of the training data. ", + "bbox": [ + 173, + 574, + 825, + 734 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Of course the test error can behave very differently. Inserting the TA training dynamics in (10) into $\\varepsilon _ { \\mathrm { t e s t } }$ in (7), and using (11), (12) and (13) to relate training data to the teacher, we find ", + "bbox": [ + 173, + 741, + 823, + 770 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/0ec73d593caa6ef7fd97cce903ec4844dce356c4c4f139eb7e32b3acc481a204.jpg", + "text": "$$\n\\varepsilon _ { \\mathrm { t e x t } } ( t ) = \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\overline { { s } } _ { \\alpha } ^ { 2 } \\right] ^ { - 1 } \\left[ ( N _ { 2 } - \\overline { { N } } _ { 2 } ) \\langle s ( \\hat { s } , t ) ^ { 2 } \\rangle _ { \\mathcal { R } _ { i n } } + \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\left[ ( s _ { \\alpha } ( t ) - \\overline { { s } } _ { \\alpha } ) ^ { 2 } + 2 s _ { \\alpha } ( t ) \\overline { { s } } _ { \\alpha } ( 1 - \\mathcal { O } ( \\overline { { s } } _ { \\alpha } ) ) \\right] \\right]\n$$", + "text_format": "latex", + "bbox": [ + 181, + 789, + 821, + 842 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Together (14) and (15) constitute a complete theory of generalization dynamics in terms of the structure of the data distribution (i.e. the teacher rank $\\overline { { N } } _ { 2 }$ , teacher SNRs $\\left\\{ \\overline { { s } } _ { \\alpha } \\right\\}$ , and the teacher aspect ratio $\\mathcal { A } = \\overline { { N } } _ { 3 } / \\overline { { N } } _ { 1 } )$ , the architectural complexity of the student (i.e. its rank $N _ { 2 }$ , its number of layers $N _ { l }$ , and the norm $\\epsilon$ of its initialization), and the training time $t$ . They yield considerable insight into the dynamics of good generalization early in learning and overfitting later, as we show below. ", + "bbox": [ + 173, + 852, + 825, + 924 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/be9716a9b1de318c5906d81cbfaaab3bf19f9183b7b3ce2f88ef2d6bf3ba7e80.jpg", + "image_caption": [ + "Figure 4: Our theory applies to deeper networks: match between theory and simulation for rank 1 (row 1, a-d) and rank 3 (row 2, e-h) teachers with $n _ { l } = 5$ students: (a-b, e-f) log train and test error, respectively, showing very close match between theory and experiment for TA. (c,g) comparing TA and randomly initialized students minimum generalization errors, showing almost perfect match. (d,h) comparing TA and randomly initialized students optimal stopping times, showing large lag due to slower alignment in deeper networks. $N _ { 1 } = 1 0 0$ , $N _ { 2 } = 5 0$ , $N _ { 3 } = 5 0 .$ .) " + ], + "image_footnote": [], + "bbox": [ + 179, + 99, + 812, + 310 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "3.4 NUMERICAL TESTS OF THE THEORY OF NEURAL NETWORK GENERALIZATION DYNAMICS ", + "text_level": 1, + "bbox": [ + 173, + 428, + 823, + 440 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Fig. 3 demonstrates an excellent match between the theory and simulations for the TA, and a close match for random students, for single-hidden-layer students and various teacher ranks $\\overline { { N } } _ { 2 }$ . Intuitively, as time $t$ proceeds, learning corresponds to singular mode detection wave sweeping from large to small training data singular values (i.e. the wave in Fig. 1B sweeps across the training data spectrum in Fig 2A). Initially, strong singular values associated with large SNR teacher modes are learned and both $\\varepsilon _ { \\mathrm { t r a i n } }$ and $\\varepsilon _ { \\mathrm { t e s t } }$ drop. Fig. 3A-D are for a rank 1 teacher, and so in Fig 3AB we see a single sharp drop early on, if the teacher SNR is sufficiently high. By contrast, with a rank 3 teacher in Fig. 3E-H, there are several early drops as the three modes are picked up. However, as time progresses, the singular mode detection wave penetrates the MP sea, and the student picks up noise structure in the data, so $\\varepsilon _ { \\mathrm { t r a i n } }$ drops but $\\varepsilon _ { \\mathrm { t e s t } }$ rises, indicating the onset of overfitting. ", + "bbox": [ + 173, + 454, + 825, + 593 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The main difference between the random student and TA learning curves is that the random student learning is slightly delayed relative to the TA, especially late in training. This is understandable because the TA already knows the singular vectors of the training data, while the random student must learn them. Nevertheless, two of the most important aspects of learning, namely the optimal early stopping time $t _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } } \\equiv \\mathrm { a r g m i n } _ { t } \\varepsilon _ { \\mathrm { t e s t } } ( t )$ and the minimal test error achieved at this time $\\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } } \\equiv$ $\\mathrm { m i n } _ { t } \\varepsilon _ { \\mathrm { t e s t } } ( t )$ , match well between TA and random student, as shown in Fig. 3CD. At low teacher SNRs, the student takes a little longer to learn than the TA, but their optimal test errors match. ", + "bbox": [ + 174, + 599, + 825, + 702 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Our theory can also be easily extended to describe the learning dynamics deeper networks. Saxe et al. (2013a) derived $t ( s , { \\hat { s } } )$ for networks of arbitrary depth, so we only need to adjust this factor in our formulas, see App. A for details. In Fig. 4 we show that again there is an excellent match between TA networks and theory for student networks with $N _ { l } = 5$ layers (i.e. 3 hidden layers). Randomly-initialized networks show a much longer alignment lag for deeper networks (see App. B for details), but the curves are qualitatively similar and optimal stopping errors match. We also demonstrate extensions of our theory to different numbers of training examples (App. G). ", + "bbox": [ + 174, + 708, + 825, + 805 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Importantly, many of the phenomena we observe in linear networks are qualitatively replicated in nonlinear networks (Fig. 5), suggesting that our theory may help guide understanding of the nonlinear case. In particular, features such as stage-like initial learning, followed by a plateau if SNR is high, and finally followed by overfitting, are replicated. However, there are some discrepancies, in particular nonlinear networks (especially deeper ones) begin overfitting earlier than linear networks. This is likely because a mode in a non-linear network can be co-opted by an orthogonal mode, while in a linear network it cannot. Thus noise modes are able to “stow away” on the strong signal modes once they are learned. However, overall learning patterns are similar, and we show below that many interesting phenomena in nonlinear networks are understandable in the linear case, such as the (non-)effects of overparameterization, the dynamics of memorization, and the benefits of transfer. ", + "bbox": [ + 174, + 813, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 823, + 132 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/4c96fe2cc1b69b79f16e01bb40a77f5c5b9805452e0fd502c4194097a289ca0c.jpg", + "image_caption": [ + "Figure 5: Train (first row, A-D) and test (second row, E-H) error for nonlinear networks (leaky relu at all hidden layers) with one hidden layer (first two columns) or three hidden layers (last two columns) trained on the tasks above, with a rank 1 teacher (first and third columns) or a rank 3 teacher (second and fourth columns). Note that many of the qualitative phenomena observed in linear networks, such as stage-like improvement in the errors, followed by a plateau, followed by overfitting, also appear in nonlinear networks. Compare the first column to Fig. 3AB, the second column to Fig. 3EF, the third to Fig. 4AB, and the fourth to Fig. 4EF. ( $N _ { 1 } = 1 0 0$ , $N _ { 2 } = 5 0$ , $N _ { 3 } = 5 0 .$ ) " + ], + "image_footnote": [], + "bbox": [ + 178, + 136, + 785, + 367 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": ".5 RANDOMIZED DATA VS. REAL DATA: A LEARNING TIME PUZZLE ", + "text_level": 1, + "bbox": [ + 189, + 503, + 651, + 517 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "An intriguing observation that resurrected the generalization puzzle in deep learning was the observation by Zhang et al. (2016) that deep networks can memorize data with the labels randomly permuted. However, as Arpit et al. (2017) pointed out, the learning dynamics of training error for randomized labels can be slower than than for structured data. This phenomenon also arises in deep linear networks, and our theory yields an analytic explanation for why. We randomize data by choosing orthonormal inputs $\\hat { \\mathbf { x } } ^ { \\mu }$ as in the structured case, but we choose the outputs ${ \\hat { \\mathbf { y } } } ^ { \\mu }$ to be i.i.d. Gaussian with zero mean and the same diagonal variance as the structured training data generated by the teacher. For structured data generated by a low rank teacher with singular values $\\overline { { s } } _ { \\alpha }$ , the diagonal output variance is given by $\\begin{array} { r } { \\sigma _ { r } ^ { 2 } = \\frac { 1 } { N _ { 3 } } \\left[ \\sum _ { i = \\alpha } ^ { \\overline { { N } } _ { 2 } } \\bar { s } _ { \\alpha } ^ { 2 } \\right] + \\frac { 1 } { \\overline { { N } } _ { 1 } } \\sigma _ { z } ^ { 2 } } \\end{array}$ , where $\\sigma _ { z }$ is the noise variance, as before. Since there is no relation between input and output, $\\pmb { \\Sigma } ^ { 3 1 }$ is now distributed as a MP distribution whose support is $[ ( \\sigma _ { r } ( 1 - \\sqrt { \\mathcal { A } } ) , \\sigma _ { r } ( 1 + \\sqrt { \\mathcal { A } } ) ]$ . Thus randomization essentially destroys the outlier signal singular values in $\\pmb { \\Sigma } ^ { 3 1 }$ reflecting the teacher, and distributes them across all randomized data modes, yielding this stretched MP distribution (compare 6A top and bottom). However, even on this stretched MP distribution, the right edge will be much smaller than the signal singular values, since the signal variance will be diluted by spreading it out over many more modes in the randomized data. Thus the randomized data will lead to slower initial training error drops relative to the structured data (Fig. 6B) since the singular mode detection wave encounters the first signal singular values in structured data earlier than it encounters the edge of the stretched MP sea in randomized data. ", + "bbox": [ + 173, + 529, + 826, + 709 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/214421209393a1f729207d74055cfc8b2447742fb08e8821164fae3a79d95a61.jpg", + "image_caption": [ + "Figure 6: Learning randomized data: Comparing (a) singular value distributions and (b) learning curves for data with a signal vs. random data that preserves basic statistics (mean, variance). Randomizing the data dilutes the signal singular values, spreading their variance out over many modes, hence randomly labelled data is learned more slowly. $N _ { 1 } = 1 0 0$ , $N _ { 2 } = 5 0$ , $N _ { 3 } = 5 0 .$ .) " + ], + "image_footnote": [], + "bbox": [ + 176, + 731, + 771, + 871 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/6f50ba8e93b7f0f0f5390f316c743f888d62c7d9566d1790b18925c63d2e3904.jpg", + "image_caption": [ + "Figure 7: Transfer setting– If two different tasks are combined, how well students of the combined teacher perform on each task depends on the alignment and SNRs of the teachers. " + ], + "image_footnote": [], + "bbox": [ + 194, + 101, + 807, + 244 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/0a5b9a9dbd5641d64b838b1df6081e9aedcd5fcf53c8a71c1f83e3bbc6d1722c.jpg", + "image_caption": [ + "Figure 8: Transfer benefit $\\mathcal { T } ^ { A B } ( \\overline { { s } } _ { A } , \\overline { { s } } _ { B } , q )$ plotted at different values of ${ \\overline { { s } } } _ { A }$ . (a) $\\overline { { s } } _ { A } = 0 . 8 4 = \\sqrt [ 4 ] { A }$ . Although this task is impossible to learn on its own, with support from another aligned task, especially one with high SNR, learning can occur. (b) ${ \\overline { { s } } } _ { A } = 3$ . Tasks with modest signals will face interference from poorly aligned tasks, but benefits from well aligned tasks. These effects are amplified by SNR. (c) $\\overline { { s } } _ { A } = 1 0 0$ . Tasks with very strong signals will show little effect from other tasks (note y-axis scales), but any impact will be negative unless the tasks are very well aligned. $N _ { 1 } = 1 0 0$ $\\dot { \\overline { { { N } } } } _ { 2 } ^ { A } = \\overline { { { N } } } _ { 2 } ^ { B } = 1 .$ , $N _ { 2 } = 5 0$ , $N _ { 3 } = 5 0 .$ ) " + ], + "image_footnote": [], + "bbox": [ + 173, + 289, + 803, + 424 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 561, + 826, + 645 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "3.6 OUT-PERFORMING OPTIMAL EARLY STOPPING THROUGH A NON-GRADIENT ALGORITHM ", + "text_level": 1, + "bbox": [ + 174, + 666, + 823, + 680 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "For the case of a rank 1 teacher, it is straightforward to derive a good analytic approximation to the important quantities $\\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }$ and topt $t _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }$ . We assume the teacher SNR is beyond the phase transition point so its unique singular value $\\overline { { s } } _ { 1 } > A ^ { 1 / 4 }$ , yielding a separation between the training data singular value $\\hat { s _ { 1 } }$ in (11) and the edge of the MP sea. In this scenario, optimal early stopping will occur at a time before the detection wave in Fig. 1B penetrates the MP sea, so to minimize test error, we can neglect the first term in (15). Then optimizing the second term yields the optimal student singular value $s _ { 1 } = \\overline { { s } } _ { 1 } \\mathcal { O } ( \\overline { { s } } _ { 1 } )$ . Inserting this value into (15) yields εoptgradient = 1 − O(s1)2, and inserting it into (9) yields $t _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }$ . Thus the optimal generalization error with a rank 1 teacher is very simply related to the alignment of the top training data singular vectors with the teacher singular vectors, and it decreases as this alignment increases. In App. E, we show this match in the rank 1 case. ", + "bbox": [ + 173, + 691, + 825, + 844 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "With higher rank teachers, teacher modes with differen $\\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }$ and For must negotiate a more complex trade-off betweene, as the singular mode detection wave passes the top training data singular value, $s _ { 1 } ( t ) \\to \\hat { s } _ { 1 }$ which is greater than the optimal $s _ { 1 } = \\overline { { s } } _ { 1 } \\mathcal { O } ( \\overline { { s } } _ { 1 } )$ for mode 1. Thus as learning progresses, the student overfits on the first mode but learns lower modes. However, this neural generalization dynamics suggests a superior non-gradient training algorithm that simply optimally sets each $s _ { \\alpha }$ to $\\overline { { s } } _ { \\alpha } \\mathcal { O } ( \\overline { { s } } _ { \\alpha } )$ in (15), yielding an optimal generalization error: ", + "bbox": [ + 173, + 851, + 825, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 102, + 722, + 119 + ], + "page_idx": 9 + }, + { + "type": "equation", + "img_path": "images/570f4b4fad0704cfefbb961c062c1f4efb04e2f7fe004d72fb17f3060a73f853.jpg", + "text": "$$\n\\varepsilon _ { \\mathrm { n o n - g r a d i e n t } } ^ { \\mathrm { o p t } } = \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\overline { { s } } _ { \\alpha } ^ { 2 } \\right] ^ { - 1 } \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\overline { { s } } _ { \\alpha } ^ { 2 } ( 1 - \\mathcal { O } ( \\overline { { s } } _ { \\alpha } ) ^ { 2 } ) \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 325, + 123, + 669, + 176 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Standard gradient descent learning cannot achieve this low generalization error because it cannot independently adjust all student singular values. A simple algorithm that achieves $\\varepsilon _ { \\mathrm { n o n - g r a d i e n t } } ^ { \\mathrm { o p t } }$ is as follows. From the training data covariance $\\pmb { \\Sigma } ^ { 3 1 }$ , extract the top singular values $\\hat { s } _ { \\alpha }$ that pop-out of the MP sea, use the functional inverse of (11) to compute $\\overline { { s } } _ { a } ( \\widehat { s } _ { \\alpha } )$ , use (12) to compute the optimal $s _ { \\alpha }$ , and then construct a matrix $\\mathbf { W }$ with the same top singular vectors as $\\pmb { \\Sigma } ^ { 3 1 }$ , but with the outlier singular values shrunk from $\\hat { s } _ { \\alpha }$ to $s _ { \\alpha }$ and the rest set to zero. This non-gradient singular value shrinkage algorithm provably outperforms neural network training with $\\varepsilon _ { \\mathrm { n o n - g r a d i e n t } } ^ { \\mathrm { o p t } ^ { - } } \\le \\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } } .$ . ", + "bbox": [ + 173, + 180, + 826, + 286 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "4 A THEORY FOR THE TRANSFER OF KNOWLEDGE ACROSS MULTIPLE TASKS ", + "text_level": 1, + "bbox": [ + 176, + 304, + 820, + 320 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Consider two tasks $A$ and $B$ , described by $\\overline { { N } } _ { 3 }$ by $\\overline { { N } } _ { 1 }$ teacher maps $\\overline { { \\mathbf { W } } } ^ { A }$ and $\\overline { { \\mathbf { W } } } ^ { B }$ , of ranks $\\overline { { N } } _ { 2 } ^ { A }$ and $\\overline { { N } } _ { 2 } ^ { B }$ , respectively. Now two student networks can learn from the two teacher networks separately, each achieving optimal early stopping test errors composite teacher (and student) that concatenate $\\varepsilon _ { A } ^ { \\mathrm { { o p t } } }$ and hid $\\varepsilon _ { B } ^ { \\mathrm { { o p t } } }$ . Alternatively, one could construct a and output units, but shares the same $\\overline { { N } } _ { 3 }$ ut units (Fig. 7). The composite student and teacher each have two heads, one for each tasneurons per head. Optimal early stopping on each head of the student yields test errors opt opt $\\varepsilon _ { A B } ^ { \\mathrm { o p t } }$ and . We define the transfer benefit that task B confers on task A to be $\\mathcal { T } ^ { A B } \\equiv \\varepsilon _ { A } ^ { \\mathrm { o p t } } - \\varepsilon _ { A B } ^ { \\mathrm { o p t } }$ A postive (negative) transfer benefit implies learning tasks A and B simultaneously yields a lower (higher) optimal test error on task A compared to just learning task A alone. ", + "bbox": [ + 173, + 330, + 826, + 469 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "A foundational question is how the transfer benefit $\\scriptstyle { \\mathcal { T } } ^ { A B }$ depends on the two tasks defined by the teachers $\\overline { { \\mathbf { W } } } ^ { A }$ and $\\overline { { \\mathbf { W } } } ^ { B }$ . To answer this, consider the SVDs of each teacher alone: $\\begin{array} { r } { \\overline { { \\mathbf { W } } } ^ { A } = } \\end{array}$ $\\overline { { \\mathbf { U } } } ^ { A } \\overline { { \\mathbf { S } } } ^ { A } \\overline { { \\mathbf { V } } } ^ { A ^ { T } }$ and $\\overline { { \\mathbf { W } } } ^ { B } = \\overline { { \\mathbf { U } } } ^ { B } \\overline { { \\mathbf { S } } } ^ { B } \\overline { { \\mathbf { V } } } ^ { B ^ { T } }$ . From the above, we know that $\\varepsilon _ { A } ^ { \\mathrm { { o p t } } }$ depends on $\\overline { { \\mathbf { W } } } ^ { A }$ only through $\\overline { { \\mathbf { S } } } ^ { A }$ . In App. D we show that the transfer benefit depends on both $\\overline { { \\mathbf { W } } } ^ { A }$ and $\\overline { { \\mathbf { W } } } ^ { B }$ only through $\\overline { { \\mathbf { S } } } ^ { A } , \\overline { { \\mathbf { S } } } ^ { B }$ , and the $\\overline { { N } } _ { 2 } ^ { A }$ by $\\overline { { N } } _ { 2 } ^ { B }$ similarity matrix $\\mathbf { \\overline { { Q } } } = \\mathbf { \\overline { { V } } } ^ { A ^ { T } } \\mathbf { \\overline { { V } } } ^ { B }$ . If we think of the columns of each $\\overline { { \\mathbf { V } } }$ as spanning a low dimensional feature space in $\\overline { { N } } _ { 1 }$ dimensional input space that is important for each task, then $\\overline { { \\mathbf { Q } } }$ reflects the input feature subspace similarity matrix. Interestingly, the transfer benefit is independent of output singular vectors $\\bar { \\mathbf { U } } ^ { A }$ and $\\overline { { \\mathbf { U } } } ^ { B }$ . What matters for knowledge transfer in this setting are the relevant input features, not how you must respond to them. ", + "bbox": [ + 173, + 474, + 826, + 631 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We describe the transfer benefit for the simple case of two rank one teachers. Then $\\overline { { \\mathbf { S } } } ^ { A } , \\overline { { \\mathbf { S } } } ^ { B }$ , and $\\overline { { \\mathbf { Q } } }$ are simply scalars $s _ { A } , s _ { B }$ and $q$ , and we explore the function $\\mathcal { T } ^ { A B } ( \\overline { { s } } _ { A } , \\overline { { s } } _ { B } , q )$ in Fig. 5ABC, which reveals several interesting features. First, knowledge can be transferred from a high SNR task to a low SNR task (Fig. 5A) and the degree of transfer increases with task alignment $q$ . This can make it possible to capture signals from task $A$ which would otherwise sink into the MP sea by learning jointly with a related task, even if the tasks are only weakly aligned (Fig. 5A). However, if task $A$ already has a high SNR, task $B$ must be very well aligned to it for transfer to be beneficial – otherwise there will be interference. The degree of alignment required increases as the task $A$ SNR increases, but the quantity of benefit or interference decreases correspondingly (Fig. 5BC). In Appendix D we explain why our theory predicts these results. Furthermore, in Appendix F we demonstrate these phenomena are qualitatively recapitulated in nonlinear networks, which suggests that our theory may give insight into how to choose auxiliary tasks. ", + "bbox": [ + 173, + 640, + 825, + 809 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "5 DISCUSSION ", + "text_level": 1, + "bbox": [ + 174, + 829, + 310, + 844 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "In summary, our analytic theory of generalization dynamics in deep linear networks reveals that many puzzling aspects of generalization in deep learning already arise in the simple linear setting, where the puzzles can be understood analytically. In particular, deep linear networks learn more important structure in data first, leading to generalization errors that depend on task structure much more than network size. Our theory explains why deep linear networks learn randomized data more slowly than structured data, and provides a non-gradient based learning method that out-performs gradient descent learning in the linear case. Finally, we provide an analytic theory of how knowledge is transferred from one task to another, demonstrating that the degree of alignment of input features important for each task, but not how one must respond to these features, is critical for facilitating knowledge transfer. We think these analytic results provide useful insight into the similar generalization and transfer phenomena observed in the nonlinear case. Among other things, we hope our work will motivate and enable: (1) the search for tighter upper bounds on generalization error that take into account task structure; (2) the design of non gradient based training algorithms that outperform gradient-based learning; and (3) the theory-driven selection of auxiliary tasks that maximize knowledge transfer. ", + "bbox": [ + 174, + 853, + 825, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 229 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 250, + 285, + 265 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Madhu S. Advani and Andrew M. Saxe. High-dimensional dynamics of generalization error in neural networks. arXiv, pp. 1–32, 2017. ", + "bbox": [ + 174, + 272, + 823, + 301 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sanjeev Arora, Rong Ge, Behnam Neyshabur, and Yi Zhang. Stronger generalization bounds for deep nets via a compression approach. arXiv preprint, pp. 1–39, 2018. URL http://arxiv. org/abs/1802.05296. ", + "bbox": [ + 173, + 309, + 823, + 352 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Devansh Arpit, Stanisław Jastrze¸bski, Nicolas Ballas, David Krueger, Emmanuel Bengio, Maxinder S Kanwal, Tegan Maharaj, Asja Fischer, Aaron Courville, Yoshua Bengio, and Simon Lacoste-Julien. A Closer Look at Memorization in Deep Networks. arXiv preprint, 2017. ISSN 1938-7228. URL http://arxiv.org/abs/1706.05394. ", + "bbox": [ + 178, + 359, + 823, + 417 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Peter Bartlett, Dylan J. Foster, and Matus Telgarsky. Spectrally-normalized margin bounds for neural networks. arXiv preprint, pp. 1–24, 2017. URL http://arxiv.org/abs/1706.08498. ", + "bbox": [ + 176, + 425, + 821, + 455 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Peter L Bartlett and Shahar Mendelson. Rademacher and Gaussian Complexities $:$ Risk Bounds and Structural Results. Journal of Machine Learning Research, 3:463–482, 2002. ", + "bbox": [ + 174, + 463, + 821, + 492 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Florent Benaych-Georges and Raj Rao Nadakuditi. The singular values and vectors of low rank perturbations of large rectangular random matrices. Journal of Multivariate Analysis, 111:120–135, 2012. ISSN 0047259X. doi: 10.1016/j.jmva.2012.04.019. ", + "bbox": [ + 174, + 500, + 823, + 542 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Daxiang Dong, Hua Wu, Wei He, Dianhai Yu, and Haifeng Wang. Multi-Task Learning for Multiple Language Translation. Acl, pp. 1723–1732, 2015. ", + "bbox": [ + 173, + 551, + 823, + 580 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Gintare Karolina Dziugaite and Daniel M. Roy. Computing Nonvacuous Generalization Bounds for Deep (Stochastic) Neural Networks with Many More Parameters than Training Data. arXiv preprint, 2017. URL http://arxiv.org/abs/1703.11008. ", + "bbox": [ + 174, + 588, + 823, + 632 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Noah Golowich, Alexander Rakhlin, and Ohad Shamir. Size-Independent Sample Complexity of Neural Networks. arXiv preprint, (1):1–26, 2017. URL http://arxiv.org/abs/1712. 06541. ", + "bbox": [ + 173, + 640, + 826, + 681 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "I.J. Goodfellow, J Pouget-Abadie, and Mehdi Mirza. Generative Adversarial Networks. arXiv preprint, pp. 1–9, 2014. ISSN 10495258. doi: 10.1001/jamainternmed.2016.8245. ", + "bbox": [ + 171, + 690, + 823, + 719 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Steven S. Hansen, Andrew Lampinen, Gaurav Suri, and James L. McClelland. Building on prior knowledge without building it in. Behavioral and Brain Sciences, 40, 2017. ", + "bbox": [ + 171, + 728, + 823, + 757 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andrew Lampinen, Shaw Hsu, and James L Mcclelland. Analogies Emerge from Learning Dyamics in Neural Networks. Proceedings of the 39th Annual Conference of the Cognitive Science Society, pp. 2512–2517, 2017. ", + "bbox": [ + 174, + 765, + 823, + 808 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Minh-Thang Luong, Quoc V. Le, Ilya Sutskever, Oriol Vinyals, and Lukasz Kaiser. Multi-task Sequence to Sequence Learning. Iclr, pp. 1–9, 2016. ", + "bbox": [ + 171, + 815, + 823, + 845 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei a Rusu, Joel Veness, Marc G Bellemare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, Stig Petersen, Charles Beattie, Amir Sadik, Ioannis Antonoglou, Helen King, Dharshan Kumaran, Daan Wierstra, Shane Legg, and Demis Hassabis. Human-level control through deep reinforcement learning. Nature, 518(7540):529–533, 2015. ISSN 0028-0836. doi: 10.1038/nature14236. ", + "bbox": [ + 176, + 854, + 825, + 922 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Behnam Neyshabur, Ryota Tomioka, and Nathan Srebro. Norm-based capacity control in neural networks. Conference on Learning Theory (COLT), pp. 1376–1401, 2015. ISSN 15337928. URL http://arxiv.org/abs/1503.00036. ", + "bbox": [ + 176, + 103, + 821, + 146 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Behnam Neyshabur, Srinadh Bhojanapalli, and Nathan Srebro. A PAC-Bayesian Approach to Spectrally-Normalized Margin Bounds for Neural Networks. arXiv preprint, (2017):1–9, 2017. URL http://arxiv.org/abs/1707.09564. ", + "bbox": [ + 179, + 155, + 821, + 198 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jeffrey Pennington, Samuel S. Schoenholz, and Surya Ganguli. Resurrecting the sigmoid in deep learning through dynamical isometry: theory and practice. Advances in Neural Information Processing Systems 30, (Nips):1–11, 2017. URL http://arxiv.org/abs/1711.04735. ", + "bbox": [ + 176, + 207, + 823, + 251 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jeffrey Pennington, Samuel S. Schoenholz, and Surya Ganguli. The Emergence of Spectral Universality in Deep Networks. In AISTATS 2018, 2018. URL http://arxiv.org/abs/1802. 09979. ", + "bbox": [ + 174, + 258, + 826, + 301 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Andrei A Rusu, Sergio Gomez Colmenarejo, Caglar Gulcehre, Guillaume Desjardins, James Kirkpatrick, Razvan Pascanu, Volodymyr Mnih, Koray Kavukcuoglu, and Raia Hadsell. Policy Distillation. arXiv, pp. 1–12, 2015. ISSN 0028-0836. doi: 10.1038/nature14236. ", + "bbox": [ + 174, + 309, + 823, + 353 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Andrew M. Saxe, James L. McClelland, and Surya Ganguli. Exact solutions to the nonlinear dynamics of learning in deep linear neural networks. Advances in Neural Information Processing Systems, pp. 1–9, 2013a. ", + "bbox": [ + 173, + 361, + 825, + 405 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Andrew M Saxe, James L Mcclelland, and Surya Ganguli. Learning hierarchical category structure in deep neural networks. Proceedings of the 35th annual meeting of the Cognitive Science Society, pp. 1271–1276, 2013b. ", + "bbox": [ + 173, + 412, + 823, + 457 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Samuel S. Schoenholz, Justin Gilmer, Surya Ganguli, and Jascha Sohl-Dickstein. Deep Information Propagation. In International Conference on Learning Representations (ICLR),, number 2016, pp. 1–18, 2016. URL http://arxiv.org/abs/1611.01232. ", + "bbox": [ + 176, + 465, + 823, + 508 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche, Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, Sander Dieleman, Dominik Grewe, John Nham, Nal Kalchbrenner, Ilya Sutskever, Timothy Lillicrap, Madeleine Leach, and Koray Kavukcuoglu. Mastering the game of Go with deep neural networks and tree search. Nature, 529(7585):484–489, 2016. ISSN 0028-0836. doi: 10.1038/nature16961. URL http://dx.doi.org/10.1038/nature16961. ", + "bbox": [ + 174, + 517, + 826, + 602 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Understanding deep learning requires rethinking generalization. arXiv preprint, 2016. ISSN 10414347. doi: 10.1109/TKDE.2015.2507132. URL http://arxiv.org/abs/1611.03530. ", + "bbox": [ + 174, + 611, + 826, + 654 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A LEARNING DYNAMICS FOR DEEPER NETWORKS ", + "text_level": 1, + "bbox": [ + 174, + 680, + 602, + 695 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "In the main text, we described the dynamics of how a single-hidden-layer network converges toward the training data singular modes $\\{ \\hat { s } ^ { \\alpha } , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}$ , which were originally derived in Saxe et al. (2013a). There it was also proven that for a network with $N _ { l }$ layers (i.e. $N _ { l } - 2$ hidden layers), the strength of the mode obeys the differential equation: ", + "bbox": [ + 173, + 710, + 826, + 767 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/e8382140836b5cfe34671dd944c538f5a90a3735e89a8a2bf073af8301a4e25f.jpg", + "text": "$$\n\\tau { \\frac { d } { d t } } u = ( N _ { l } - 1 ) u ^ { 2 - 2 / ( N _ { l } - 1 ) } ( s - u )\n$$", + "text_format": "latex", + "bbox": [ + 370, + 773, + 625, + 804 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "This equation is separable and can be integrated for any integer number of layers. In particular, we consider the case of 5 layers (3 hidden), in which case: ", + "bbox": [ + 173, + 809, + 823, + 839 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/73166119140c9bab6af2d2ea3b4f65abbb44c69b0e083ef0870b03452afa4a5e.jpg", + "text": "$$\nt ( s , \\hat { s } ) = \\frac { \\tau } { 2 } \\left[ \\frac { \\operatorname { t a n h } ^ { - 1 } \\left( \\sqrt { \\frac { u } { \\hat { s } } } \\right) } { \\hat { s } ^ { 3 / 2 } } - \\frac { 1 } { \\hat { s } \\sqrt { u } } \\right] _ { \\epsilon } ^ { s }\n$$", + "text_format": "latex", + "bbox": [ + 367, + 844, + 629, + 888 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "This expression cannot be analytically inverted to find $s ( t , { \\hat { s } } )$ , so we numerically invert it where necessary. ", + "bbox": [ + 174, + 895, + 821, + 924 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "B ALIGNMENT LAG IN RANDOMLY INITIALIZED NETWORKS ", + "text_level": 1, + "bbox": [ + 174, + 103, + 686, + 118 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "As noted in the main text, the randomly-initialized networks behave quite similarly to the TA networks, except that the randomly-initialized networks show a lag due to the time it takes for the network’s modes to align with the data modes. In fig. 9 we explore this lag by plotting the alignment of the modes and the increase in the singular value for several randomly initialized networks. ", + "bbox": [ + 174, + 133, + 825, + 189 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Notice that stronger modes align more quickly. Furthermore, the mode alignment is relatively independent – whether the teacher is rank 1 or rank 3, the alignment of the modes is similar for the mode of singular value 2. Most importantly, note how the deeper networks show substantially slower mode alignment, with alignment not completed until around when the singular value increases. This explains why deeper networks show a larger lag between randomly-initialized and TA networks – the alignment process is much slower for deeper networks. ", + "bbox": [ + 174, + 195, + 825, + 280 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "C TRAIN AND TEST ERRORS AFTER A PROJECTION ", + "text_level": 1, + "bbox": [ + 173, + 301, + 607, + 318 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In the case of transfer learning, or more generally when we want to evaluate a network’s loss on a subset of its outputs, we need to use a slight generalization of the train and test error formulas given in the main text. Suppose we are interested in the train and test errors after applying a projection operator $\\mathbf { P }$ : ", + "bbox": [ + 176, + 332, + 823, + 388 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/824d5e77da2fc9bf0002ff555d48fd7e0608505786d086f2d942b570d2f3b38b.jpg", + "text": "$$\n\\varepsilon _ { \\mathrm { t r a i n } } \\equiv \\frac { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { P } \\mathbf { W } \\hat { \\mathbf { x } } ^ { \\mu } - \\mathbf { P } \\hat { \\mathbf { y } } ^ { \\mu } | | _ { 2 } ^ { 2 } } { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { P } \\hat { \\mathbf { y } } ^ { \\mu } | | _ { 2 } ^ { 2 } } , \\varepsilon _ { \\mathrm { t e s t } } \\equiv \\frac { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { P } \\mathbf { W } \\overline { { \\mathbf { x } } } ^ { \\mu } - \\mathbf { P } \\overline { { \\mathbf { y } } } ^ { \\mu } | | _ { 2 } ^ { 2 } } { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { P } \\overline { { \\mathbf { y } } } ^ { \\mu } | | _ { 2 } ^ { 2 } } ,\n$$", + "text_format": "latex", + "bbox": [ + 232, + 395, + 764, + 444 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "respectively. As in the main text, we can rexpress these as: ", + "bbox": [ + 173, + 449, + 558, + 464 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/b3dfe306ce0e4b0416590bb0eb5e48c67ca0e50453c4ad1d27c97a97d4efeb9e.jpg", + "text": "$$\n\\varepsilon _ { \\mathrm { t r a i n } } = \\frac { \\mathrm { T r } { \\mathbf { W } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } { \\mathbf { W } } - 2 \\mathrm { T r } { \\mathbf { W } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\Sigma ^ { 3 1 } + \\mathrm { T r } { \\Sigma ^ { 3 1 } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\Sigma ^ { 3 1 } } { \\mathrm { T r } \\Sigma ^ { 3 1 } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\Sigma ^ { 3 1 } } ,\n$$", + "text_format": "latex", + "bbox": [ + 276, + 469, + 720, + 510 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/a7f3c63e6dd22c620bfb08e215774d513e2fb6bf53b51956396165b08996231d.jpg", + "text": "$$\n\\varepsilon _ { \\mathrm { t e s t } } = \\frac { \\mathrm { T r } { \\mathbf { W } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } { \\mathbf { W } } - 2 \\mathrm { T r } { \\mathbf { W } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\overline { { { \\mathbf { W } } } } + \\mathrm { T r } \\overline { { { \\mathbf { W } } } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\overline { { { \\mathbf { W } } } } } { \\mathrm { T r } \\overline { { { \\mathbf { W } } } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\overline { { { \\mathbf { W } } } } } .\n$$", + "text_format": "latex", + "bbox": [ + 290, + 515, + 705, + 558 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Using the cyclic property of the trace, we can modify these to get: ", + "bbox": [ + 173, + 559, + 606, + 574 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/c7c12ca256b899740c8be0c793209c9a8228e253de168ef8f6fd3701fafdbc93.jpg", + "text": "$$\n\\varepsilon _ { \\mathrm { t r a i n } } = \\frac { \\mathrm { T r } { \\bf P } { \\bf W } { \\bf W } ^ { T } { \\bf P } ^ { T } - 2 \\mathrm { T r } { \\bf P } \\Sigma ^ { 3 1 } { \\bf W } ^ { T } { \\bf P } ^ { T } + \\mathrm { T r } { \\bf P } \\Sigma ^ { 3 1 } \\Sigma ^ { 3 1 ^ { T } } { \\bf P } ^ { T } } { \\mathrm { T r } { \\bf P } \\Sigma ^ { 3 1 } \\Sigma ^ { 3 1 ^ { T } } { \\bf P } ^ { T } } ,\n$$", + "text_format": "latex", + "bbox": [ + 277, + 579, + 720, + 618 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/b809fb7c45678781dfedbcdedaa34d7e51911d701c9fda075999b1f71d247a8e.jpg", + "text": "$$\n\\varepsilon _ { \\mathrm { t e s t } } = \\frac { \\mathrm { T r } \\mathbf { P } \\mathbf { W } \\mathbf { W } ^ { T } \\mathbf { P } ^ { T } - 2 \\mathrm { T r } \\mathbf { P } \\overline { { \\mathbf { W } } } \\mathbf { W } ^ { T } \\mathbf { P } ^ { T } + \\mathrm { T r } \\mathbf { P } \\overline { { \\mathbf { W } } } \\mathbf { W } ^ { T } \\mathbf { P } ^ { T } } { \\mathrm { T r } \\mathbf { P } \\overline { { \\mathbf { W } } } \\mathbf { W } ^ { T } \\mathbf { P } ^ { T } } .\n$$", + "text_format": "latex", + "bbox": [ + 290, + 625, + 705, + 667 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "As before, we express these in terms of the student, training data and teacher SVDs, $\\mathbf { W } = \\mathbf { U } \\mathbf { S } \\mathbf { V } ^ { T }$ $\\begin{array} { r } { \\pmb { \\Sigma } ^ { 3 1 } = \\hat { \\mathbf { U } } \\hat { \\mathbf { S } } \\hat { \\mathbf { V } } ^ { T } } \\end{array}$ , and $\\overline { { \\mathbf { W } } } = \\overline { { \\mathbf { U } } } \\overline { { \\mathbf { S } } } \\overline { { \\mathbf { V } } } ^ { T }$ respectively. Specifically, ", + "bbox": [ + 173, + 670, + 823, + 704 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/e2a2b7673c35307ab430f1855d1ff64e839930bd9e9c11e872e6526a7ca5afdb.jpg", + "text": "$$\n\\begin{array} { r } { \\operatorname { t r a i n } = \\Big [ \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 3 } } \\hat { s } _ { \\beta } ^ { 2 } \\vert \\vert { \\mathbf { P } } \\hat { \\mathbf { a } } ^ { \\alpha } \\vert \\vert _ { 2 } ^ { 2 } \\Big ] ^ { - 1 } \\Big [ \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } s _ { \\alpha } ^ { 2 } \\vert \\vert { \\mathbf { P } } \\mathbf { u } ^ { \\alpha } \\vert \\vert _ { 2 } ^ { 2 } + \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 3 } } \\hat { s } _ { \\beta } ^ { 2 } \\vert \\vert { \\mathbf { P } } \\hat { \\mathbf { a } } ^ { \\alpha } \\vert \\vert _ { 2 } ^ { 2 } - 2 \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 3 } } s _ { \\alpha } \\hat { s } _ { \\beta } \\big ( { \\mathbf { P } } \\mathbf { u } ^ { \\alpha } \\cdot { \\mathbf { P } } \\hat { \\mathbf { u } } ^ { \\beta } \\big ) \\big ( { \\mathbf { v } } ^ { \\alpha } \\cdot { \\mathbf { \\hat { v } } } ^ { \\beta } \\big ) \\Big ] , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 710, + 823, + 732 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/4b62348655d38b06bf41391656fd181444d4be54d4d2a458526a43428d448f9c.jpg", + "text": "$$\n\\begin{array} { r } { \\varepsilon _ { \\mathrm { t e s t } } = \\Big [ \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 2 } } \\bar { s } _ { \\beta } ^ { 2 } \\big | \\big | { \\bf P } \\bar { \\bf u } ^ { \\alpha } \\big | \\big | _ { 2 } ^ { 2 } \\Big ] ^ { - 1 } \\Big [ \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } s _ { \\alpha } ^ { 2 } \\big | \\big | { \\bf P } { \\bf u } ^ { \\alpha } \\big | \\big | _ { 2 } ^ { 2 } + \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 2 } } \\bar { s } _ { \\beta } ^ { 2 } \\big | \\big | { \\bf P } \\bar { \\bf u } ^ { \\alpha } \\big | \\big | _ { 2 } ^ { 2 } - 2 \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 2 } } s _ { \\alpha } \\bar { s } _ { \\beta } \\big ( { \\bf P } { \\bf u } ^ { \\alpha } \\cdot { \\bf P } { \\bf { \\bar { u } } } ^ { \\beta } \\big ) \\big ( { \\bf v } ^ { \\alpha } \\cdot { \\bf \\bar { v } } ^ { \\beta } \\big ) \\Big ] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 747, + 823, + 768 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "D TRANSFER LEARNING DERIVATIONS & DETAILS ", + "text_level": 1, + "bbox": [ + 173, + 800, + 607, + 818 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Thm 1 (Transfer theorem) The transfer benefit $\\scriptstyle { \\mathcal { T } } ^ { A B }$ : ", + "bbox": [ + 173, + 830, + 550, + 848 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "• Is unaffected by the $\\overline { { \\mathbf { U } } } ^ { A }$ and $\\overline { { \\mathbf { U } } } ^ { B }$ . \n• Is completely determined by only $\\sigma _ { z } ^ { 2 }$ $, \\overline { { \\mathbf { S } } } ^ { A } , \\overline { { \\mathbf { S } } } ^ { B }$ , and the $\\overline { { N } } _ { 2 } ^ { A }$ by $\\overline { { N } } _ { 2 } ^ { B }$ similarity matrix $\\overline { { \\mathbf { Q } } } =$ $\\overline { { \\mathbf { V } } } ^ { A T } \\overline { { \\mathbf { V } } } ^ { B }$ . ", + "bbox": [ + 214, + 857, + 825, + 922 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/f7d69e78559f4561bf6dde026948060bf03ae8cb1ead40ce9131543b8df1331b.jpg", + "image_caption": [ + "Figure 9: Alignment of randomly-initialized network modes to data modes and growth of singular values, plotted for 1 hidden layer (first two rows, a-d) and 3 hidden layers (last two rows, e-h), and for a rank 1 teacher (first and third rows, a & e), or a rank 3 teacher (second and fourth rows, b-d & f-h). The columns are the different modes, with respective singular values of 6, 4, and 2. $\\sigma _ { z }$ was set to 1. The deeper networks show substantially slower mode alignment, with alignment not completed until around when the singular value increases. " + ], + "image_footnote": [], + "bbox": [ + 174, + 165, + 808, + 758 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proof: We define ", + "bbox": [ + 173, + 103, + 290, + 117 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/f14751854781d9ed6b6cd2d58f59abe99d16da60103bf5deb51a18fe492fe695.jpg", + "text": "$$\n\\begin{array} { l l } { { { \\overline { { { \\cal { \\bf { U } } } } } } ^ { A B } = \\begin{array} { c } { { { \\overline { { { \\cal { N } } } } } _ { 3 } } } \\\\ { { { \\overline { { { \\cal { N } } } } } _ { 3 } } } \\\\ { { { \\overline { { { \\cal { N } } } } } _ { 3 } } } \\end{array} } } & { { { \\overline { { { \\cal { N } } } } } _ { 3 } ^ { A } \\begin{array} { c } { { { \\overline { { { \\cal { N } } } } } _ { 2 } ^ { B } } } \\\\ { { \\left| \\begin{array} { c } { { { \\bf { \\overline { { { \\bf { U } } } } } } ^ { A } } } \\end{array} \\right| } } } \\\\ { { { \\overline { { { \\bf { U } } } } } ^ { B } } } \\end{array} } & { { { \\overline { { { \\bf { S } } } } } ^ { A B } = \\begin{array} { c } { { { \\overline { { { \\cal { N } } } } } _ { 2 } ^ { A } } } \\\\ { { { \\overline { { { \\cal { N } } } } } _ { 2 } ^ { B } } } \\end{array} } } \\\\ { { { \\overline { { { \\cal { N } } } } } _ { 2 } ^ { A B } = \\begin{array} { c } { { { \\overline { { { \\cal { N } } } } } _ { 3 } ^ { A } } } \\end{array} } } & { { { \\overline { { { \\bf { U } } } } } _ { 2 } ^ { B } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 271, + 122, + 725, + 243 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/a18b9f94544a5a673db1bcfe1b5857da9b17361d350e76db494cf0796df70657.jpg", + "text": "$$\n\\mathbf { \\overline { { W } } } ^ { A + B } = [ \\frac { \\mathbf { \\overline { { U } } } ^ { A } } { \\mathbf { 0 } } | \\begin{array} { c } { \\mathbf { 0 } } \\\\ { \\mathbf { \\overline { { U } } } ^ { B } } \\end{array} ] [ \\frac { \\mathbf { \\overline { { S } } } ^ { A } } { \\mathbf { 0 } } | \\begin{array} { c } { \\mathbf { 0 } } \\\\ { \\mathbf { \\overline { { S } } } ^ { B } } \\end{array} ] [ \\frac { \\mathbf { \\overline { { V } } } ^ { A ^ { T } } } { \\mathbf { \\overline { { V } } } ^ { B ^ { T } } } ] \n$$", + "text_format": "latex", + "bbox": [ + 320, + 260, + 674, + 310 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Because of the 0 blocks in UAB, the vectors in blocks corresponding to task $A$ and task $B$ are completely orthogonal, so UAB remains orthonormal. Thus the relationship between the $\\overline { { \\mathbf { U } } } ^ { A }$ and $\\overline { { \\mathbf { U } } } ^ { A }$ is irrelevant to the transfer. (In our simulations we use arbitrary orthonormal matrices for $\\overline { { \\mathbf { U } } } ^ { A }$ and $\\overline { { \\mathbf { U } } } ^ { B }$ .) Therefore the transfer effects will be entirely driven by the relationship between the matrices $\\overline { { \\mathbf { V } } } ^ { A }$ and $\\overline { { \\mathbf { V } } } ^ { B }$ and the singular values. ", + "bbox": [ + 171, + 313, + 826, + 405 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We define $\\overline { { N } } _ { 2 } ^ { A }$ by $\\overline { { N } } _ { 2 } ^ { B }$ similarity matrix $\\mathbf { \\overline { { Q } } } = \\mathbf { \\overline { { V } } } ^ { A ^ { T } } \\mathbf { \\overline { { V } } } ^ { B }$ . If we think of the columns of each $\\overline { { \\mathbf { V } } }$ as spanning a low dimensional feature space in $\\overline { { N } } _ { 1 }$ dimensional input space that is important for each task, then $\\overline { { \\mathbf { Q } } }$ reflects the input feature subspace similarity matrix. We can now calculate the singular values of WA+ B. First, note that the input singular modes of WA+B a re eigenvectors of $\\overline { { \\mathbf { W } } } ^ { A + B ^ { T } } \\overline { { \\mathbf { W } } } ^ { A + B }$ B, and the associated singular values are square roots of the eigenvalues of WA+B. Now ", + "bbox": [ + 173, + 410, + 826, + 511 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/43f3e333d102893ea85bcb339755c45e779e6ca5d1bd65d76ea9b096dcd55ec1.jpg", + "text": "$$\n\\begin{array} { r } { \\overline { { \\mathbf { W } } } ^ { A + B ^ { T } } \\overline { { \\mathbf { W } } } ^ { A + B } = \\overline { { \\mathbf { V } } } ^ { A B } \\overline { { \\mathbf { S } } } ^ { A B } \\overline { { \\mathbf { U } } } ^ { A B ^ { T } } \\overline { { \\mathbf { U } } } ^ { A B } \\overline { { \\mathbf { S } } } ^ { A B } \\overline { { \\mathbf { V } } } ^ { A B ^ { T } } = \\overline { { \\mathbf { V } } } ^ { A B } \\overline { { \\mathbf { S } } } ^ { A B ^ { 2 } } \\overline { { \\mathbf { V } } } ^ { A B ^ { T } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 245, + 510, + 751, + 534 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Now if $\\vec { c }$ is an eigenvector of this matrix: ", + "bbox": [ + 176, + 537, + 442, + 553 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/d7fbbfee188d62cbef18a339da60f5fecd653384c9ddb9f8966295ffd74cec4d.jpg", + "text": "$$\n\\overline { { { \\bf V } } } ^ { A B } \\overline { { { \\bf S } } } ^ { A B ^ { 2 } } \\overline { { { \\bf V } } } ^ { A B ^ { T } } \\vec { c } = \\lambda \\vec { c }\n$$", + "text_format": "latex", + "bbox": [ + 413, + 559, + 586, + 582 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "This implies that ", + "bbox": [ + 173, + 590, + 285, + 604 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/50b46fc1cb03b08ff6212cd1f7f0a846462b9c8bc1bced40cebff3590a8bc23f.jpg", + "text": "$$\n\\mathbf { \\overline { { { V } } } } ^ { A B ^ { T } } \\mathbf { \\overline { { { V } } } } ^ { A B } \\mathbf { \\overline { { { S } } } } ^ { A B ^ { 2 } } \\mathbf { \\overline { { { V } } } } ^ { A B ^ { T } } { \\vec { c } } = \\lambda \\mathbf { \\overline { { { V } } } } ^ { A B ^ { T } } { \\vec { c } }\n$$", + "text_format": "latex", + "bbox": [ + 367, + 602, + 632, + 625 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Hence eigenvalues of VABSAB2V T are also eigenvalues of VABT V $\\overline { { { \\bf V } } } ^ { A B ^ { T } } \\overline { { { \\bf V } } } ^ { A B } \\overline { { { \\bf S } } } ^ { A B ^ { 2 } }$ , with the mapping between the eigenvectors given by $\\overline { { \\mathbf { V } } } ^ { A B }$ . Furthermore, this mapping must be a bijection for eigenvectors with non-zero eigenvalues, since the matrices have the same rank (the rank of $\\overline { { \\mathbf { V } } } ^ { A B }$ ). To see this, note that SAB 2 i s full rank. From this, it is clear that ", + "bbox": [ + 173, + 627, + 826, + 705 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/0bc80a4ea89838e575d1e39ac60c1781ae8dad24763c055da29210f52e7d5ca3.jpg", + "text": "$$\n\\mathrm { r a n k } \\overline { { { \\mathbf { V } } } } ^ { A B ^ { T } } \\overline { { { \\mathbf { V } } } } ^ { A B } \\overline { { { \\mathbf { S } } } } ^ { A B ^ { 2 } } = \\mathrm { r a n k } \\overline { { { \\mathbf { V } } } } ^ { A B ^ { T } } \\overline { { { \\mathbf { V } } } } ^ { A B } = \\mathrm { r a n k } \\overline { { { \\mathbf { V } } } } ^ { A B } .\n$$", + "text_format": "latex", + "bbox": [ + 310, + 710, + 686, + 733 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Furthermore, SAB2 is positive definite, so ", + "bbox": [ + 176, + 739, + 450, + 761 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/6024782c7c6e7e4621afe41cd86c3d33045b9dfe4a3339b1e81d109d9f9f61ae.jpg", + "text": "$$\n\\operatorname { r a n k } { \\overline { { \\mathbf { V } } } } ^ { A B } { \\overline { { \\mathbf { S } } } } ^ { A B ^ { 2 } } { \\overline { { \\mathbf { V } } } } ^ { A B ^ { T } } = \\operatorname { r a n k } { \\overline { { \\mathbf { V } } } } ^ { A B } .\n$$", + "text_format": "latex", + "bbox": [ + 375, + 766, + 620, + 790 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Now that we know the eigenvectors of these matrices are in bijection, note that: ", + "bbox": [ + 173, + 804, + 694, + 820 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/be28d71d674191e649188adf52e87ce586d0dcb0b12b5f5659e8081cf5581141.jpg", + "text": "$$\n\\begin{array}{c} \\overline { { \\mathbf { V } } } ^ { A B ^ { T } } \\overline { { \\mathbf { V } } } ^ { A B } \\overline { { \\mathbf { S } } } ^ { A B ^ { 2 } } = [ \\frac { \\overline { { \\mathbf { V } } } ^ { A ^ { T } } } { \\overline { { \\mathbf { V } } } ^ { B ^ { T } } } ] [ \\begin{array} { c } { \\overline { { \\mathbf { V } } } ^ { A } \\begin{array} { c } { \\overline { { \\mathbf { V } } } ^ { B } } \\end{array} } \\end{array} ] [ \\frac { \\overline { { \\mathbf { S } } } ^ { A ^ { 2 } } } { \\mathbf { 0 } } \\end{array} ] \\frac { \\mathbf { 0 } } { \\overline { { \\mathbf { S } } } ^ { B ^ { 2 } } } ] = [ \\begin{array} { c c } { \\mathbf { I } } & { \\mathbf { Q } } \\\\ { \\mathbf { Q } ^ { \\mathbf { T } } } & { \\mathbf { I } } \\end{array} ] [ \\frac { \\overline { { \\mathbf { S } } } ^ { A ^ { 2 } } } { \\mathbf { 0 } } \\begin{array} { c } { \\mathbf { [ \\begin{array} { c } { \\mathbf { 0 } } \\\\ { \\overline { { \\mathbf { S } } } ^ { B ^ { 2 } } } \\end{array} ] } \\overline { { \\mathbf { S } } } ^ { B ^ { 2 } } } \\end{array} ]\n$$", + "text_format": "latex", + "bbox": [ + 181, + 824, + 823, + 876 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Because the output modes don’t matter (as noted above), the alignment between the eigenvectors of VABSAB2V ABT and $\\overline { { \\mathbf { V } } } ^ { A }$ , weighted by their respective eigenvalues, gives the transfer benefit. ", + "bbox": [ + 173, + 887, + 825, + 925 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "For any given tasks, the transfer benefit can be calculated using our theory. However, in certain special cases, we can give exact answers. For example, in the rank one case with equal singular values between the tasks $\\mathit { \\Pi } _ { \\overline { { { s } } } _ { A } } ^ { \\prime } = \\mathit { \\Pi } _ { \\overline { { { s } } } _ { B } } ^ { \\prime } = \\mathit { \\Pi } _ { \\overline { { { s } } } } ^ { \\prime }$ ), the matrix ", + "bbox": [ + 173, + 103, + 825, + 146 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/6aae4f1a123bce7b66db026b59e4796fc3c20b5647fa05e85504bf5559ce2853.jpg", + "text": "$$\n\\left[ \\begin{array} { l l } { \\mathbf { I } } & { \\mathbf { Q } } \\\\ { \\mathbf { Q } ^ { \\mathbf { T } } } & { \\mathbf { I } } \\end{array} \\right] \\left[ \\frac { \\mathbf { \\overline { { S } } } ^ { A ^ { 2 } } \\mathbf { \\Phi } } { \\mathbf { 0 } } \\right] \\mathbf { \\overline { { S } } } ^ { B ^ { 2 } } \\mathbf { \\Phi } ]\n$$", + "text_format": "latex", + "bbox": [ + 393, + 156, + 602, + 208 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "reduces to ", + "bbox": [ + 173, + 218, + 243, + 233 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/6a2c53846f1ca48cec4d80ce2c1220c9e646aad6bf64eda364d75f6fa394d57f.jpg", + "text": "$$\n\\left[ \\begin{array} { l l } { 1 } & { q } \\\\ { q } & { 1 } \\end{array} \\right] \\overline { { s } } ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 454, + 236, + 544, + 271 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "with eigenvalues $s \\sqrt { 1 \\pm q }$ and eigenvectors ", + "bbox": [ + 176, + 282, + 460, + 297 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/2f0d2041763343936b837f370cfb8ba4aca59bf616c69f3d2049dadc2ca9c356.jpg", + "text": "$$\n\\left[ \\begin{array} { c c } { 1 } & { 1 } \\\\ { 1 } & { - 1 } \\end{array} \\right]\n$$", + "text_format": "latex", + "bbox": [ + 455, + 308, + 540, + 344 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Corresponding to the shared structure between the tasks and the differences between them. We note that the sign of the alignment $q$ is irrelevant as a special case of the fact (noted above) that any orthogonal transformation on the output modes does not affect transfer. ", + "bbox": [ + 174, + 354, + 825, + 397 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "D.1 MISALIGNMENT AND INTERFERENCE", + "text_level": 1, + "bbox": [ + 176, + 420, + 477, + 434 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Why is there interference between tasks which are not well aligned? In the rank one case, we are effectively changing the (input) singular dimensions of $\\overline { { \\mathbf { Y } } } _ { A }$ from $\\overline { { \\mathbf { V } } } ^ { A }$ to $\\overline { { \\mathbf { V } } } ^ { A B }$ . The two singular modes of VAB correspond to the shared structure between the tasks (weighted by the relative signal strengths), and the differences between them, respectively. Although we may be improving our estimates of the shared mode if $q > 0$ (by increasing its singular value relative to ${ \\overline { { s } } } _ { A }$ ), we are actually decreasing its alignment with $\\overline { { \\mathbf { V } } } ^ { A }$ unless $q = 1$ . This misalignment is captured by the second mode of $\\overline { { \\mathbf { V } } } ^ { A B }$ , but the increase in the singular value of the first mode must come at the cost of a decrease in the singular value of the second mode. See Fig. 10 for a conceptual illustration of this. This means that the multi-task setting allows the distinctions between the tasks to sink towards the sea of noise, while pulling out the common structure. In other words, transferring knowledge from one task always comes at the cost of ignoring differences between the tasks. Furthermore, incorporating a task $B$ allows its noise to seep into the task $A$ signal. Together, these two effects help to explain why transfer can be sometimes beneficial but sometimes detrimental. ", + "bbox": [ + 173, + 446, + 825, + 647 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/2ff9eeb17e34a1c5c018c10339262e9b2643717551b0503ce8da75485a108ec8.jpg", + "image_caption": [ + "Figure 10: Conceptual cartoon of how $\\mathcal { T } ^ { A B }$ , the transfer benefit (or cost) arises from alignment between the task’s input modes. " + ], + "image_footnote": [], + "bbox": [ + 379, + 671, + 619, + 765 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "E NON-GRADIENT TRAINING ALGORITHM ", + "text_level": 1, + "bbox": [ + 174, + 847, + 539, + 863 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "In Fig. 11 we show the match between the error achieved by training the student by gradient descent and the optimal stopping error predicted by the non-gradient shrinkage algorithm in the case of a rank-1 teacher. ", + "bbox": [ + 174, + 881, + 825, + 924 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/8fe699450a90e0a1da920afb212efc64c0b70cce8fa419ef6569d47e281026cc.jpg", + "image_caption": [ + "Figure 11: Match between optimal stopping error prediction from non-gradient training algorithm and empirical optimal stopping error for a rank-1 teacher. " + ], + "image_footnote": [], + "bbox": [ + 369, + 103, + 624, + 250 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "F TRANSFER RESULTS GENERALIZE TO NON-LINEAR NETWORKS ", + "text_level": 1, + "bbox": [ + 174, + 323, + 725, + 338 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Since most deep learning practitioners do not train linear networks, it is important that our theoretical insights generalize beyond this simple case. In this section we show that the transfer patterns qualitatively generalize to non-linear networks. ", + "bbox": [ + 176, + 354, + 823, + 397 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Here, we show results from teacher networks with $\\overline { { N } } _ { 1 } = 1 0 0 \\overline { { N } } _ { 3 } = 5 0$ , $\\overline { { N } } _ { 2 } = 4$ (thus the task is higher rank) and leaky relu non-linearities at the hidden and output layers. We train a student with leaky relu units and $N _ { 2 } = N _ { 3 }$ to solve this task. Results qualitatively look quite similar to those in Fig 5. of the main text for rank one linear teachers, see below. Thus our insights into transfer may help to understand multi-task benefits in more complicated architectures. ", + "bbox": [ + 173, + 402, + 825, + 474 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/3aa21b341a46731773f7366f14f4c4df08b4e4ea25985a881fa5ca23d11fc270.jpg", + "image_caption": [ + "Figure 12: Transfer benefit $\\mathcal { T } ^ { A B } ( \\overline { { s } } _ { A } , \\overline { { s } } _ { B } , q )$ for non-linear teachers and students, plotted at different values of ${ \\overline { { s } } } _ { A }$ . (a) $\\overline { { s } } _ { A } = 0 . 8 4 = \\sqrt [ 4 ] { A }$ . With support from another aligned task, especially one with moderately higher SNR, performance on a low SNR task will improve. (b) ${ \\overline { { s } } } _ { A } = 3$ . Tasks with modest signals will face interference from poorly aligned tasks, but benefits from well aligned tasks. These effects are amplified by SNR. (c) $\\overline { { s } } _ { A } = 1 0 0$ . Tasks with very strong signals will show little effect from other tasks (note y-axis scale), but any impact will be negative unless the tasks are very well aligned. " + ], + "image_footnote": [], + "bbox": [ + 176, + 489, + 810, + 613 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "G VARYING THE NUMBER OF TRAINING EXAMPLES", + "text_level": 1, + "bbox": [ + 173, + 761, + 614, + 776 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "In the main text, we focused on the test error dynamics in the case in which the number of examples equalled the number of inputs. Here we show how the formula for test error curves is modified as the number of training examples $P$ is varied. For simplicity, when $P \\neq N _ { 1 }$ , we focus on the case of a full rank student with aspect ratio $A = 1$ (so that $N _ { 1 } = N _ { 2 } = N _ { 3 }$ ). The more general case of lower rank students with non-unity aspect ratios can be easily found from this case, but with some additional bookkeeping. ", + "bbox": [ + 173, + 792, + 826, + 877 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "As before, we assume the teacher generates noisy outputs from a set of $P$ inputs: ", + "bbox": [ + 173, + 883, + 702, + 898 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/017aac481874cee2e8ced8eecd7adc08c4e109af6d0b198562927d7c19ea5c3d.jpg", + "text": "$$\n\\hat { \\mathbf { y } } ^ { \\mu } = \\overline { { \\mathbf { W } } } \\hat { \\mathbf { x } } ^ { \\mu } + \\mathbf { z } ^ { \\mu } \\qquad \\mathrm { f o r } \\quad \\mu = 1 , \\ldots , \\mathbf { P } .\n$$", + "text_format": "latex", + "bbox": [ + 357, + 906, + 640, + 924 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/cdfbc5d1756ec978413726647b732f78c395fed4934518082d5a82318c0a50f6.jpg", + "image_caption": [ + "Figure 13: The effects of varying the number of training examples $P$ . (a) Test error for a student learning from a rank-1 teacher with an SNR of 3, with different numbers of inputs. (b,c) Minimum generalization error plotted against $\\sqrt { P / N _ { 1 } }$ and SNR · $\\sqrt { P / N _ { 1 } }$ , respectively, at different SNRs. When $P \\geq N _ { 1 }$ , the minimum generalization error is simply determined by $\\mathrm { S N R } \\sqrt { P / N _ { 1 } }$ , so all curves converge to a single asymptotic line in (c) as $P$ increases. When $P < N _ { 1 }$ , however, the curves for different SNRs separate because the projection and noise effects depend on initial SNR. (d) Optimal stopping error for gaussian vs. orthogonal inputs, showing a strong correlation. Thus our use of orthogonal inputs in the theory also yields insight into the more general case of approximately unit norm Gaussian inputs. (For all panels $N _ { 1 } = N _ { 2 } = N _ { 3 } = 1 0 0$ , ${ \\overline { { N } } } _ { 2 } ^ { - } = 1 .$ ) " + ], + "image_footnote": [], + "bbox": [ + 178, + 99, + 803, + 354 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "This training set yields important second-order training statistics that will guide student learning: ", + "bbox": [ + 171, + 522, + 805, + 537 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/209c20bdf91e361008c626888198448737b108bc9fa9e2b412c9e72f9d64346e.jpg", + "text": "$$\n\\begin{array} { r } { \\pmb { \\Sigma } ^ { 1 1 } \\equiv \\hat { \\mathbf { X } } \\hat { \\mathbf { X } } ^ { T } \\qquad \\pmb { \\Sigma } ^ { 3 1 } \\equiv \\hat { \\mathbf { Y } } \\hat { \\mathbf { X } } ^ { T } = \\overline { { \\mathbf { W } } } \\hat { \\mathbf { X } } \\hat { \\mathbf { X } } ^ { T } + \\mathbf { Z } \\hat { \\mathbf { X } } ^ { T } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 323, + 540, + 674, + 558 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Here $\\hat { \\mathbf { X } } , \\hat { \\mathbf { Y } }$ , and $\\mathbf { Z }$ are each $\\overline { { N } } _ { 1 }$ by $P$ , $\\overline { { N } } _ { 3 }$ by $P$ , and $\\overline { { N } } _ { 3 }$ by $P$ matrices respectively, whose $\\mu ^ { \\mathrm { i } }$ ’th columns are $\\hat { \\mathbf { x } } ^ { \\mu } , \\hat { \\mathbf { y } } ^ { \\mu }$ , and $\\hat { \\mathbf { z } } ^ { \\mu }$ , respectively. $\\dot { \\mathbf { \\Sigma } } ^ { 1 \\mathrm { 1 } }$ is an $\\overline { { N } } _ { 1 }$ by $\\overline { { N } } _ { 1 }$ input correlation matrix, and $\\pmb { \\Sigma } ^ { 3 1 }$ is an $\\overline { { N } } _ { 3 }$ by $\\overline { { N } } _ { 1 }$ the input-output correlation matrix. We choose the matrix elements $z _ { i } ^ { \\mu }$ of the noise matrix $\\mathbf { Z }$ to be drawn iid from a Gaussian with zero mean and variance $\\sigma _ { z } ^ { 2 } / \\overline { { N } } _ { 1 }$ . The noise scaling is chosen so the singular values of the teacher $\\overline { { \\mathbf { W } } }$ and the noise $\\mathbf { Z }$ are both $O ( 1 )$ , leading to non-trivial generalization effects. Furthermore, we chose training inputs to be close to unit-norm, and make the input covariance matrix $\\pmb { \\Sigma } ^ { 1 1 }$ as white as possible (whitening is a common pre-processing step for inputs). When $P > \\overline { { N } } _ { 1 }$ , this can be done by choosing the rows of $\\hat { \\bf X }$ to be orthonormal and then scaling up by $\\sqrt { P / \\overline { { N } } _ { 1 } }$ , so the columns are approximately unit norm. Then $\\Sigma ^ { 1 1 } = P / \\overline { { N } } _ { 1 } \\mathbf { I }$ is proportional to the identity. On the otherhand, if $P < \\overline { { N } } _ { 1 }$ , we choose the columns of $\\hat { \\bf X }$ to be orthonormal, so that $\\pmb { \\Sigma } ^ { 1 1 } = \\pmb { \\mathcal { P } } ^ { | | }$ , where $\\mathcal { P } ^ { | | }$ is a projection operator onto the $P$ dimensional column space of $\\hat { \\mathbf X }$ spanned by the input examples. Both these choices are intended to approximate the situation in which the columns of $\\hat { \\bf X }$ are chosen to be iid unit-norm vectors. Finally, as generalization performance will depend on the ratio of teacher singular values to the noise variance parameter $\\sigma _ { z } ^ { 2 }$ we simply set $\\sigma _ { z } = 1$ as in the main text. Thus, given the unit-norm inputs, we can think of the teacher singular values as signal to noise ratios (SNRs). We now examine how the dynamics of the test error evolves as we vary the number of training examples $P$ . We split our analyses into two distinct regimes: (1) the oversampled regime in which the data density $\\bar { \\mathcal { D } } \\equiv P / N _ { 1 } > \\mathrm { ~ \\bar { ~ } { ~ 1 ~ } ~ }$ , and (2) the undersampled regime in which $\\mathcal { D } < 1$ . ", + "bbox": [ + 173, + 561, + 826, + 852 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "G.1 THE OVERSAMPLED REGIME ", + "text_level": 1, + "bbox": [ + 176, + 867, + 415, + 882 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "The oversampled regime $\\mathcal { D } > 1 \\vert$ ) is relatively simple. First $\\pmb { \\Sigma } ^ { 1 1 }$ is scaled up by a factor of $\\mathcal { D }$ . And in the input-output covariance matrix, ${ \\boldsymbol { \\Sigma } } ^ { 3 1 } = \\overline { { \\mathbf { W } } } \\hat { \\mathbf { X } } \\hat { \\mathbf { X } } ^ { T } + \\mathbf { Z } \\hat { \\mathbf { X } } ^ { T }$ , the signal component, $\\overline { { \\mathbf { W } } } \\hat { \\mathbf { X } } \\hat { \\mathbf { X } } ^ { T }$ is scaled up by a factor of $\\mathcal { D }$ while the noise component √ $\\mathbf { Z } \\hat { \\mathbf { X } } ^ { T }$ has the same singular value spectrum as the $\\mathcal { D } = 1$ case, up to an overall scaling by √ $\\sqrt { \\mathcal { D } }$ (since the rows of $\\hat { \\mathbf X }$ are orthogonal and all its√ singular values are equal to $\\sqrt { \\mathcal { D } }$ ). This leads to an increase in the effective SNR by a factor of $\\sqrt { \\mathcal { D } }$ . Thus overall, the test error curves for the case of $\\mathcal { D } > 1$ can be simply obtained from the theory of the test error curves for $\\mathcal { D } = 1$ through two modifications: (1) a boost in the SNR for the $\\mathcal { D } = 1$ case by a multiplicative factor of $\\sqrt { \\mathcal { D } }$ , and (2) and an overall speed up in the learning time by a multiplicative factor of $\\mathcal { D }$ . ", + "bbox": [ + 176, + 892, + 823, + 924 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 102, + 825, + 207 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "G.2 THE UNDERSAMPLED REGIME ", + "text_level": 1, + "bbox": [ + 176, + 223, + 426, + 238 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "For the undersampled regime $\\mathcal { D } < 1 \\dot { }$ ), we must account for the fact that the $P$ training inputs do not span the full $N _ { 1 }$ dimensional space of all inputs. Thus the projection operator $\\mathcal { P } ^ { | | }$ onto the $P$ dimensional column space of $\\hat { \\mathbf X }$ plays a crucial role. Indeed the input-correlation $\\pmb { \\Sigma } ^ { 1 1 } = \\pmb { \\mathcal { P } } ^ { | | }$ . And ${ \\boldsymbol { \\Sigma } } ^ { 3 1 } = \\overline { { \\mathbf { W } } } \\mathbf { \\mathcal { P } } ^ { | | } + \\mathbf { Z } \\hat { \\mathbf { X } } ^ { T }$ . This implies that the learning dynamics only transforms the composite student map W from the $P$ dimensional subspace spanned by the inputs to the $N _ { 3 }$ dimensional output space. In contrast, the student map from the $N _ { 1 } - P$ dimensional subspace orthogonal to the image of $\\mathcal { P } ^ { | | }$ remains frozen. Tracing through the equations of the main paper and accounting for the projection operator $\\mathcal { P } ^ { | | }$ , we find the effective aspect ratio for this undersampled learning problem (when $N _ { 3 } = N _ { 2 } = N _ { 1 } ;$ is no longer $\\mathcal { A } = N _ { 3 } / \\bar { N _ { 1 } }$ but rather $\\mathcal { D } = P / N _ { 1 }$ . Furthermore, in the limit $\\overline { { N } } _ { 3 } , \\overline { { N } } _ { 1 } \\infty$ while $\\overline { { N } } _ { 2 }$ remains √ $O ( 1 )$ , the singular values of the signal component $\\overline { { \\mathbf { W } } } \\mathcal { P } ^ { | | }$ of $\\pmb { \\Sigma } ^ { 3 1 }$ are attenuated by a factor of $\\sqrt { \\mathcal { D } }$ , making the associated singular vectors more susceptible to noise. Again tracing through the equations of the main paper, with all of these modifications, we find the final formula for test error curves in the undersampled measurement regime: ", + "bbox": [ + 173, + 248, + 825, + 445 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/8f6ceadd27457f5652cdaa6ec4f561c6d4443cbcd30ad5996998202abd0ca431.jpg", + "text": "$$\n\\varepsilon _ { \\mathsf { t e s t } } ( t ) = { \\frac { \\left[ ( N _ { 3 } - P ) \\epsilon ^ { 2 } + ( P - { \\overline { { N } } } _ { 2 } ) \\langle s ( { \\hat { s } } , t ) ^ { 2 } \\rangle + \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\left[ ( s _ { \\alpha } ( t ) - { \\overline { { s } } } _ { \\alpha } ) ^ { 2 } + 2 s _ { \\alpha } ( t ) { \\overline { { s } } } _ { \\alpha } ( 1 - { \\mathcal { O } } ( { \\sqrt { \\overline { { D } } } } { \\overline { { s } } } _ { \\alpha } ) ) \\right] \\right] } { \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } { \\overline { { s } } } _ { \\alpha } ^ { 2 } \\right] } }\n$$", + "text_format": "latex", + "bbox": [ + 222, + 449, + 776, + 489 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "This equation has several modifications compared to the case $P = N _ { 1 }$ in (15). First the term in the numerator involving $N _ { 3 } - P$ reflects generalization error due to the $N _ { 3 } - P$ dimensional frozen subspace, and the initial weight variance $\\epsilon ^ { 2 }$ contributes to this generalization error. The second term in the numerator involves all the $P - { \\overline { { N } } } _ { 2 }$ training modes which cannot be correlated with the teacher, and the average $\\langle \\cdot \\rangle$ is over a Marcenko-Pasteur distribution of singular values (see (13)) except with the aspect ratio $\\mathcal { A }$ replaced by $\\mathcal { D }$ . The third term accounts for learned correlations between the student and teacher. It involves the transformation from teacher singular values $\\overline { { s } }$ to training data singular values $\\hat { s }$ through the formula (11) except with the aspect ratio replacement √ $A \\mathcal { D }$ , and the effective teacher singular value attenuation $\\overline { { s } } \\sqrt { D } \\overline { { s } }$ . Similarly, the computation of the singular vector overlap is done through (12) also with the replacements $A \\mathcal { D }$ and $\\overline { { s } } \\sqrt { D } \\overline { { s } }$ . ", + "bbox": [ + 173, + 491, + 825, + 635 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "G.3 COMPARISON OF THEORY AND EXPERIMENT FOR UNDER AND OVER SAMPLED MEASUREMENT REGIMES ", + "text_level": 1, + "bbox": [ + 178, + 651, + 756, + 678 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "In Fig. 13, we show an excellent match between our theory and empirical simulations for varying values of $P$ , both in the oversampled and undersampled measurement regimes. There are a number of interesting features to note. First, although the minimum generalization error improves monotonically with $P$ , the asymptotic $t \\to \\infty$ ) generalization error does not, because of a frozen subspace (Advani & Saxe, 2017) of the modes that are not overfit when $P < N _ { 1 }$ , because the training data rank is $\\le P$ . Second, when $P \\geq N _ { 1 }$ , the minimum generalization error is simply determined by $\\mathbf { S N R } \\sqrt { P / N _ { 1 } }$ , so all curves converge to a single asymptotic line as $P$ increases. When $P < N _ { 1 }$ , however, the curves for different SNRs separate because the projection and noise effects depend on initial SNR. Finally, in Fig. 13D we show that approximately unit norm i.i.d. gaussian inputs yield similar results to the orthogonalized data matrices we employed in the theory, although the gaussian inputs do result in slightly higher optimal stopping error. ", + "bbox": [ + 173, + 689, + 826, + 845 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "H LESS THAN FULL RANK STUDENTS ", + "text_level": 1, + "bbox": [ + 176, + 866, + 498, + 881 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Although we generally assumed students were full rank in the main text to simplify the calculations, our theory remains exact for TA networks of any rank. Furthermore, as shown in Fig. 14, the TA and random networks again show very similar optimal stopping generalization error, but with the optimal stopping time of the random networks lagging behind that of the TA networks. Furthermore, this lag increases as the rank of the random network decreases (because a low rank network will have less initial projection onto the random modes, there is is more alignment to be done). However, reducing the student rank does not change the optimal stopping error (as long as it is still greater than the teacher rank). ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 826, + 188 + ], + "page_idx": 19 + }, + { + "type": "image", + "img_path": "images/6f1091544ee918b4ed7b6456f495e4dd5c10e618ea9cc7217b0d7c4d68a60fb8.jpg", + "image_caption": [ + "(c) Optimal generalization error vs. optimal(d) Optimal generalization error vs. optimal stopping time for stopping time for randomly initialized networksinitially aligned networks ", + "Figure 14: Empirical verification that the simplifying assumptions of our theory are approximately valid in the regime we are considering at different student ranks. Initializations with random initial weights (random init.) and initializations with initial weight aligned to the noisy data SVD (aligned init.) are compared across varying student ranks. (a) The minimum generalization errors are almost identical between the different initializations and different student ranks. (b) The optimal stopping time in the randomly initialized networks consistently lags behind the aligned networks, because it takes time for the alignment to occur. This lag increases as the students rank decreases. (c) Randomly initialized networks of varying ranks obey qualitatively similar trends of increase in optimal stopping error and optimal stopping time as SNR decreases. (d) The theory predicts the aligned networks trends of increase in optimal stopping error and optimal stopping time with decreasing SNR almost perfectly. (All plots are made with a rank 1 teacher and $N _ { 1 } = N _ { 3 } = 1 0 0 \\rangle$ ) " + ], + "image_footnote": [], + "bbox": [ + 173, + 204, + 825, + 633 + ], + "page_idx": 19 + } +] \ No newline at end of file diff --git a/parse/train/ryfMLoCqtQ/ryfMLoCqtQ_middle.json b/parse/train/ryfMLoCqtQ/ryfMLoCqtQ_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..2655837f0002f246076887bc00a8a0850b86e3b5 --- /dev/null +++ b/parse/train/ryfMLoCqtQ/ryfMLoCqtQ_middle.json @@ -0,0 +1,61646 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 80, + 507, + 135 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 509, + 100 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 509, + 100 + ], + "score": 1.0, + "content": "AN ANALYTIC THEORY OF GENERALIZATION DYNAM-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 101, + 508, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 508, + 118 + ], + "score": 1.0, + "content": "ICS AND TRANSFER LEARNING IN DEEP LINEAR NET-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 120, + 162, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 162, + 139 + ], + "score": 1.0, + "content": "WORKS", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 113, + 155, + 240, + 199 + ], + "lines": [ + { + "bbox": [ + 112, + 154, + 208, + 167 + ], + "spans": [ + { + "bbox": [ + 112, + 154, + 208, + 167 + ], + "score": 1.0, + "content": "Andrew K. Lampinen", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 164, + 222, + 180 + ], + "spans": [ + { + "bbox": [ + 111, + 164, + 222, + 180 + ], + "score": 1.0, + "content": "Department of Psychology", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 112, + 176, + 193, + 189 + ], + "spans": [ + { + "bbox": [ + 112, + 176, + 193, + 189 + ], + "score": 1.0, + "content": "Stanford University", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 189, + 240, + 200 + ], + "spans": [ + { + "bbox": [ + 112, + 189, + 240, + 200 + ], + "score": 1.0, + "content": "lampinen@stanford.edu", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 310, + 155, + 438, + 221 + ], + "lines": [ + { + "bbox": [ + 310, + 154, + 375, + 168 + ], + "spans": [ + { + "bbox": [ + 310, + 154, + 375, + 168 + ], + "score": 1.0, + "content": "Surya Ganguli", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 309, + 165, + 439, + 179 + ], + "spans": [ + { + "bbox": [ + 309, + 165, + 439, + 179 + ], + "score": 1.0, + "content": "Department of Applied Physics", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 309, + 176, + 392, + 190 + ], + "spans": [ + { + "bbox": [ + 309, + 176, + 392, + 190 + ], + "score": 1.0, + "content": "Stanford University", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 309, + 188, + 329, + 199 + ], + "spans": [ + { + "bbox": [ + 309, + 188, + 329, + 199 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 309, + 198, + 367, + 211 + ], + "spans": [ + { + "bbox": [ + 309, + 198, + 367, + 211 + ], + "score": 1.0, + "content": "Google Brain", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 310, + 210, + 438, + 222 + ], + "spans": [ + { + "bbox": [ + 310, + 210, + 438, + 222 + ], + "score": 1.0, + "content": "sganguli@stanford.edu", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 278, + 250, + 333, + 262 + ], + "lines": [ + { + "bbox": [ + 277, + 249, + 335, + 263 + ], + "spans": [ + { + "bbox": [ + 277, + 249, + 335, + 263 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 143, + 274, + 469, + 494 + ], + "lines": [ + { + "bbox": [ + 141, + 272, + 470, + 289 + ], + "spans": [ + { + "bbox": [ + 141, + 272, + 470, + 289 + ], + "score": 1.0, + "content": "Much attention has been devoted recently to the generalization puzzle in deep", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 140, + 284, + 470, + 300 + ], + "spans": [ + { + "bbox": [ + 140, + 284, + 470, + 300 + ], + "score": 1.0, + "content": "learning: large, deep networks can generalize well, but existing theories bounding", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 296, + 469, + 310 + ], + "spans": [ + { + "bbox": [ + 141, + 296, + 469, + 310 + ], + "score": 1.0, + "content": "generalization error are exceedingly loose, and thus cannot explain this striking", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 308, + 469, + 319 + ], + "spans": [ + { + "bbox": [ + 142, + 308, + 469, + 319 + ], + "score": 1.0, + "content": "performance. Furthermore, a major hope is that knowledge may transfer across", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 318, + 470, + 330 + ], + "spans": [ + { + "bbox": [ + 141, + 318, + 470, + 330 + ], + "score": 1.0, + "content": "tasks, so that multi-task learning can improve generalization on individual tasks.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 329, + 470, + 342 + ], + "spans": [ + { + "bbox": [ + 141, + 329, + 470, + 342 + ], + "score": 1.0, + "content": "However we lack analytic theories that can quantitatively predict how the degree of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 340, + 469, + 353 + ], + "spans": [ + { + "bbox": [ + 141, + 340, + 469, + 353 + ], + "score": 1.0, + "content": "knowledge transfer depends on the relationship between the tasks. We develop an", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 351, + 470, + 363 + ], + "spans": [ + { + "bbox": [ + 142, + 351, + 470, + 363 + ], + "score": 1.0, + "content": "analytic theory of the nonlinear dynamics of generalization in deep linear networks,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 362, + 469, + 375 + ], + "spans": [ + { + "bbox": [ + 141, + 362, + 469, + 375 + ], + "score": 1.0, + "content": "both within and across tasks. In particular, our theory provides analytic solutions", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 372, + 470, + 386 + ], + "spans": [ + { + "bbox": [ + 141, + 372, + 470, + 386 + ], + "score": 1.0, + "content": "to the training and testing error of deep networks as a function of training time,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 384, + 470, + 396 + ], + "spans": [ + { + "bbox": [ + 141, + 384, + 470, + 396 + ], + "score": 1.0, + "content": "number of examples, network size and initialization, and the task structure and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 396, + 469, + 407 + ], + "spans": [ + { + "bbox": [ + 141, + 396, + 469, + 407 + ], + "score": 1.0, + "content": "SNR. Our theory reveals that deep networks progressively learn the most important", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 405, + 469, + 419 + ], + "spans": [ + { + "bbox": [ + 141, + 405, + 469, + 419 + ], + "score": 1.0, + "content": "task structure first, so that generalization error at the early stopping time primarily", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 417, + 469, + 429 + ], + "spans": [ + { + "bbox": [ + 141, + 417, + 469, + 429 + ], + "score": 1.0, + "content": "depends on task structure and is independent of network size. This suggests", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 142, + 429, + 470, + 439 + ], + "spans": [ + { + "bbox": [ + 142, + 429, + 470, + 439 + ], + "score": 1.0, + "content": "any tight bound on generalization error must take into account task structure,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 142, + 439, + 471, + 451 + ], + "spans": [ + { + "bbox": [ + 142, + 439, + 471, + 451 + ], + "score": 1.0, + "content": "and explains observations about real data being learned faster than random data.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 142, + 450, + 470, + 462 + ], + "spans": [ + { + "bbox": [ + 142, + 450, + 470, + 462 + ], + "score": 1.0, + "content": "Intriguingly our theory also reveals the existence of a learning algorithm that", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 141, + 461, + 470, + 473 + ], + "spans": [ + { + "bbox": [ + 141, + 461, + 470, + 473 + ], + "score": 1.0, + "content": "proveably out-performs neural network training through gradient descent. Finally,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 472, + 470, + 484 + ], + "spans": [ + { + "bbox": [ + 141, + 472, + 470, + 484 + ], + "score": 1.0, + "content": "for transfer learning, our theory reveals that knowledge transfer depends sensitively,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 141, + 482, + 447, + 495 + ], + "spans": [ + { + "bbox": [ + 141, + 482, + 447, + 495 + ], + "score": 1.0, + "content": "but computably, on the SNRs and input feature alignments of pairs of tasks.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 23.5 + }, + { + "type": "title", + "bbox": [ + 108, + 508, + 206, + 521 + ], + "lines": [ + { + "bbox": [ + 105, + 507, + 208, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 208, + 524 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "Many deep learning practitioners closely monitor both training and test errors, hoping to achieve", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 538, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 553 + ], + "score": 1.0, + "content": "both a small training error and a small generalization error, or gap between testing and training", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 551, + 507, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 507, + 563 + ], + "score": 1.0, + "content": "errors. Training is usually stopped early, before overfitting sets in and increases the test error.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "This procedure often results in large networks that generalize well on structured tasks, raising an", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "important generalization puzzle (Zhang et al., 2016): many existing theories that upper bound", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "generalization error (Bartlett & Mendelson, 2002; Neyshabur et al., 2015; Dziugaite & Roy, 2017;", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "Golowich et al., 2017; Neyshabur et al., 2017; Bartlett et al., 2017; Arora et al., 2018, e.g) in terms of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 605, + 504, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 504, + 618 + ], + "score": 1.0, + "content": "various measures of network complexity yield very loose bounds. Therefore they cannot explain the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 616, + 312, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 312, + 629 + ], + "score": 1.0, + "content": "impressive generalization capabilities of deep nets.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 633, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "In the absence of any such tight and computable theory of deep network generalization error, we", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "develop an analytic theory of generalization error for deep linear networks. Such networks exhibit", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "highly nonlinear learning dynamics (Saxe et al., 2013a;b) including many prominent phenomena", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "score": 1.0, + "content": "like learning plateaus, saddle points, and sudden drops in training error. Moreover, theory developed", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "for the learning dynamics of deep linear networks directly inspired better initialization schemes", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "for nonlinear networks (Schoenholz et al., 2016; Pennington et al., 2017; 2018). Here we show", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "that deep linear networks also provide a good theoretical model for generalization dynamics. In", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "particular we develop an analytic theory for both the training and test error of a deep linear network", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "as a function of training time, number of training examples, network architecture, initialization, and", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 48 + } + ], + "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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 80, + 507, + 135 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 509, + 100 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 509, + 100 + ], + "score": 1.0, + "content": "AN ANALYTIC THEORY OF GENERALIZATION DYNAM-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 101, + 508, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 508, + 118 + ], + "score": 1.0, + "content": "ICS AND TRANSFER LEARNING IN DEEP LINEAR NET-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 120, + 162, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 162, + 139 + ], + "score": 1.0, + "content": "WORKS", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 113, + 155, + 240, + 199 + ], + "lines": [ + { + "bbox": [ + 112, + 154, + 208, + 167 + ], + "spans": [ + { + "bbox": [ + 112, + 154, + 208, + 167 + ], + "score": 1.0, + "content": "Andrew K. Lampinen", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 164, + 222, + 180 + ], + "spans": [ + { + "bbox": [ + 111, + 164, + 222, + 180 + ], + "score": 1.0, + "content": "Department of Psychology", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 112, + 176, + 193, + 189 + ], + "spans": [ + { + "bbox": [ + 112, + 176, + 193, + 189 + ], + "score": 1.0, + "content": "Stanford University", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 189, + 240, + 200 + ], + "spans": [ + { + "bbox": [ + 112, + 189, + 240, + 200 + ], + "score": 1.0, + "content": "lampinen@stanford.edu", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 111, + 154, + 240, + 200 + ] + }, + { + "type": "list", + "bbox": [ + 310, + 155, + 438, + 221 + ], + "lines": [ + { + "bbox": [ + 310, + 154, + 375, + 168 + ], + "spans": [ + { + "bbox": [ + 310, + 154, + 375, + 168 + ], + "score": 1.0, + "content": "Surya Ganguli", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 309, + 165, + 439, + 179 + ], + "spans": [ + { + "bbox": [ + 309, + 165, + 439, + 179 + ], + "score": 1.0, + "content": "Department of Applied Physics", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 309, + 176, + 392, + 190 + ], + "spans": [ + { + "bbox": [ + 309, + 176, + 392, + 190 + ], + "score": 1.0, + "content": "Stanford University", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 309, + 188, + 329, + 199 + ], + "spans": [ + { + "bbox": [ + 309, + 188, + 329, + 199 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 309, + 198, + 367, + 211 + ], + "spans": [ + { + "bbox": [ + 309, + 198, + 367, + 211 + ], + "score": 1.0, + "content": "Google Brain", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 310, + 210, + 438, + 222 + ], + "spans": [ + { + "bbox": [ + 310, + 210, + 438, + 222 + ], + "score": 1.0, + "content": "sganguli@stanford.edu", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + } + ], + "index": 9.5, + "bbox_fs": [ + 309, + 154, + 439, + 222 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 250, + 333, + 262 + ], + "lines": [ + { + "bbox": [ + 277, + 249, + 335, + 263 + ], + "spans": [ + { + "bbox": [ + 277, + 249, + 335, + 263 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 143, + 274, + 469, + 494 + ], + "lines": [ + { + "bbox": [ + 141, + 272, + 470, + 289 + ], + "spans": [ + { + "bbox": [ + 141, + 272, + 470, + 289 + ], + "score": 1.0, + "content": "Much attention has been devoted recently to the generalization puzzle in deep", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 140, + 284, + 470, + 300 + ], + "spans": [ + { + "bbox": [ + 140, + 284, + 470, + 300 + ], + "score": 1.0, + "content": "learning: large, deep networks can generalize well, but existing theories bounding", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 296, + 469, + 310 + ], + "spans": [ + { + "bbox": [ + 141, + 296, + 469, + 310 + ], + "score": 1.0, + "content": "generalization error are exceedingly loose, and thus cannot explain this striking", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 308, + 469, + 319 + ], + "spans": [ + { + "bbox": [ + 142, + 308, + 469, + 319 + ], + "score": 1.0, + "content": "performance. Furthermore, a major hope is that knowledge may transfer across", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 318, + 470, + 330 + ], + "spans": [ + { + "bbox": [ + 141, + 318, + 470, + 330 + ], + "score": 1.0, + "content": "tasks, so that multi-task learning can improve generalization on individual tasks.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 329, + 470, + 342 + ], + "spans": [ + { + "bbox": [ + 141, + 329, + 470, + 342 + ], + "score": 1.0, + "content": "However we lack analytic theories that can quantitatively predict how the degree of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 340, + 469, + 353 + ], + "spans": [ + { + "bbox": [ + 141, + 340, + 469, + 353 + ], + "score": 1.0, + "content": "knowledge transfer depends on the relationship between the tasks. We develop an", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 351, + 470, + 363 + ], + "spans": [ + { + "bbox": [ + 142, + 351, + 470, + 363 + ], + "score": 1.0, + "content": "analytic theory of the nonlinear dynamics of generalization in deep linear networks,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 362, + 469, + 375 + ], + "spans": [ + { + "bbox": [ + 141, + 362, + 469, + 375 + ], + "score": 1.0, + "content": "both within and across tasks. In particular, our theory provides analytic solutions", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 372, + 470, + 386 + ], + "spans": [ + { + "bbox": [ + 141, + 372, + 470, + 386 + ], + "score": 1.0, + "content": "to the training and testing error of deep networks as a function of training time,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 384, + 470, + 396 + ], + "spans": [ + { + "bbox": [ + 141, + 384, + 470, + 396 + ], + "score": 1.0, + "content": "number of examples, network size and initialization, and the task structure and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 396, + 469, + 407 + ], + "spans": [ + { + "bbox": [ + 141, + 396, + 469, + 407 + ], + "score": 1.0, + "content": "SNR. Our theory reveals that deep networks progressively learn the most important", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 405, + 469, + 419 + ], + "spans": [ + { + "bbox": [ + 141, + 405, + 469, + 419 + ], + "score": 1.0, + "content": "task structure first, so that generalization error at the early stopping time primarily", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 417, + 469, + 429 + ], + "spans": [ + { + "bbox": [ + 141, + 417, + 469, + 429 + ], + "score": 1.0, + "content": "depends on task structure and is independent of network size. This suggests", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 142, + 429, + 470, + 439 + ], + "spans": [ + { + "bbox": [ + 142, + 429, + 470, + 439 + ], + "score": 1.0, + "content": "any tight bound on generalization error must take into account task structure,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 142, + 439, + 471, + 451 + ], + "spans": [ + { + "bbox": [ + 142, + 439, + 471, + 451 + ], + "score": 1.0, + "content": "and explains observations about real data being learned faster than random data.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 142, + 450, + 470, + 462 + ], + "spans": [ + { + "bbox": [ + 142, + 450, + 470, + 462 + ], + "score": 1.0, + "content": "Intriguingly our theory also reveals the existence of a learning algorithm that", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 141, + 461, + 470, + 473 + ], + "spans": [ + { + "bbox": [ + 141, + 461, + 470, + 473 + ], + "score": 1.0, + "content": "proveably out-performs neural network training through gradient descent. Finally,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 472, + 470, + 484 + ], + "spans": [ + { + "bbox": [ + 141, + 472, + 470, + 484 + ], + "score": 1.0, + "content": "for transfer learning, our theory reveals that knowledge transfer depends sensitively,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 141, + 482, + 447, + 495 + ], + "spans": [ + { + "bbox": [ + 141, + 482, + 447, + 495 + ], + "score": 1.0, + "content": "but computably, on the SNRs and input feature alignments of pairs of tasks.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 23.5, + "bbox_fs": [ + 140, + 272, + 471, + 495 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 508, + 206, + 521 + ], + "lines": [ + { + "bbox": [ + 105, + 507, + 208, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 208, + 524 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "Many deep learning practitioners closely monitor both training and test errors, hoping to achieve", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 538, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 553 + ], + "score": 1.0, + "content": "both a small training error and a small generalization error, or gap between testing and training", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 551, + 507, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 507, + 563 + ], + "score": 1.0, + "content": "errors. Training is usually stopped early, before overfitting sets in and increases the test error.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "This procedure often results in large networks that generalize well on structured tasks, raising an", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "important generalization puzzle (Zhang et al., 2016): many existing theories that upper bound", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "generalization error (Bartlett & Mendelson, 2002; Neyshabur et al., 2015; Dziugaite & Roy, 2017;", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "Golowich et al., 2017; Neyshabur et al., 2017; Bartlett et al., 2017; Arora et al., 2018, e.g) in terms of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 605, + 504, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 504, + 618 + ], + "score": 1.0, + "content": "various measures of network complexity yield very loose bounds. Therefore they cannot explain the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 616, + 312, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 312, + 629 + ], + "score": 1.0, + "content": "impressive generalization capabilities of deep nets.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 529, + 507, + 629 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 633, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "In the absence of any such tight and computable theory of deep network generalization error, we", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "develop an analytic theory of generalization error for deep linear networks. Such networks exhibit", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "highly nonlinear learning dynamics (Saxe et al., 2013a;b) including many prominent phenomena", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "score": 1.0, + "content": "like learning plateaus, saddle points, and sudden drops in training error. Moreover, theory developed", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "for the learning dynamics of deep linear networks directly inspired better initialization schemes", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "for nonlinear networks (Schoenholz et al., 2016; Pennington et al., 2017; 2018). Here we show", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "that deep linear networks also provide a good theoretical model for generalization dynamics. In", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "particular we develop an analytic theory for both the training and test error of a deep linear network", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "as a function of training time, number of training examples, network architecture, initialization, and", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "task structure and SNR. Our theory matches simulations and reveals that deep networks with small", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "weight initialization learn the most important aspects of a task first. Thus the optimal test error at the", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "early stopping time depends largely on task structure and SNR, and not on network architecture, as", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 116, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 505, + 127 + ], + "score": 1.0, + "content": "long as the architecture is expressive enough to attain small training error. Thus our exact analysis", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "of generalization dynamics reveals the important lesson that any theory that seeks to upper bound", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "score": 1.0, + "content": "generalization error based only on network architecture, and not on task structure, is likely to yield", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "score": 1.0, + "content": "exceedingly loose upper bounds. Intriguingly our theory also reveals a non-gradient-descent learning", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 461, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 461, + 172 + ], + "score": 1.0, + "content": "algorithm that proveably out-performs neural network training through gradient descent.", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 48, + "bbox_fs": [ + 104, + 633, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 171 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "task structure and SNR. Our theory matches simulations and reveals that deep networks with small", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "weight initialization learn the most important aspects of a task first. Thus the optimal test error at the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "early stopping time depends largely on task structure and SNR, and not on network architecture, as", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 116, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 505, + 127 + ], + "score": 1.0, + "content": "long as the architecture is expressive enough to attain small training error. Thus our exact analysis", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "of generalization dynamics reveals the important lesson that any theory that seeks to upper bound", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "score": 1.0, + "content": "generalization error based only on network architecture, and not on task structure, is likely to yield", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "score": 1.0, + "content": "exceedingly loose upper bounds. Intriguingly our theory also reveals a non-gradient-descent learning", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 461, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 461, + 172 + ], + "score": 1.0, + "content": "algorithm that proveably out-performs neural network training through gradient descent.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "score": 1.0, + "content": "We also apply our theory to multi-task learning, which enables knowledge transfer from one task to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 506, + 201 + ], + "score": 1.0, + "content": "another, thereby further lowering generalization error (Dong et al., 2015; Rusu et al., 2015; Luong", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 211 + ], + "score": 1.0, + "content": "et al., 2016, e.g.). Moreover, knowledge transfer across tasks may be key to human generalization", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "capabilities (Hansen et al., 2017; Lampinen et al., 2017). We provide an analytic theory for how", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "score": 1.0, + "content": "much knowledge is transferred between pairs of tasks, and we find that it displays a sensitive but", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "computable dependence on the relationship between pairs of tasks, in particular, their SNRs and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 210, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 210, + 255 + ], + "score": 1.0, + "content": "feature space alignments.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 505, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 505, + 272 + ], + "score": 1.0, + "content": "We note that a related prior work (Advani & Saxe, 2017) studied generalization in shallow and deep", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "linear networks, but that work was limited to networks with a single output, thereby precluding the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 280, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 506, + 294 + ], + "score": 1.0, + "content": "possibility of addressing the issue of transfer learning. Moreover, analyzing networks with a single", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 292, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 506, + 304 + ], + "score": 1.0, + "content": "output also precludes the possibility of addressing interesting tasks that require higher dimensional", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 302, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 316 + ], + "score": 1.0, + "content": "outputs, for example in language (Dong et al., 2015, e.g.), generative models (Goodfellow et al.,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 313, + 434, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 434, + 326 + ], + "score": 1.0, + "content": "2014, e.g), and reinforcement learning (Mnih et al., 2015; Silver et al., 2016, e.g).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 108, + 341, + 270, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 273, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 273, + 356 + ], + "score": 1.0, + "content": "2 THEORETICAL FRAMEWORK", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 366, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "We work in a student-teacher scenario in which we consider an ensemble of low rank, noisy teacher", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 377, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 389 + ], + "score": 1.0, + "content": "networks that generate training data for a potentially more complex student network, and define the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 388, + 361, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 361, + 399 + ], + "score": 1.0, + "content": "training and test errors whose dynamics we wish to understand.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 107, + 413, + 334, + 424 + ], + "lines": [ + { + "bbox": [ + 106, + 412, + 335, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 335, + 425 + ], + "score": 1.0, + "content": "2.1 AN ENSEMBLE OF LOW-RANK NOISY TEACHERS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 505, + 485 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 381, + 446 + ], + "score": 1.0, + "content": "We first consider an ensemble of 3-layer linear teacher networks with", + "type": "text" + }, + { + "bbox": [ + 382, + 433, + 395, + 444 + ], + "score": 0.89, + "content": "\\overline { { N } } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 432, + 450, + 446 + ], + "score": 1.0, + "content": "units in layer", + "type": "text" + }, + { + "bbox": [ + 451, + 435, + 455, + 444 + ], + "score": 0.66, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 432, + 505, + 446 + ], + "score": 1.0, + "content": ", and weight", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 443, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 144, + 462 + ], + "score": 1.0, + "content": "matrices", + "type": "text" + }, + { + "bbox": [ + 144, + 444, + 212, + 458 + ], + "score": 0.92, + "content": "\\overline { { \\mathbf { W } } } ^ { 2 1 } \\in \\mathbb { R } ^ { \\overline { { N _ { 2 } } } \\times \\overline { { N } } _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 443, + 231, + 462 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 231, + 444, + 299, + 458 + ], + "score": 0.93, + "content": "\\overline { { \\mathbf { W } } } ^ { 3 2 } \\in \\mathbb { R } ^ { \\overline { { N _ { 3 } } } \\times \\overline { { N _ { 2 } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 443, + 506, + 462 + ], + "score": 1.0, + "content": "between the input to hidden, and hidden to output", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 429, + 472 + ], + "score": 1.0, + "content": "layers, respectively. The teacher network thus computes the composite map", + "type": "text" + }, + { + "bbox": [ + 429, + 459, + 473, + 471 + ], + "score": 0.93, + "content": "\\overline { { \\mathbf { y } } } = \\overline { { \\mathbf { W } } } \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 459, + 505, + 472 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 469, + 470, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 173, + 484 + ], + "score": 0.91, + "content": "\\dot { \\overline { { \\mathbf { W } } } } \\equiv \\overline { { \\mathbf { W } } } ^ { 3 \\bar { 2 } } \\overline { { \\mathbf { W } } } ^ { 2 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 469, + 452, + 488 + ], + "score": 1.0, + "content": ". Of critical importance is the singular value decomposition (SVD) of", + "type": "text" + }, + { + "bbox": [ + 452, + 472, + 465, + 483 + ], + "score": 0.85, + "content": "\\overline { { \\mathbf { W } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 469, + 470, + 488 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "interline_equation", + "bbox": [ + 237, + 490, + 372, + 526 + ], + "lines": [ + { + "bbox": [ + 237, + 490, + 372, + 526 + ], + "spans": [ + { + "bbox": [ + 237, + 490, + 372, + 526 + ], + "score": 0.95, + "content": "\\overline { { \\mathbf { W } } } = \\overline { { \\mathbf { U } } } \\overline { { \\mathbf { S } } } \\overline { { \\mathbf { V } } } ^ { T } = \\sum _ { \\alpha = 1 } ^ { \\overline { { N _ { 2 } } } } \\overline { { s } } ^ { \\alpha } \\overline { { \\mathbf { u } } } ^ { \\alpha } \\overline { { \\mathbf { v } } } ^ { \\alpha T } ,", + "type": "interline_equation", + "image_path": "18e92e9c21acd8fdfe61f3b0f2f83ca93e2158c5227d0fe9be82985d71af48cd.jpg" + } + ] + } + ], + "index": 30.5, + "virtual_lines": [ + { + "bbox": [ + 237, + 490, + 372, + 508.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 237, + 508.0, + 372, + 526.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 505, + 606 + ], + "lines": [ + { + "bbox": [ + 104, + 530, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 104, + 530, + 136, + 547 + ], + "score": 1.0, + "content": "Where", + "type": "text" + }, + { + "bbox": [ + 136, + 532, + 194, + 544 + ], + "score": 0.92, + "content": "\\overline { { \\mathbf { U } } } \\in \\mathbb { R } ^ { \\overline { { N _ { 3 } } } \\times \\overline { { N } } _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 530, + 213, + 547 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 213, + 532, + 271, + 544 + ], + "score": 0.92, + "content": "\\overline { { \\mathbf { V } } } \\in \\mathbb { R } ^ { \\overline { { N _ { 1 } } } \\times \\overline { { N } } _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 530, + 474, + 547 + ], + "score": 1.0, + "content": "are both matrices with orthonormal columns and", + "type": "text" + }, + { + "bbox": [ + 474, + 533, + 482, + 544 + ], + "score": 0.81, + "content": "\\overline { \\mathbf { S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 530, + 506, + 547 + ], + "score": 1.0, + "content": "is an", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 544, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 107, + 544, + 144, + 556 + ], + "score": 0.91, + "content": "\\overline { { N _ { 2 } } } \\times \\overline { { N _ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 544, + 378, + 558 + ], + "score": 1.0, + "content": "diagonal matrix. We construct a random teacher by picking", + "type": "text" + }, + { + "bbox": [ + 378, + 545, + 387, + 555 + ], + "score": 0.84, + "content": "\\overline { { \\mathbf { U } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 544, + 405, + 558 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 405, + 545, + 415, + 555 + ], + "score": 0.85, + "content": "\\overline { { \\mathbf { V } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 544, + 506, + 558 + ], + "score": 1.0, + "content": "to be random matrices", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 556, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 273, + 569 + ], + "score": 1.0, + "content": "with orthonormal columns and choosing", + "type": "text" + }, + { + "bbox": [ + 274, + 557, + 295, + 569 + ], + "score": 0.89, + "content": "O ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 557, + 443, + 569 + ], + "score": 1.0, + "content": "values for the diagonal elements of", + "type": "text" + }, + { + "bbox": [ + 443, + 556, + 450, + 567 + ], + "score": 0.79, + "content": "\\overline { { \\mathbf { S } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 557, + 505, + 569 + ], + "score": 1.0, + "content": ". We work in", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 568, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 142, + 582 + ], + "score": 1.0, + "content": "the limit", + "type": "text" + }, + { + "bbox": [ + 143, + 568, + 199, + 581 + ], + "score": 0.92, + "content": "\\overline { { N _ { 1 } } } , \\overline { { N _ { 3 } } } \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 568, + 232, + 582 + ], + "score": 1.0, + "content": "with an", + "type": "text" + }, + { + "bbox": [ + 232, + 569, + 253, + 581 + ], + "score": 0.9, + "content": "O ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 568, + 303, + 582 + ], + "score": 1.0, + "content": "aspect ratio", + "type": "text" + }, + { + "bbox": [ + 303, + 568, + 388, + 581 + ], + "score": 0.93, + "content": "\\mathcal { A } = \\overline { { N _ { 3 } } } / \\overline { { N _ { 1 } } } \\in ( 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 568, + 506, + 582 + ], + "score": 1.0, + "content": "so that the teacher has fewer", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 249, + 594 + ], + "score": 1.0, + "content": "outputs than inputs. Also, we hold", + "type": "text" + }, + { + "bbox": [ + 249, + 581, + 298, + 593 + ], + "score": 0.91, + "content": "\\overline { { N } } _ { 2 } \\sim O ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 581, + 505, + 594 + ], + "score": 1.0, + "content": ", so the teacher has a low, finite rank, and we study", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 593, + 409, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 297, + 607 + ], + "score": 1.0, + "content": "generalization performance as a function of the", + "type": "text" + }, + { + "bbox": [ + 297, + 593, + 312, + 605 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 594, + 409, + 607 + ], + "score": 1.0, + "content": "teacher singular values.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 104, + 610, + 474, + 623 + ], + "lines": [ + { + "bbox": [ + 104, + 609, + 476, + 625 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 378, + 625 + ], + "score": 1.0, + "content": "We further assume the teacher generates noisy outputs from a set of", + "type": "text" + }, + { + "bbox": [ + 379, + 610, + 393, + 622 + ], + "score": 0.89, + "content": "\\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 609, + 476, + 625 + ], + "score": 1.0, + "content": "orthonormal inputs:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 627, + 396, + 642 + ], + "lines": [ + { + "bbox": [ + 216, + 627, + 396, + 642 + ], + "spans": [ + { + "bbox": [ + 216, + 627, + 396, + 642 + ], + "score": 0.91, + "content": "\\hat { { \\bf y } } ^ { \\mu } = \\overline { { { \\bf W } } } \\hat { \\bf x } ^ { \\mu } + { \\bf z } ^ { \\mu } \\qquad \\mathrm { f o r } \\quad \\mu = { \\bf 1 } , \\ldots , \\overline { { { \\bf N } } } _ { \\bf 1 } .", + "type": "interline_equation", + "image_path": "9e0840961c481665c78b2718bcdff3a35f1556ac3337518adc63d8550c81159a.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 216, + 627, + 396, + 642 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 647, + 494, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 495, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 495, + 662 + ], + "score": 1.0, + "content": "This training set yields important second-order training statistics that will guide student learning:", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 664, + 435, + 701 + ], + "lines": [ + { + "bbox": [ + 176, + 664, + 435, + 701 + ], + "spans": [ + { + "bbox": [ + 176, + 664, + 435, + 701 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\pmb { \\Sigma } ^ { 1 1 } \\equiv \\overset { \\overline { { \\boldsymbol { N } } } _ { 1 } } { \\mu = 1 } \\hat { \\mathbf { x } } ^ { \\mu } \\hat { \\mathbf { x } } ^ { \\mu T } = \\mathbf { I } , \\qquad \\pmb { \\Sigma } ^ { 3 1 } \\equiv \\overset { \\overline { { \\boldsymbol { N } } } _ { 1 } } { \\mu = 1 } \\hat { \\mathbf { y } } ^ { \\mu } \\hat { \\mathbf { x } } ^ { \\mu T } = \\overline { { \\mathbf { W } } } + \\mathbf { Z } \\hat { \\mathbf { X } } ^ { T } . } \\end{array}", + "type": "interline_equation", + "image_path": "f25ec0c2167a37977c208003ddeb0568aa5c5a202c1a5e030b90eba093b332e8.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 176, + 664, + 435, + 676.3333333333334 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 176, + 676.3333333333334, + 435, + 688.6666666666667 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 176, + 688.6666666666667, + 435, + 701.0000000000001 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 707, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 705, + 506, + 720 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 214, + 720 + ], + "score": 1.0, + "content": "Here the input covariance", + "type": "text" + }, + { + "bbox": [ + 214, + 707, + 231, + 718 + ], + "score": 0.9, + "content": "\\pmb { \\Sigma } ^ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 705, + 506, + 720 + ], + "score": 1.0, + "content": "is assumed to be white (a common pre-processing step), the input-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 717, + 507, + 735 + ], + "spans": [ + { + "bbox": [ + 104, + 717, + 182, + 735 + ], + "score": 1.0, + "content": "output covariance", + "type": "text" + }, + { + "bbox": [ + 182, + 720, + 200, + 731 + ], + "score": 0.89, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 717, + 315, + 735 + ], + "score": 1.0, + "content": "is simplified using (2), and", + "type": "text" + }, + { + "bbox": [ + 316, + 719, + 372, + 731 + ], + "score": 0.9, + "content": "\\mathbf { Z } \\in \\mathbb { R } ^ { \\overline { { N } } _ { 3 } \\times \\overline { { N } } _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 717, + 485, + 735 + ], + "score": 1.0, + "content": "is the noise matrix, whose", + "type": "text" + }, + { + "bbox": [ + 486, + 721, + 493, + 732 + ], + "score": 0.76, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 717, + 507, + 735 + ], + "score": 1.0, + "content": "’th", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 1, + "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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 171 + ], + "lines": [], + "index": 3.5, + "bbox_fs": [ + 105, + 83, + 506, + 172 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "score": 1.0, + "content": "We also apply our theory to multi-task learning, which enables knowledge transfer from one task to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 506, + 201 + ], + "score": 1.0, + "content": "another, thereby further lowering generalization error (Dong et al., 2015; Rusu et al., 2015; Luong", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 211 + ], + "score": 1.0, + "content": "et al., 2016, e.g.). Moreover, knowledge transfer across tasks may be key to human generalization", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "capabilities (Hansen et al., 2017; Lampinen et al., 2017). We provide an analytic theory for how", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "score": 1.0, + "content": "much knowledge is transferred between pairs of tasks, and we find that it displays a sensitive but", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "computable dependence on the relationship between pairs of tasks, in particular, their SNRs and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 210, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 210, + 255 + ], + "score": 1.0, + "content": "feature space alignments.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 175, + 506, + 255 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 505, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 505, + 272 + ], + "score": 1.0, + "content": "We note that a related prior work (Advani & Saxe, 2017) studied generalization in shallow and deep", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "linear networks, but that work was limited to networks with a single output, thereby precluding the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 280, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 506, + 294 + ], + "score": 1.0, + "content": "possibility of addressing the issue of transfer learning. Moreover, analyzing networks with a single", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 292, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 506, + 304 + ], + "score": 1.0, + "content": "output also precludes the possibility of addressing interesting tasks that require higher dimensional", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 302, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 316 + ], + "score": 1.0, + "content": "outputs, for example in language (Dong et al., 2015, e.g.), generative models (Goodfellow et al.,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 313, + 434, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 434, + 326 + ], + "score": 1.0, + "content": "2014, e.g), and reinforcement learning (Mnih et al., 2015; Silver et al., 2016, e.g).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 257, + 506, + 326 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 341, + 270, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 273, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 273, + 356 + ], + "score": 1.0, + "content": "2 THEORETICAL FRAMEWORK", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 366, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "We work in a student-teacher scenario in which we consider an ensemble of low rank, noisy teacher", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 377, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 389 + ], + "score": 1.0, + "content": "networks that generate training data for a potentially more complex student network, and define the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 388, + 361, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 361, + 399 + ], + "score": 1.0, + "content": "training and test errors whose dynamics we wish to understand.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 366, + 505, + 399 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 413, + 334, + 424 + ], + "lines": [ + { + "bbox": [ + 106, + 412, + 335, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 335, + 425 + ], + "score": 1.0, + "content": "2.1 AN ENSEMBLE OF LOW-RANK NOISY TEACHERS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 505, + 485 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 381, + 446 + ], + "score": 1.0, + "content": "We first consider an ensemble of 3-layer linear teacher networks with", + "type": "text" + }, + { + "bbox": [ + 382, + 433, + 395, + 444 + ], + "score": 0.89, + "content": "\\overline { { N } } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 432, + 450, + 446 + ], + "score": 1.0, + "content": "units in layer", + "type": "text" + }, + { + "bbox": [ + 451, + 435, + 455, + 444 + ], + "score": 0.66, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 432, + 505, + 446 + ], + "score": 1.0, + "content": ", and weight", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 443, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 144, + 462 + ], + "score": 1.0, + "content": "matrices", + "type": "text" + }, + { + "bbox": [ + 144, + 444, + 212, + 458 + ], + "score": 0.92, + "content": "\\overline { { \\mathbf { W } } } ^ { 2 1 } \\in \\mathbb { R } ^ { \\overline { { N _ { 2 } } } \\times \\overline { { N } } _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 443, + 231, + 462 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 231, + 444, + 299, + 458 + ], + "score": 0.93, + "content": "\\overline { { \\mathbf { W } } } ^ { 3 2 } \\in \\mathbb { R } ^ { \\overline { { N _ { 3 } } } \\times \\overline { { N _ { 2 } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 443, + 506, + 462 + ], + "score": 1.0, + "content": "between the input to hidden, and hidden to output", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 429, + 472 + ], + "score": 1.0, + "content": "layers, respectively. The teacher network thus computes the composite map", + "type": "text" + }, + { + "bbox": [ + 429, + 459, + 473, + 471 + ], + "score": 0.93, + "content": "\\overline { { \\mathbf { y } } } = \\overline { { \\mathbf { W } } } \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 459, + 505, + 472 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 469, + 470, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 173, + 484 + ], + "score": 0.91, + "content": "\\dot { \\overline { { \\mathbf { W } } } } \\equiv \\overline { { \\mathbf { W } } } ^ { 3 \\bar { 2 } } \\overline { { \\mathbf { W } } } ^ { 2 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 469, + 452, + 488 + ], + "score": 1.0, + "content": ". Of critical importance is the singular value decomposition (SVD) of", + "type": "text" + }, + { + "bbox": [ + 452, + 472, + 465, + 483 + ], + "score": 0.85, + "content": "\\overline { { \\mathbf { W } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 469, + 470, + 488 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 432, + 506, + 488 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 237, + 490, + 372, + 526 + ], + "lines": [ + { + "bbox": [ + 237, + 490, + 372, + 526 + ], + "spans": [ + { + "bbox": [ + 237, + 490, + 372, + 526 + ], + "score": 0.95, + "content": "\\overline { { \\mathbf { W } } } = \\overline { { \\mathbf { U } } } \\overline { { \\mathbf { S } } } \\overline { { \\mathbf { V } } } ^ { T } = \\sum _ { \\alpha = 1 } ^ { \\overline { { N _ { 2 } } } } \\overline { { s } } ^ { \\alpha } \\overline { { \\mathbf { u } } } ^ { \\alpha } \\overline { { \\mathbf { v } } } ^ { \\alpha T } ,", + "type": "interline_equation", + "image_path": "18e92e9c21acd8fdfe61f3b0f2f83ca93e2158c5227d0fe9be82985d71af48cd.jpg" + } + ] + } + ], + "index": 30.5, + "virtual_lines": [ + { + "bbox": [ + 237, + 490, + 372, + 508.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 237, + 508.0, + 372, + 526.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 505, + 606 + ], + "lines": [ + { + "bbox": [ + 104, + 530, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 104, + 530, + 136, + 547 + ], + "score": 1.0, + "content": "Where", + "type": "text" + }, + { + "bbox": [ + 136, + 532, + 194, + 544 + ], + "score": 0.92, + "content": "\\overline { { \\mathbf { U } } } \\in \\mathbb { R } ^ { \\overline { { N _ { 3 } } } \\times \\overline { { N } } _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 530, + 213, + 547 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 213, + 532, + 271, + 544 + ], + "score": 0.92, + "content": "\\overline { { \\mathbf { V } } } \\in \\mathbb { R } ^ { \\overline { { N _ { 1 } } } \\times \\overline { { N } } _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 530, + 474, + 547 + ], + "score": 1.0, + "content": "are both matrices with orthonormal columns and", + "type": "text" + }, + { + "bbox": [ + 474, + 533, + 482, + 544 + ], + "score": 0.81, + "content": "\\overline { \\mathbf { S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 530, + 506, + 547 + ], + "score": 1.0, + "content": "is an", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 544, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 107, + 544, + 144, + 556 + ], + "score": 0.91, + "content": "\\overline { { N _ { 2 } } } \\times \\overline { { N _ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 544, + 378, + 558 + ], + "score": 1.0, + "content": "diagonal matrix. We construct a random teacher by picking", + "type": "text" + }, + { + "bbox": [ + 378, + 545, + 387, + 555 + ], + "score": 0.84, + "content": "\\overline { { \\mathbf { U } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 544, + 405, + 558 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 405, + 545, + 415, + 555 + ], + "score": 0.85, + "content": "\\overline { { \\mathbf { V } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 544, + 506, + 558 + ], + "score": 1.0, + "content": "to be random matrices", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 556, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 273, + 569 + ], + "score": 1.0, + "content": "with orthonormal columns and choosing", + "type": "text" + }, + { + "bbox": [ + 274, + 557, + 295, + 569 + ], + "score": 0.89, + "content": "O ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 557, + 443, + 569 + ], + "score": 1.0, + "content": "values for the diagonal elements of", + "type": "text" + }, + { + "bbox": [ + 443, + 556, + 450, + 567 + ], + "score": 0.79, + "content": "\\overline { { \\mathbf { S } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 557, + 505, + 569 + ], + "score": 1.0, + "content": ". We work in", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 568, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 142, + 582 + ], + "score": 1.0, + "content": "the limit", + "type": "text" + }, + { + "bbox": [ + 143, + 568, + 199, + 581 + ], + "score": 0.92, + "content": "\\overline { { N _ { 1 } } } , \\overline { { N _ { 3 } } } \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 568, + 232, + 582 + ], + "score": 1.0, + "content": "with an", + "type": "text" + }, + { + "bbox": [ + 232, + 569, + 253, + 581 + ], + "score": 0.9, + "content": "O ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 568, + 303, + 582 + ], + "score": 1.0, + "content": "aspect ratio", + "type": "text" + }, + { + "bbox": [ + 303, + 568, + 388, + 581 + ], + "score": 0.93, + "content": "\\mathcal { A } = \\overline { { N _ { 3 } } } / \\overline { { N _ { 1 } } } \\in ( 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 568, + 506, + 582 + ], + "score": 1.0, + "content": "so that the teacher has fewer", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 249, + 594 + ], + "score": 1.0, + "content": "outputs than inputs. Also, we hold", + "type": "text" + }, + { + "bbox": [ + 249, + 581, + 298, + 593 + ], + "score": 0.91, + "content": "\\overline { { N } } _ { 2 } \\sim O ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 581, + 505, + 594 + ], + "score": 1.0, + "content": ", so the teacher has a low, finite rank, and we study", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 593, + 409, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 297, + 607 + ], + "score": 1.0, + "content": "generalization performance as a function of the", + "type": "text" + }, + { + "bbox": [ + 297, + 593, + 312, + 605 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 594, + 409, + 607 + ], + "score": 1.0, + "content": "teacher singular values.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5, + "bbox_fs": [ + 104, + 530, + 506, + 607 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 610, + 474, + 623 + ], + "lines": [ + { + "bbox": [ + 104, + 609, + 476, + 625 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 378, + 625 + ], + "score": 1.0, + "content": "We further assume the teacher generates noisy outputs from a set of", + "type": "text" + }, + { + "bbox": [ + 379, + 610, + 393, + 622 + ], + "score": 0.89, + "content": "\\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 609, + 476, + 625 + ], + "score": 1.0, + "content": "orthonormal inputs:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 104, + 609, + 476, + 625 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 627, + 396, + 642 + ], + "lines": [ + { + "bbox": [ + 216, + 627, + 396, + 642 + ], + "spans": [ + { + "bbox": [ + 216, + 627, + 396, + 642 + ], + "score": 0.91, + "content": "\\hat { { \\bf y } } ^ { \\mu } = \\overline { { { \\bf W } } } \\hat { \\bf x } ^ { \\mu } + { \\bf z } ^ { \\mu } \\qquad \\mathrm { f o r } \\quad \\mu = { \\bf 1 } , \\ldots , \\overline { { { \\bf N } } } _ { \\bf 1 } .", + "type": "interline_equation", + "image_path": "9e0840961c481665c78b2718bcdff3a35f1556ac3337518adc63d8550c81159a.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 216, + 627, + 396, + 642 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 647, + 494, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 495, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 495, + 662 + ], + "score": 1.0, + "content": "This training set yields important second-order training statistics that will guide student learning:", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 645, + 495, + 662 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 664, + 435, + 701 + ], + "lines": [ + { + "bbox": [ + 176, + 664, + 435, + 701 + ], + "spans": [ + { + "bbox": [ + 176, + 664, + 435, + 701 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\pmb { \\Sigma } ^ { 1 1 } \\equiv \\overset { \\overline { { \\boldsymbol { N } } } _ { 1 } } { \\mu = 1 } \\hat { \\mathbf { x } } ^ { \\mu } \\hat { \\mathbf { x } } ^ { \\mu T } = \\mathbf { I } , \\qquad \\pmb { \\Sigma } ^ { 3 1 } \\equiv \\overset { \\overline { { \\boldsymbol { N } } } _ { 1 } } { \\mu = 1 } \\hat { \\mathbf { y } } ^ { \\mu } \\hat { \\mathbf { x } } ^ { \\mu T } = \\overline { { \\mathbf { W } } } + \\mathbf { Z } \\hat { \\mathbf { X } } ^ { T } . } \\end{array}", + "type": "interline_equation", + "image_path": "f25ec0c2167a37977c208003ddeb0568aa5c5a202c1a5e030b90eba093b332e8.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 176, + 664, + 435, + 676.3333333333334 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 176, + 676.3333333333334, + 435, + 688.6666666666667 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 176, + 688.6666666666667, + 435, + 701.0000000000001 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 707, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 705, + 506, + 720 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 214, + 720 + ], + "score": 1.0, + "content": "Here the input covariance", + "type": "text" + }, + { + "bbox": [ + 214, + 707, + 231, + 718 + ], + "score": 0.9, + "content": "\\pmb { \\Sigma } ^ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 705, + 506, + 720 + ], + "score": 1.0, + "content": "is assumed to be white (a common pre-processing step), the input-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 717, + 507, + 735 + ], + "spans": [ + { + "bbox": [ + 104, + 717, + 182, + 735 + ], + "score": 1.0, + "content": "output covariance", + "type": "text" + }, + { + "bbox": [ + 182, + 720, + 200, + 731 + ], + "score": 0.89, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 717, + 315, + 735 + ], + "score": 1.0, + "content": "is simplified using (2), and", + "type": "text" + }, + { + "bbox": [ + 316, + 719, + 372, + 731 + ], + "score": 0.9, + "content": "\\mathbf { Z } \\in \\mathbb { R } ^ { \\overline { { N } } _ { 3 } \\times \\overline { { N } } _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 717, + 485, + 735 + ], + "score": 1.0, + "content": "is the noise matrix, whose", + "type": "text" + }, + { + "bbox": [ + 486, + 721, + 493, + 732 + ], + "score": 0.76, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 717, + 507, + 735 + ], + "score": 1.0, + "content": "’th", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 148, + 94 + ], + "score": 1.0, + "content": "column is", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 149, + 83, + 160, + 92 + ], + "score": 0.87, + "content": "\\mathbf { z } ^ { \\mu }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 160, + 81, + 245, + 94 + ], + "score": 1.0, + "content": ". Its matrix elements", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 245, + 82, + 257, + 95 + ], + "score": 0.9, + "content": "z _ { i } ^ { \\mu }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 257, + 81, + 505, + 94 + ], + "score": 1.0, + "content": "are drawn iid. from a Gaussian with zero mean and variance", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 93, + 506, + 109 + ], + "spans": [ + { + "bbox": [ + 107, + 93, + 137, + 107 + ], + "score": 0.91, + "content": "\\sigma _ { z } ^ { 2 } / \\overline { { N } } _ { 1 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 137, + 93, + 392, + 109 + ], + "score": 1.0, + "content": ". The noise scaling is chosen so the singular values of the teacher", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 393, + 94, + 406, + 105 + ], + "score": 0.78, + "content": "\\overline { { \\mathbf { W } } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 407, + 93, + 461, + 109 + ], + "score": 1.0, + "content": "and the noise", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 461, + 95, + 470, + 105 + ], + "score": 0.51, + "content": "\\mathbf { Z }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 470, + 93, + 506, + 109 + ], + "score": 1.0, + "content": "are both", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 105, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 107, + 107, + 128, + 118 + ], + "score": 0.89, + "content": "O ( 1 )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 128, + 105, + 505, + 119 + ], + "score": 1.0, + "content": ", leading to non-trivial generalization effects. As generalization performance will depend on", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 115, + 507, + 133 + ], + "spans": [ + { + "bbox": [ + 104, + 115, + 375, + 133 + ], + "score": 1.0, + "content": "the ratio of teacher singular values to the noise variance parameter", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 376, + 117, + 387, + 129 + ], + "score": 0.9, + "content": "\\sigma _ { z } ^ { 2 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 388, + 115, + 448, + 133 + ], + "score": 1.0, + "content": ", we simply set", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 449, + 118, + 479, + 128 + ], + "score": 0.91, + "content": "\\sigma _ { z } = 1", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 479, + 115, + 507, + 133 + ], + "score": 1.0, + "content": "in the", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 461, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 461, + 140 + ], + "score": 1.0, + "content": "following. Thus we can think of teacher singular values as signal to noise ratios (SNRs).", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 44.5, + "bbox_fs": [ + 104, + 705, + 507, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 505, + 140 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 148, + 94 + ], + "score": 1.0, + "content": "column is", + "type": "text" + }, + { + "bbox": [ + 149, + 83, + 160, + 92 + ], + "score": 0.87, + "content": "\\mathbf { z } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 81, + 245, + 94 + ], + "score": 1.0, + "content": ". Its matrix elements", + "type": "text" + }, + { + "bbox": [ + 245, + 82, + 257, + 95 + ], + "score": 0.9, + "content": "z _ { i } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 81, + 505, + 94 + ], + "score": 1.0, + "content": "are drawn iid. from a Gaussian with zero mean and variance", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 93, + 506, + 109 + ], + "spans": [ + { + "bbox": [ + 107, + 93, + 137, + 107 + ], + "score": 0.91, + "content": "\\sigma _ { z } ^ { 2 } / \\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 93, + 392, + 109 + ], + "score": 1.0, + "content": ". The noise scaling is chosen so the singular values of the teacher", + "type": "text" + }, + { + "bbox": [ + 393, + 94, + 406, + 105 + ], + "score": 0.78, + "content": "\\overline { { \\mathbf { W } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 93, + 461, + 109 + ], + "score": 1.0, + "content": "and the noise", + "type": "text" + }, + { + "bbox": [ + 461, + 95, + 470, + 105 + ], + "score": 0.51, + "content": "\\mathbf { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 93, + 506, + 109 + ], + "score": 1.0, + "content": "are both", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 105, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 107, + 107, + 128, + 118 + ], + "score": 0.89, + "content": "O ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 105, + 505, + 119 + ], + "score": 1.0, + "content": ", leading to non-trivial generalization effects. As generalization performance will depend on", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 115, + 507, + 133 + ], + "spans": [ + { + "bbox": [ + 104, + 115, + 375, + 133 + ], + "score": 1.0, + "content": "the ratio of teacher singular values to the noise variance parameter", + "type": "text" + }, + { + "bbox": [ + 376, + 117, + 387, + 129 + ], + "score": 0.9, + "content": "\\sigma _ { z } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 115, + 448, + 133 + ], + "score": 1.0, + "content": ", we simply set", + "type": "text" + }, + { + "bbox": [ + 449, + 118, + 479, + 128 + ], + "score": 0.91, + "content": "\\sigma _ { z } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 115, + 507, + 133 + ], + "score": 1.0, + "content": "in the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 461, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 461, + 140 + ], + "score": 1.0, + "content": "following. Thus we can think of teacher singular values as signal to noise ratios (SNRs).", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 144, + 505, + 201 + ], + "lines": [ + { + "bbox": [ + 105, + 144, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 505, + 158 + ], + "score": 1.0, + "content": "Finally, we note that while we focus for ease of exposition in the main paper on the case of one", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 330, + 169 + ], + "score": 1.0, + "content": "hidden layer networks and a full orthonormal basis of", + "type": "text" + }, + { + "bbox": [ + 330, + 156, + 366, + 167 + ], + "score": 0.92, + "content": "P = { \\overline { { N _ { 1 } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 154, + 506, + 169 + ], + "score": 1.0, + "content": "training inputs in the main paper,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 166, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 506, + 180 + ], + "score": 1.0, + "content": "neither of these assumptions are essential to our theory. Indeed in Section 3.4 and App. A we extend", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 177, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 506, + 191 + ], + "score": 1.0, + "content": "our theory to networks of arbitrary depth, and in App. G we extend our theory to the case of white", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 474, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 154, + 203 + ], + "score": 1.0, + "content": "inputs with", + "type": "text" + }, + { + "bbox": [ + 154, + 189, + 189, + 200 + ], + "score": 0.91, + "content": "P \\neq \\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 187, + 474, + 203 + ], + "score": 1.0, + "content": ", obtaining a good match between theory and experiment in both cases.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 108, + 215, + 293, + 226 + ], + "lines": [ + { + "bbox": [ + 105, + 215, + 295, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 295, + 228 + ], + "score": 1.0, + "content": "2.2 STUDENT TRAINING AND TEST ERROR", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 235, + 506, + 291 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 254, + 248 + ], + "score": 1.0, + "content": "Now consider a student network with", + "type": "text" + }, + { + "bbox": [ + 254, + 237, + 266, + 246 + ], + "score": 0.87, + "content": "N _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 236, + 505, + 248 + ], + "score": 1.0, + "content": "units in each layer. We assume the first and last layers match", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 245, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 172, + 259 + ], + "score": 1.0, + "content": "the teacher (i.e.", + "type": "text" + }, + { + "bbox": [ + 173, + 246, + 212, + 258 + ], + "score": 0.91, + "content": "N _ { 1 } = \\overline { { N _ { 1 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 245, + 231, + 259 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 231, + 247, + 271, + 258 + ], + "score": 0.9, + "content": "N _ { 3 } = \\overline { { N _ { 3 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 245, + 291, + 259 + ], + "score": 1.0, + "content": ") but", + "type": "text" + }, + { + "bbox": [ + 291, + 246, + 330, + 258 + ], + "score": 0.92, + "content": "N _ { 2 } \\geq \\overline { { N _ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 245, + 505, + 259 + ], + "score": 1.0, + "content": ", allowing the student to have more hidden", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 255, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 272 + ], + "score": 1.0, + "content": "units than the teacher. We also consider deeper students (see below and App. A). Now consider any", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 266, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 104, + 266, + 282, + 282 + ], + "score": 1.0, + "content": "student whose input-output map is given by", + "type": "text" + }, + { + "bbox": [ + 282, + 268, + 376, + 280 + ], + "score": 0.9, + "content": "\\mathbf { \\dot { y } } = \\mathbf { W } ^ { 3 2 } \\mathbf { W } ^ { 2 1 } \\equiv \\mathbf { W } \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 266, + 506, + 282 + ], + "score": 1.0, + "content": ". Its training error on the teacher", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 279, + 411, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 411, + 293 + ], + "score": 1.0, + "content": "dataset in (2) and its test error over a distribution of new inputs are given by", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 297, + 438, + 335 + ], + "lines": [ + { + "bbox": [ + 172, + 297, + 438, + 335 + ], + "spans": [ + { + "bbox": [ + 172, + 297, + 438, + 335 + ], + "score": 0.93, + "content": "\\varepsilon _ { \\mathrm { t r a i n } } \\equiv \\frac { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { W } \\hat { \\mathbf { x } } ^ { \\mu } - \\hat { \\mathbf { y } } ^ { \\mu } | | _ { 2 } ^ { 2 } } { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\hat { \\mathbf { y } } ^ { \\mu } | | _ { 2 } ^ { 2 } } , \\varepsilon _ { \\mathrm { t e s t } } \\equiv \\frac { \\langle | | \\mathbf { W } \\overline { { \\mathbf { x } } } - \\overline { { \\mathbf { y } } } | | _ { 2 } ^ { 2 } \\rangle } { \\langle | | \\overline { { \\mathbf { y } } } | | _ { 2 } ^ { 2 } \\rangle } ,", + "type": "interline_equation", + "image_path": "ec10a694331c27b34d51ae231b55eb44404ae9aa4b000936042e75c64c0f3aab.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 172, + 297, + 438, + 309.6666666666667 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 172, + 309.6666666666667, + 438, + 322.33333333333337 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 172, + 322.33333333333337, + 438, + 335.00000000000006 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 340, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 341, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 179, + 353 + ], + "score": 1.0, + "content": "respectively. Here", + "type": "text" + }, + { + "bbox": [ + 180, + 342, + 192, + 351 + ], + "score": 0.86, + "content": "\\hat { \\mathbf { x } } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 341, + 209, + 353 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 210, + 342, + 223, + 352 + ], + "score": 0.89, + "content": "{ \\hat { \\mathbf { y } } } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 341, + 457, + 353 + ], + "score": 1.0, + "content": "are the noisy training set inputs and outputs in (2), whereas", + "type": "text" + }, + { + "bbox": [ + 457, + 342, + 465, + 351 + ], + "score": 0.51, + "content": "\\overline { { \\mathbf { x } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 341, + 505, + 353 + ], + "score": 1.0, + "content": "denotes a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 419, + 365 + ], + "score": 1.0, + "content": "random test input drawn from zero mean Gaussian with identity covariance,", + "type": "text" + }, + { + "bbox": [ + 420, + 352, + 470, + 364 + ], + "score": 0.92, + "content": "\\overline { { \\mathbf { y } } } ^ { \\mu } = \\overline { { \\mathbf { W } } } \\overline { { \\mathbf { x } } } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "is noise", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 364, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 205, + 378 + ], + "score": 1.0, + "content": "free teacher output, and", + "type": "text" + }, + { + "bbox": [ + 205, + 364, + 217, + 376 + ], + "score": 0.89, + "content": "\\langle \\cdot \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 364, + 448, + 378 + ], + "score": 1.0, + "content": "denotes an average w.r.t the distribution of the test input", + "type": "text" + }, + { + "bbox": [ + 448, + 366, + 456, + 374 + ], + "score": 0.64, + "content": "\\overline { { \\mathbf { x } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 364, + 505, + 378 + ], + "score": 1.0, + "content": ". Due to the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 375, + 503, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 368, + 388 + ], + "score": 1.0, + "content": "orthonormality of the training and isotropy of the test inputs, both", + "type": "text" + }, + { + "bbox": [ + 368, + 376, + 388, + 386 + ], + "score": 0.88, + "content": "\\varepsilon _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 375, + 405, + 388 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 405, + 376, + 421, + 386 + ], + "score": 0.88, + "content": "{ \\varepsilon } _ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 375, + 503, + 388 + ], + "score": 1.0, + "content": "can be expressed as", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 392, + 505, + 424 + ], + "lines": [ + { + "bbox": [ + 111, + 392, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 111, + 392, + 505, + 424 + ], + "score": 0.92, + "content": "\\mathrm { ~ \\xi ~ } _ { \\mathrm { t r a i n } } = \\frac { \\mathrm { T } \\mathbf { F } \\mathbf { W } ^ { T } \\mathbf { W } - 2 \\mathrm { T r } \\mathbf { W } ^ { T } { \\boldsymbol { \\Sigma } } ^ { 3 1 } + \\mathrm { T r } { \\boldsymbol { \\Sigma } } ^ { 3 1 T } { \\boldsymbol { \\Sigma } } ^ { 3 1 } } { \\mathrm { T r } \\boldsymbol { \\Sigma } ^ { 3 1 T } \\boldsymbol { \\Sigma } ^ { 3 1 } } , \\mathrm { ~ \\xi ~ } _ { \\mathrm { f e s t } } = \\frac { \\mathrm { T r } \\mathbf { W } ^ { T } \\mathbf { W } - 2 \\mathrm { T r } \\mathbf { W } ^ { T } \\overline { { \\mathbf { W } } } + \\mathrm { T r } \\overline { { \\mathbf { W } } } ^ { T } \\overline { { \\mathbf { W } } } } { \\mathrm { T r } \\overline { { \\mathbf { W } } } ^ { T } \\overline { { \\mathbf { W } } } } .", + "type": "interline_equation", + "image_path": "2164005cd357741499916e1ea4597b4f17af0fa591d2c70c9b6722b832ef8c1d.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 111, + 392, + 505, + 402.6666666666667 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 111, + 402.6666666666667, + 505, + 413.33333333333337 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 111, + 413.33333333333337, + 505, + 424.00000000000006 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 432, + 509, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 128, + 445 + ], + "score": 1.0, + "content": "Both", + "type": "text" + }, + { + "bbox": [ + 128, + 434, + 148, + 444 + ], + "score": 0.87, + "content": "\\varepsilon _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 432, + 165, + 445 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 166, + 434, + 182, + 444 + ], + "score": 0.88, + "content": "\\varepsilon _ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 432, + 506, + 445 + ], + "score": 1.0, + "content": "can be further expressed in terms of the student, training data and teacher SVDs,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 441, + 498, + 462 + ], + "spans": [ + { + "bbox": [ + 104, + 441, + 189, + 462 + ], + "score": 1.0, + "content": "which we denote by", + "type": "text" + }, + { + "bbox": [ + 189, + 446, + 245, + 457 + ], + "score": 0.84, + "content": "\\mathbf { W } = \\mathbf { U } \\mathbf { S } \\mathbf { V } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 441, + 249, + 462 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 249, + 444, + 311, + 457 + ], + "score": 0.84, + "content": "\\begin{array} { r } { \\pmb { \\Sigma } ^ { 3 1 } = \\hat { \\mathbf { U } } \\hat { \\mathbf { S } } \\hat { \\mathbf { V } } ^ { T } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 441, + 331, + 462 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 332, + 443, + 391, + 457 + ], + "score": 0.91, + "content": "\\overline { { \\mathbf { W } } } = \\overline { { \\mathbf { U } } } \\overline { { \\mathbf { S } } } \\overline { { \\mathbf { V } } } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 441, + 498, + 462 + ], + "score": 1.0, + "content": "respectively. Specifically,", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 464, + 469, + 549 + ], + "lines": [ + { + "bbox": [ + 142, + 464, + 469, + 549 + ], + "spans": [ + { + "bbox": [ + 142, + 464, + 469, + 549 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\varepsilon _ { \\mathrm { t r a i n } } = \\left[ \\overbrace { \\sum _ { \\beta = 1 } ^ { N _ { 3 } } } ^ { \\overline { { S } } _ { 3 } } \\hat { s } _ { \\beta } ^ { 2 } \\right] ^ { - 1 } \\left[ \\underset { \\alpha = 1 } { \\overset { N _ { 2 } } { \\sum _ { \\alpha } } } s _ { \\alpha } ^ { 2 } + \\underset { \\beta = 1 } { \\overset { \\overline { { N } } _ { 3 } } { \\sum _ { \\beta } } } \\hat { s } _ { \\beta } ^ { 2 } - 2 \\underset { \\alpha = 1 } { \\overset { N _ { 2 } } { \\sum _ { \\beta = 1 } } } \\sum _ { \\beta = 1 } ^ { \\overline { { N _ { 3 } } } } s _ { \\alpha } \\hat { s } _ { \\beta } \\left( \\mathbf { u } ^ { \\alpha } \\cdot \\hat { \\mathbf { u } } ^ { \\beta } \\right) \\left( \\mathbf { v } ^ { \\alpha } \\cdot \\hat { \\mathbf { v } } ^ { \\beta } \\right) \\right] , } \\\\ & { \\varepsilon _ { \\mathrm { t e s t } } = \\left[ \\underset { \\beta = 1 } { \\overset { \\overline { { N } } _ { 2 } } { \\sum _ { \\beta } } } \\overline { { s } } _ { \\beta } ^ { 2 } \\right] ^ { - 1 } \\left[ \\underset { \\alpha = 1 } { \\overset { N _ { 2 } } { \\sum _ { \\alpha } } } s _ { \\alpha } ^ { 2 } + \\underset { \\beta = 1 } { \\overset { \\overline { { N } } _ { 2 } } { \\sum _ { \\beta } } } \\frac { 1 } { s _ { \\beta } ^ { 2 } } - 2 \\underset { \\alpha = 1 } { \\overset { N _ { 2 } } { \\sum _ { \\alpha } } } \\sum _ { \\beta = 1 } ^ { \\overline { { N _ { 2 } } } } s _ { \\alpha } \\overline { { s } } _ { \\beta } \\left( \\mathbf { u } ^ { \\alpha } \\cdot \\overline { { \\mathbf { u } } } ^ { \\beta } \\right) \\left( \\mathbf { v } ^ { \\alpha } \\cdot \\overline { { \\mathbf { v } } } ^ { \\beta } \\right) \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "9924429ca3ea20bc11ef1ca8fe58cf05d95015678f3a03aceca1e14b494d6ac4.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 142, + 464, + 469, + 492.3333333333333 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 142, + 492.3333333333333, + 469, + 520.6666666666666 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 142, + 520.6666666666666, + 469, + 549.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 553, + 504, + 587 + ], + "lines": [ + { + "bbox": [ + 106, + 553, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 505, + 565 + ], + "score": 1.0, + "content": "Thus as the student learns, its training and test error dynamics depends on the alignment of the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 263, + 577 + ], + "score": 1.0, + "content": "time-evolving student singular modes", + "type": "text" + }, + { + "bbox": [ + 263, + 564, + 317, + 577 + ], + "score": 0.93, + "content": "\\{ s ^ { \\alpha } , \\mathbf { u } ^ { \\alpha } , \\mathbf { v } ^ { \\alpha } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 564, + 433, + 577 + ], + "score": 1.0, + "content": "with the fixed training data", + "type": "text" + }, + { + "bbox": [ + 433, + 564, + 486, + 577 + ], + "score": 0.92, + "content": "\\{ \\hat { s } ^ { \\alpha } , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 575, + 309, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 138, + 588 + ], + "score": 1.0, + "content": "teacher", + "type": "text" + }, + { + "bbox": [ + 138, + 575, + 192, + 587 + ], + "score": 0.93, + "content": "\\{ \\overline { { s } } ^ { \\alpha } , \\bar { \\overline { { \\mathbf { u } } } } ^ { \\alpha } , \\overline { { \\mathbf { v } } } ^ { \\alpha } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 575, + 309, + 588 + ], + "score": 1.0, + "content": "singular modes respectively.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 105, + 604, + 490, + 617 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 492, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 492, + 618 + ], + "score": 1.0, + "content": "3 SINGLE TASK GENERALIZATION DYNAMICS: THEORY AND EXPERIMENT", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 629, + 506, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 643 + ], + "score": 1.0, + "content": "Here we derive and numerically test analytic formulas for both the training and test errors of a student", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 641, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 505, + 653 + ], + "score": 1.0, + "content": "network as it learns from training data generated from a teacher network. We explore the dependence", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 651, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 506, + 664 + ], + "score": 1.0, + "content": "of these quantitites on the student network size, student initialization, teacher SNR, and training time.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "title", + "bbox": [ + 108, + 677, + 449, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 450, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 450, + 691 + ], + "score": 1.0, + "content": "3.1 STUDENT TRAINING DYNAMICS AND TRAINING-ALIGNED (TA) NETWORKS", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 503, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 435, + 713 + ], + "score": 1.0, + "content": "We assume the student weights undergo batch gradient descent with learning rate", + "type": "text" + }, + { + "bbox": [ + 435, + 700, + 443, + 709 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 697, + 505, + 713 + ], + "score": 1.0, + "content": "on the training", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 707, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 104, + 707, + 127, + 724 + ], + "score": 1.0, + "content": "error", + "type": "text" + }, + { + "bbox": [ + 128, + 709, + 236, + 723 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\sum _ { \\mu } | | \\hat { \\mathbf { y } } ^ { \\mu } - \\mathbf { W } ^ { 3 2 } \\mathbf { W } ^ { 2 1 } \\bar { \\hat { \\mathbf { x } } ^ { \\mu } } | | _ { 2 } ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 707, + 302, + 724 + ], + "score": 1.0, + "content": ", which for small", + "type": "text" + }, + { + "bbox": [ + 303, + 711, + 309, + 720 + ], + "score": 0.83, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 707, + 506, + 724 + ], + "score": 1.0, + "content": "is well approximated by the differential equations:", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 505, + 140 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 104, + 81, + 507, + 140 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 144, + 505, + 201 + ], + "lines": [ + { + "bbox": [ + 105, + 144, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 505, + 158 + ], + "score": 1.0, + "content": "Finally, we note that while we focus for ease of exposition in the main paper on the case of one", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 330, + 169 + ], + "score": 1.0, + "content": "hidden layer networks and a full orthonormal basis of", + "type": "text" + }, + { + "bbox": [ + 330, + 156, + 366, + 167 + ], + "score": 0.92, + "content": "P = { \\overline { { N _ { 1 } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 154, + 506, + 169 + ], + "score": 1.0, + "content": "training inputs in the main paper,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 166, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 506, + 180 + ], + "score": 1.0, + "content": "neither of these assumptions are essential to our theory. Indeed in Section 3.4 and App. A we extend", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 177, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 506, + 191 + ], + "score": 1.0, + "content": "our theory to networks of arbitrary depth, and in App. G we extend our theory to the case of white", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 474, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 154, + 203 + ], + "score": 1.0, + "content": "inputs with", + "type": "text" + }, + { + "bbox": [ + 154, + 189, + 189, + 200 + ], + "score": 0.91, + "content": "P \\neq \\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 187, + 474, + 203 + ], + "score": 1.0, + "content": ", obtaining a good match between theory and experiment in both cases.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 144, + 506, + 203 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 215, + 293, + 226 + ], + "lines": [ + { + "bbox": [ + 105, + 215, + 295, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 295, + 228 + ], + "score": 1.0, + "content": "2.2 STUDENT TRAINING AND TEST ERROR", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 235, + 506, + 291 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 254, + 248 + ], + "score": 1.0, + "content": "Now consider a student network with", + "type": "text" + }, + { + "bbox": [ + 254, + 237, + 266, + 246 + ], + "score": 0.87, + "content": "N _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 236, + 505, + 248 + ], + "score": 1.0, + "content": "units in each layer. We assume the first and last layers match", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 245, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 172, + 259 + ], + "score": 1.0, + "content": "the teacher (i.e.", + "type": "text" + }, + { + "bbox": [ + 173, + 246, + 212, + 258 + ], + "score": 0.91, + "content": "N _ { 1 } = \\overline { { N _ { 1 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 245, + 231, + 259 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 231, + 247, + 271, + 258 + ], + "score": 0.9, + "content": "N _ { 3 } = \\overline { { N _ { 3 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 245, + 291, + 259 + ], + "score": 1.0, + "content": ") but", + "type": "text" + }, + { + "bbox": [ + 291, + 246, + 330, + 258 + ], + "score": 0.92, + "content": "N _ { 2 } \\geq \\overline { { N _ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 245, + 505, + 259 + ], + "score": 1.0, + "content": ", allowing the student to have more hidden", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 255, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 272 + ], + "score": 1.0, + "content": "units than the teacher. We also consider deeper students (see below and App. A). Now consider any", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 266, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 104, + 266, + 282, + 282 + ], + "score": 1.0, + "content": "student whose input-output map is given by", + "type": "text" + }, + { + "bbox": [ + 282, + 268, + 376, + 280 + ], + "score": 0.9, + "content": "\\mathbf { \\dot { y } } = \\mathbf { W } ^ { 3 2 } \\mathbf { W } ^ { 2 1 } \\equiv \\mathbf { W } \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 266, + 506, + 282 + ], + "score": 1.0, + "content": ". Its training error on the teacher", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 279, + 411, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 411, + 293 + ], + "score": 1.0, + "content": "dataset in (2) and its test error over a distribution of new inputs are given by", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 104, + 236, + 506, + 293 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 297, + 438, + 335 + ], + "lines": [ + { + "bbox": [ + 172, + 297, + 438, + 335 + ], + "spans": [ + { + "bbox": [ + 172, + 297, + 438, + 335 + ], + "score": 0.93, + "content": "\\varepsilon _ { \\mathrm { t r a i n } } \\equiv \\frac { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { W } \\hat { \\mathbf { x } } ^ { \\mu } - \\hat { \\mathbf { y } } ^ { \\mu } | | _ { 2 } ^ { 2 } } { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\hat { \\mathbf { y } } ^ { \\mu } | | _ { 2 } ^ { 2 } } , \\varepsilon _ { \\mathrm { t e s t } } \\equiv \\frac { \\langle | | \\mathbf { W } \\overline { { \\mathbf { x } } } - \\overline { { \\mathbf { y } } } | | _ { 2 } ^ { 2 } \\rangle } { \\langle | | \\overline { { \\mathbf { y } } } | | _ { 2 } ^ { 2 } \\rangle } ,", + "type": "interline_equation", + "image_path": "ec10a694331c27b34d51ae231b55eb44404ae9aa4b000936042e75c64c0f3aab.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 172, + 297, + 438, + 309.6666666666667 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 172, + 309.6666666666667, + 438, + 322.33333333333337 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 172, + 322.33333333333337, + 438, + 335.00000000000006 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 340, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 341, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 179, + 353 + ], + "score": 1.0, + "content": "respectively. Here", + "type": "text" + }, + { + "bbox": [ + 180, + 342, + 192, + 351 + ], + "score": 0.86, + "content": "\\hat { \\mathbf { x } } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 341, + 209, + 353 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 210, + 342, + 223, + 352 + ], + "score": 0.89, + "content": "{ \\hat { \\mathbf { y } } } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 341, + 457, + 353 + ], + "score": 1.0, + "content": "are the noisy training set inputs and outputs in (2), whereas", + "type": "text" + }, + { + "bbox": [ + 457, + 342, + 465, + 351 + ], + "score": 0.51, + "content": "\\overline { { \\mathbf { x } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 341, + 505, + 353 + ], + "score": 1.0, + "content": "denotes a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 419, + 365 + ], + "score": 1.0, + "content": "random test input drawn from zero mean Gaussian with identity covariance,", + "type": "text" + }, + { + "bbox": [ + 420, + 352, + 470, + 364 + ], + "score": 0.92, + "content": "\\overline { { \\mathbf { y } } } ^ { \\mu } = \\overline { { \\mathbf { W } } } \\overline { { \\mathbf { x } } } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "is noise", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 364, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 205, + 378 + ], + "score": 1.0, + "content": "free teacher output, and", + "type": "text" + }, + { + "bbox": [ + 205, + 364, + 217, + 376 + ], + "score": 0.89, + "content": "\\langle \\cdot \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 364, + 448, + 378 + ], + "score": 1.0, + "content": "denotes an average w.r.t the distribution of the test input", + "type": "text" + }, + { + "bbox": [ + 448, + 366, + 456, + 374 + ], + "score": 0.64, + "content": "\\overline { { \\mathbf { x } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 364, + 505, + 378 + ], + "score": 1.0, + "content": ". Due to the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 375, + 503, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 368, + 388 + ], + "score": 1.0, + "content": "orthonormality of the training and isotropy of the test inputs, both", + "type": "text" + }, + { + "bbox": [ + 368, + 376, + 388, + 386 + ], + "score": 0.88, + "content": "\\varepsilon _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 375, + 405, + 388 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 405, + 376, + 421, + 386 + ], + "score": 0.88, + "content": "{ \\varepsilon } _ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 375, + 503, + 388 + ], + "score": 1.0, + "content": "can be expressed as", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 341, + 505, + 388 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 392, + 505, + 424 + ], + "lines": [ + { + "bbox": [ + 111, + 392, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 111, + 392, + 505, + 424 + ], + "score": 0.92, + "content": "\\mathrm { ~ \\xi ~ } _ { \\mathrm { t r a i n } } = \\frac { \\mathrm { T } \\mathbf { F } \\mathbf { W } ^ { T } \\mathbf { W } - 2 \\mathrm { T r } \\mathbf { W } ^ { T } { \\boldsymbol { \\Sigma } } ^ { 3 1 } + \\mathrm { T r } { \\boldsymbol { \\Sigma } } ^ { 3 1 T } { \\boldsymbol { \\Sigma } } ^ { 3 1 } } { \\mathrm { T r } \\boldsymbol { \\Sigma } ^ { 3 1 T } \\boldsymbol { \\Sigma } ^ { 3 1 } } , \\mathrm { ~ \\xi ~ } _ { \\mathrm { f e s t } } = \\frac { \\mathrm { T r } \\mathbf { W } ^ { T } \\mathbf { W } - 2 \\mathrm { T r } \\mathbf { W } ^ { T } \\overline { { \\mathbf { W } } } + \\mathrm { T r } \\overline { { \\mathbf { W } } } ^ { T } \\overline { { \\mathbf { W } } } } { \\mathrm { T r } \\overline { { \\mathbf { W } } } ^ { T } \\overline { { \\mathbf { W } } } } .", + "type": "interline_equation", + "image_path": "2164005cd357741499916e1ea4597b4f17af0fa591d2c70c9b6722b832ef8c1d.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 111, + 392, + 505, + 402.6666666666667 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 111, + 402.6666666666667, + 505, + 413.33333333333337 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 111, + 413.33333333333337, + 505, + 424.00000000000006 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 432, + 509, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 128, + 445 + ], + "score": 1.0, + "content": "Both", + "type": "text" + }, + { + "bbox": [ + 128, + 434, + 148, + 444 + ], + "score": 0.87, + "content": "\\varepsilon _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 432, + 165, + 445 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 166, + 434, + 182, + 444 + ], + "score": 0.88, + "content": "\\varepsilon _ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 432, + 506, + 445 + ], + "score": 1.0, + "content": "can be further expressed in terms of the student, training data and teacher SVDs,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 441, + 498, + 462 + ], + "spans": [ + { + "bbox": [ + 104, + 441, + 189, + 462 + ], + "score": 1.0, + "content": "which we denote by", + "type": "text" + }, + { + "bbox": [ + 189, + 446, + 245, + 457 + ], + "score": 0.84, + "content": "\\mathbf { W } = \\mathbf { U } \\mathbf { S } \\mathbf { V } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 441, + 249, + 462 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 249, + 444, + 311, + 457 + ], + "score": 0.84, + "content": "\\begin{array} { r } { \\pmb { \\Sigma } ^ { 3 1 } = \\hat { \\mathbf { U } } \\hat { \\mathbf { S } } \\hat { \\mathbf { V } } ^ { T } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 441, + 331, + 462 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 332, + 443, + 391, + 457 + ], + "score": 0.91, + "content": "\\overline { { \\mathbf { W } } } = \\overline { { \\mathbf { U } } } \\overline { { \\mathbf { S } } } \\overline { { \\mathbf { V } } } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 441, + 498, + 462 + ], + "score": 1.0, + "content": "respectively. Specifically,", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 104, + 432, + 506, + 462 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 464, + 469, + 549 + ], + "lines": [ + { + "bbox": [ + 142, + 464, + 469, + 549 + ], + "spans": [ + { + "bbox": [ + 142, + 464, + 469, + 549 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\varepsilon _ { \\mathrm { t r a i n } } = \\left[ \\overbrace { \\sum _ { \\beta = 1 } ^ { N _ { 3 } } } ^ { \\overline { { S } } _ { 3 } } \\hat { s } _ { \\beta } ^ { 2 } \\right] ^ { - 1 } \\left[ \\underset { \\alpha = 1 } { \\overset { N _ { 2 } } { \\sum _ { \\alpha } } } s _ { \\alpha } ^ { 2 } + \\underset { \\beta = 1 } { \\overset { \\overline { { N } } _ { 3 } } { \\sum _ { \\beta } } } \\hat { s } _ { \\beta } ^ { 2 } - 2 \\underset { \\alpha = 1 } { \\overset { N _ { 2 } } { \\sum _ { \\beta = 1 } } } \\sum _ { \\beta = 1 } ^ { \\overline { { N _ { 3 } } } } s _ { \\alpha } \\hat { s } _ { \\beta } \\left( \\mathbf { u } ^ { \\alpha } \\cdot \\hat { \\mathbf { u } } ^ { \\beta } \\right) \\left( \\mathbf { v } ^ { \\alpha } \\cdot \\hat { \\mathbf { v } } ^ { \\beta } \\right) \\right] , } \\\\ & { \\varepsilon _ { \\mathrm { t e s t } } = \\left[ \\underset { \\beta = 1 } { \\overset { \\overline { { N } } _ { 2 } } { \\sum _ { \\beta } } } \\overline { { s } } _ { \\beta } ^ { 2 } \\right] ^ { - 1 } \\left[ \\underset { \\alpha = 1 } { \\overset { N _ { 2 } } { \\sum _ { \\alpha } } } s _ { \\alpha } ^ { 2 } + \\underset { \\beta = 1 } { \\overset { \\overline { { N } } _ { 2 } } { \\sum _ { \\beta } } } \\frac { 1 } { s _ { \\beta } ^ { 2 } } - 2 \\underset { \\alpha = 1 } { \\overset { N _ { 2 } } { \\sum _ { \\alpha } } } \\sum _ { \\beta = 1 } ^ { \\overline { { N _ { 2 } } } } s _ { \\alpha } \\overline { { s } } _ { \\beta } \\left( \\mathbf { u } ^ { \\alpha } \\cdot \\overline { { \\mathbf { u } } } ^ { \\beta } \\right) \\left( \\mathbf { v } ^ { \\alpha } \\cdot \\overline { { \\mathbf { v } } } ^ { \\beta } \\right) \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "9924429ca3ea20bc11ef1ca8fe58cf05d95015678f3a03aceca1e14b494d6ac4.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 142, + 464, + 469, + 492.3333333333333 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 142, + 492.3333333333333, + 469, + 520.6666666666666 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 142, + 520.6666666666666, + 469, + 549.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 553, + 504, + 587 + ], + "lines": [ + { + "bbox": [ + 106, + 553, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 505, + 565 + ], + "score": 1.0, + "content": "Thus as the student learns, its training and test error dynamics depends on the alignment of the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 263, + 577 + ], + "score": 1.0, + "content": "time-evolving student singular modes", + "type": "text" + }, + { + "bbox": [ + 263, + 564, + 317, + 577 + ], + "score": 0.93, + "content": "\\{ s ^ { \\alpha } , \\mathbf { u } ^ { \\alpha } , \\mathbf { v } ^ { \\alpha } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 564, + 433, + 577 + ], + "score": 1.0, + "content": "with the fixed training data", + "type": "text" + }, + { + "bbox": [ + 433, + 564, + 486, + 577 + ], + "score": 0.92, + "content": "\\{ \\hat { s } ^ { \\alpha } , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 575, + 309, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 138, + 588 + ], + "score": 1.0, + "content": "teacher", + "type": "text" + }, + { + "bbox": [ + 138, + 575, + 192, + 587 + ], + "score": 0.93, + "content": "\\{ \\overline { { s } } ^ { \\alpha } , \\bar { \\overline { { \\mathbf { u } } } } ^ { \\alpha } , \\overline { { \\mathbf { v } } } ^ { \\alpha } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 575, + 309, + 588 + ], + "score": 1.0, + "content": "singular modes respectively.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 106, + 553, + 505, + 588 + ] + }, + { + "type": "title", + "bbox": [ + 105, + 604, + 490, + 617 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 492, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 492, + 618 + ], + "score": 1.0, + "content": "3 SINGLE TASK GENERALIZATION DYNAMICS: THEORY AND EXPERIMENT", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 629, + 506, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 643 + ], + "score": 1.0, + "content": "Here we derive and numerically test analytic formulas for both the training and test errors of a student", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 641, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 505, + 653 + ], + "score": 1.0, + "content": "network as it learns from training data generated from a teacher network. We explore the dependence", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 651, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 506, + 664 + ], + "score": 1.0, + "content": "of these quantitites on the student network size, student initialization, teacher SNR, and training time.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 629, + 506, + 664 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 677, + 449, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 450, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 450, + 691 + ], + "score": 1.0, + "content": "3.1 STUDENT TRAINING DYNAMICS AND TRAINING-ALIGNED (TA) NETWORKS", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 503, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 435, + 713 + ], + "score": 1.0, + "content": "We assume the student weights undergo batch gradient descent with learning rate", + "type": "text" + }, + { + "bbox": [ + 435, + 700, + 443, + 709 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 697, + 505, + 713 + ], + "score": 1.0, + "content": "on the training", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 707, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 104, + 707, + 127, + 724 + ], + "score": 1.0, + "content": "error", + "type": "text" + }, + { + "bbox": [ + 128, + 709, + 236, + 723 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\sum _ { \\mu } | | \\hat { \\mathbf { y } } ^ { \\mu } - \\mathbf { W } ^ { 3 2 } \\mathbf { W } ^ { 2 1 } \\bar { \\hat { \\mathbf { x } } ^ { \\mu } } | | _ { 2 } ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 707, + 302, + 724 + ], + "score": 1.0, + "content": ", which for small", + "type": "text" + }, + { + "bbox": [ + 303, + 711, + 309, + 720 + ], + "score": 0.83, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 707, + 506, + 724 + ], + "score": 1.0, + "content": "is well approximated by the differential equations:", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 104, + 697, + 506, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 81, + 369, + 179 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 81, + 369, + 179 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 81, + 369, + 179 + ], + "spans": [ + { + "bbox": [ + 109, + 81, + 369, + 179 + ], + "score": 0.958, + "type": "image", + "image_path": "df635d5402308d3a9a9f10644ccaa9227749fea9232affb61828b212aa929642.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 109, + 81, + 369, + 113.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 113.66666666666666, + 369, + 146.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 109, + 146.33333333333331, + 369, + 178.99999999999997 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 371, + 81, + 505, + 180 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 371, + 81, + 505, + 93 + ], + "spans": [ + { + "bbox": [ + 371, + 81, + 505, + 93 + ], + "score": 1.0, + "content": "Figure 1: Learning dynamics as", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 371, + 92, + 505, + 104 + ], + "spans": [ + { + "bbox": [ + 371, + 92, + 505, + 104 + ], + "score": 1.0, + "content": "a function of singular dimension", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 371, + 103, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 371, + 103, + 505, + 115 + ], + "score": 1.0, + "content": "strength. (a) shows how modes", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 371, + 113, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 371, + 113, + 505, + 127 + ], + "score": 1.0, + "content": "of different singular value are", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 371, + 125, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 371, + 125, + 505, + 136 + ], + "score": 1.0, + "content": "learned, (b) shows that there is", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 370, + 135, + 505, + 148 + ], + "spans": [ + { + "bbox": [ + 370, + 135, + 505, + 148 + ], + "score": 1.0, + "content": "a wave of learning that picks up", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 371, + 147, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 371, + 147, + 505, + 158 + ], + "score": 1.0, + "content": "singular dimensions with smaller", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 371, + 157, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 371, + 157, + 505, + 170 + ], + "score": 1.0, + "content": "and smaller singular values as", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 371, + 169, + 406, + 181 + ], + "spans": [ + { + "bbox": [ + 371, + 169, + 402, + 180 + ], + "score": 0.69, + "content": "t \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 169, + 406, + 181 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 196, + 500, + 222 + ], + "lines": [ + { + "bbox": [ + 111, + 196, + 500, + 222 + ], + "spans": [ + { + "bbox": [ + 111, + 196, + 500, + 222 + ], + "score": 0.9, + "content": "\\tau \\frac { d } { d t } \\mathbf { W } ^ { 2 1 } = \\mathbf { W } ^ { 3 2 ^ { T } } \\left( \\boldsymbol { \\Sigma } ^ { 3 1 } - \\mathbf { W } ^ { 3 2 } \\mathbf { W } ^ { 2 1 } \\boldsymbol { \\Sigma } ^ { 1 1 } \\right) , \\qquad \\tau \\frac { d } { d t } \\mathbf { W } ^ { 3 2 } = \\left( \\boldsymbol { \\Sigma } ^ { 3 1 } - \\mathbf { W } ^ { 3 2 } \\mathbf { W } ^ { 2 1 } \\boldsymbol { \\Sigma } ^ { 1 1 } \\right) \\mathbf { W } ^ { 2 1 ^ { T } } ,", + "type": "interline_equation", + "image_path": "8db3ff2fa5cb7fdcf05f43aacd234760cc422e880240ce8bc05e642b67ae268f.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 111, + 196, + 500, + 222 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 230, + 505, + 333 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 136, + 242 + ], + "score": 1.0, + "content": "(where", + "type": "text" + }, + { + "bbox": [ + 137, + 230, + 174, + 242 + ], + "score": 0.91, + "content": "\\tau \\equiv 1 / \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 230, + 454, + 242 + ], + "score": 1.0, + "content": "), which must be solved from an initial set of student weights at time", + "type": "text" + }, + { + "bbox": [ + 455, + 231, + 478, + 240 + ], + "score": 0.89, + "content": "t = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 230, + 505, + 242 + ], + "score": 1.0, + "content": "(Saxe", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 505, + 253 + ], + "score": 1.0, + "content": "et al., 2013a). We consider two classes of student initializations. The first initialization corresponds", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 250, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 104, + 250, + 270, + 265 + ], + "score": 1.0, + "content": "to a random student where the weights", + "type": "text" + }, + { + "bbox": [ + 271, + 251, + 293, + 262 + ], + "score": 0.87, + "content": "\\mathbf { W } ^ { 2 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 250, + 313, + 265 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 313, + 251, + 335, + 262 + ], + "score": 0.86, + "content": "\\mathbf { W ^ { 3 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 250, + 505, + 265 + ], + "score": 1.0, + "content": "are chosen such that the composite map", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 261, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 176, + 273 + ], + "score": 0.9, + "content": "\\mathbf { W } = \\mathbf { W ^ { 3 2 } W ^ { 2 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 261, + 229, + 276 + ], + "score": 1.0, + "content": "has an SVD", + "type": "text" + }, + { + "bbox": [ + 229, + 262, + 284, + 273 + ], + "score": 0.86, + "content": "\\mathbf { W } = \\epsilon \\mathbf { U } \\mathbf { V } ^ { \\mathbf { T } }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 261, + 316, + 276 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 316, + 263, + 326, + 273 + ], + "score": 0.59, + "content": "\\mathbf { U }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 261, + 344, + 276 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 345, + 263, + 355, + 273 + ], + "score": 0.6, + "content": "\\mathbf { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 261, + 506, + 276 + ], + "score": 1.0, + "content": "are random singular vector matrices", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 100, + 273, + 511, + 307 + ], + "spans": [ + { + "bbox": [ + 100, + 273, + 214, + 307 + ], + "score": 1.0, + "content": "and all student singular vala time dependent evolution", + "type": "text" + }, + { + "bbox": [ + 243, + 276, + 248, + 284 + ], + "score": 0.5, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 273, + 511, + 307 + ], + "score": 1.0, + "content": "te map undergoes. For white inputs,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 215, + 284, + 434, + 300 + ], + "spans": [ + { + "bbox": [ + 215, + 284, + 434, + 300 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\mathbf { W } ( t ) = \\mathbf { U } ( t ) \\mathbf { S } ( t ) \\mathbf { V } ( t ) ^ { T } = \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } \\mathbf { s } _ { \\alpha } ( t ) \\mathbf { u } ^ { \\alpha } ( t ) \\mathbf { v } ^ { \\alpha } ( t ) ^ { T } . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 298, + 504, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 118, + 312 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 151, + 298, + 156, + 312 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 204, + 298, + 420, + 312 + ], + "score": 1.0, + "content": ", and so the time-dependent student singular modes", + "type": "text" + }, + { + "bbox": [ + 420, + 299, + 504, + 312 + ], + "score": 0.92, + "content": "\\{ s ^ { \\alpha } ( t ) , \\mathbf { u } ^ { \\alpha } ( \\mathbf { t } ) , \\mathbf { v } ^ { ( } \\mathbf { t } ) \\}", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 310, + 506, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 290, + 323 + ], + "score": 1.0, + "content": "converge to the training data singular modes", + "type": "text" + }, + { + "bbox": [ + 290, + 310, + 343, + 322 + ], + "score": 0.93, + "content": "\\{ \\hat { s } ^ { \\alpha } , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 310, + 506, + 323 + ], + "score": 1.0, + "content": ". However, the explicit dynamics of the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 322, + 476, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 476, + 334 + ], + "score": 1.0, + "content": "student singular modes can be difficult to obtain analytically from random initial conditions.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 505, + 417 + ], + "lines": [ + { + "bbox": [ + 104, + 337, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 104, + 337, + 464, + 351 + ], + "score": 1.0, + "content": "Thus we also consider a special class of training aligned (TA) initial conditions in which", + "type": "text" + }, + { + "bbox": [ + 464, + 338, + 486, + 349 + ], + "score": 0.87, + "content": "\\mathbf { W ^ { 2 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 337, + 506, + 351 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 348, + 507, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 128, + 361 + ], + "score": 0.83, + "content": "\\mathbf { W ^ { 3 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 348, + 293, + 364 + ], + "score": 1.0, + "content": "are chosen such that the composite map", + "type": "text" + }, + { + "bbox": [ + 293, + 350, + 362, + 361 + ], + "score": 0.92, + "content": "\\mathbf { W } = \\mathbf { W ^ { 3 2 } W ^ { 2 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 348, + 414, + 364 + ], + "score": 1.0, + "content": "has an SVD", + "type": "text" + }, + { + "bbox": [ + 415, + 349, + 469, + 362 + ], + "score": 0.76, + "content": "\\mathbf { W } = \\epsilon \\hat { \\mathbf { U } } \\hat { \\mathbf { V } } ^ { \\mathbf { T } }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 348, + 507, + 364 + ], + "score": 1.0, + "content": ". That is,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "score": 1.0, + "content": "the TA network (henceforth referred to simply as the TA) has the same singular vectors as the training", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 371, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 171, + 385 + ], + "score": 1.0, + "content": "data covariance", + "type": "text" + }, + { + "bbox": [ + 172, + 372, + 189, + 383 + ], + "score": 0.88, + "content": "\\boldsymbol { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 371, + 334, + 385 + ], + "score": 1.0, + "content": ", but has all singular values equal to", + "type": "text" + }, + { + "bbox": [ + 335, + 375, + 340, + 383 + ], + "score": 0.6, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 371, + 505, + 385 + ], + "score": 1.0, + "content": ". As shown in (Saxe et al., 2013a), as the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "TA learns according to (8), the singular vectors of its composite map W remain unchanged, while", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 221, + 407 + ], + "score": 1.0, + "content": "the singular values evolve as", + "type": "text" + }, + { + "bbox": [ + 221, + 394, + 287, + 407 + ], + "score": 0.93, + "content": "s ^ { \\alpha } ( t ) \\stackrel { \\textstyle - } { = } s ( t , { \\hat { s } } ^ { \\alpha } )", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 394, + 425, + 407 + ], + "score": 1.0, + "content": ", where the learning curve function", + "type": "text" + }, + { + "bbox": [ + 426, + 395, + 451, + 407 + ], + "score": 0.93, + "content": "s ( t , { \\hat { s } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 394, + 505, + 407 + ], + "score": 1.0, + "content": "as well as its", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 405, + 253, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 180, + 419 + ], + "score": 1.0, + "content": "functional inverse", + "type": "text" + }, + { + "bbox": [ + 180, + 406, + 206, + 418 + ], + "score": 0.93, + "content": "t ( s , { \\hat { s } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 405, + 253, + 419 + ], + "score": 1.0, + "content": "is given by", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 418, + 423, + 447 + ], + "lines": [ + { + "bbox": [ + 189, + 418, + 423, + 447 + ], + "spans": [ + { + "bbox": [ + 189, + 418, + 423, + 447 + ], + "score": 0.93, + "content": "s ( t , \\hat { s } ) = \\frac { \\hat { s } e ^ { 2 \\hat { s } t / \\tau } } { e ^ { 2 \\hat { s } t / \\tau } - 1 + \\hat { s } / \\epsilon } , \\qquad t ( s , \\hat { s } ) = \\frac { \\tau } { 2 \\hat { s } } \\ln \\frac { \\hat { s } / \\epsilon - 1 } { \\hat { s } / s - 1 } .", + "type": "interline_equation", + "image_path": "7500cbc7044b60e71245e55285a419d9036853bbd5df18959fcf957b69514c1b.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 189, + 418, + 423, + 432.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 189, + 432.5, + 423, + 447.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 448, + 506, + 548 + ], + "lines": [ + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 182, + 461 + ], + "score": 1.0, + "content": "Here the function", + "type": "text" + }, + { + "bbox": [ + 182, + 449, + 208, + 461 + ], + "score": 0.92, + "content": "s ( t , { \\hat { s } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 448, + 454, + 461 + ], + "score": 1.0, + "content": "describes analytically how each training set singular value", + "type": "text" + }, + { + "bbox": [ + 455, + 449, + 461, + 459 + ], + "score": 0.75, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 448, + 506, + 461 + ], + "score": 1.0, + "content": "drives the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 459, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 301, + 473 + ], + "score": 1.0, + "content": "dynamics of the corresponding TA singular value", + "type": "text" + }, + { + "bbox": [ + 301, + 462, + 307, + 470 + ], + "score": 0.75, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 459, + 506, + 473 + ], + "score": 1.0, + "content": ", and for notational simplicity, we have suppressed", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 183, + 483 + ], + "score": 1.0, + "content": "the dependence of", + "type": "text" + }, + { + "bbox": [ + 184, + 471, + 209, + 483 + ], + "score": 0.92, + "content": "s ( t , { \\hat { s } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 470, + 224, + 483 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 224, + 473, + 231, + 480 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 470, + 331, + 483 + ], + "score": 1.0, + "content": "and the initial condition", + "type": "text" + }, + { + "bbox": [ + 332, + 473, + 337, + 480 + ], + "score": 0.58, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 470, + 469, + 483 + ], + "score": 1.0, + "content": ". As shown in Fig. 1A, for each", + "type": "text" + }, + { + "bbox": [ + 469, + 471, + 474, + 480 + ], + "score": 0.69, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 470, + 479, + 483 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 479, + 471, + 505, + 482 + ], + "score": 0.87, + "content": "s ( t , { \\hat { s } } )", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 101, + 476, + 502, + 505 + ], + "spans": [ + { + "bbox": [ + 101, + 476, + 295, + 505 + ], + "score": 1.0, + "content": "is a sigmoidal learning curve that undergoes aat which it rises from its small initial value of", + "type": "text" + }, + { + "bbox": [ + 301, + 476, + 312, + 505 + ], + "score": 1.0, + "content": "haat", + "type": "text" + }, + { + "bbox": [ + 336, + 476, + 413, + 505 + ], + "score": 1.0, + "content": "sition around time to its asymptotic v", + "type": "text" + }, + { + "bbox": [ + 413, + 481, + 502, + 494 + ], + "score": 0.89, + "content": "\\begin{array} { r } { t / \\tau = \\frac { 1 } { 2 \\hat { s } } \\ln { \\left( \\hat { s } / \\epsilon - \\mathrm { 1 } \\right) } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 295, + 493, + 503, + 504 + ], + "spans": [ + { + "bbox": [ + 295, + 495, + 301, + 502 + ], + "score": 0.74, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 493, + 336, + 502 + ], + "score": 0.89, + "content": "t = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 494, + 449, + 502 + ], + "score": 0.74, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 493, + 503, + 504 + ], + "score": 0.89, + "content": "t / \\tau \\to \\infty", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 212, + 516 + ], + "score": 1.0, + "content": "Alternatively, we can plot", + "type": "text" + }, + { + "bbox": [ + 213, + 504, + 248, + 515 + ], + "score": 0.93, + "content": "s ( t , { \\hat { s } } ) / { \\hat { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 502, + 314, + 516 + ], + "score": 1.0, + "content": "as a function of", + "type": "text" + }, + { + "bbox": [ + 315, + 504, + 320, + 513 + ], + "score": 0.8, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 502, + 430, + 516 + ], + "score": 1.0, + "content": "for different training times", + "type": "text" + }, + { + "bbox": [ + 431, + 504, + 446, + 515 + ], + "score": 0.9, + "content": "t / \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 502, + 506, + 516 + ], + "score": 1.0, + "content": ", as in Fig. 1B.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 514, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 527 + ], + "score": 1.0, + "content": "This shows that TA learning corresponds to a singular mode detection wave which progressively", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 393, + 538 + ], + "score": 1.0, + "content": "sweeps from large to small singular values. At any given training time", + "type": "text" + }, + { + "bbox": [ + 393, + 527, + 398, + 535 + ], + "score": 0.67, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 525, + 505, + 538 + ], + "score": 1.0, + "content": ", training data modes with", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 537, + 483, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 169, + 549 + ], + "score": 1.0, + "content": "singular values", + "type": "text" + }, + { + "bbox": [ + 169, + 537, + 202, + 549 + ], + "score": 0.92, + "content": "\\hat { s } > t / \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 537, + 410, + 549 + ], + "score": 1.0, + "content": "have been learned, while those with singular values", + "type": "text" + }, + { + "bbox": [ + 411, + 537, + 444, + 549 + ], + "score": 0.92, + "content": "\\hat { s } < t / \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 537, + 483, + 549 + ], + "score": 1.0, + "content": "have not.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 553, + 505, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 553, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 565 + ], + "score": 1.0, + "content": "While the TA is more sophisticated than the random student, since it already knows the singular", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 563, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 577 + ], + "score": 1.0, + "content": "vectors of the training data before learning, we will see that the analytic solution for the TA learning", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 575, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 505, + 589 + ], + "score": 1.0, + "content": "dynamics provides a good approximation to the student learning dynamics, not only for the training", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 586, + 472, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 472, + 598 + ], + "score": 1.0, + "content": "error, as shown in (Saxe et al., 2013a), but also for the generalization error as shown below.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 603, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 602, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 463, + 616 + ], + "score": 1.0, + "content": "The results in this section assume a single hidden layer, but Saxe et al. (2013a) derived", + "type": "text" + }, + { + "bbox": [ + 463, + 603, + 489, + 615 + ], + "score": 0.92, + "content": "t ( s , { \\hat { s } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 602, + 505, + 616 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 614, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 626 + ], + "score": 1.0, + "content": "networks of arbitrary depth and we apply our theory to some deeper networks. The general differential", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 625, + 406, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 406, + 637 + ], + "score": 1.0, + "content": "equation and derivations for deeper networks can be found in Appendix A.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + }, + { + "type": "title", + "bbox": [ + 106, + 649, + 495, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 649, + 497, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 497, + 661 + ], + "score": 1.0, + "content": "3.2 HOW THE TEACHER IS BURIED IN THE TRAINING DATA: A RANDOM MATRIX ANALYSIS", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 106, + 669, + 505, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "In the previous section, we reviewed an exact analytic solution for the composite map of a TA network,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 681, + 468, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 468, + 694 + ], + "score": 1.0, + "content": "namely that its singular modes are related to those of the training data through the relation", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48.5 + }, + { + "type": "interline_equation", + "bbox": [ + 197, + 694, + 414, + 707 + ], + "lines": [ + { + "bbox": [ + 197, + 694, + 414, + 707 + ], + "spans": [ + { + "bbox": [ + 197, + 694, + 414, + 707 + ], + "score": 0.89, + "content": "\\begin{array} { r } { s _ { \\alpha } ( t ) = s ( t , \\hat { s } _ { \\alpha } ) , \\qquad { \\bf u } ^ { \\alpha } ( t ) = \\hat { \\bf u } ^ { \\alpha } , \\qquad { \\bf v } ^ { \\alpha } ( t ) = \\hat { \\bf v } ^ { \\alpha } . } \\end{array}", + "type": "interline_equation", + "image_path": "2b6b38ab2445136253e3c2da9eb4b5601b0e0bf19d86f31d2d59f8f956174964.jpg" + } + ] + } + ], + "index": 50, + "virtual_lines": [ + { + "bbox": [ + 197, + 694, + 414, + 707 + ], + "spans": [], + "index": 50 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 507, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 707, + 505, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 707, + 505, + 720 + ], + "score": 1.0, + "content": "However, computation of the generalization error through (5) then requires understanding how the", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 718, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 209, + 734 + ], + "score": 1.0, + "content": "teacher singular modes of", + "type": "text" + }, + { + "bbox": [ + 209, + 720, + 222, + 730 + ], + "score": 0.86, + "content": "\\overline { { \\mathbf { W } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 718, + 452, + 734 + ], + "score": 1.0, + "content": "are buried within the noisy training data singular modes of", + "type": "text" + }, + { + "bbox": [ + 452, + 720, + 471, + 730 + ], + "score": 0.9, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 718, + 506, + 734 + ], + "score": 1.0, + "content": "through", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 8 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 81, + 369, + 179 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 81, + 369, + 179 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 81, + 369, + 179 + ], + "spans": [ + { + "bbox": [ + 109, + 81, + 369, + 179 + ], + "score": 0.958, + "type": "image", + "image_path": "df635d5402308d3a9a9f10644ccaa9227749fea9232affb61828b212aa929642.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 109, + 81, + 369, + 113.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 113.66666666666666, + 369, + 146.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 109, + 146.33333333333331, + 369, + 178.99999999999997 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 371, + 81, + 505, + 180 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 371, + 81, + 505, + 93 + ], + "spans": [ + { + "bbox": [ + 371, + 81, + 505, + 93 + ], + "score": 1.0, + "content": "Figure 1: Learning dynamics as", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 371, + 92, + 505, + 104 + ], + "spans": [ + { + "bbox": [ + 371, + 92, + 505, + 104 + ], + "score": 1.0, + "content": "a function of singular dimension", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 371, + 103, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 371, + 103, + 505, + 115 + ], + "score": 1.0, + "content": "strength. (a) shows how modes", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 371, + 113, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 371, + 113, + 505, + 127 + ], + "score": 1.0, + "content": "of different singular value are", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 371, + 125, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 371, + 125, + 505, + 136 + ], + "score": 1.0, + "content": "learned, (b) shows that there is", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 370, + 135, + 505, + 148 + ], + "spans": [ + { + "bbox": [ + 370, + 135, + 505, + 148 + ], + "score": 1.0, + "content": "a wave of learning that picks up", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 371, + 147, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 371, + 147, + 505, + 158 + ], + "score": 1.0, + "content": "singular dimensions with smaller", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 371, + 157, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 371, + 157, + 505, + 170 + ], + "score": 1.0, + "content": "and smaller singular values as", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 371, + 169, + 406, + 181 + ], + "spans": [ + { + "bbox": [ + 371, + 169, + 402, + 180 + ], + "score": 0.69, + "content": "t \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 169, + 406, + 181 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 196, + 500, + 222 + ], + "lines": [ + { + "bbox": [ + 111, + 196, + 500, + 222 + ], + "spans": [ + { + "bbox": [ + 111, + 196, + 500, + 222 + ], + "score": 0.9, + "content": "\\tau \\frac { d } { d t } \\mathbf { W } ^ { 2 1 } = \\mathbf { W } ^ { 3 2 ^ { T } } \\left( \\boldsymbol { \\Sigma } ^ { 3 1 } - \\mathbf { W } ^ { 3 2 } \\mathbf { W } ^ { 2 1 } \\boldsymbol { \\Sigma } ^ { 1 1 } \\right) , \\qquad \\tau \\frac { d } { d t } \\mathbf { W } ^ { 3 2 } = \\left( \\boldsymbol { \\Sigma } ^ { 3 1 } - \\mathbf { W } ^ { 3 2 } \\mathbf { W } ^ { 2 1 } \\boldsymbol { \\Sigma } ^ { 1 1 } \\right) \\mathbf { W } ^ { 2 1 ^ { T } } ,", + "type": "interline_equation", + "image_path": "8db3ff2fa5cb7fdcf05f43aacd234760cc422e880240ce8bc05e642b67ae268f.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 111, + 196, + 500, + 222 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 230, + 505, + 333 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 136, + 242 + ], + "score": 1.0, + "content": "(where", + "type": "text" + }, + { + "bbox": [ + 137, + 230, + 174, + 242 + ], + "score": 0.91, + "content": "\\tau \\equiv 1 / \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 230, + 454, + 242 + ], + "score": 1.0, + "content": "), which must be solved from an initial set of student weights at time", + "type": "text" + }, + { + "bbox": [ + 455, + 231, + 478, + 240 + ], + "score": 0.89, + "content": "t = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 230, + 505, + 242 + ], + "score": 1.0, + "content": "(Saxe", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 505, + 253 + ], + "score": 1.0, + "content": "et al., 2013a). We consider two classes of student initializations. The first initialization corresponds", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 250, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 104, + 250, + 270, + 265 + ], + "score": 1.0, + "content": "to a random student where the weights", + "type": "text" + }, + { + "bbox": [ + 271, + 251, + 293, + 262 + ], + "score": 0.87, + "content": "\\mathbf { W } ^ { 2 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 250, + 313, + 265 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 313, + 251, + 335, + 262 + ], + "score": 0.86, + "content": "\\mathbf { W ^ { 3 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 250, + 505, + 265 + ], + "score": 1.0, + "content": "are chosen such that the composite map", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 261, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 176, + 273 + ], + "score": 0.9, + "content": "\\mathbf { W } = \\mathbf { W ^ { 3 2 } W ^ { 2 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 261, + 229, + 276 + ], + "score": 1.0, + "content": "has an SVD", + "type": "text" + }, + { + "bbox": [ + 229, + 262, + 284, + 273 + ], + "score": 0.86, + "content": "\\mathbf { W } = \\epsilon \\mathbf { U } \\mathbf { V } ^ { \\mathbf { T } }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 261, + 316, + 276 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 316, + 263, + 326, + 273 + ], + "score": 0.59, + "content": "\\mathbf { U }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 261, + 344, + 276 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 345, + 263, + 355, + 273 + ], + "score": 0.6, + "content": "\\mathbf { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 261, + 506, + 276 + ], + "score": 1.0, + "content": "are random singular vector matrices", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 100, + 273, + 511, + 307 + ], + "spans": [ + { + "bbox": [ + 100, + 273, + 214, + 307 + ], + "score": 1.0, + "content": "and all student singular vala time dependent evolution", + "type": "text" + }, + { + "bbox": [ + 243, + 276, + 248, + 284 + ], + "score": 0.5, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 273, + 511, + 307 + ], + "score": 1.0, + "content": "te map undergoes. For white inputs,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 215, + 284, + 434, + 300 + ], + "spans": [ + { + "bbox": [ + 215, + 284, + 434, + 300 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\mathbf { W } ( t ) = \\mathbf { U } ( t ) \\mathbf { S } ( t ) \\mathbf { V } ( t ) ^ { T } = \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } \\mathbf { s } _ { \\alpha } ( t ) \\mathbf { u } ^ { \\alpha } ( t ) \\mathbf { v } ^ { \\alpha } ( t ) ^ { T } . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 298, + 504, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 118, + 312 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 151, + 298, + 156, + 312 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 204, + 298, + 420, + 312 + ], + "score": 1.0, + "content": ", and so the time-dependent student singular modes", + "type": "text" + }, + { + "bbox": [ + 420, + 299, + 504, + 312 + ], + "score": 0.92, + "content": "\\{ s ^ { \\alpha } ( t ) , \\mathbf { u } ^ { \\alpha } ( \\mathbf { t } ) , \\mathbf { v } ^ { ( } \\mathbf { t } ) \\}", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 310, + 506, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 290, + 323 + ], + "score": 1.0, + "content": "converge to the training data singular modes", + "type": "text" + }, + { + "bbox": [ + 290, + 310, + 343, + 322 + ], + "score": 0.93, + "content": "\\{ \\hat { s } ^ { \\alpha } , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 310, + 506, + 323 + ], + "score": 1.0, + "content": ". However, the explicit dynamics of the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 322, + 476, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 476, + 334 + ], + "score": 1.0, + "content": "student singular modes can be difficult to obtain analytically from random initial conditions.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17, + "bbox_fs": [ + 100, + 230, + 511, + 334 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 505, + 417 + ], + "lines": [ + { + "bbox": [ + 104, + 337, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 104, + 337, + 464, + 351 + ], + "score": 1.0, + "content": "Thus we also consider a special class of training aligned (TA) initial conditions in which", + "type": "text" + }, + { + "bbox": [ + 464, + 338, + 486, + 349 + ], + "score": 0.87, + "content": "\\mathbf { W ^ { 2 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 337, + 506, + 351 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 348, + 507, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 128, + 361 + ], + "score": 0.83, + "content": "\\mathbf { W ^ { 3 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 348, + 293, + 364 + ], + "score": 1.0, + "content": "are chosen such that the composite map", + "type": "text" + }, + { + "bbox": [ + 293, + 350, + 362, + 361 + ], + "score": 0.92, + "content": "\\mathbf { W } = \\mathbf { W ^ { 3 2 } W ^ { 2 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 348, + 414, + 364 + ], + "score": 1.0, + "content": "has an SVD", + "type": "text" + }, + { + "bbox": [ + 415, + 349, + 469, + 362 + ], + "score": 0.76, + "content": "\\mathbf { W } = \\epsilon \\hat { \\mathbf { U } } \\hat { \\mathbf { V } } ^ { \\mathbf { T } }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 348, + 507, + 364 + ], + "score": 1.0, + "content": ". That is,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "score": 1.0, + "content": "the TA network (henceforth referred to simply as the TA) has the same singular vectors as the training", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 371, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 171, + 385 + ], + "score": 1.0, + "content": "data covariance", + "type": "text" + }, + { + "bbox": [ + 172, + 372, + 189, + 383 + ], + "score": 0.88, + "content": "\\boldsymbol { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 371, + 334, + 385 + ], + "score": 1.0, + "content": ", but has all singular values equal to", + "type": "text" + }, + { + "bbox": [ + 335, + 375, + 340, + 383 + ], + "score": 0.6, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 371, + 505, + 385 + ], + "score": 1.0, + "content": ". As shown in (Saxe et al., 2013a), as the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "TA learns according to (8), the singular vectors of its composite map W remain unchanged, while", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 221, + 407 + ], + "score": 1.0, + "content": "the singular values evolve as", + "type": "text" + }, + { + "bbox": [ + 221, + 394, + 287, + 407 + ], + "score": 0.93, + "content": "s ^ { \\alpha } ( t ) \\stackrel { \\textstyle - } { = } s ( t , { \\hat { s } } ^ { \\alpha } )", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 394, + 425, + 407 + ], + "score": 1.0, + "content": ", where the learning curve function", + "type": "text" + }, + { + "bbox": [ + 426, + 395, + 451, + 407 + ], + "score": 0.93, + "content": "s ( t , { \\hat { s } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 394, + 505, + 407 + ], + "score": 1.0, + "content": "as well as its", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 405, + 253, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 180, + 419 + ], + "score": 1.0, + "content": "functional inverse", + "type": "text" + }, + { + "bbox": [ + 180, + 406, + 206, + 418 + ], + "score": 0.93, + "content": "t ( s , { \\hat { s } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 405, + 253, + 419 + ], + "score": 1.0, + "content": "is given by", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25, + "bbox_fs": [ + 104, + 337, + 507, + 419 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 418, + 423, + 447 + ], + "lines": [ + { + "bbox": [ + 189, + 418, + 423, + 447 + ], + "spans": [ + { + "bbox": [ + 189, + 418, + 423, + 447 + ], + "score": 0.93, + "content": "s ( t , \\hat { s } ) = \\frac { \\hat { s } e ^ { 2 \\hat { s } t / \\tau } } { e ^ { 2 \\hat { s } t / \\tau } - 1 + \\hat { s } / \\epsilon } , \\qquad t ( s , \\hat { s } ) = \\frac { \\tau } { 2 \\hat { s } } \\ln \\frac { \\hat { s } / \\epsilon - 1 } { \\hat { s } / s - 1 } .", + "type": "interline_equation", + "image_path": "7500cbc7044b60e71245e55285a419d9036853bbd5df18959fcf957b69514c1b.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 189, + 418, + 423, + 432.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 189, + 432.5, + 423, + 447.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 448, + 506, + 548 + ], + "lines": [ + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 182, + 461 + ], + "score": 1.0, + "content": "Here the function", + "type": "text" + }, + { + "bbox": [ + 182, + 449, + 208, + 461 + ], + "score": 0.92, + "content": "s ( t , { \\hat { s } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 448, + 454, + 461 + ], + "score": 1.0, + "content": "describes analytically how each training set singular value", + "type": "text" + }, + { + "bbox": [ + 455, + 449, + 461, + 459 + ], + "score": 0.75, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 448, + 506, + 461 + ], + "score": 1.0, + "content": "drives the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 459, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 301, + 473 + ], + "score": 1.0, + "content": "dynamics of the corresponding TA singular value", + "type": "text" + }, + { + "bbox": [ + 301, + 462, + 307, + 470 + ], + "score": 0.75, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 459, + 506, + 473 + ], + "score": 1.0, + "content": ", and for notational simplicity, we have suppressed", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 183, + 483 + ], + "score": 1.0, + "content": "the dependence of", + "type": "text" + }, + { + "bbox": [ + 184, + 471, + 209, + 483 + ], + "score": 0.92, + "content": "s ( t , { \\hat { s } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 470, + 224, + 483 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 224, + 473, + 231, + 480 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 470, + 331, + 483 + ], + "score": 1.0, + "content": "and the initial condition", + "type": "text" + }, + { + "bbox": [ + 332, + 473, + 337, + 480 + ], + "score": 0.58, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 470, + 469, + 483 + ], + "score": 1.0, + "content": ". As shown in Fig. 1A, for each", + "type": "text" + }, + { + "bbox": [ + 469, + 471, + 474, + 480 + ], + "score": 0.69, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 470, + 479, + 483 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 479, + 471, + 505, + 482 + ], + "score": 0.87, + "content": "s ( t , { \\hat { s } } )", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 101, + 476, + 502, + 505 + ], + "spans": [ + { + "bbox": [ + 101, + 476, + 295, + 505 + ], + "score": 1.0, + "content": "is a sigmoidal learning curve that undergoes aat which it rises from its small initial value of", + "type": "text" + }, + { + "bbox": [ + 301, + 476, + 312, + 505 + ], + "score": 1.0, + "content": "haat", + "type": "text" + }, + { + "bbox": [ + 336, + 476, + 413, + 505 + ], + "score": 1.0, + "content": "sition around time to its asymptotic v", + "type": "text" + }, + { + "bbox": [ + 413, + 481, + 502, + 494 + ], + "score": 0.89, + "content": "\\begin{array} { r } { t / \\tau = \\frac { 1 } { 2 \\hat { s } } \\ln { \\left( \\hat { s } / \\epsilon - \\mathrm { 1 } \\right) } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 295, + 493, + 503, + 504 + ], + "spans": [ + { + "bbox": [ + 295, + 495, + 301, + 502 + ], + "score": 0.74, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 493, + 336, + 502 + ], + "score": 0.89, + "content": "t = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 494, + 449, + 502 + ], + "score": 0.74, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 493, + 503, + 504 + ], + "score": 0.89, + "content": "t / \\tau \\to \\infty", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 212, + 516 + ], + "score": 1.0, + "content": "Alternatively, we can plot", + "type": "text" + }, + { + "bbox": [ + 213, + 504, + 248, + 515 + ], + "score": 0.93, + "content": "s ( t , { \\hat { s } } ) / { \\hat { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 502, + 314, + 516 + ], + "score": 1.0, + "content": "as a function of", + "type": "text" + }, + { + "bbox": [ + 315, + 504, + 320, + 513 + ], + "score": 0.8, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 502, + 430, + 516 + ], + "score": 1.0, + "content": "for different training times", + "type": "text" + }, + { + "bbox": [ + 431, + 504, + 446, + 515 + ], + "score": 0.9, + "content": "t / \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 502, + 506, + 516 + ], + "score": 1.0, + "content": ", as in Fig. 1B.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 514, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 527 + ], + "score": 1.0, + "content": "This shows that TA learning corresponds to a singular mode detection wave which progressively", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 393, + 538 + ], + "score": 1.0, + "content": "sweeps from large to small singular values. At any given training time", + "type": "text" + }, + { + "bbox": [ + 393, + 527, + 398, + 535 + ], + "score": 0.67, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 525, + 505, + 538 + ], + "score": 1.0, + "content": ", training data modes with", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 537, + 483, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 169, + 549 + ], + "score": 1.0, + "content": "singular values", + "type": "text" + }, + { + "bbox": [ + 169, + 537, + 202, + 549 + ], + "score": 0.92, + "content": "\\hat { s } > t / \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 537, + 410, + 549 + ], + "score": 1.0, + "content": "have been learned, while those with singular values", + "type": "text" + }, + { + "bbox": [ + 411, + 537, + 444, + 549 + ], + "score": 0.92, + "content": "\\hat { s } < t / \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 537, + 483, + 549 + ], + "score": 1.0, + "content": "have not.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35, + "bbox_fs": [ + 101, + 448, + 506, + 549 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 553, + 505, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 553, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 565 + ], + "score": 1.0, + "content": "While the TA is more sophisticated than the random student, since it already knows the singular", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 563, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 577 + ], + "score": 1.0, + "content": "vectors of the training data before learning, we will see that the analytic solution for the TA learning", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 575, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 505, + 589 + ], + "score": 1.0, + "content": "dynamics provides a good approximation to the student learning dynamics, not only for the training", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 586, + 472, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 472, + 598 + ], + "score": 1.0, + "content": "error, as shown in (Saxe et al., 2013a), but also for the generalization error as shown below.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 553, + 505, + 598 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 603, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 602, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 463, + 616 + ], + "score": 1.0, + "content": "The results in this section assume a single hidden layer, but Saxe et al. (2013a) derived", + "type": "text" + }, + { + "bbox": [ + 463, + 603, + 489, + 615 + ], + "score": 0.92, + "content": "t ( s , { \\hat { s } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 602, + 505, + 616 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 614, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 626 + ], + "score": 1.0, + "content": "networks of arbitrary depth and we apply our theory to some deeper networks. The general differential", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 625, + 406, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 406, + 637 + ], + "score": 1.0, + "content": "equation and derivations for deeper networks can be found in Appendix A.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 602, + 505, + 637 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 649, + 495, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 649, + 497, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 497, + 661 + ], + "score": 1.0, + "content": "3.2 HOW THE TEACHER IS BURIED IN THE TRAINING DATA: A RANDOM MATRIX ANALYSIS", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 106, + 669, + 505, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "In the previous section, we reviewed an exact analytic solution for the composite map of a TA network,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 681, + 468, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 468, + 694 + ], + "score": 1.0, + "content": "namely that its singular modes are related to those of the training data through the relation", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48.5, + "bbox_fs": [ + 106, + 669, + 505, + 694 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 197, + 694, + 414, + 707 + ], + "lines": [ + { + "bbox": [ + 197, + 694, + 414, + 707 + ], + "spans": [ + { + "bbox": [ + 197, + 694, + 414, + 707 + ], + "score": 0.89, + "content": "\\begin{array} { r } { s _ { \\alpha } ( t ) = s ( t , \\hat { s } _ { \\alpha } ) , \\qquad { \\bf u } ^ { \\alpha } ( t ) = \\hat { \\bf u } ^ { \\alpha } , \\qquad { \\bf v } ^ { \\alpha } ( t ) = \\hat { \\bf v } ^ { \\alpha } . } \\end{array}", + "type": "interline_equation", + "image_path": "2b6b38ab2445136253e3c2da9eb4b5601b0e0bf19d86f31d2d59f8f956174964.jpg" + } + ] + } + ], + "index": 50, + "virtual_lines": [ + { + "bbox": [ + 197, + 694, + 414, + 707 + ], + "spans": [], + "index": 50 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 507, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 707, + 505, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 707, + 505, + 720 + ], + "score": 1.0, + "content": "However, computation of the generalization error through (5) then requires understanding how the", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 718, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 209, + 734 + ], + "score": 1.0, + "content": "teacher singular modes of", + "type": "text" + }, + { + "bbox": [ + 209, + 720, + 222, + 730 + ], + "score": 0.86, + "content": "\\overline { { \\mathbf { W } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 718, + 452, + 734 + ], + "score": 1.0, + "content": "are buried within the noisy training data singular modes of", + "type": "text" + }, + { + "bbox": [ + 452, + 720, + 471, + 730 + ], + "score": 0.9, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 718, + 506, + 734 + ], + "score": 1.0, + "content": "through", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 212, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 266, + 226 + ], + "score": 1.0, + "content": "the relation (3). Since the input matrix", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 266, + 212, + 276, + 223 + ], + "score": 0.8, + "content": "\\hat { \\mathbf X }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 276, + 212, + 342, + 226 + ], + "score": 1.0, + "content": "is orthonormal,", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 342, + 212, + 361, + 223 + ], + "score": 0.89, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 361, + 212, + 506, + 226 + ], + "score": 1.0, + "content": "is simply a perturbation of the low", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 224, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 157, + 236 + ], + "score": 1.0, + "content": "rank teacher", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 158, + 224, + 171, + 235 + ], + "score": 0.76, + "content": "\\overline { { \\mathbf { W } } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 171, + 225, + 312, + 236 + ], + "score": 1.0, + "content": "by a high dimensional noise matrix", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 313, + 225, + 321, + 235 + ], + "score": 0.46, + "content": "\\mathbf { Z }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 321, + 225, + 506, + 236 + ], + "score": 1.0, + "content": ". The relation between the singular modes of a", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 235, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 496, + 248 + ], + "score": 1.0, + "content": "low rank matrix and its noise perturbed version has been studied extensively in Benaych-Georges", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 496, + 236, + 505, + 246 + ], + "score": 0.4, + "content": "\\&", + "type": "inline_equation", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 246, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 413, + 259 + ], + "score": 1.0, + "content": "Nadakuditi (2012), in the high dimensional limit we are working in, namely", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 413, + 246, + 469, + 258 + ], + "score": 0.92, + "content": "\\overline { { N _ { 1 } } } , \\overline { { N _ { 3 } } } \\overline { { } } \\infty", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 469, + 246, + 505, + 259 + ], + "score": 1.0, + "content": "with the", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 257, + 313, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 155, + 270 + ], + "score": 1.0, + "content": "aspect ratio", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 155, + 257, + 240, + 270 + ], + "score": 0.93, + "content": "\\mathcal { A } = \\overline { { N _ { 3 } } } / \\overline { { N _ { 1 } } } \\in \\overline { { ( 0 , 1 ] } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 240, + 257, + 261, + 270 + ], + "score": 1.0, + "content": ", and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 261, + 257, + 309, + 270 + ], + "score": 0.92, + "content": "\\overline { { N } } _ { 2 } \\sim O ( 1 )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 309, + 257, + 313, + 270 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 10 + } + ], + "index": 51.5, + "bbox_fs": [ + 105, + 707, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 111, + 81, + 491, + 166 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 111, + 81, + 491, + 166 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 81, + 491, + 166 + ], + "spans": [ + { + "bbox": [ + 111, + 81, + 491, + 166 + ], + "score": 0.966, + "type": "image", + "image_path": "74aa5b143963ba7d2cf4b03e7444309ed0f7fd59b33a147d86b619f88f63f9e7.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 111, + 81, + 491, + 109.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 111, + 109.33333333333333, + 491, + 137.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 111, + 137.66666666666666, + 491, + 166.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 167, + 504, + 201 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 167, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 505, + 180 + ], + "score": 1.0, + "content": "Figure 2: The teacher’s signal through the noise. Theoretical vs. empirical (a) histogram of singular", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 178, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 198, + 191 + ], + "score": 1.0, + "content": "values of noisy teacher", + "type": "text" + }, + { + "bbox": [ + 198, + 179, + 204, + 189 + ], + "score": 0.44, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 178, + 221, + 191 + ], + "score": 1.0, + "content": ". (b)", + "type": "text" + }, + { + "bbox": [ + 222, + 179, + 228, + 189 + ], + "score": 0.78, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 178, + 291, + 191 + ], + "score": 1.0, + "content": "as a function of", + "type": "text" + }, + { + "bbox": [ + 291, + 180, + 298, + 188 + ], + "score": 0.39, + "content": "\\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 178, + 506, + 191 + ], + "score": 1.0, + "content": ". (c) alignment of noisy teacher and noiseless teacher", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 189, + 325, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 236, + 202 + ], + "score": 1.0, + "content": "singular vectors as a function of", + "type": "text" + }, + { + "bbox": [ + 236, + 190, + 243, + 199 + ], + "score": 0.65, + "content": "\\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 190, + 249, + 202 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 249, + 189, + 321, + 201 + ], + "score": 0.9, + "content": "{ \\widetilde { N _ { 1 } } } = { \\overline { { N _ { 3 } } } } = 1 0 0 .", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 190, + 325, + 202 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 211, + 505, + 270 + ], + "lines": [ + { + "bbox": [ + 105, + 212, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 266, + 226 + ], + "score": 1.0, + "content": "the relation (3). Since the input matrix", + "type": "text" + }, + { + "bbox": [ + 266, + 212, + 276, + 223 + ], + "score": 0.8, + "content": "\\hat { \\mathbf X }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 212, + 342, + 226 + ], + "score": 1.0, + "content": "is orthonormal,", + "type": "text" + }, + { + "bbox": [ + 342, + 212, + 361, + 223 + ], + "score": 0.89, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 212, + 506, + 226 + ], + "score": 1.0, + "content": "is simply a perturbation of the low", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 224, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 157, + 236 + ], + "score": 1.0, + "content": "rank teacher", + "type": "text" + }, + { + "bbox": [ + 158, + 224, + 171, + 235 + ], + "score": 0.76, + "content": "\\overline { { \\mathbf { W } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 225, + 312, + 236 + ], + "score": 1.0, + "content": "by a high dimensional noise matrix", + "type": "text" + }, + { + "bbox": [ + 313, + 225, + 321, + 235 + ], + "score": 0.46, + "content": "\\mathbf { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 225, + 506, + 236 + ], + "score": 1.0, + "content": ". The relation between the singular modes of a", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 235, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 496, + 248 + ], + "score": 1.0, + "content": "low rank matrix and its noise perturbed version has been studied extensively in Benaych-Georges", + "type": "text" + }, + { + "bbox": [ + 496, + 236, + 505, + 246 + ], + "score": 0.4, + "content": "\\&", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 246, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 413, + 259 + ], + "score": 1.0, + "content": "Nadakuditi (2012), in the high dimensional limit we are working in, namely", + "type": "text" + }, + { + "bbox": [ + 413, + 246, + 469, + 258 + ], + "score": 0.92, + "content": "\\overline { { N _ { 1 } } } , \\overline { { N _ { 3 } } } \\overline { { } } \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 246, + 505, + 259 + ], + "score": 1.0, + "content": "with the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 257, + 313, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 155, + 270 + ], + "score": 1.0, + "content": "aspect ratio", + "type": "text" + }, + { + "bbox": [ + 155, + 257, + 240, + 270 + ], + "score": 0.93, + "content": "\\mathcal { A } = \\overline { { N _ { 3 } } } / \\overline { { N _ { 1 } } } \\in \\overline { { ( 0 , 1 ] } }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 257, + 261, + 270 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 261, + 257, + 309, + 270 + ], + "score": 0.92, + "content": "\\overline { { N } } _ { 2 } \\sim O ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 257, + 313, + 270 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 275, + 504, + 299 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 190, + 289 + ], + "score": 1.0, + "content": "In this limit, the top", + "type": "text" + }, + { + "bbox": [ + 191, + 275, + 205, + 287 + ], + "score": 0.87, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 273, + 331, + 289 + ], + "score": 1.0, + "content": "singular values and vectors of", + "type": "text" + }, + { + "bbox": [ + 331, + 276, + 349, + 286 + ], + "score": 0.88, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 273, + 401, + 289 + ], + "score": 1.0, + "content": "converge to", + "type": "text" + }, + { + "bbox": [ + 401, + 276, + 425, + 288 + ], + "score": 0.92, + "content": "\\hat { s } ( \\overline { { s } } _ { \\alpha } )", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 273, + 506, + 289 + ], + "score": 1.0, + "content": ", where the transfer", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 286, + 500, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 260, + 299 + ], + "score": 1.0, + "content": "function from a teacher singular value", + "type": "text" + }, + { + "bbox": [ + 261, + 288, + 267, + 297 + ], + "score": 0.71, + "content": "\\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 286, + 396, + 299 + ], + "score": 1.0, + "content": "to a training data singular value", + "type": "text" + }, + { + "bbox": [ + 396, + 288, + 402, + 297 + ], + "score": 0.82, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 286, + 500, + 299 + ], + "score": 1.0, + "content": "is given by the function", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 304, + 407, + 338 + ], + "lines": [ + { + "bbox": [ + 203, + 304, + 407, + 338 + ], + "spans": [ + { + "bbox": [ + 203, + 304, + 407, + 338 + ], + "score": 0.93, + "content": "{ \\hat { s } } ( { \\overline { { s } } } ) = { \\left\\{ \\begin{array} { l l } { ( { \\overline { { s } } } ) ^ { - 1 } { \\sqrt { ( 1 + { \\overline { { s } } } ^ { 2 } ) ( A + { \\overline { { s } } } ^ { 2 } ) } } } & { { \\mathrm { ~ i f ~ } } { \\overline { { s } } } > A ^ { 1 / 4 } } \\\\ { 1 + { \\sqrt { A } } } & { { \\mathrm { ~ o t h e r w i s e . } } } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "2ba1154839d1485804a1e1f85264464ed778061a1065b612c52372f9c5c065a6.jpg" + } + ] + } + ], + "index": 13.5, + "virtual_lines": [ + { + "bbox": [ + 203, + 304, + 407, + 321.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 203, + 321.0, + 407, + 338.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 344, + 505, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 342, + 504, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 185, + 357 + ], + "score": 1.0, + "content": "The associated top", + "type": "text" + }, + { + "bbox": [ + 186, + 344, + 200, + 356 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 342, + 281, + 357 + ], + "score": 1.0, + "content": "singular vectors of", + "type": "text" + }, + { + "bbox": [ + 281, + 344, + 299, + 354 + ], + "score": 0.89, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 342, + 489, + 357 + ], + "score": 1.0, + "content": "can also acquire a nontrivial overlap with the", + "type": "text" + }, + { + "bbox": [ + 489, + 345, + 504, + 356 + ], + "score": 0.88, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 353, + 507, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 279, + 369 + ], + "score": 1.0, + "content": "modes of the teacher through the relation", + "type": "text" + }, + { + "bbox": [ + 279, + 355, + 395, + 367 + ], + "score": 0.92, + "content": "\\left| \\hat { \\mathbf { u } } ^ { \\alpha } \\cdot \\overline { { \\mathbf { u } } } ^ { \\alpha } \\right| \\left| \\hat { \\mathbf { v } } ^ { \\alpha } \\cdot \\overline { { \\mathbf { v } } } ^ { \\alpha } \\right| = \\mathcal { O } ( \\overline { { s } } _ { \\alpha } )", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 353, + 507, + 369 + ], + "score": 1.0, + "content": ", where the singular vector", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 367, + 219, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 219, + 379 + ], + "score": 1.0, + "content": "overlap function is given by", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 383, + 431, + 423 + ], + "lines": [ + { + "bbox": [ + 178, + 383, + 431, + 423 + ], + "spans": [ + { + "bbox": [ + 178, + 383, + 431, + 423 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\mathcal { O } ( \\overline { { s } } ) = \\left\\{ \\begin{array} { l l } { \\left[ 1 - \\frac { \\mathcal { A } ( 1 + \\overline { { s } } ^ { 2 } ) } { \\overline { { s } } ^ { 2 } ( A + \\overline { { s } } ^ { 2 } ) } \\right] ^ { 1 / 2 } \\left[ 1 - \\frac { ( \\mathcal { A } + \\overline { { s } } ^ { 2 } ) } { \\overline { { s } } ^ { 2 } ( 1 + \\overline { { s } } ^ { 2 } ) } \\right] ^ { 1 / 2 } } & { \\mathrm { i f } \\overline { { s } } > \\mathcal { A } ^ { 1 / 4 } } \\\\ { 0 } & { \\mathrm { o t h e r w i s e } } \\end{array} \\right. } \\end{array}", + "type": "interline_equation", + "image_path": "d5c4b3b9ac8ae1dc6fcedacfb57f1842d2fd7cce16e70a28d6b8b5ae04de86ab.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 178, + 383, + 431, + 396.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 178, + 396.3333333333333, + 431, + 409.66666666666663 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 178, + 409.66666666666663, + 431, + 422.99999999999994 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 429, + 505, + 452 + ], + "lines": [ + { + "bbox": [ + 104, + 427, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 104, + 427, + 165, + 443 + ], + "score": 1.0, + "content": "The rest of the", + "type": "text" + }, + { + "bbox": [ + 165, + 429, + 202, + 441 + ], + "score": 0.93, + "content": "N _ { 3 } - { \\overline { { N _ { 2 } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 427, + 278, + 443 + ], + "score": 1.0, + "content": "singular vectors of", + "type": "text" + }, + { + "bbox": [ + 279, + 429, + 297, + 440 + ], + "score": 0.89, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 427, + 396, + 443 + ], + "score": 1.0, + "content": "are orthogonal to the top", + "type": "text" + }, + { + "bbox": [ + 396, + 429, + 411, + 441 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 427, + 505, + 443 + ], + "score": 1.0, + "content": "ones, and their singular", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 441, + 425, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 425, + 452 + ], + "score": 1.0, + "content": "values are distributed according to the the Marchenko-Pastur (MP) distribution:", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 457, + 416, + 491 + ], + "lines": [ + { + "bbox": [ + 194, + 457, + 416, + 491 + ], + "spans": [ + { + "bbox": [ + 194, + 457, + 416, + 491 + ], + "score": 0.94, + "content": "P ( \\hat { s } ) = \\left\\{ \\begin{array} { l l } { \\frac { \\sqrt { 4 A - ( \\hat { s } ^ { 2 } - ( 1 + A ) ) ^ { 2 } } } { \\pi A \\hat { s } } } & { \\hat { s } \\in [ 1 - \\sqrt { \\mathcal { A } } , 1 + \\sqrt { \\mathcal { A } } ] } \\\\ { 0 } & { \\mathrm { o t h e r w i s e } . } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "7cbae00fa09fe50ba7290dcc0e7ab93f7dd633fd65337439d8702ccd8624c824.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 194, + 457, + 416, + 474.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 194, + 474.0, + 416, + 491.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 505, + 589 + ], + "lines": [ + { + "bbox": [ + 106, + 497, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 505, + 509 + ], + "score": 1.0, + "content": "Overall, these equations describe a singular vector phase transition in the training data, as illustrated", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "score": 1.0, + "content": "in Fig. 2BC. For example in the case of no teacher, the training data is simply noise and the singular", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 518, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 145, + 534 + ], + "score": 1.0, + "content": "values of", + "type": "text" + }, + { + "bbox": [ + 145, + 519, + 163, + 531 + ], + "score": 0.89, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 518, + 343, + 534 + ], + "score": 1.0, + "content": "are distributed as an MP sea spread between", + "type": "text" + }, + { + "bbox": [ + 343, + 519, + 378, + 531 + ], + "score": 0.92, + "content": "1 \\pm { \\sqrt { A } }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 518, + 506, + 534 + ], + "score": 1.0, + "content": ". When one adds a teacher, how", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 531, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 506, + 544 + ], + "score": 1.0, + "content": "each teacher singular mode is imprinted on the training data depends crucially on the teacher singular", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 129, + 555 + ], + "score": 1.0, + "content": "value", + "type": "text" + }, + { + "bbox": [ + 129, + 544, + 135, + 553 + ], + "score": 0.68, + "content": "\\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 543, + 388, + 555 + ], + "score": 1.0, + "content": ", and the nature of this imprinting undergoes a phase transition at", + "type": "text" + }, + { + "bbox": [ + 388, + 542, + 427, + 554 + ], + "score": 0.91, + "content": "\\overline { { s } } = \\mathcal { A } ^ { 1 / 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 543, + 447, + 555 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 447, + 542, + 487, + 554 + ], + "score": 0.91, + "content": "\\overline { { s } } \\leq { \\mathcal { A } } ^ { 1 / 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 543, + 505, + 555 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 553, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 506, + 567 + ], + "score": 1.0, + "content": "teacher mode SNR is too low and this mode is not imprinted in the noisy training data; the associated√", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 220, + 579 + ], + "score": 1.0, + "content": "training data singular value", + "type": "text" + }, + { + "bbox": [ + 220, + 567, + 227, + 576 + ], + "score": 0.75, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 565, + 379, + 579 + ], + "score": 1.0, + "content": "remains at the edge of the MP sea at", + "type": "text" + }, + { + "bbox": [ + 379, + 565, + 414, + 577 + ], + "score": 0.92, + "content": "1 + { \\sqrt { A } }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 565, + 483, + 579 + ], + "score": 1.0, + "content": ", and the overlap", + "type": "text" + }, + { + "bbox": [ + 483, + 566, + 505, + 578 + ], + "score": 0.9, + "content": "\\mathcal { O } ( \\overline { { s } } )", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 578, + 345, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 345, + 590 + ], + "score": 1.0, + "content": "between training and teacher singular vectors remains zero.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 171, + 608 + ], + "score": 1.0, + "content": "However, when", + "type": "text" + }, + { + "bbox": [ + 171, + 594, + 210, + 606 + ], + "score": 0.92, + "content": "\\overline { { s } } > \\mathcal { A } ^ { 1 / 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 594, + 506, + 608 + ], + "score": 1.0, + "content": ", this teacher mode is imprinted in the training data; there is an associated", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 220, + 618 + ], + "score": 1.0, + "content": "training data singular value", + "type": "text" + }, + { + "bbox": [ + 221, + 607, + 227, + 616 + ], + "score": 0.71, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "that pops out of the MP sea (Fig. 2AB). However, the training data", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 617, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 255, + 630 + ], + "score": 1.0, + "content": "singular value emerges at a position", + "type": "text" + }, + { + "bbox": [ + 255, + 618, + 281, + 628 + ], + "score": 0.9, + "content": "\\hat { s } > \\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 617, + 506, + 630 + ], + "score": 1.0, + "content": "that is inflated by the noise, though the inflation effect", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 627, + 507, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 185, + 642 + ], + "score": 1.0, + "content": "decreases at larger", + "type": "text" + }, + { + "bbox": [ + 185, + 630, + 191, + 638 + ], + "score": 0.48, + "content": "\\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 627, + 253, + 642 + ], + "score": 1.0, + "content": ", with the ratio", + "type": "text" + }, + { + "bbox": [ + 254, + 628, + 270, + 640 + ], + "score": 0.89, + "content": "\\hat { s } / \\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 627, + 393, + 642 + ], + "score": 1.0, + "content": "approaching the unity line as", + "type": "text" + }, + { + "bbox": [ + 393, + 629, + 400, + 638 + ], + "score": 0.6, + "content": "\\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 627, + 507, + 642 + ], + "score": 1.0, + "content": "becomes large (Fig. 2B).", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "Similarly, the corresponding training data singular vectors acquire a non-trivial overlap with the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 650, + 507, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 225, + 664 + ], + "score": 1.0, + "content": "teacher singular vectors when", + "type": "text" + }, + { + "bbox": [ + 225, + 650, + 264, + 662 + ], + "score": 0.92, + "content": "\\overline { { s } } > \\mathcal { A } ^ { 1 / 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 650, + 420, + 664 + ], + "score": 1.0, + "content": ", and the alignment approaches unity as", + "type": "text" + }, + { + "bbox": [ + 420, + 652, + 426, + 661 + ], + "score": 0.69, + "content": "\\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 650, + 507, + 664 + ], + "score": 1.0, + "content": "increases (Fig. 2C).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35.5 + }, + { + "type": "title", + "bbox": [ + 105, + 676, + 493, + 688 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 492, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 492, + 688 + ], + "score": 1.0, + "content": "3.3 PUTTING IT ALL TOGETHER: AN ANALYTIC THEORY OF GENERALIZATION DYNAMICS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 697, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 696, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 393, + 711 + ], + "score": 1.0, + "content": "Based on an analytic understanding of how the singular mode structure", + "type": "text" + }, + { + "bbox": [ + 393, + 697, + 447, + 709 + ], + "score": 0.93, + "content": "\\{ \\overline { { s } } ^ { \\alpha } , \\overline { { \\mathbf { u } } } ^ { \\alpha } , \\overline { { \\mathbf { v } } } ^ { \\alpha } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 696, + 506, + 711 + ], + "score": 1.0, + "content": "of the teacher", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 107, + 710, + 119, + 720 + ], + "score": 0.76, + "content": "\\overline { { \\mathbf { W } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 708, + 222, + 722 + ], + "score": 1.0, + "content": "is imprinted in the modes", + "type": "text" + }, + { + "bbox": [ + 222, + 709, + 276, + 722 + ], + "score": 0.92, + "content": "\\{ \\hat { s } ^ { \\alpha } , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 708, + 397, + 722 + ], + "score": 1.0, + "content": "of the training data covariance", + "type": "text" + }, + { + "bbox": [ + 397, + 709, + 414, + 720 + ], + "score": 0.88, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "through (11), (12) and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "(13), and in turn how this training data singular structure drives the time evolving singular modes of a", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 111, + 81, + 491, + 166 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 111, + 81, + 491, + 166 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 81, + 491, + 166 + ], + "spans": [ + { + "bbox": [ + 111, + 81, + 491, + 166 + ], + "score": 0.966, + "type": "image", + "image_path": "74aa5b143963ba7d2cf4b03e7444309ed0f7fd59b33a147d86b619f88f63f9e7.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 111, + 81, + 491, + 109.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 111, + 109.33333333333333, + 491, + 137.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 111, + 137.66666666666666, + 491, + 166.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 167, + 504, + 201 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 167, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 505, + 180 + ], + "score": 1.0, + "content": "Figure 2: The teacher’s signal through the noise. Theoretical vs. empirical (a) histogram of singular", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 178, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 198, + 191 + ], + "score": 1.0, + "content": "values of noisy teacher", + "type": "text" + }, + { + "bbox": [ + 198, + 179, + 204, + 189 + ], + "score": 0.44, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 178, + 221, + 191 + ], + "score": 1.0, + "content": ". (b)", + "type": "text" + }, + { + "bbox": [ + 222, + 179, + 228, + 189 + ], + "score": 0.78, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 178, + 291, + 191 + ], + "score": 1.0, + "content": "as a function of", + "type": "text" + }, + { + "bbox": [ + 291, + 180, + 298, + 188 + ], + "score": 0.39, + "content": "\\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 178, + 506, + 191 + ], + "score": 1.0, + "content": ". (c) alignment of noisy teacher and noiseless teacher", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 189, + 325, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 236, + 202 + ], + "score": 1.0, + "content": "singular vectors as a function of", + "type": "text" + }, + { + "bbox": [ + 236, + 190, + 243, + 199 + ], + "score": 0.65, + "content": "\\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 190, + 249, + 202 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 249, + 189, + 321, + 201 + ], + "score": 0.9, + "content": "{ \\widetilde { N _ { 1 } } } = { \\overline { { N _ { 3 } } } } = 1 0 0 .", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 190, + 325, + 202 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 211, + 505, + 270 + ], + "lines": [], + "index": 8, + "bbox_fs": [ + 105, + 212, + 506, + 270 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 275, + 504, + 299 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 190, + 289 + ], + "score": 1.0, + "content": "In this limit, the top", + "type": "text" + }, + { + "bbox": [ + 191, + 275, + 205, + 287 + ], + "score": 0.87, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 273, + 331, + 289 + ], + "score": 1.0, + "content": "singular values and vectors of", + "type": "text" + }, + { + "bbox": [ + 331, + 276, + 349, + 286 + ], + "score": 0.88, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 273, + 401, + 289 + ], + "score": 1.0, + "content": "converge to", + "type": "text" + }, + { + "bbox": [ + 401, + 276, + 425, + 288 + ], + "score": 0.92, + "content": "\\hat { s } ( \\overline { { s } } _ { \\alpha } )", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 273, + 506, + 289 + ], + "score": 1.0, + "content": ", where the transfer", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 286, + 500, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 260, + 299 + ], + "score": 1.0, + "content": "function from a teacher singular value", + "type": "text" + }, + { + "bbox": [ + 261, + 288, + 267, + 297 + ], + "score": 0.71, + "content": "\\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 286, + 396, + 299 + ], + "score": 1.0, + "content": "to a training data singular value", + "type": "text" + }, + { + "bbox": [ + 396, + 288, + 402, + 297 + ], + "score": 0.82, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 286, + 500, + 299 + ], + "score": 1.0, + "content": "is given by the function", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 273, + 506, + 299 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 304, + 407, + 338 + ], + "lines": [ + { + "bbox": [ + 203, + 304, + 407, + 338 + ], + "spans": [ + { + "bbox": [ + 203, + 304, + 407, + 338 + ], + "score": 0.93, + "content": "{ \\hat { s } } ( { \\overline { { s } } } ) = { \\left\\{ \\begin{array} { l l } { ( { \\overline { { s } } } ) ^ { - 1 } { \\sqrt { ( 1 + { \\overline { { s } } } ^ { 2 } ) ( A + { \\overline { { s } } } ^ { 2 } ) } } } & { { \\mathrm { ~ i f ~ } } { \\overline { { s } } } > A ^ { 1 / 4 } } \\\\ { 1 + { \\sqrt { A } } } & { { \\mathrm { ~ o t h e r w i s e . } } } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "2ba1154839d1485804a1e1f85264464ed778061a1065b612c52372f9c5c065a6.jpg" + } + ] + } + ], + "index": 13.5, + "virtual_lines": [ + { + "bbox": [ + 203, + 304, + 407, + 321.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 203, + 321.0, + 407, + 338.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 344, + 505, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 342, + 504, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 185, + 357 + ], + "score": 1.0, + "content": "The associated top", + "type": "text" + }, + { + "bbox": [ + 186, + 344, + 200, + 356 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 342, + 281, + 357 + ], + "score": 1.0, + "content": "singular vectors of", + "type": "text" + }, + { + "bbox": [ + 281, + 344, + 299, + 354 + ], + "score": 0.89, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 342, + 489, + 357 + ], + "score": 1.0, + "content": "can also acquire a nontrivial overlap with the", + "type": "text" + }, + { + "bbox": [ + 489, + 345, + 504, + 356 + ], + "score": 0.88, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 353, + 507, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 279, + 369 + ], + "score": 1.0, + "content": "modes of the teacher through the relation", + "type": "text" + }, + { + "bbox": [ + 279, + 355, + 395, + 367 + ], + "score": 0.92, + "content": "\\left| \\hat { \\mathbf { u } } ^ { \\alpha } \\cdot \\overline { { \\mathbf { u } } } ^ { \\alpha } \\right| \\left| \\hat { \\mathbf { v } } ^ { \\alpha } \\cdot \\overline { { \\mathbf { v } } } ^ { \\alpha } \\right| = \\mathcal { O } ( \\overline { { s } } _ { \\alpha } )", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 353, + 507, + 369 + ], + "score": 1.0, + "content": ", where the singular vector", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 367, + 219, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 219, + 379 + ], + "score": 1.0, + "content": "overlap function is given by", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 342, + 507, + 379 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 383, + 431, + 423 + ], + "lines": [ + { + "bbox": [ + 178, + 383, + 431, + 423 + ], + "spans": [ + { + "bbox": [ + 178, + 383, + 431, + 423 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\mathcal { O } ( \\overline { { s } } ) = \\left\\{ \\begin{array} { l l } { \\left[ 1 - \\frac { \\mathcal { A } ( 1 + \\overline { { s } } ^ { 2 } ) } { \\overline { { s } } ^ { 2 } ( A + \\overline { { s } } ^ { 2 } ) } \\right] ^ { 1 / 2 } \\left[ 1 - \\frac { ( \\mathcal { A } + \\overline { { s } } ^ { 2 } ) } { \\overline { { s } } ^ { 2 } ( 1 + \\overline { { s } } ^ { 2 } ) } \\right] ^ { 1 / 2 } } & { \\mathrm { i f } \\overline { { s } } > \\mathcal { A } ^ { 1 / 4 } } \\\\ { 0 } & { \\mathrm { o t h e r w i s e } } \\end{array} \\right. } \\end{array}", + "type": "interline_equation", + "image_path": "d5c4b3b9ac8ae1dc6fcedacfb57f1842d2fd7cce16e70a28d6b8b5ae04de86ab.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 178, + 383, + 431, + 396.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 178, + 396.3333333333333, + 431, + 409.66666666666663 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 178, + 409.66666666666663, + 431, + 422.99999999999994 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 429, + 505, + 452 + ], + "lines": [ + { + "bbox": [ + 104, + 427, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 104, + 427, + 165, + 443 + ], + "score": 1.0, + "content": "The rest of the", + "type": "text" + }, + { + "bbox": [ + 165, + 429, + 202, + 441 + ], + "score": 0.93, + "content": "N _ { 3 } - { \\overline { { N _ { 2 } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 427, + 278, + 443 + ], + "score": 1.0, + "content": "singular vectors of", + "type": "text" + }, + { + "bbox": [ + 279, + 429, + 297, + 440 + ], + "score": 0.89, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 427, + 396, + 443 + ], + "score": 1.0, + "content": "are orthogonal to the top", + "type": "text" + }, + { + "bbox": [ + 396, + 429, + 411, + 441 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 427, + 505, + 443 + ], + "score": 1.0, + "content": "ones, and their singular", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 441, + 425, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 425, + 452 + ], + "score": 1.0, + "content": "values are distributed according to the the Marchenko-Pastur (MP) distribution:", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 427, + 505, + 452 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 457, + 416, + 491 + ], + "lines": [ + { + "bbox": [ + 194, + 457, + 416, + 491 + ], + "spans": [ + { + "bbox": [ + 194, + 457, + 416, + 491 + ], + "score": 0.94, + "content": "P ( \\hat { s } ) = \\left\\{ \\begin{array} { l l } { \\frac { \\sqrt { 4 A - ( \\hat { s } ^ { 2 } - ( 1 + A ) ) ^ { 2 } } } { \\pi A \\hat { s } } } & { \\hat { s } \\in [ 1 - \\sqrt { \\mathcal { A } } , 1 + \\sqrt { \\mathcal { A } } ] } \\\\ { 0 } & { \\mathrm { o t h e r w i s e } . } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "7cbae00fa09fe50ba7290dcc0e7ab93f7dd633fd65337439d8702ccd8624c824.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 194, + 457, + 416, + 474.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 194, + 474.0, + 416, + 491.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 505, + 589 + ], + "lines": [ + { + "bbox": [ + 106, + 497, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 505, + 509 + ], + "score": 1.0, + "content": "Overall, these equations describe a singular vector phase transition in the training data, as illustrated", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "score": 1.0, + "content": "in Fig. 2BC. For example in the case of no teacher, the training data is simply noise and the singular", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 518, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 145, + 534 + ], + "score": 1.0, + "content": "values of", + "type": "text" + }, + { + "bbox": [ + 145, + 519, + 163, + 531 + ], + "score": 0.89, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 518, + 343, + 534 + ], + "score": 1.0, + "content": "are distributed as an MP sea spread between", + "type": "text" + }, + { + "bbox": [ + 343, + 519, + 378, + 531 + ], + "score": 0.92, + "content": "1 \\pm { \\sqrt { A } }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 518, + 506, + 534 + ], + "score": 1.0, + "content": ". When one adds a teacher, how", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 531, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 506, + 544 + ], + "score": 1.0, + "content": "each teacher singular mode is imprinted on the training data depends crucially on the teacher singular", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 129, + 555 + ], + "score": 1.0, + "content": "value", + "type": "text" + }, + { + "bbox": [ + 129, + 544, + 135, + 553 + ], + "score": 0.68, + "content": "\\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 543, + 388, + 555 + ], + "score": 1.0, + "content": ", and the nature of this imprinting undergoes a phase transition at", + "type": "text" + }, + { + "bbox": [ + 388, + 542, + 427, + 554 + ], + "score": 0.91, + "content": "\\overline { { s } } = \\mathcal { A } ^ { 1 / 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 543, + 447, + 555 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 447, + 542, + 487, + 554 + ], + "score": 0.91, + "content": "\\overline { { s } } \\leq { \\mathcal { A } } ^ { 1 / 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 543, + 505, + 555 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 553, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 506, + 567 + ], + "score": 1.0, + "content": "teacher mode SNR is too low and this mode is not imprinted in the noisy training data; the associated√", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 220, + 579 + ], + "score": 1.0, + "content": "training data singular value", + "type": "text" + }, + { + "bbox": [ + 220, + 567, + 227, + 576 + ], + "score": 0.75, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 565, + 379, + 579 + ], + "score": 1.0, + "content": "remains at the edge of the MP sea at", + "type": "text" + }, + { + "bbox": [ + 379, + 565, + 414, + 577 + ], + "score": 0.92, + "content": "1 + { \\sqrt { A } }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 565, + 483, + 579 + ], + "score": 1.0, + "content": ", and the overlap", + "type": "text" + }, + { + "bbox": [ + 483, + 566, + 505, + 578 + ], + "score": 0.9, + "content": "\\mathcal { O } ( \\overline { { s } } )", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 578, + 345, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 345, + 590 + ], + "score": 1.0, + "content": "between training and teacher singular vectors remains zero.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 497, + 506, + 590 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 171, + 608 + ], + "score": 1.0, + "content": "However, when", + "type": "text" + }, + { + "bbox": [ + 171, + 594, + 210, + 606 + ], + "score": 0.92, + "content": "\\overline { { s } } > \\mathcal { A } ^ { 1 / 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 594, + 506, + 608 + ], + "score": 1.0, + "content": ", this teacher mode is imprinted in the training data; there is an associated", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 220, + 618 + ], + "score": 1.0, + "content": "training data singular value", + "type": "text" + }, + { + "bbox": [ + 221, + 607, + 227, + 616 + ], + "score": 0.71, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "that pops out of the MP sea (Fig. 2AB). However, the training data", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 617, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 255, + 630 + ], + "score": 1.0, + "content": "singular value emerges at a position", + "type": "text" + }, + { + "bbox": [ + 255, + 618, + 281, + 628 + ], + "score": 0.9, + "content": "\\hat { s } > \\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 617, + 506, + 630 + ], + "score": 1.0, + "content": "that is inflated by the noise, though the inflation effect", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 627, + 507, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 185, + 642 + ], + "score": 1.0, + "content": "decreases at larger", + "type": "text" + }, + { + "bbox": [ + 185, + 630, + 191, + 638 + ], + "score": 0.48, + "content": "\\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 627, + 253, + 642 + ], + "score": 1.0, + "content": ", with the ratio", + "type": "text" + }, + { + "bbox": [ + 254, + 628, + 270, + 640 + ], + "score": 0.89, + "content": "\\hat { s } / \\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 627, + 393, + 642 + ], + "score": 1.0, + "content": "approaching the unity line as", + "type": "text" + }, + { + "bbox": [ + 393, + 629, + 400, + 638 + ], + "score": 0.6, + "content": "\\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 627, + 507, + 642 + ], + "score": 1.0, + "content": "becomes large (Fig. 2B).", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "Similarly, the corresponding training data singular vectors acquire a non-trivial overlap with the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 650, + 507, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 225, + 664 + ], + "score": 1.0, + "content": "teacher singular vectors when", + "type": "text" + }, + { + "bbox": [ + 225, + 650, + 264, + 662 + ], + "score": 0.92, + "content": "\\overline { { s } } > \\mathcal { A } ^ { 1 / 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 650, + 420, + 664 + ], + "score": 1.0, + "content": ", and the alignment approaches unity as", + "type": "text" + }, + { + "bbox": [ + 420, + 652, + 426, + 661 + ], + "score": 0.69, + "content": "\\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 650, + 507, + 664 + ], + "score": 1.0, + "content": "increases (Fig. 2C).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 594, + 507, + 664 + ] + }, + { + "type": "title", + "bbox": [ + 105, + 676, + 493, + 688 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 492, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 492, + 688 + ], + "score": 1.0, + "content": "3.3 PUTTING IT ALL TOGETHER: AN ANALYTIC THEORY OF GENERALIZATION DYNAMICS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 697, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 696, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 393, + 711 + ], + "score": 1.0, + "content": "Based on an analytic understanding of how the singular mode structure", + "type": "text" + }, + { + "bbox": [ + 393, + 697, + 447, + 709 + ], + "score": 0.93, + "content": "\\{ \\overline { { s } } ^ { \\alpha } , \\overline { { \\mathbf { u } } } ^ { \\alpha } , \\overline { { \\mathbf { v } } } ^ { \\alpha } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 696, + 506, + 711 + ], + "score": 1.0, + "content": "of the teacher", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 107, + 710, + 119, + 720 + ], + "score": 0.76, + "content": "\\overline { { \\mathbf { W } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 708, + 222, + 722 + ], + "score": 1.0, + "content": "is imprinted in the modes", + "type": "text" + }, + { + "bbox": [ + 222, + 709, + 276, + 722 + ], + "score": 0.92, + "content": "\\{ \\hat { s } ^ { \\alpha } , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 708, + 397, + 722 + ], + "score": 1.0, + "content": "of the training data covariance", + "type": "text" + }, + { + "bbox": [ + 397, + 709, + 414, + 720 + ], + "score": 0.88, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "through (11), (12) and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "(13), and in turn how this training data singular structure drives the time evolving singular modes of a", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 696, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 78, + 497, + 246 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 78, + 497, + 246 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 78, + 497, + 246 + ], + "spans": [ + { + "bbox": [ + 110, + 78, + 497, + 246 + ], + "score": 0.974, + "type": "image", + "image_path": "314c03e7d659a75d3bce2929de3fdf61f6a46155c699119ff46ac7743510ffe3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 78, + 497, + 134.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 134.0, + 497, + 190.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 190.0, + 497, + 246.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 256, + 506, + 324 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 256, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 506, + 269 + ], + "score": 1.0, + "content": "Figure 3: Match between theory and experiment for rank 1 (row 1, a-d) and rank 3 (row 2, e-h)", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 266, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 506, + 282 + ], + "score": 1.0, + "content": "teachers with single-hidden-layer students: (a-b, e-f) log train and test error, respectively, showing", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 278, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 506, + 291 + ], + "score": 1.0, + "content": "very close match between theory and experiment for TA, and close match for the random student.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 289, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 506, + 302 + ], + "score": 1.0, + "content": "(c,g) comparing TA and randomly initialized students minimum generalization errors, showing almost", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 299, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 506, + 315 + ], + "score": 1.0, + "content": "perfect match. (d,h) comparing TA and randomly initialized students optimal stopping times, showing", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 312, + 352, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 221, + 324 + ], + "score": 1.0, + "content": "small lag due to alignment. (", + "type": "text" + }, + { + "bbox": [ + 222, + 312, + 263, + 323 + ], + "score": 0.86, + "content": "N _ { 1 } = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 312, + 266, + 324 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 267, + 312, + 304, + 323 + ], + "score": 0.89, + "content": "N _ { 2 } = 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 312, + 307, + 324 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 307, + 312, + 346, + 323 + ], + "score": 0.88, + "content": "N _ { 3 } = 5 0 .", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 312, + 352, + 324 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 505, + 390 + ], + "lines": [ + { + "bbox": [ + 104, + 343, + 504, + 359 + ], + "spans": [ + { + "bbox": [ + 104, + 343, + 155, + 359 + ], + "score": 1.0, + "content": "TA network", + "type": "text" + }, + { + "bbox": [ + 155, + 345, + 221, + 357 + ], + "score": 0.94, + "content": "\\{ s ^ { \\alpha } ( t ) , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 343, + 451, + 359 + ], + "score": 1.0, + "content": "of through (9), we can now derive analytic expressions for", + "type": "text" + }, + { + "bbox": [ + 451, + 347, + 470, + 357 + ], + "score": 0.88, + "content": "\\varepsilon _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 343, + 487, + 359 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 488, + 347, + 504, + 357 + ], + "score": 0.84, + "content": "\\varepsilon _ { \\mathrm { t e s t } }", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "in (6) and (7), for a TA network. We will also show that these learning curves closely approximate", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 367, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 354, + 380 + ], + "score": 1.0, + "content": "those of a random student with time-evolving singular vectors", + "type": "text" + }, + { + "bbox": [ + 354, + 367, + 415, + 379 + ], + "score": 0.93, + "content": "\\{ \\mathbf { u } ^ { \\alpha } ( t ) , \\mathbf { \\bar { v } } ^ { \\alpha } ( t ) \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 367, + 506, + 380 + ], + "score": 1.0, + "content": ", and match on several", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 378, + 425, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 335, + 391 + ], + "score": 1.0, + "content": "key aspects. First, inserting the TA dynamics in (10) into", + "type": "text" + }, + { + "bbox": [ + 336, + 380, + 355, + 390 + ], + "score": 0.88, + "content": "\\varepsilon _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 378, + 425, + 391 + ], + "score": 1.0, + "content": "in (6), we obtain", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 406, + 503, + 447 + ], + "lines": [ + { + "bbox": [ + 111, + 406, + 503, + 447 + ], + "spans": [ + { + "bbox": [ + 111, + 406, + 503, + 447 + ], + "score": 0.92, + "content": "\\mathfrak { c } _ { \\mathrm { r e a i n } } ( t ) = \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 3 } } \\hat { s } _ { \\alpha } ^ { 2 } \\right] ^ { - 1 } \\left[ ( N _ { 3 } - N _ { 2 } ) \\langle \\hat { s } ^ { 2 } \\rangle _ { \\mathcal { R } _ { o u t } } + ( N _ { 2 } - \\overline { { N } } _ { 2 } ) \\langle ( s ( \\hat { s } , t ) - \\hat { s } ) ^ { 2 } \\rangle _ { \\mathcal { R } _ { i n } } + \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\left[ s _ { \\alpha } ( t ) - \\hat { s } _ { \\alpha } \\right] ^ { 2 } \\right]", + "type": "interline_equation", + "image_path": "5aab040792c1a8dce6a9075a4cc0440ba793d936170b926d5ad03ab0fe901b4f.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 111, + 406, + 503, + 419.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 111, + 419.6666666666667, + 503, + 433.33333333333337 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 111, + 433.33333333333337, + 503, + 447.00000000000006 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 455, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 454, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 132, + 467 + ], + "score": 1.0, + "content": "Here,", + "type": "text" + }, + { + "bbox": [ + 132, + 455, + 200, + 468 + ], + "score": 0.93, + "content": "s _ { \\alpha } ( t ) = s ( \\hat { s } _ { \\alpha } , t )", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 454, + 400, + 467 + ], + "score": 1.0, + "content": "as defined in (9) are the TA singular values, and", + "type": "text" + }, + { + "bbox": [ + 401, + 456, + 449, + 467 + ], + "score": 0.93, + "content": "\\hat { s } _ { \\alpha } = \\hat { s } ( \\overline { { s } } _ { \\alpha } )", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 454, + 505, + 467 + ], + "score": 1.0, + "content": "as defined in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 466, + 503, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 447, + 480 + ], + "score": 1.0, + "content": "(11) are the training data singular values associated with the teacher singular values", + "type": "text" + }, + { + "bbox": [ + 447, + 468, + 458, + 478 + ], + "score": 0.87, + "content": "\\overline { { s } } _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 466, + 485, + 480 + ], + "score": 1.0, + "content": ". Also", + "type": "text" + }, + { + "bbox": [ + 485, + 466, + 503, + 479 + ], + "score": 0.89, + "content": "\\langle \\cdot \\rangle _ { \\mathcal { R } }", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 408, + 490 + ], + "score": 1.0, + "content": "denotes an average with respect to the MP distribution in (13) over a region", + "type": "text" + }, + { + "bbox": [ + 408, + 478, + 417, + 487 + ], + "score": 0.8, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 477, + 505, + 490 + ], + "score": 1.0, + "content": ". Two distinct regions", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 245, + 502 + ], + "score": 1.0, + "content": "contribute to training error. First", + "type": "text" + }, + { + "bbox": [ + 245, + 489, + 263, + 500 + ], + "score": 0.9, + "content": "\\mathcal { R } _ { i n }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 488, + 343, + 502 + ], + "score": 1.0, + "content": "contains those top", + "type": "text" + }, + { + "bbox": [ + 343, + 488, + 384, + 500 + ], + "score": 0.94, + "content": "N _ { 2 } - \\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "training data singular values", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 499, + 504, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 228, + 512 + ], + "score": 1.0, + "content": "that do not correspond to the", + "type": "text" + }, + { + "bbox": [ + 228, + 499, + 243, + 510 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 499, + 490, + 512 + ], + "score": 1.0, + "content": "singular values of the teacher but will be learned by a rank", + "type": "text" + }, + { + "bbox": [ + 490, + 500, + 504, + 510 + ], + "score": 0.87, + "content": "N _ { 2 }", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 509, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 176, + 524 + ], + "score": 1.0, + "content": "student. Second,", + "type": "text" + }, + { + "bbox": [ + 177, + 511, + 198, + 522 + ], + "score": 0.9, + "content": "\\mathcal { R } _ { o u t }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 509, + 320, + 524 + ], + "score": 1.0, + "content": "corresponds to the remaining", + "type": "text" + }, + { + "bbox": [ + 320, + 511, + 358, + 522 + ], + "score": 0.92, + "content": "N _ { 3 } - N _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 509, + 506, + 524 + ], + "score": 1.0, + "content": "lowest training data singular values√", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 522, + 504, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 238, + 536 + ], + "score": 1.0, + "content": "that cannot be learned by a rank √", + "type": "text" + }, + { + "bbox": [ + 239, + 523, + 252, + 534 + ], + "score": 0.89, + "content": "N _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 522, + 419, + 536 + ], + "score": 1.0, + "content": "student. In terms of the MP distribution,", + "type": "text" + }, + { + "bbox": [ + 420, + 522, + 504, + 535 + ], + "score": 0.93, + "content": "\\mathcal { R } _ { o u t } = [ 1 - \\sqrt { \\mathcal { A } } , f ]", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 534, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 123, + 548 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 534, + 203, + 547 + ], + "score": 0.93, + "content": "\\mathcal { R } _ { i n } = [ f , 1 + \\sqrt { \\mathcal { A } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 534, + 233, + 548 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 233, + 536, + 241, + 547 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 534, + 402, + 548 + ], + "score": 1.0, + "content": "is the point at which the MP density has", + "type": "text" + }, + { + "bbox": [ + 402, + 535, + 449, + 547 + ], + "score": 0.93, + "content": "1 - N _ { 2 } / N _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 534, + 506, + 548 + ], + "score": 1.0, + "content": "of its mass to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 152, + 561 + ], + "score": 1.0, + "content": "the left and", + "type": "text" + }, + { + "bbox": [ + 153, + 548, + 183, + 560 + ], + "score": 0.92, + "content": "N _ { 2 } / N _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 547, + 433, + 561 + ], + "score": 1.0, + "content": "of its mass to the right. In the simple case of a full rank student,", + "type": "text" + }, + { + "bbox": [ + 433, + 547, + 485, + 560 + ], + "score": 0.92, + "content": "f = 1 - \\sqrt { \\mathcal { A } }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 547, + 506, + 561 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 559, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 220, + 573 + ], + "score": 1.0, + "content": "one need only integrate over", + "type": "text" + }, + { + "bbox": [ + 221, + 560, + 238, + 570 + ], + "score": 0.9, + "content": "\\mathcal { R } _ { i n }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 559, + 412, + 573 + ], + "score": 1.0, + "content": "which is the entire range. Equation (14) for", + "type": "text" + }, + { + "bbox": [ + 413, + 561, + 432, + 570 + ], + "score": 0.87, + "content": "\\varepsilon _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 559, + 506, + 573 + ], + "score": 1.0, + "content": "makes it manifest", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "score": 1.0, + "content": "that it will go to zero for a full rank student as its singular values approach those of the training data.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 587, + 504, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "Of course the test error can behave very differently. Inserting the TA training dynamics in (10) into", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 597, + 446, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 123, + 609 + ], + "score": 0.86, + "content": "\\varepsilon _ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 597, + 446, + 610 + ], + "score": 1.0, + "content": "in (7), and using (11), (12) and (13) to relate training data to the teacher, we find", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 625, + 503, + 667 + ], + "lines": [ + { + "bbox": [ + 111, + 625, + 503, + 667 + ], + "spans": [ + { + "bbox": [ + 111, + 625, + 503, + 667 + ], + "score": 0.92, + "content": "\\varepsilon _ { \\mathrm { t e x t } } ( t ) = \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\overline { { s } } _ { \\alpha } ^ { 2 } \\right] ^ { - 1 } \\left[ ( N _ { 2 } - \\overline { { N } } _ { 2 } ) \\langle s ( \\hat { s } , t ) ^ { 2 } \\rangle _ { \\mathcal { R } _ { i n } } + \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\left[ ( s _ { \\alpha } ( t ) - \\overline { { s } } _ { \\alpha } ) ^ { 2 } + 2 s _ { \\alpha } ( t ) \\overline { { s } } _ { \\alpha } ( 1 - \\mathcal { O } ( \\overline { { s } } _ { \\alpha } ) ) \\right] \\right]", + "type": "interline_equation", + "image_path": "0ec73d593caa6ef7fd97cce903ec4844dce356c4c4f139eb7e32b3acc481a204.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 111, + 625, + 503, + 639.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 111, + 639.0, + 503, + 653.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 111, + 653.0, + 503, + 667.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 675, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 675, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 675, + 505, + 687 + ], + "score": 1.0, + "content": "Together (14) and (15) constitute a complete theory of generalization dynamics in terms of the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 684, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 317, + 700 + ], + "score": 1.0, + "content": "structure of the data distribution (i.e. the teacher rank", + "type": "text" + }, + { + "bbox": [ + 318, + 687, + 331, + 698 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 684, + 392, + 700 + ], + "score": 1.0, + "content": ", teacher SNRs", + "type": "text" + }, + { + "bbox": [ + 392, + 686, + 413, + 698 + ], + "score": 0.92, + "content": "\\left\\{ \\overline { { s } } _ { \\alpha } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 684, + 505, + 700 + ], + "score": 1.0, + "content": ", and the teacher aspect", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 127, + 712 + ], + "score": 1.0, + "content": "ratio", + "type": "text" + }, + { + "bbox": [ + 127, + 697, + 184, + 711 + ], + "score": 0.92, + "content": "\\mathcal { A } = \\overline { { N } } _ { 3 } / \\overline { { N } } _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 697, + 407, + 712 + ], + "score": 1.0, + "content": ", the architectural complexity of the student (i.e. its rank", + "type": "text" + }, + { + "bbox": [ + 407, + 699, + 420, + 710 + ], + "score": 0.91, + "content": "N _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 697, + 505, + 712 + ], + "score": 1.0, + "content": ", its number of layers", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 107, + 710, + 118, + 721 + ], + "score": 0.85, + "content": "N _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 709, + 177, + 723 + ], + "score": 1.0, + "content": ", and the norm", + "type": "text" + }, + { + "bbox": [ + 178, + 712, + 183, + 720 + ], + "score": 0.6, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 709, + 350, + 723 + ], + "score": 1.0, + "content": "of its initialization), and the training time", + "type": "text" + }, + { + "bbox": [ + 351, + 712, + 355, + 720 + ], + "score": 0.73, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 709, + 505, + 723 + ], + "score": 1.0, + "content": ". They yield considerable insight into", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 721, + 481, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 481, + 733 + ], + "score": 1.0, + "content": "the dynamics of good generalization early in learning and overfitting later, as we show below.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 78, + 497, + 246 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 78, + 497, + 246 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 78, + 497, + 246 + ], + "spans": [ + { + "bbox": [ + 110, + 78, + 497, + 246 + ], + "score": 0.974, + "type": "image", + "image_path": "314c03e7d659a75d3bce2929de3fdf61f6a46155c699119ff46ac7743510ffe3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 78, + 497, + 134.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 134.0, + 497, + 190.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 190.0, + 497, + 246.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 256, + 506, + 324 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 256, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 506, + 269 + ], + "score": 1.0, + "content": "Figure 3: Match between theory and experiment for rank 1 (row 1, a-d) and rank 3 (row 2, e-h)", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 266, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 506, + 282 + ], + "score": 1.0, + "content": "teachers with single-hidden-layer students: (a-b, e-f) log train and test error, respectively, showing", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 278, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 506, + 291 + ], + "score": 1.0, + "content": "very close match between theory and experiment for TA, and close match for the random student.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 289, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 506, + 302 + ], + "score": 1.0, + "content": "(c,g) comparing TA and randomly initialized students minimum generalization errors, showing almost", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 299, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 506, + 315 + ], + "score": 1.0, + "content": "perfect match. (d,h) comparing TA and randomly initialized students optimal stopping times, showing", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 312, + 352, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 221, + 324 + ], + "score": 1.0, + "content": "small lag due to alignment. (", + "type": "text" + }, + { + "bbox": [ + 222, + 312, + 263, + 323 + ], + "score": 0.86, + "content": "N _ { 1 } = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 312, + 266, + 324 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 267, + 312, + 304, + 323 + ], + "score": 0.89, + "content": "N _ { 2 } = 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 312, + 307, + 324 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 307, + 312, + 346, + 323 + ], + "score": 0.88, + "content": "N _ { 3 } = 5 0 .", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 312, + 352, + 324 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 505, + 390 + ], + "lines": [ + { + "bbox": [ + 104, + 343, + 504, + 359 + ], + "spans": [ + { + "bbox": [ + 104, + 343, + 155, + 359 + ], + "score": 1.0, + "content": "TA network", + "type": "text" + }, + { + "bbox": [ + 155, + 345, + 221, + 357 + ], + "score": 0.94, + "content": "\\{ s ^ { \\alpha } ( t ) , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 343, + 451, + 359 + ], + "score": 1.0, + "content": "of through (9), we can now derive analytic expressions for", + "type": "text" + }, + { + "bbox": [ + 451, + 347, + 470, + 357 + ], + "score": 0.88, + "content": "\\varepsilon _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 343, + 487, + 359 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 488, + 347, + 504, + 357 + ], + "score": 0.84, + "content": "\\varepsilon _ { \\mathrm { t e s t } }", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "in (6) and (7), for a TA network. We will also show that these learning curves closely approximate", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 367, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 354, + 380 + ], + "score": 1.0, + "content": "those of a random student with time-evolving singular vectors", + "type": "text" + }, + { + "bbox": [ + 354, + 367, + 415, + 379 + ], + "score": 0.93, + "content": "\\{ \\mathbf { u } ^ { \\alpha } ( t ) , \\mathbf { \\bar { v } } ^ { \\alpha } ( t ) \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 367, + 506, + 380 + ], + "score": 1.0, + "content": ", and match on several", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 378, + 425, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 335, + 391 + ], + "score": 1.0, + "content": "key aspects. First, inserting the TA dynamics in (10) into", + "type": "text" + }, + { + "bbox": [ + 336, + 380, + 355, + 390 + ], + "score": 0.88, + "content": "\\varepsilon _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 378, + 425, + 391 + ], + "score": 1.0, + "content": "in (6), we obtain", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 104, + 343, + 506, + 391 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 406, + 503, + 447 + ], + "lines": [ + { + "bbox": [ + 111, + 406, + 503, + 447 + ], + "spans": [ + { + "bbox": [ + 111, + 406, + 503, + 447 + ], + "score": 0.92, + "content": "\\mathfrak { c } _ { \\mathrm { r e a i n } } ( t ) = \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 3 } } \\hat { s } _ { \\alpha } ^ { 2 } \\right] ^ { - 1 } \\left[ ( N _ { 3 } - N _ { 2 } ) \\langle \\hat { s } ^ { 2 } \\rangle _ { \\mathcal { R } _ { o u t } } + ( N _ { 2 } - \\overline { { N } } _ { 2 } ) \\langle ( s ( \\hat { s } , t ) - \\hat { s } ) ^ { 2 } \\rangle _ { \\mathcal { R } _ { i n } } + \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\left[ s _ { \\alpha } ( t ) - \\hat { s } _ { \\alpha } \\right] ^ { 2 } \\right]", + "type": "interline_equation", + "image_path": "5aab040792c1a8dce6a9075a4cc0440ba793d936170b926d5ad03ab0fe901b4f.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 111, + 406, + 503, + 419.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 111, + 419.6666666666667, + 503, + 433.33333333333337 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 111, + 433.33333333333337, + 503, + 447.00000000000006 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 455, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 454, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 132, + 467 + ], + "score": 1.0, + "content": "Here,", + "type": "text" + }, + { + "bbox": [ + 132, + 455, + 200, + 468 + ], + "score": 0.93, + "content": "s _ { \\alpha } ( t ) = s ( \\hat { s } _ { \\alpha } , t )", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 454, + 400, + 467 + ], + "score": 1.0, + "content": "as defined in (9) are the TA singular values, and", + "type": "text" + }, + { + "bbox": [ + 401, + 456, + 449, + 467 + ], + "score": 0.93, + "content": "\\hat { s } _ { \\alpha } = \\hat { s } ( \\overline { { s } } _ { \\alpha } )", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 454, + 505, + 467 + ], + "score": 1.0, + "content": "as defined in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 466, + 503, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 447, + 480 + ], + "score": 1.0, + "content": "(11) are the training data singular values associated with the teacher singular values", + "type": "text" + }, + { + "bbox": [ + 447, + 468, + 458, + 478 + ], + "score": 0.87, + "content": "\\overline { { s } } _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 466, + 485, + 480 + ], + "score": 1.0, + "content": ". Also", + "type": "text" + }, + { + "bbox": [ + 485, + 466, + 503, + 479 + ], + "score": 0.89, + "content": "\\langle \\cdot \\rangle _ { \\mathcal { R } }", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 408, + 490 + ], + "score": 1.0, + "content": "denotes an average with respect to the MP distribution in (13) over a region", + "type": "text" + }, + { + "bbox": [ + 408, + 478, + 417, + 487 + ], + "score": 0.8, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 477, + 505, + 490 + ], + "score": 1.0, + "content": ". Two distinct regions", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 245, + 502 + ], + "score": 1.0, + "content": "contribute to training error. First", + "type": "text" + }, + { + "bbox": [ + 245, + 489, + 263, + 500 + ], + "score": 0.9, + "content": "\\mathcal { R } _ { i n }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 488, + 343, + 502 + ], + "score": 1.0, + "content": "contains those top", + "type": "text" + }, + { + "bbox": [ + 343, + 488, + 384, + 500 + ], + "score": 0.94, + "content": "N _ { 2 } - \\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "training data singular values", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 499, + 504, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 228, + 512 + ], + "score": 1.0, + "content": "that do not correspond to the", + "type": "text" + }, + { + "bbox": [ + 228, + 499, + 243, + 510 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 499, + 490, + 512 + ], + "score": 1.0, + "content": "singular values of the teacher but will be learned by a rank", + "type": "text" + }, + { + "bbox": [ + 490, + 500, + 504, + 510 + ], + "score": 0.87, + "content": "N _ { 2 }", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 509, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 176, + 524 + ], + "score": 1.0, + "content": "student. Second,", + "type": "text" + }, + { + "bbox": [ + 177, + 511, + 198, + 522 + ], + "score": 0.9, + "content": "\\mathcal { R } _ { o u t }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 509, + 320, + 524 + ], + "score": 1.0, + "content": "corresponds to the remaining", + "type": "text" + }, + { + "bbox": [ + 320, + 511, + 358, + 522 + ], + "score": 0.92, + "content": "N _ { 3 } - N _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 509, + 506, + 524 + ], + "score": 1.0, + "content": "lowest training data singular values√", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 522, + 504, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 238, + 536 + ], + "score": 1.0, + "content": "that cannot be learned by a rank √", + "type": "text" + }, + { + "bbox": [ + 239, + 523, + 252, + 534 + ], + "score": 0.89, + "content": "N _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 522, + 419, + 536 + ], + "score": 1.0, + "content": "student. In terms of the MP distribution,", + "type": "text" + }, + { + "bbox": [ + 420, + 522, + 504, + 535 + ], + "score": 0.93, + "content": "\\mathcal { R } _ { o u t } = [ 1 - \\sqrt { \\mathcal { A } } , f ]", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 534, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 123, + 548 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 534, + 203, + 547 + ], + "score": 0.93, + "content": "\\mathcal { R } _ { i n } = [ f , 1 + \\sqrt { \\mathcal { A } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 534, + 233, + 548 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 233, + 536, + 241, + 547 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 534, + 402, + 548 + ], + "score": 1.0, + "content": "is the point at which the MP density has", + "type": "text" + }, + { + "bbox": [ + 402, + 535, + 449, + 547 + ], + "score": 0.93, + "content": "1 - N _ { 2 } / N _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 534, + 506, + 548 + ], + "score": 1.0, + "content": "of its mass to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 152, + 561 + ], + "score": 1.0, + "content": "the left and", + "type": "text" + }, + { + "bbox": [ + 153, + 548, + 183, + 560 + ], + "score": 0.92, + "content": "N _ { 2 } / N _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 547, + 433, + 561 + ], + "score": 1.0, + "content": "of its mass to the right. In the simple case of a full rank student,", + "type": "text" + }, + { + "bbox": [ + 433, + 547, + 485, + 560 + ], + "score": 0.92, + "content": "f = 1 - \\sqrt { \\mathcal { A } }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 547, + 506, + 561 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 559, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 220, + 573 + ], + "score": 1.0, + "content": "one need only integrate over", + "type": "text" + }, + { + "bbox": [ + 221, + 560, + 238, + 570 + ], + "score": 0.9, + "content": "\\mathcal { R } _ { i n }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 559, + 412, + 573 + ], + "score": 1.0, + "content": "which is the entire range. Equation (14) for", + "type": "text" + }, + { + "bbox": [ + 413, + 561, + 432, + 570 + ], + "score": 0.87, + "content": "\\varepsilon _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 559, + 506, + 573 + ], + "score": 1.0, + "content": "makes it manifest", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "score": 1.0, + "content": "that it will go to zero for a full rank student as its singular values approach those of the training data.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 454, + 506, + 583 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 587, + 504, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "Of course the test error can behave very differently. Inserting the TA training dynamics in (10) into", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 597, + 446, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 123, + 609 + ], + "score": 0.86, + "content": "\\varepsilon _ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 597, + 446, + 610 + ], + "score": 1.0, + "content": "in (7), and using (11), (12) and (13) to relate training data to the teacher, we find", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 587, + 505, + 610 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 625, + 503, + 667 + ], + "lines": [ + { + "bbox": [ + 111, + 625, + 503, + 667 + ], + "spans": [ + { + "bbox": [ + 111, + 625, + 503, + 667 + ], + "score": 0.92, + "content": "\\varepsilon _ { \\mathrm { t e x t } } ( t ) = \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\overline { { s } } _ { \\alpha } ^ { 2 } \\right] ^ { - 1 } \\left[ ( N _ { 2 } - \\overline { { N } } _ { 2 } ) \\langle s ( \\hat { s } , t ) ^ { 2 } \\rangle _ { \\mathcal { R } _ { i n } } + \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\left[ ( s _ { \\alpha } ( t ) - \\overline { { s } } _ { \\alpha } ) ^ { 2 } + 2 s _ { \\alpha } ( t ) \\overline { { s } } _ { \\alpha } ( 1 - \\mathcal { O } ( \\overline { { s } } _ { \\alpha } ) ) \\right] \\right]", + "type": "interline_equation", + "image_path": "0ec73d593caa6ef7fd97cce903ec4844dce356c4c4f139eb7e32b3acc481a204.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 111, + 625, + 503, + 639.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 111, + 639.0, + 503, + 653.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 111, + 653.0, + 503, + 667.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 675, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 675, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 675, + 505, + 687 + ], + "score": 1.0, + "content": "Together (14) and (15) constitute a complete theory of generalization dynamics in terms of the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 684, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 317, + 700 + ], + "score": 1.0, + "content": "structure of the data distribution (i.e. the teacher rank", + "type": "text" + }, + { + "bbox": [ + 318, + 687, + 331, + 698 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 684, + 392, + 700 + ], + "score": 1.0, + "content": ", teacher SNRs", + "type": "text" + }, + { + "bbox": [ + 392, + 686, + 413, + 698 + ], + "score": 0.92, + "content": "\\left\\{ \\overline { { s } } _ { \\alpha } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 684, + 505, + 700 + ], + "score": 1.0, + "content": ", and the teacher aspect", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 127, + 712 + ], + "score": 1.0, + "content": "ratio", + "type": "text" + }, + { + "bbox": [ + 127, + 697, + 184, + 711 + ], + "score": 0.92, + "content": "\\mathcal { A } = \\overline { { N } } _ { 3 } / \\overline { { N } } _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 697, + 407, + 712 + ], + "score": 1.0, + "content": ", the architectural complexity of the student (i.e. its rank", + "type": "text" + }, + { + "bbox": [ + 407, + 699, + 420, + 710 + ], + "score": 0.91, + "content": "N _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 697, + 505, + 712 + ], + "score": 1.0, + "content": ", its number of layers", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 107, + 710, + 118, + 721 + ], + "score": 0.85, + "content": "N _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 709, + 177, + 723 + ], + "score": 1.0, + "content": ", and the norm", + "type": "text" + }, + { + "bbox": [ + 178, + 712, + 183, + 720 + ], + "score": 0.6, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 709, + 350, + 723 + ], + "score": 1.0, + "content": "of its initialization), and the training time", + "type": "text" + }, + { + "bbox": [ + 351, + 712, + 355, + 720 + ], + "score": 0.73, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 709, + 505, + 723 + ], + "score": 1.0, + "content": ". They yield considerable insight into", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 721, + 481, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 481, + 733 + ], + "score": 1.0, + "content": "the dynamics of good generalization early in learning and overfitting later, as we show below.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 675, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 79, + 497, + 246 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 79, + 497, + 246 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 79, + 497, + 246 + ], + "spans": [ + { + "bbox": [ + 110, + 79, + 497, + 246 + ], + "score": 0.974, + "type": "image", + "image_path": "be9716a9b1de318c5906d81cbfaaab3bf19f9183b7b3ce2f88ef2d6bf3ba7e80.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 79, + 497, + 134.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 134.66666666666666, + 497, + 190.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 190.33333333333331, + 497, + 245.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 256, + 506, + 323 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 257, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 505, + 268 + ], + "score": 1.0, + "content": "Figure 4: Our theory applies to deeper networks: match between theory and simulation for rank 1", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 267, + 507, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 306, + 281 + ], + "score": 1.0, + "content": "(row 1, a-d) and rank 3 (row 2, e-h) teachers with", + "type": "text" + }, + { + "bbox": [ + 306, + 268, + 335, + 279 + ], + "score": 0.91, + "content": "n _ { l } = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 267, + 507, + 281 + ], + "score": 1.0, + "content": "students: (a-b, e-f) log train and test error,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 279, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 506, + 291 + ], + "score": 1.0, + "content": "respectively, showing very close match between theory and experiment for TA. (c,g) comparing TA", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 289, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 506, + 302 + ], + "score": 1.0, + "content": "and randomly initialized students minimum generalization errors, showing almost perfect match.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 301, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 505, + 313 + ], + "score": 1.0, + "content": "(d,h) comparing TA and randomly initialized students optimal stopping times, showing large lag due", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 312, + 403, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 272, + 324 + ], + "score": 1.0, + "content": "to slower alignment in deeper networks.", + "type": "text" + }, + { + "bbox": [ + 272, + 312, + 314, + 323 + ], + "score": 0.87, + "content": "N _ { 1 } = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 312, + 318, + 324 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 318, + 312, + 355, + 323 + ], + "score": 0.9, + "content": "N _ { 2 } = 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 312, + 359, + 324 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 359, + 312, + 397, + 323 + ], + "score": 0.89, + "content": "N _ { 3 } = 5 0 .", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 312, + 403, + 324 + ], + "score": 1.0, + "content": ".)", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "title", + "bbox": [ + 106, + 339, + 504, + 349 + ], + "lines": [ + { + "bbox": [ + 106, + 339, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 504, + 349 + ], + "score": 1.0, + "content": "3.4 NUMERICAL TESTS OF THE THEORY OF NEURAL NETWORK GENERALIZATION DYNAMICS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 360, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "Fig. 3 demonstrates an excellent match between the theory and simulations for the TA, and a close", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 369, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 104, + 369, + 442, + 384 + ], + "score": 1.0, + "content": "match for random students, for single-hidden-layer students and various teacher ranks", + "type": "text" + }, + { + "bbox": [ + 443, + 370, + 457, + 382 + ], + "score": 0.89, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 369, + 506, + 384 + ], + "score": 1.0, + "content": ". Intuitively,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 381, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 138, + 395 + ], + "score": 1.0, + "content": "as time", + "type": "text" + }, + { + "bbox": [ + 138, + 383, + 144, + 392 + ], + "score": 0.62, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 381, + 506, + 395 + ], + "score": 1.0, + "content": "proceeds, learning corresponds to singular mode detection wave sweeping from large to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 393, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 505, + 405 + ], + "score": 1.0, + "content": "small training data singular values (i.e. the wave in Fig. 1B sweeps across the training data spectrum", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "in Fig 2A). Initially, strong singular values associated with large SNR teacher modes are learned", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 414, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 144, + 428 + ], + "score": 1.0, + "content": "and both", + "type": "text" + }, + { + "bbox": [ + 144, + 416, + 163, + 426 + ], + "score": 0.88, + "content": "\\varepsilon _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 414, + 181, + 428 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 181, + 416, + 198, + 426 + ], + "score": 0.88, + "content": "\\varepsilon _ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 414, + 506, + 428 + ], + "score": 1.0, + "content": "drop. Fig. 3A-D are for a rank 1 teacher, and so in Fig 3AB we see a single", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 424, + 507, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 507, + 439 + ], + "score": 1.0, + "content": "sharp drop early on, if the teacher SNR is sufficiently high. By contrast, with a rank 3 teacher in Fig.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 435, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 450 + ], + "score": 1.0, + "content": "3E-H, there are several early drops as the three modes are picked up. However, as time progresses,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 448, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 460 + ], + "score": 1.0, + "content": "the singular mode detection wave penetrates the MP sea, and the student picks up noise structure in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 458, + 392, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 154, + 472 + ], + "score": 1.0, + "content": "the data, so", + "type": "text" + }, + { + "bbox": [ + 154, + 460, + 173, + 470 + ], + "score": 0.82, + "content": "\\varepsilon _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 458, + 214, + 472 + ], + "score": 1.0, + "content": "drops but", + "type": "text" + }, + { + "bbox": [ + 214, + 460, + 230, + 470 + ], + "score": 0.88, + "content": "\\varepsilon _ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 458, + 392, + 472 + ], + "score": 1.0, + "content": "rises, indicating the onset of overfitting.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 475, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "The main difference between the random student and TA learning curves is that the random student", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 487, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 498 + ], + "score": 1.0, + "content": "learning is slightly delayed relative to the TA, especially late in training. This is understandable", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "score": 1.0, + "content": "because the TA already knows the singular vectors of the training data, while the random student must", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 508, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 506, + 522 + ], + "score": 1.0, + "content": "learn them. Nevertheless, two of the most important aspects of learning, namely the optimal early", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 518, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 165, + 538 + ], + "score": 1.0, + "content": "stopping time", + "type": "text" + }, + { + "bbox": [ + 165, + 519, + 266, + 534 + ], + "score": 0.93, + "content": "t _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } } \\equiv \\mathrm { a r g m i n } _ { t } \\varepsilon _ { \\mathrm { t e s t } } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 518, + 463, + 538 + ], + "score": 1.0, + "content": "and the minimal test error achieved at this time", + "type": "text" + }, + { + "bbox": [ + 463, + 519, + 505, + 534 + ], + "score": 0.91, + "content": "\\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } } \\equiv", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 153, + 545 + ], + "score": 0.94, + "content": "\\mathrm { m i n } _ { t } \\varepsilon _ { \\mathrm { t e s t } } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 533, + 506, + 546 + ], + "score": 1.0, + "content": ", match well between TA and random student, as shown in Fig. 3CD. At low teacher", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 543, + 483, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 483, + 557 + ], + "score": 1.0, + "content": "SNRs, the student takes a little longer to learn than the TA, but their optimal test errors match.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 638 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "Our theory can also be easily extended to describe the learning dynamics deeper networks. Saxe", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 196, + 585 + ], + "score": 1.0, + "content": "et al. (2013a) derived", + "type": "text" + }, + { + "bbox": [ + 196, + 572, + 222, + 584 + ], + "score": 0.93, + "content": "t ( s , { \\hat { s } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "for networks of arbitrary depth, so we only need to adjust this factor", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "in our formulas, see App. A for details. In Fig. 4 we show that again there is an excellent match", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 593, + 507, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 354, + 606 + ], + "score": 1.0, + "content": "between TA networks and theory for student networks with", + "type": "text" + }, + { + "bbox": [ + 354, + 594, + 387, + 605 + ], + "score": 0.92, + "content": "N _ { l } = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 593, + 507, + 606 + ], + "score": 1.0, + "content": "layers (i.e. 3 hidden layers).", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 603, + 507, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 507, + 618 + ], + "score": 1.0, + "content": "Randomly-initialized networks show a much longer alignment lag for deeper networks (see App.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "score": 1.0, + "content": "B for details), but the curves are qualitatively similar and optimal stopping errors match. We also", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 627, + 466, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 466, + 640 + ], + "score": 1.0, + "content": "demonstrate extensions of our theory to different numbers of training examples (App. G).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 644, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "Importantly, many of the phenomena we observe in linear networks are qualitatively replicated", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "in nonlinear networks (Fig. 5), suggesting that our theory may help guide understanding of the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "nonlinear case. In particular, features such as stage-like initial learning, followed by a plateau if SNR", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "is high, and finally followed by overfitting, are replicated. However, there are some discrepancies, in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "particular nonlinear networks (especially deeper ones) begin overfitting earlier than linear networks.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "This is likely because a mode in a non-linear network can be co-opted by an orthogonal mode,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "while in a linear network it cannot. Thus noise modes are able to “stow away” on the strong signal", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "score": 1.0, + "content": "modes once they are learned. However, overall learning patterns are similar, and we show below that", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 79, + 497, + 246 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 79, + 497, + 246 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 79, + 497, + 246 + ], + "spans": [ + { + "bbox": [ + 110, + 79, + 497, + 246 + ], + "score": 0.974, + "type": "image", + "image_path": "be9716a9b1de318c5906d81cbfaaab3bf19f9183b7b3ce2f88ef2d6bf3ba7e80.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 79, + 497, + 134.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 134.66666666666666, + 497, + 190.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 190.33333333333331, + 497, + 245.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 256, + 506, + 323 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 257, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 505, + 268 + ], + "score": 1.0, + "content": "Figure 4: Our theory applies to deeper networks: match between theory and simulation for rank 1", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 267, + 507, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 306, + 281 + ], + "score": 1.0, + "content": "(row 1, a-d) and rank 3 (row 2, e-h) teachers with", + "type": "text" + }, + { + "bbox": [ + 306, + 268, + 335, + 279 + ], + "score": 0.91, + "content": "n _ { l } = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 267, + 507, + 281 + ], + "score": 1.0, + "content": "students: (a-b, e-f) log train and test error,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 279, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 506, + 291 + ], + "score": 1.0, + "content": "respectively, showing very close match between theory and experiment for TA. (c,g) comparing TA", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 289, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 506, + 302 + ], + "score": 1.0, + "content": "and randomly initialized students minimum generalization errors, showing almost perfect match.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 301, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 505, + 313 + ], + "score": 1.0, + "content": "(d,h) comparing TA and randomly initialized students optimal stopping times, showing large lag due", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 312, + 403, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 272, + 324 + ], + "score": 1.0, + "content": "to slower alignment in deeper networks.", + "type": "text" + }, + { + "bbox": [ + 272, + 312, + 314, + 323 + ], + "score": 0.87, + "content": "N _ { 1 } = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 312, + 318, + 324 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 318, + 312, + 355, + 323 + ], + "score": 0.9, + "content": "N _ { 2 } = 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 312, + 359, + 324 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 359, + 312, + 397, + 323 + ], + "score": 0.89, + "content": "N _ { 3 } = 5 0 .", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 312, + 403, + 324 + ], + "score": 1.0, + "content": ".)", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "title", + "bbox": [ + 106, + 339, + 504, + 349 + ], + "lines": [ + { + "bbox": [ + 106, + 339, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 504, + 349 + ], + "score": 1.0, + "content": "3.4 NUMERICAL TESTS OF THE THEORY OF NEURAL NETWORK GENERALIZATION DYNAMICS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 360, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "Fig. 3 demonstrates an excellent match between the theory and simulations for the TA, and a close", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 369, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 104, + 369, + 442, + 384 + ], + "score": 1.0, + "content": "match for random students, for single-hidden-layer students and various teacher ranks", + "type": "text" + }, + { + "bbox": [ + 443, + 370, + 457, + 382 + ], + "score": 0.89, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 369, + 506, + 384 + ], + "score": 1.0, + "content": ". Intuitively,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 381, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 138, + 395 + ], + "score": 1.0, + "content": "as time", + "type": "text" + }, + { + "bbox": [ + 138, + 383, + 144, + 392 + ], + "score": 0.62, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 381, + 506, + 395 + ], + "score": 1.0, + "content": "proceeds, learning corresponds to singular mode detection wave sweeping from large to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 393, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 505, + 405 + ], + "score": 1.0, + "content": "small training data singular values (i.e. the wave in Fig. 1B sweeps across the training data spectrum", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "in Fig 2A). Initially, strong singular values associated with large SNR teacher modes are learned", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 414, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 144, + 428 + ], + "score": 1.0, + "content": "and both", + "type": "text" + }, + { + "bbox": [ + 144, + 416, + 163, + 426 + ], + "score": 0.88, + "content": "\\varepsilon _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 414, + 181, + 428 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 181, + 416, + 198, + 426 + ], + "score": 0.88, + "content": "\\varepsilon _ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 414, + 506, + 428 + ], + "score": 1.0, + "content": "drop. Fig. 3A-D are for a rank 1 teacher, and so in Fig 3AB we see a single", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 424, + 507, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 507, + 439 + ], + "score": 1.0, + "content": "sharp drop early on, if the teacher SNR is sufficiently high. By contrast, with a rank 3 teacher in Fig.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 435, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 450 + ], + "score": 1.0, + "content": "3E-H, there are several early drops as the three modes are picked up. However, as time progresses,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 448, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 460 + ], + "score": 1.0, + "content": "the singular mode detection wave penetrates the MP sea, and the student picks up noise structure in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 458, + 392, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 154, + 472 + ], + "score": 1.0, + "content": "the data, so", + "type": "text" + }, + { + "bbox": [ + 154, + 460, + 173, + 470 + ], + "score": 0.82, + "content": "\\varepsilon _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 458, + 214, + 472 + ], + "score": 1.0, + "content": "drops but", + "type": "text" + }, + { + "bbox": [ + 214, + 460, + 230, + 470 + ], + "score": 0.88, + "content": "\\varepsilon _ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 458, + 392, + 472 + ], + "score": 1.0, + "content": "rises, indicating the onset of overfitting.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14.5, + "bbox_fs": [ + 104, + 360, + 507, + 472 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 475, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "The main difference between the random student and TA learning curves is that the random student", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 487, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 498 + ], + "score": 1.0, + "content": "learning is slightly delayed relative to the TA, especially late in training. This is understandable", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "score": 1.0, + "content": "because the TA already knows the singular vectors of the training data, while the random student must", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 508, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 506, + 522 + ], + "score": 1.0, + "content": "learn them. Nevertheless, two of the most important aspects of learning, namely the optimal early", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 518, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 165, + 538 + ], + "score": 1.0, + "content": "stopping time", + "type": "text" + }, + { + "bbox": [ + 165, + 519, + 266, + 534 + ], + "score": 0.93, + "content": "t _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } } \\equiv \\mathrm { a r g m i n } _ { t } \\varepsilon _ { \\mathrm { t e s t } } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 518, + 463, + 538 + ], + "score": 1.0, + "content": "and the minimal test error achieved at this time", + "type": "text" + }, + { + "bbox": [ + 463, + 519, + 505, + 534 + ], + "score": 0.91, + "content": "\\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } } \\equiv", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 153, + 545 + ], + "score": 0.94, + "content": "\\mathrm { m i n } _ { t } \\varepsilon _ { \\mathrm { t e s t } } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 533, + 506, + 546 + ], + "score": 1.0, + "content": ", match well between TA and random student, as shown in Fig. 3CD. At low teacher", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 543, + 483, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 483, + 557 + ], + "score": 1.0, + "content": "SNRs, the student takes a little longer to learn than the TA, but their optimal test errors match.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 475, + 506, + 557 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 638 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "Our theory can also be easily extended to describe the learning dynamics deeper networks. Saxe", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 196, + 585 + ], + "score": 1.0, + "content": "et al. (2013a) derived", + "type": "text" + }, + { + "bbox": [ + 196, + 572, + 222, + 584 + ], + "score": 0.93, + "content": "t ( s , { \\hat { s } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "for networks of arbitrary depth, so we only need to adjust this factor", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "in our formulas, see App. A for details. In Fig. 4 we show that again there is an excellent match", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 593, + 507, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 354, + 606 + ], + "score": 1.0, + "content": "between TA networks and theory for student networks with", + "type": "text" + }, + { + "bbox": [ + 354, + 594, + 387, + 605 + ], + "score": 0.92, + "content": "N _ { l } = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 593, + 507, + 606 + ], + "score": 1.0, + "content": "layers (i.e. 3 hidden layers).", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 603, + 507, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 507, + 618 + ], + "score": 1.0, + "content": "Randomly-initialized networks show a much longer alignment lag for deeper networks (see App.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "score": 1.0, + "content": "B for details), but the curves are qualitatively similar and optimal stopping errors match. We also", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 627, + 466, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 466, + 640 + ], + "score": 1.0, + "content": "demonstrate extensions of our theory to different numbers of training examples (App. G).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 561, + 507, + 640 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 644, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "Importantly, many of the phenomena we observe in linear networks are qualitatively replicated", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "in nonlinear networks (Fig. 5), suggesting that our theory may help guide understanding of the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "nonlinear case. In particular, features such as stage-like initial learning, followed by a plateau if SNR", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "is high, and finally followed by overfitting, are replicated. However, there are some discrepancies, in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "particular nonlinear networks (especially deeper ones) begin overfitting earlier than linear networks.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "This is likely because a mode in a non-linear network can be co-opted by an orthogonal mode,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "while in a linear network it cannot. Thus noise modes are able to “stow away” on the strong signal", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "score": 1.0, + "content": "modes once they are learned. However, overall learning patterns are similar, and we show below that", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "many interesting phenomena in nonlinear networks are understandable in the linear case, such as the", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 497, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 497, + 106 + ], + "score": 1.0, + "content": "(non-)effects of overparameterization, the dynamics of memorization, and the benefits of transfer.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 644, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "many interesting phenomena in nonlinear networks are understandable in the linear case, such as the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 497, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 497, + 106 + ], + "score": 1.0, + "content": "(non-)effects of overparameterization, the dynamics of memorization, and the benefits of transfer.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "image", + "bbox": [ + 109, + 108, + 481, + 291 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 108, + 481, + 291 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 108, + 481, + 291 + ], + "spans": [ + { + "bbox": [ + 109, + 108, + 481, + 291 + ], + "score": 0.974, + "type": "image", + "image_path": "4c96fe2cc1b69b79f16e01bb40a77f5c5b9805452e0fd502c4194097a289ca0c.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 109, + 108, + 481, + 169.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 109, + 169.0, + 481, + 230.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 109, + 230.0, + 481, + 291.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 299, + 506, + 378 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 299, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 506, + 312 + ], + "score": 1.0, + "content": "Figure 5: Train (first row, A-D) and test (second row, E-H) error for nonlinear networks (leaky relu at", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 311, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 506, + 322 + ], + "score": 1.0, + "content": "all hidden layers) with one hidden layer (first two columns) or three hidden layers (last two columns)", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 321, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 506, + 333 + ], + "score": 1.0, + "content": "trained on the tasks above, with a rank 1 teacher (first and third columns) or a rank 3 teacher (second", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 333, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 506, + 345 + ], + "score": 1.0, + "content": "and fourth columns). Note that many of the qualitative phenomena observed in linear networks, such", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 344, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 506, + 356 + ], + "score": 1.0, + "content": "as stage-like improvement in the errors, followed by a plateau, followed by overfitting, also appear in", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 355, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 366 + ], + "score": 1.0, + "content": "nonlinear networks. Compare the first column to Fig. 3AB, the second column to Fig. 3EF, the third", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 365, + 402, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 271, + 378 + ], + "score": 1.0, + "content": "to Fig. 4AB, and the fourth to Fig. 4EF. (", + "type": "text" + }, + { + "bbox": [ + 271, + 366, + 313, + 377 + ], + "score": 0.87, + "content": "N _ { 1 } = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 366, + 316, + 378 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 317, + 366, + 353, + 376 + ], + "score": 0.89, + "content": "N _ { 2 } = 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 366, + 357, + 378 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 357, + 365, + 396, + 377 + ], + "score": 0.87, + "content": "N _ { 3 } = 5 0 .", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 366, + 402, + 378 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8 + } + ], + "index": 5.5 + }, + { + "type": "title", + "bbox": [ + 116, + 399, + 399, + 410 + ], + "lines": [ + { + "bbox": [ + 114, + 399, + 401, + 411 + ], + "spans": [ + { + "bbox": [ + 114, + 399, + 401, + 411 + ], + "score": 1.0, + "content": ".5 RANDOMIZED DATA VS. REAL DATA: A LEARNING TIME PUZZLE", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 506, + 562 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 506, + 433 + ], + "score": 1.0, + "content": "An intriguing observation that resurrected the generalization puzzle in deep learning was the ob-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 431, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 505, + 444 + ], + "score": 1.0, + "content": "servation by Zhang et al. (2016) that deep networks can memorize data with the labels randomly", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 441, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 104, + 441, + 506, + 455 + ], + "score": 1.0, + "content": "permuted. However, as Arpit et al. (2017) pointed out, the learning dynamics of training error for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "score": 1.0, + "content": "randomized labels can be slower than than for structured data. This phenomenon also arises in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 463, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 505, + 477 + ], + "score": 1.0, + "content": "deep linear networks, and our theory yields an analytic explanation for why. We randomize data by", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 225, + 487 + ], + "score": 1.0, + "content": "choosing orthonormal inputs", + "type": "text" + }, + { + "bbox": [ + 226, + 475, + 238, + 485 + ], + "score": 0.86, + "content": "\\hat { \\mathbf { x } } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 474, + 449, + 487 + ], + "score": 1.0, + "content": "as in the structured case, but we choose the outputs", + "type": "text" + }, + { + "bbox": [ + 449, + 475, + 462, + 486 + ], + "score": 0.89, + "content": "{ \\hat { \\mathbf { y } } } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 474, + 506, + 487 + ], + "score": 1.0, + "content": "to be i.i.d.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 485, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 505, + 499 + ], + "score": 1.0, + "content": "Gaussian with zero mean and the same diagonal variance as the structured training data generated by", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 438, + 509 + ], + "score": 1.0, + "content": "the teacher. For structured data generated by a low rank teacher with singular values", + "type": "text" + }, + { + "bbox": [ + 439, + 497, + 450, + 507 + ], + "score": 0.88, + "content": "\\overline { { s } } _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 496, + 505, + 509 + ], + "score": 1.0, + "content": ", the diagonal", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 103, + 504, + 510, + 530 + ], + "spans": [ + { + "bbox": [ + 103, + 504, + 215, + 530 + ], + "score": 1.0, + "content": "output variance is given by", + "type": "text" + }, + { + "bbox": [ + 216, + 507, + 337, + 527 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\sigma _ { r } ^ { 2 } = \\frac { 1 } { N _ { 3 } } \\left[ \\sum _ { i = \\alpha } ^ { \\overline { { N } } _ { 2 } } \\bar { s } _ { \\alpha } ^ { 2 } \\right] + \\frac { 1 } { \\overline { { N } } _ { 1 } } \\sigma _ { z } ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 504, + 367, + 530 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 368, + 513, + 379, + 522 + ], + "score": 0.84, + "content": "\\sigma _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 504, + 510, + 530 + ], + "score": 1.0, + "content": "is the noise variance, as before.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 525, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 322, + 539 + ], + "score": 1.0, + "content": "Since there is no relation between input and output,", + "type": "text" + }, + { + "bbox": [ + 323, + 526, + 340, + 537 + ], + "score": 0.87, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 525, + 505, + 539 + ], + "score": 1.0, + "content": "is now distributed as a MP distribution", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 177, + 552 + ], + "score": 1.0, + "content": "whose support is", + "type": "text" + }, + { + "bbox": [ + 177, + 538, + 293, + 551 + ], + "score": 0.89, + "content": "[ ( \\sigma _ { r } ( 1 - \\sqrt { \\mathcal { A } } ) , \\sigma _ { r } ( 1 + \\sqrt { \\mathcal { A } } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 539, + 506, + 552 + ], + "score": 1.0, + "content": ". Thus randomization essentially destroys the outlier", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 205, + 563 + ], + "score": 1.0, + "content": "signal singular values in", + "type": "text" + }, + { + "bbox": [ + 206, + 550, + 223, + 560 + ], + "score": 0.85, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 549, + 506, + 563 + ], + "score": 1.0, + "content": "reflecting the teacher, and distributes them across all randomized data", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18.5 + }, + { + "type": "image", + "bbox": [ + 108, + 579, + 472, + 690 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 579, + 472, + 690 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 579, + 472, + 690 + ], + "spans": [ + { + "bbox": [ + 108, + 579, + 472, + 690 + ], + "score": 0.76, + "type": "image", + "image_path": "214421209393a1f729207d74055cfc8b2447742fb08e8821164fae3a79d95a61.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 108, + 579, + 472, + 616.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 108, + 616.0, + 472, + 653.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 108, + 653.0, + 472, + 690.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 694, + 506, + 739 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 694, + 506, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 506, + 708 + ], + "score": 1.0, + "content": "Figure 6: Learning randomized data: Comparing (a) singular value distributions and (b) learning", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 706, + 507, + 718 + ], + "spans": [ + { + "bbox": [ + 106, + 706, + 507, + 718 + ], + "score": 1.0, + "content": "curves for data with a signal vs. random data that preserves basic statistics (mean, variance).", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 716, + 505, + 729 + ], + "spans": [ + { + "bbox": [ + 105, + 716, + 505, + 729 + ], + "score": 1.0, + "content": "Randomizing the data dilutes the signal singular values, spreading their variance out over many", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 727, + 486, + 739 + ], + "spans": [ + { + "bbox": [ + 105, + 727, + 355, + 739 + ], + "score": 1.0, + "content": "modes, hence randomly labelled data is learned more slowly.", + "type": "text" + }, + { + "bbox": [ + 356, + 727, + 397, + 739 + ], + "score": 0.87, + "content": "N _ { 1 } = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 727, + 401, + 739 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 401, + 727, + 438, + 739 + ], + "score": 0.88, + "content": "N _ { 2 } = 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 727, + 441, + 739 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 442, + 727, + 480, + 739 + ], + "score": 0.88, + "content": "N _ { 3 } = 5 0 .", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 727, + 486, + 739 + ], + "score": 1.0, + "content": ".)", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + } + ], + "index": 27.75 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 106 + ], + "lines_deleted": true + }, + { + "type": "image", + "bbox": [ + 109, + 108, + 481, + 291 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 108, + 481, + 291 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 108, + 481, + 291 + ], + "spans": [ + { + "bbox": [ + 109, + 108, + 481, + 291 + ], + "score": 0.974, + "type": "image", + "image_path": "4c96fe2cc1b69b79f16e01bb40a77f5c5b9805452e0fd502c4194097a289ca0c.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 109, + 108, + 481, + 169.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 109, + 169.0, + 481, + 230.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 109, + 230.0, + 481, + 291.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 299, + 506, + 378 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 299, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 506, + 312 + ], + "score": 1.0, + "content": "Figure 5: Train (first row, A-D) and test (second row, E-H) error for nonlinear networks (leaky relu at", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 311, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 506, + 322 + ], + "score": 1.0, + "content": "all hidden layers) with one hidden layer (first two columns) or three hidden layers (last two columns)", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 321, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 506, + 333 + ], + "score": 1.0, + "content": "trained on the tasks above, with a rank 1 teacher (first and third columns) or a rank 3 teacher (second", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 333, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 506, + 345 + ], + "score": 1.0, + "content": "and fourth columns). Note that many of the qualitative phenomena observed in linear networks, such", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 344, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 506, + 356 + ], + "score": 1.0, + "content": "as stage-like improvement in the errors, followed by a plateau, followed by overfitting, also appear in", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 355, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 366 + ], + "score": 1.0, + "content": "nonlinear networks. Compare the first column to Fig. 3AB, the second column to Fig. 3EF, the third", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 365, + 402, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 271, + 378 + ], + "score": 1.0, + "content": "to Fig. 4AB, and the fourth to Fig. 4EF. (", + "type": "text" + }, + { + "bbox": [ + 271, + 366, + 313, + 377 + ], + "score": 0.87, + "content": "N _ { 1 } = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 366, + 316, + 378 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 317, + 366, + 353, + 376 + ], + "score": 0.89, + "content": "N _ { 2 } = 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 366, + 357, + 378 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 357, + 365, + 396, + 377 + ], + "score": 0.87, + "content": "N _ { 3 } = 5 0 .", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 366, + 402, + 378 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8 + } + ], + "index": 5.5 + }, + { + "type": "title", + "bbox": [ + 116, + 399, + 399, + 410 + ], + "lines": [ + { + "bbox": [ + 114, + 399, + 401, + 411 + ], + "spans": [ + { + "bbox": [ + 114, + 399, + 401, + 411 + ], + "score": 1.0, + "content": ".5 RANDOMIZED DATA VS. REAL DATA: A LEARNING TIME PUZZLE", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 506, + 562 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 506, + 433 + ], + "score": 1.0, + "content": "An intriguing observation that resurrected the generalization puzzle in deep learning was the ob-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 431, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 505, + 444 + ], + "score": 1.0, + "content": "servation by Zhang et al. (2016) that deep networks can memorize data with the labels randomly", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 441, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 104, + 441, + 506, + 455 + ], + "score": 1.0, + "content": "permuted. However, as Arpit et al. (2017) pointed out, the learning dynamics of training error for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "score": 1.0, + "content": "randomized labels can be slower than than for structured data. This phenomenon also arises in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 463, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 505, + 477 + ], + "score": 1.0, + "content": "deep linear networks, and our theory yields an analytic explanation for why. We randomize data by", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 225, + 487 + ], + "score": 1.0, + "content": "choosing orthonormal inputs", + "type": "text" + }, + { + "bbox": [ + 226, + 475, + 238, + 485 + ], + "score": 0.86, + "content": "\\hat { \\mathbf { x } } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 474, + 449, + 487 + ], + "score": 1.0, + "content": "as in the structured case, but we choose the outputs", + "type": "text" + }, + { + "bbox": [ + 449, + 475, + 462, + 486 + ], + "score": 0.89, + "content": "{ \\hat { \\mathbf { y } } } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 474, + 506, + 487 + ], + "score": 1.0, + "content": "to be i.i.d.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 485, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 505, + 499 + ], + "score": 1.0, + "content": "Gaussian with zero mean and the same diagonal variance as the structured training data generated by", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 438, + 509 + ], + "score": 1.0, + "content": "the teacher. For structured data generated by a low rank teacher with singular values", + "type": "text" + }, + { + "bbox": [ + 439, + 497, + 450, + 507 + ], + "score": 0.88, + "content": "\\overline { { s } } _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 496, + 505, + 509 + ], + "score": 1.0, + "content": ", the diagonal", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 103, + 504, + 510, + 530 + ], + "spans": [ + { + "bbox": [ + 103, + 504, + 215, + 530 + ], + "score": 1.0, + "content": "output variance is given by", + "type": "text" + }, + { + "bbox": [ + 216, + 507, + 337, + 527 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\sigma _ { r } ^ { 2 } = \\frac { 1 } { N _ { 3 } } \\left[ \\sum _ { i = \\alpha } ^ { \\overline { { N } } _ { 2 } } \\bar { s } _ { \\alpha } ^ { 2 } \\right] + \\frac { 1 } { \\overline { { N } } _ { 1 } } \\sigma _ { z } ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 504, + 367, + 530 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 368, + 513, + 379, + 522 + ], + "score": 0.84, + "content": "\\sigma _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 504, + 510, + 530 + ], + "score": 1.0, + "content": "is the noise variance, as before.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 525, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 322, + 539 + ], + "score": 1.0, + "content": "Since there is no relation between input and output,", + "type": "text" + }, + { + "bbox": [ + 323, + 526, + 340, + 537 + ], + "score": 0.87, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 525, + 505, + 539 + ], + "score": 1.0, + "content": "is now distributed as a MP distribution", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 177, + 552 + ], + "score": 1.0, + "content": "whose support is", + "type": "text" + }, + { + "bbox": [ + 177, + 538, + 293, + 551 + ], + "score": 0.89, + "content": "[ ( \\sigma _ { r } ( 1 - \\sqrt { \\mathcal { A } } ) , \\sigma _ { r } ( 1 + \\sqrt { \\mathcal { A } } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 539, + 506, + 552 + ], + "score": 1.0, + "content": ". Thus randomization essentially destroys the outlier", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 205, + 563 + ], + "score": 1.0, + "content": "signal singular values in", + "type": "text" + }, + { + "bbox": [ + 206, + 550, + 223, + 560 + ], + "score": 0.85, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 549, + 506, + 563 + ], + "score": 1.0, + "content": "reflecting the teacher, and distributes them across all randomized data", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "modes, yielding this stretched MP distribution (compare 6A top and bottom). However, even on this", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "stretched MP distribution, the right edge will be much smaller than the signal singular values, since", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 467, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 506, + 480 + ], + "score": 1.0, + "content": "the signal variance will be diluted by spreading it out over many more modes in the randomized data.", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "score": 1.0, + "content": "Thus the randomized data will lead to slower initial training error drops relative to the structured", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "data (Fig. 6B) since the singular mode detection wave encounters the first signal singular values in", + "type": "text", + "cross_page": true + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 501, + 482, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 482, + 512 + ], + "score": 1.0, + "content": "structured data earlier than it encounters the edge of the stretched MP sea in randomized data.", + "type": "text", + "cross_page": true + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 103, + 419, + 510, + 563 + ] + }, + { + "type": "image", + "bbox": [ + 108, + 579, + 472, + 690 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 579, + 472, + 690 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 579, + 472, + 690 + ], + "spans": [ + { + "bbox": [ + 108, + 579, + 472, + 690 + ], + "score": 0.76, + "type": "image", + "image_path": "214421209393a1f729207d74055cfc8b2447742fb08e8821164fae3a79d95a61.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 108, + 579, + 472, + 616.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 108, + 616.0, + 472, + 653.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 108, + 653.0, + 472, + 690.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 694, + 506, + 739 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 694, + 506, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 506, + 708 + ], + "score": 1.0, + "content": "Figure 6: Learning randomized data: Comparing (a) singular value distributions and (b) learning", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 706, + 507, + 718 + ], + "spans": [ + { + "bbox": [ + 106, + 706, + 507, + 718 + ], + "score": 1.0, + "content": "curves for data with a signal vs. random data that preserves basic statistics (mean, variance).", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 716, + 505, + 729 + ], + "spans": [ + { + "bbox": [ + 105, + 716, + 505, + 729 + ], + "score": 1.0, + "content": "Randomizing the data dilutes the signal singular values, spreading their variance out over many", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 727, + 486, + 739 + ], + "spans": [ + { + "bbox": [ + 105, + 727, + 355, + 739 + ], + "score": 1.0, + "content": "modes, hence randomly labelled data is learned more slowly.", + "type": "text" + }, + { + "bbox": [ + 356, + 727, + 397, + 739 + ], + "score": 0.87, + "content": "N _ { 1 } = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 727, + 401, + 739 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 401, + 727, + 438, + 739 + ], + "score": 0.88, + "content": "N _ { 2 } = 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 727, + 441, + 739 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 442, + 727, + 480, + 739 + ], + "score": 0.88, + "content": "N _ { 3 } = 5 0 .", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 727, + 486, + 739 + ], + "score": 1.0, + "content": ".)", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + } + ], + "index": 27.75 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 119, + 80, + 494, + 194 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 80, + 494, + 194 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 119, + 80, + 494, + 194 + ], + "spans": [ + { + "bbox": [ + 119, + 80, + 494, + 194 + ], + "score": 0.971, + "type": "image", + "image_path": "6f50ba8e93b7f0f0f5390f316c743f888d62c7d9566d1790b18925c63d2e3904.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 119, + 80, + 494, + 118.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 119, + 118.0, + 494, + 156.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 119, + 156.0, + 494, + 194.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 202, + 505, + 225 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 202, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 505, + 214 + ], + "score": 1.0, + "content": "Figure 7: Transfer setting– If two different tasks are combined, how well students of the combined", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 213, + 434, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 434, + 225 + ], + "score": 1.0, + "content": "teacher perform on each task depends on the alignment and SNRs of the teachers.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "image", + "bbox": [ + 106, + 229, + 492, + 336 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 229, + 492, + 336 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 229, + 492, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 492, + 336 + ], + "score": 0.969, + "type": "image", + "image_path": "0a5b9a9dbd5641d64b838b1df6081e9aedcd5fcf53c8a71c1f83e3bbc6d1722c.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 229, + 492, + 264.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 264.6666666666667, + 492, + 300.33333333333337 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 300.33333333333337, + 492, + 336.00000000000006 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 350, + 506, + 432 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 104, + 348, + 507, + 365 + ], + "spans": [ + { + "bbox": [ + 104, + 348, + 210, + 365 + ], + "score": 1.0, + "content": "Figure 8: Transfer benefit", + "type": "text" + }, + { + "bbox": [ + 210, + 350, + 284, + 363 + ], + "score": 0.93, + "content": "\\mathcal { T } ^ { A B } ( \\overline { { s } } _ { A } , \\overline { { s } } _ { B } , q )", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 348, + 399, + 365 + ], + "score": 1.0, + "content": "plotted at different values of", + "type": "text" + }, + { + "bbox": [ + 399, + 352, + 411, + 362 + ], + "score": 0.87, + "content": "{ \\overline { { s } } } _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 348, + 429, + 365 + ], + "score": 1.0, + "content": ". (a)", + "type": "text" + }, + { + "bbox": [ + 429, + 349, + 503, + 362 + ], + "score": 0.92, + "content": "\\overline { { s } } _ { A } = 0 . 8 4 = \\sqrt [ 4 ] { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 504, + 348, + 507, + 365 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "score": 1.0, + "content": "Although this task is impossible to learn on its own, with support from another aligned task, especially", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 278, + 385 + ], + "score": 1.0, + "content": "one with high SNR, learning can occur. (b)", + "type": "text" + }, + { + "bbox": [ + 279, + 374, + 309, + 384 + ], + "score": 0.9, + "content": "{ \\overline { { s } } } _ { A } = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 373, + 505, + 385 + ], + "score": 1.0, + "content": ". Tasks with modest signals will face interference", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 382, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 506, + 397 + ], + "score": 1.0, + "content": "from poorly aligned tasks, but benefits from well aligned tasks. These effects are amplified by", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 145, + 407 + ], + "score": 1.0, + "content": "SNR. (c)", + "type": "text" + }, + { + "bbox": [ + 146, + 395, + 188, + 406 + ], + "score": 0.92, + "content": "\\overline { { s } } _ { A } = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 394, + 506, + 407 + ], + "score": 1.0, + "content": ". Tasks with very strong signals will show little effect from other tasks (note", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 104, + 406, + 460, + 419 + ], + "score": 1.0, + "content": "y-axis scales), but any impact will be negative unless the tasks are very well aligned.", + "type": "text" + }, + { + "bbox": [ + 461, + 406, + 505, + 417 + ], + "score": 0.9, + "content": "N _ { 1 } = 1 0 0", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 416, + 259, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 171, + 432 + ], + "score": 0.89, + "content": "\\dot { \\overline { { { N } } } } _ { 2 } ^ { A } = \\overline { { { N } } } _ { 2 } ^ { B } = 1 .", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 417, + 174, + 433 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 174, + 419, + 212, + 432 + ], + "score": 0.79, + "content": "N _ { 2 } = 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 417, + 215, + 433 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 215, + 420, + 253, + 432 + ], + "score": 0.79, + "content": "N _ { 3 } = 5 0 .", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 417, + 259, + 433 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 445, + 506, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "modes, yielding this stretched MP distribution (compare 6A top and bottom). However, even on this", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "stretched MP distribution, the right edge will be much smaller than the signal singular values, since", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 467, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 506, + 480 + ], + "score": 1.0, + "content": "the signal variance will be diluted by spreading it out over many more modes in the randomized data.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "score": 1.0, + "content": "Thus the randomized data will lead to slower initial training error drops relative to the structured", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "data (Fig. 6B) since the singular mode detection wave encounters the first signal singular values in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 501, + 482, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 482, + 512 + ], + "score": 1.0, + "content": "structured data earlier than it encounters the edge of the stretched MP sea in randomized data.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 107, + 528, + 504, + 539 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 504, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 504, + 538 + ], + "score": 1.0, + "content": "3.6 OUT-PERFORMING OPTIMAL EARLY STOPPING THROUGH A NON-GRADIENT ALGORITHM", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 548, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 549, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 562 + ], + "score": 1.0, + "content": "For the case of a rank 1 teacher, it is straightforward to derive a good analytic approximation to the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 559, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 189, + 575 + ], + "score": 1.0, + "content": "important quantities", + "type": "text" + }, + { + "bbox": [ + 189, + 560, + 218, + 575 + ], + "score": 0.89, + "content": "\\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 559, + 254, + 572 + ], + "score": 1.0, + "content": "and topt", + "type": "text" + }, + { + "bbox": [ + 236, + 560, + 264, + 574 + ], + "score": 0.89, + "content": "t _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 561, + 505, + 576 + ], + "score": 1.0, + "content": ". We assume the teacher SNR is beyond the phase transition", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 573, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 104, + 573, + 238, + 590 + ], + "score": 1.0, + "content": "point so its unique singular value", + "type": "text" + }, + { + "bbox": [ + 238, + 574, + 282, + 586 + ], + "score": 0.92, + "content": "\\overline { { s } } _ { 1 } > A ^ { 1 / 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 573, + 506, + 590 + ], + "score": 1.0, + "content": ", yielding a separation between the training data singular", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 130, + 599 + ], + "score": 1.0, + "content": "value", + "type": "text" + }, + { + "bbox": [ + 130, + 587, + 141, + 597 + ], + "score": 0.87, + "content": "\\hat { s _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "in (11) and the edge of the MP sea. In this scenario, optimal early stopping will occur at a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "score": 1.0, + "content": "time before the detection wave in Fig. 1B penetrates the MP sea, so to minimize test error, we can", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 608, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 621 + ], + "score": 1.0, + "content": "neglect the first term in (15). Then optimizing the second term yields the optimal student singular", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 618, + 507, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 130, + 633 + ], + "score": 1.0, + "content": "value", + "type": "text" + }, + { + "bbox": [ + 130, + 620, + 187, + 632 + ], + "score": 0.93, + "content": "s _ { 1 } = \\overline { { s } } _ { 1 } \\mathcal { O } ( \\overline { { s } } _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 619, + 333, + 633 + ], + "score": 1.0, + "content": ". Inserting this value into (15) yields", + "type": "text" + }, + { + "bbox": [ + 333, + 618, + 507, + 635 + ], + "score": 1.0, + "content": "εoptgradient = 1 − O(s1)2, and inserting it into", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 100, + 628, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 100, + 628, + 146, + 653 + ], + "score": 1.0, + "content": "(9) yields", + "type": "text" + }, + { + "bbox": [ + 147, + 633, + 174, + 648 + ], + "score": 0.89, + "content": "t _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 628, + 505, + 653 + ], + "score": 1.0, + "content": ". Thus the optimal generalization error with a rank 1 teacher is very simply related", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 648, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 506, + 659 + ], + "score": 1.0, + "content": "to the alignment of the top training data singular vectors with the teacher singular vectors, and it", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 658, + 459, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 459, + 669 + ], + "score": 1.0, + "content": "decreases as this alignment increases. In App. E, we show this match in the rank 1 case.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 674, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 101, + 667, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 101, + 667, + 218, + 701 + ], + "score": 1.0, + "content": "With higher rank teachers, teacher modes with differen", + "type": "text" + }, + { + "bbox": [ + 218, + 675, + 248, + 688 + ], + "score": 0.87, + "content": "\\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 667, + 267, + 701 + ], + "score": 1.0, + "content": "and For", + "type": "text" + }, + { + "bbox": [ + 296, + 667, + 506, + 701 + ], + "score": 1.0, + "content": "must negotiate a more complex trade-off betweene, as the singular mode detection wave passes the top", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 219, + 711 + ], + "score": 1.0, + "content": "training data singular value,", + "type": "text" + }, + { + "bbox": [ + 219, + 699, + 265, + 711 + ], + "score": 0.92, + "content": "s _ { 1 } ( t ) \\to \\hat { s } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 699, + 399, + 711 + ], + "score": 1.0, + "content": "which is greater than the optimal", + "type": "text" + }, + { + "bbox": [ + 399, + 699, + 457, + 711 + ], + "score": 0.93, + "content": "s _ { 1 } = \\overline { { s } } _ { 1 } \\mathcal { O } ( \\overline { { s } } _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "for mode 1.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "Thus as learning progresses, the student overfits on the first mode but learns lower modes. However,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 719, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 505, + 734 + ], + "score": 1.0, + "content": "this neural generalization dynamics suggests a superior non-gradient training algorithm that simply", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 119, + 80, + 494, + 194 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 80, + 494, + 194 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 119, + 80, + 494, + 194 + ], + "spans": [ + { + "bbox": [ + 119, + 80, + 494, + 194 + ], + "score": 0.971, + "type": "image", + "image_path": "6f50ba8e93b7f0f0f5390f316c743f888d62c7d9566d1790b18925c63d2e3904.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 119, + 80, + 494, + 118.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 119, + 118.0, + 494, + 156.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 119, + 156.0, + 494, + 194.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 202, + 505, + 225 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 202, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 505, + 214 + ], + "score": 1.0, + "content": "Figure 7: Transfer setting– If two different tasks are combined, how well students of the combined", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 213, + 434, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 434, + 225 + ], + "score": 1.0, + "content": "teacher perform on each task depends on the alignment and SNRs of the teachers.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "image", + "bbox": [ + 106, + 229, + 492, + 336 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 229, + 492, + 336 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 229, + 492, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 492, + 336 + ], + "score": 0.969, + "type": "image", + "image_path": "0a5b9a9dbd5641d64b838b1df6081e9aedcd5fcf53c8a71c1f83e3bbc6d1722c.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 229, + 492, + 264.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 264.6666666666667, + 492, + 300.33333333333337 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 300.33333333333337, + 492, + 336.00000000000006 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 350, + 506, + 432 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 104, + 348, + 507, + 365 + ], + "spans": [ + { + "bbox": [ + 104, + 348, + 210, + 365 + ], + "score": 1.0, + "content": "Figure 8: Transfer benefit", + "type": "text" + }, + { + "bbox": [ + 210, + 350, + 284, + 363 + ], + "score": 0.93, + "content": "\\mathcal { T } ^ { A B } ( \\overline { { s } } _ { A } , \\overline { { s } } _ { B } , q )", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 348, + 399, + 365 + ], + "score": 1.0, + "content": "plotted at different values of", + "type": "text" + }, + { + "bbox": [ + 399, + 352, + 411, + 362 + ], + "score": 0.87, + "content": "{ \\overline { { s } } } _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 348, + 429, + 365 + ], + "score": 1.0, + "content": ". (a)", + "type": "text" + }, + { + "bbox": [ + 429, + 349, + 503, + 362 + ], + "score": 0.92, + "content": "\\overline { { s } } _ { A } = 0 . 8 4 = \\sqrt [ 4 ] { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 504, + 348, + 507, + 365 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "score": 1.0, + "content": "Although this task is impossible to learn on its own, with support from another aligned task, especially", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 278, + 385 + ], + "score": 1.0, + "content": "one with high SNR, learning can occur. (b)", + "type": "text" + }, + { + "bbox": [ + 279, + 374, + 309, + 384 + ], + "score": 0.9, + "content": "{ \\overline { { s } } } _ { A } = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 373, + 505, + 385 + ], + "score": 1.0, + "content": ". Tasks with modest signals will face interference", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 382, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 506, + 397 + ], + "score": 1.0, + "content": "from poorly aligned tasks, but benefits from well aligned tasks. These effects are amplified by", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 145, + 407 + ], + "score": 1.0, + "content": "SNR. (c)", + "type": "text" + }, + { + "bbox": [ + 146, + 395, + 188, + 406 + ], + "score": 0.92, + "content": "\\overline { { s } } _ { A } = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 394, + 506, + 407 + ], + "score": 1.0, + "content": ". Tasks with very strong signals will show little effect from other tasks (note", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 104, + 406, + 460, + 419 + ], + "score": 1.0, + "content": "y-axis scales), but any impact will be negative unless the tasks are very well aligned.", + "type": "text" + }, + { + "bbox": [ + 461, + 406, + 505, + 417 + ], + "score": 0.9, + "content": "N _ { 1 } = 1 0 0", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 416, + 259, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 171, + 432 + ], + "score": 0.89, + "content": "\\dot { \\overline { { { N } } } } _ { 2 } ^ { A } = \\overline { { { N } } } _ { 2 } ^ { B } = 1 .", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 417, + 174, + 433 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 174, + 419, + 212, + 432 + ], + "score": 0.79, + "content": "N _ { 2 } = 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 417, + 215, + 433 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 215, + 420, + 253, + 432 + ], + "score": 0.79, + "content": "N _ { 3 } = 5 0 .", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 417, + 259, + 433 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 445, + 506, + 511 + ], + "lines": [], + "index": 17.5, + "bbox_fs": [ + 105, + 445, + 506, + 512 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 528, + 504, + 539 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 504, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 504, + 538 + ], + "score": 1.0, + "content": "3.6 OUT-PERFORMING OPTIMAL EARLY STOPPING THROUGH A NON-GRADIENT ALGORITHM", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 548, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 549, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 562 + ], + "score": 1.0, + "content": "For the case of a rank 1 teacher, it is straightforward to derive a good analytic approximation to the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 559, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 189, + 575 + ], + "score": 1.0, + "content": "important quantities", + "type": "text" + }, + { + "bbox": [ + 189, + 560, + 218, + 575 + ], + "score": 0.89, + "content": "\\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 559, + 254, + 572 + ], + "score": 1.0, + "content": "and topt", + "type": "text" + }, + { + "bbox": [ + 236, + 560, + 264, + 574 + ], + "score": 0.89, + "content": "t _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 561, + 505, + 576 + ], + "score": 1.0, + "content": ". We assume the teacher SNR is beyond the phase transition", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 573, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 104, + 573, + 238, + 590 + ], + "score": 1.0, + "content": "point so its unique singular value", + "type": "text" + }, + { + "bbox": [ + 238, + 574, + 282, + 586 + ], + "score": 0.92, + "content": "\\overline { { s } } _ { 1 } > A ^ { 1 / 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 573, + 506, + 590 + ], + "score": 1.0, + "content": ", yielding a separation between the training data singular", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 130, + 599 + ], + "score": 1.0, + "content": "value", + "type": "text" + }, + { + "bbox": [ + 130, + 587, + 141, + 597 + ], + "score": 0.87, + "content": "\\hat { s _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "in (11) and the edge of the MP sea. In this scenario, optimal early stopping will occur at a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "score": 1.0, + "content": "time before the detection wave in Fig. 1B penetrates the MP sea, so to minimize test error, we can", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 608, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 621 + ], + "score": 1.0, + "content": "neglect the first term in (15). Then optimizing the second term yields the optimal student singular", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 618, + 507, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 130, + 633 + ], + "score": 1.0, + "content": "value", + "type": "text" + }, + { + "bbox": [ + 130, + 620, + 187, + 632 + ], + "score": 0.93, + "content": "s _ { 1 } = \\overline { { s } } _ { 1 } \\mathcal { O } ( \\overline { { s } } _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 619, + 333, + 633 + ], + "score": 1.0, + "content": ". Inserting this value into (15) yields", + "type": "text" + }, + { + "bbox": [ + 333, + 618, + 507, + 635 + ], + "score": 1.0, + "content": "εoptgradient = 1 − O(s1)2, and inserting it into", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 100, + 628, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 100, + 628, + 146, + 653 + ], + "score": 1.0, + "content": "(9) yields", + "type": "text" + }, + { + "bbox": [ + 147, + 633, + 174, + 648 + ], + "score": 0.89, + "content": "t _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 628, + 505, + 653 + ], + "score": 1.0, + "content": ". Thus the optimal generalization error with a rank 1 teacher is very simply related", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 648, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 506, + 659 + ], + "score": 1.0, + "content": "to the alignment of the top training data singular vectors with the teacher singular vectors, and it", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 658, + 459, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 459, + 669 + ], + "score": 1.0, + "content": "decreases as this alignment increases. In App. E, we show this match in the rank 1 case.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 26.5, + "bbox_fs": [ + 100, + 549, + 507, + 669 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 674, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 101, + 667, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 101, + 667, + 218, + 701 + ], + "score": 1.0, + "content": "With higher rank teachers, teacher modes with differen", + "type": "text" + }, + { + "bbox": [ + 218, + 675, + 248, + 688 + ], + "score": 0.87, + "content": "\\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 667, + 267, + 701 + ], + "score": 1.0, + "content": "and For", + "type": "text" + }, + { + "bbox": [ + 296, + 667, + 506, + 701 + ], + "score": 1.0, + "content": "must negotiate a more complex trade-off betweene, as the singular mode detection wave passes the top", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 219, + 711 + ], + "score": 1.0, + "content": "training data singular value,", + "type": "text" + }, + { + "bbox": [ + 219, + 699, + 265, + 711 + ], + "score": 0.92, + "content": "s _ { 1 } ( t ) \\to \\hat { s } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 699, + 399, + 711 + ], + "score": 1.0, + "content": "which is greater than the optimal", + "type": "text" + }, + { + "bbox": [ + 399, + 699, + 457, + 711 + ], + "score": 0.93, + "content": "s _ { 1 } = \\overline { { s } } _ { 1 } \\mathcal { O } ( \\overline { { s } } _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "for mode 1.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "Thus as learning progresses, the student overfits on the first mode but learns lower modes. However,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 719, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 505, + 734 + ], + "score": 1.0, + "content": "this neural generalization dynamics suggests a superior non-gradient training algorithm that simply", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 81, + 443, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 185, + 96 + ], + "score": 1.0, + "content": "optimally sets each", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 185, + 84, + 197, + 93 + ], + "score": 0.86, + "content": "s _ { \\alpha }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 197, + 81, + 208, + 96 + ], + "score": 1.0, + "content": "to", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 208, + 83, + 246, + 95 + ], + "score": 0.93, + "content": "\\overline { { s } } _ { \\alpha } \\mathcal { O } ( \\overline { { s } } _ { \\alpha } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 246, + 81, + 443, + 96 + ], + "score": 1.0, + "content": "in (15), yielding an optimal generalization error:", + "type": "text", + "cross_page": true + } + ], + "index": 0 + } + ], + "index": 33.5, + "bbox_fs": [ + 101, + 667, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 442, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 443, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 185, + 96 + ], + "score": 1.0, + "content": "optimally sets each", + "type": "text" + }, + { + "bbox": [ + 185, + 84, + 197, + 93 + ], + "score": 0.86, + "content": "s _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 81, + 208, + 96 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 208, + 83, + 246, + 95 + ], + "score": 0.93, + "content": "\\overline { { s } } _ { \\alpha } \\mathcal { O } ( \\overline { { s } } _ { \\alpha } )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 81, + 443, + 96 + ], + "score": 1.0, + "content": "in (15), yielding an optimal generalization error:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 98, + 410, + 140 + ], + "lines": [ + { + "bbox": [ + 199, + 98, + 410, + 140 + ], + "spans": [ + { + "bbox": [ + 199, + 98, + 410, + 140 + ], + "score": 0.95, + "content": "\\varepsilon _ { \\mathrm { n o n - g r a d i e n t } } ^ { \\mathrm { o p t } } = \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\overline { { s } } _ { \\alpha } ^ { 2 } \\right] ^ { - 1 } \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\overline { { s } } _ { \\alpha } ^ { 2 } ( 1 - \\mathcal { O } ( \\overline { { s } } _ { \\alpha } ) ^ { 2 } ) \\right] .", + "type": "interline_equation", + "image_path": "570f4b4fad0704cfefbb961c062c1f4efb04e2f7fe004d72fb17f3060a73f853.jpg" + } + ] + } + ], + "index": 1.5, + "virtual_lines": [ + { + "bbox": [ + 199, + 98, + 410, + 119.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 199, + 119.0, + 410, + 140.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 143, + 506, + 227 + ], + "lines": [ + { + "bbox": [ + 106, + 142, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 142, + 506, + 156 + ], + "score": 1.0, + "content": "Standard gradient descent learning cannot achieve this low generalization error because it cannot", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 103, + 150, + 508, + 174 + ], + "spans": [ + { + "bbox": [ + 103, + 150, + 441, + 174 + ], + "score": 1.0, + "content": "independently adjust all student singular values. A simple algorithm that achieves", + "type": "text" + }, + { + "bbox": [ + 441, + 154, + 483, + 169 + ], + "score": 0.87, + "content": "\\varepsilon _ { \\mathrm { n o n - g r a d i e n t } } ^ { \\mathrm { o p t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 150, + 508, + 174 + ], + "score": 1.0, + "content": "is as", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 166, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 275, + 182 + ], + "score": 1.0, + "content": "follows. From the training data covariance", + "type": "text" + }, + { + "bbox": [ + 276, + 168, + 293, + 179 + ], + "score": 0.88, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 166, + 416, + 182 + ], + "score": 1.0, + "content": ", extract the top singular values", + "type": "text" + }, + { + "bbox": [ + 417, + 169, + 428, + 180 + ], + "score": 0.89, + "content": "\\hat { s } _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 166, + 506, + 182 + ], + "score": 1.0, + "content": "that pop-out of the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 178, + 507, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 326, + 194 + ], + "score": 1.0, + "content": "MP sea, use the functional inverse of (11) to compute", + "type": "text" + }, + { + "bbox": [ + 326, + 180, + 355, + 192 + ], + "score": 0.93, + "content": "\\overline { { s } } _ { a } ( \\widehat { s } _ { \\alpha } )", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 178, + 491, + 194 + ], + "score": 1.0, + "content": ", use (12) to compute the optimal", + "type": "text" + }, + { + "bbox": [ + 491, + 182, + 502, + 191 + ], + "score": 0.84, + "content": "s _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 178, + 507, + 194 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 188, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 214, + 204 + ], + "score": 1.0, + "content": "and then construct a matrix", + "type": "text" + }, + { + "bbox": [ + 214, + 191, + 228, + 201 + ], + "score": 0.26, + "content": "\\mathbf { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 188, + 374, + 204 + ], + "score": 1.0, + "content": "with the same top singular vectors as", + "type": "text" + }, + { + "bbox": [ + 374, + 191, + 391, + 201 + ], + "score": 0.89, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 188, + 506, + 204 + ], + "score": 1.0, + "content": ", but with the outlier singular", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 202, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 188, + 215 + ], + "score": 1.0, + "content": "values shrunk from", + "type": "text" + }, + { + "bbox": [ + 189, + 203, + 200, + 213 + ], + "score": 0.88, + "content": "\\hat { s } _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 202, + 212, + 215 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 213, + 204, + 224, + 213 + ], + "score": 0.86, + "content": "s _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 202, + 505, + 215 + ], + "score": 1.0, + "content": "and the rest set to zero. This non-gradient singular value shrinkage", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 208, + 439, + 232 + ], + "spans": [ + { + "bbox": [ + 104, + 208, + 352, + 232 + ], + "score": 1.0, + "content": "algorithm provably outperforms neural network training with", + "type": "text" + }, + { + "bbox": [ + 353, + 212, + 437, + 227 + ], + "score": 0.7, + "content": "\\varepsilon _ { \\mathrm { n o n - g r a d i e n t } } ^ { \\mathrm { o p t } ^ { - } } \\le \\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } } .", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 218, + 439, + 228 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 108, + 241, + 502, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 502, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 502, + 255 + ], + "score": 1.0, + "content": "4 A THEORY FOR THE TRANSFER OF KNOWLEDGE ACROSS MULTIPLE TASKS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 262, + 506, + 372 + ], + "lines": [ + { + "bbox": [ + 104, + 260, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 104, + 260, + 183, + 279 + ], + "score": 1.0, + "content": "Consider two tasks", + "type": "text" + }, + { + "bbox": [ + 184, + 266, + 192, + 275 + ], + "score": 0.8, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 260, + 210, + 279 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 210, + 266, + 219, + 275 + ], + "score": 0.8, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 260, + 276, + 279 + ], + "score": 1.0, + "content": ", described by", + "type": "text" + }, + { + "bbox": [ + 276, + 264, + 290, + 276 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 260, + 304, + 279 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 304, + 264, + 319, + 276 + ], + "score": 0.89, + "content": "\\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 260, + 374, + 279 + ], + "score": 1.0, + "content": "teacher maps", + "type": "text" + }, + { + "bbox": [ + 374, + 261, + 394, + 276 + ], + "score": 0.87, + "content": "\\overline { { \\mathbf { W } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 260, + 412, + 279 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 412, + 261, + 432, + 276 + ], + "score": 0.86, + "content": "\\overline { { \\mathbf { W } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 260, + 470, + 279 + ], + "score": 1.0, + "content": ", of ranks", + "type": "text" + }, + { + "bbox": [ + 470, + 261, + 487, + 277 + ], + "score": 0.91, + "content": "\\overline { { N } } _ { 2 } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 260, + 506, + 279 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 276, + 507, + 293 + ], + "spans": [ + { + "bbox": [ + 107, + 276, + 123, + 291 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 276, + 507, + 293 + ], + "score": 1.0, + "content": ", respectively. Now two student networks can learn from the two teacher networks separately,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 101, + 286, + 510, + 315 + ], + "spans": [ + { + "bbox": [ + 101, + 286, + 305, + 315 + ], + "score": 1.0, + "content": "each achieving optimal early stopping test errors composite teacher (and student) that concatenate", + "type": "text" + }, + { + "bbox": [ + 306, + 291, + 321, + 304 + ], + "score": 0.9, + "content": "\\varepsilon _ { A } ^ { \\mathrm { { o p t } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 286, + 339, + 315 + ], + "score": 1.0, + "content": "and hid", + "type": "text" + }, + { + "bbox": [ + 339, + 290, + 354, + 304 + ], + "score": 0.92, + "content": "\\varepsilon _ { B } ^ { \\mathrm { { o p t } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 286, + 510, + 315 + ], + "score": 1.0, + "content": ". Alternatively, one could construct a and output units, but shares the same", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 313, + 504, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 121, + 337 + ], + "score": 0.88, + "content": "\\overline { { N } } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 313, + 477, + 347 + ], + "score": 1.0, + "content": "ut units (Fig. 7). The composite student and teacher each have two heads, one for each tasneurons per head. Optimal early stopping on each head of the student yields test errors opt opt", + "type": "text" + }, + { + "bbox": [ + 477, + 325, + 504, + 338 + ], + "score": 0.87, + "content": "\\varepsilon _ { A B } ^ { \\mathrm { o p t } }", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 101, + 331, + 503, + 358 + ], + "spans": [ + { + "bbox": [ + 101, + 331, + 123, + 358 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 150, + 331, + 408, + 358 + ], + "score": 1.0, + "content": ". We define the transfer benefit that task B confers on task A to be", + "type": "text" + }, + { + "bbox": [ + 409, + 337, + 503, + 351 + ], + "score": 0.9, + "content": "\\mathcal { T } ^ { A B } \\equiv \\varepsilon _ { A } ^ { \\mathrm { o p t } } - \\varepsilon _ { A B } ^ { \\mathrm { o p t } }", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "score": 1.0, + "content": "A postive (negative) transfer benefit implies learning tasks A and B simultaneously yields a lower", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 361, + 412, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 412, + 373 + ], + "score": 1.0, + "content": "(higher) optimal test error on task A compared to just learning task A alone.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 376, + 506, + 500 + ], + "lines": [ + { + "bbox": [ + 104, + 373, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 104, + 373, + 320, + 391 + ], + "score": 1.0, + "content": "A foundational question is how the transfer benefit", + "type": "text" + }, + { + "bbox": [ + 320, + 376, + 350, + 388 + ], + "score": 0.9, + "content": "\\scriptstyle { \\mathcal { T } } ^ { A B }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 373, + 506, + 391 + ], + "score": 1.0, + "content": "depends on the two tasks defined by", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 387, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 159, + 403 + ], + "score": 1.0, + "content": "the teachers", + "type": "text" + }, + { + "bbox": [ + 159, + 388, + 179, + 402 + ], + "score": 0.88, + "content": "\\overline { { \\mathbf { W } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 387, + 199, + 405 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 199, + 388, + 219, + 402 + ], + "score": 0.86, + "content": "\\overline { { \\mathbf { W } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 387, + 471, + 405 + ], + "score": 1.0, + "content": ". To answer this, consider the SVDs of each teacher alone:", + "type": "text" + }, + { + "bbox": [ + 471, + 388, + 505, + 403 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\overline { { \\mathbf { W } } } ^ { A } = } \\end{array}", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 401, + 507, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 157, + 418 + ], + "score": 0.88, + "content": "\\overline { { \\mathbf { U } } } ^ { A } \\overline { { \\mathbf { S } } } ^ { A } \\overline { { \\mathbf { V } } } ^ { A ^ { T } }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 401, + 177, + 418 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 177, + 403, + 262, + 418 + ], + "score": 0.91, + "content": "\\overline { { \\mathbf { W } } } ^ { B } = \\overline { { \\mathbf { U } } } ^ { B } \\overline { { \\mathbf { S } } } ^ { B } \\overline { { \\mathbf { V } } } ^ { B ^ { T } }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 402, + 397, + 424 + ], + "score": 1.0, + "content": ". From the above, we know that", + "type": "text" + }, + { + "bbox": [ + 397, + 406, + 413, + 420 + ], + "score": 0.88, + "content": "\\varepsilon _ { A } ^ { \\mathrm { { o p t } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 402, + 463, + 424 + ], + "score": 1.0, + "content": "depends on", + "type": "text" + }, + { + "bbox": [ + 463, + 404, + 483, + 418 + ], + "score": 0.89, + "content": "\\overline { { \\mathbf { W } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 402, + 507, + 424 + ], + "score": 1.0, + "content": "only", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 419, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 139, + 437 + ], + "score": 1.0, + "content": "through", + "type": "text" + }, + { + "bbox": [ + 139, + 419, + 153, + 433 + ], + "score": 0.84, + "content": "\\overline { { \\mathbf { S } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 419, + 394, + 437 + ], + "score": 1.0, + "content": ". In App. D we show that the transfer benefit depends on both", + "type": "text" + }, + { + "bbox": [ + 395, + 420, + 414, + 433 + ], + "score": 0.87, + "content": "\\overline { { \\mathbf { W } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 419, + 432, + 437 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 432, + 419, + 452, + 433 + ], + "score": 0.85, + "content": "\\overline { { \\mathbf { W } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 419, + 506, + 437 + ], + "score": 1.0, + "content": "only through", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 430, + 504, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 138, + 451 + ], + "score": 0.81, + "content": "\\overline { { \\mathbf { S } } } ^ { A } , \\overline { { \\mathbf { S } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 430, + 173, + 456 + ], + "score": 1.0, + "content": ", and the", + "type": "text" + }, + { + "bbox": [ + 174, + 435, + 190, + 451 + ], + "score": 0.91, + "content": "\\overline { { N } } _ { 2 } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 430, + 204, + 456 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 204, + 435, + 221, + 451 + ], + "score": 0.91, + "content": "\\overline { { N } } _ { 2 } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 430, + 291, + 456 + ], + "score": 1.0, + "content": "similarity matrix", + "type": "text" + }, + { + "bbox": [ + 291, + 434, + 351, + 451 + ], + "score": 0.92, + "content": "\\mathbf { \\overline { { Q } } } = \\mathbf { \\overline { { V } } } ^ { A ^ { T } } \\mathbf { \\overline { { V } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 430, + 493, + 456 + ], + "score": 1.0, + "content": ". If we think of the columns of each", + "type": "text" + }, + { + "bbox": [ + 494, + 438, + 504, + 450 + ], + "score": 0.73, + "content": "\\overline { { \\mathbf { V } } }", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 450, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 450, + 291, + 464 + ], + "score": 1.0, + "content": "as spanning a low dimensional feature space in", + "type": "text" + }, + { + "bbox": [ + 292, + 451, + 307, + 462 + ], + "score": 0.89, + "content": "\\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 450, + 506, + 464 + ], + "score": 1.0, + "content": "dimensional input space that is important for each", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 462, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 147, + 477 + ], + "score": 1.0, + "content": "task, then", + "type": "text" + }, + { + "bbox": [ + 148, + 462, + 158, + 475 + ], + "score": 0.84, + "content": "\\overline { { \\mathbf { Q } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 462, + 506, + 477 + ], + "score": 1.0, + "content": "reflects the input feature subspace similarity matrix. Interestingly, the transfer benefit", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 474, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 104, + 474, + 272, + 491 + ], + "score": 1.0, + "content": "is independent of output singular vectors", + "type": "text" + }, + { + "bbox": [ + 272, + 474, + 289, + 488 + ], + "score": 0.86, + "content": "\\bar { \\mathbf { U } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 474, + 307, + 491 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 307, + 474, + 323, + 488 + ], + "score": 0.85, + "content": "\\overline { { \\mathbf { U } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 474, + 506, + 491 + ], + "score": 1.0, + "content": ". What matters for knowledge transfer in this", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 488, + 402, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 402, + 501 + ], + "score": 1.0, + "content": "setting are the relevant input features, not how you must respond to them.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 507, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 103, + 504, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 103, + 504, + 440, + 523 + ], + "score": 1.0, + "content": "We describe the transfer benefit for the simple case of two rank one teachers. Then", + "type": "text" + }, + { + "bbox": [ + 441, + 505, + 473, + 520 + ], + "score": 0.52, + "content": "\\overline { { \\mathbf { S } } } ^ { A } , \\overline { { \\mathbf { S } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 504, + 494, + 523 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 494, + 507, + 505, + 520 + ], + "score": 0.68, + "content": "\\overline { { \\mathbf { Q } } }", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 517, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 104, + 517, + 178, + 534 + ], + "score": 1.0, + "content": "are simply scalars", + "type": "text" + }, + { + "bbox": [ + 178, + 522, + 207, + 531 + ], + "score": 0.29, + "content": "s _ { A } , s _ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 517, + 225, + 534 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 225, + 522, + 231, + 532 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 517, + 345, + 534 + ], + "score": 1.0, + "content": ", and we explore the function", + "type": "text" + }, + { + "bbox": [ + 346, + 519, + 419, + 532 + ], + "score": 0.93, + "content": "\\mathcal { T } ^ { A B } ( \\overline { { s } } _ { A } , \\overline { { s } } _ { B } , q )", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 517, + 506, + 534 + ], + "score": 1.0, + "content": "in Fig. 5ABC, which", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 531, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 506, + 543 + ], + "score": 1.0, + "content": "reveals several interesting features. First, knowledge can be transferred from a high SNR task to a", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 433, + 554 + ], + "score": 1.0, + "content": "low SNR task (Fig. 5A) and the degree of transfer increases with task alignment", + "type": "text" + }, + { + "bbox": [ + 433, + 543, + 439, + 553 + ], + "score": 0.75, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 542, + 505, + 554 + ], + "score": 1.0, + "content": ". This can make", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 551, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 104, + 551, + 264, + 567 + ], + "score": 1.0, + "content": "it possible to capture signals from task", + "type": "text" + }, + { + "bbox": [ + 265, + 553, + 273, + 563 + ], + "score": 0.72, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 551, + 506, + 567 + ], + "score": 1.0, + "content": "which would otherwise sink into the MP sea by learning", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 563, + 504, + 576 + ], + "spans": [ + { + "bbox": [ + 104, + 563, + 495, + 576 + ], + "score": 1.0, + "content": "jointly with a related task, even if the tasks are only weakly aligned (Fig. 5A). However, if task", + "type": "text" + }, + { + "bbox": [ + 495, + 564, + 504, + 574 + ], + "score": 0.58, + "content": "A", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 220, + 587 + ], + "score": 1.0, + "content": "already has a high SNR, task", + "type": "text" + }, + { + "bbox": [ + 221, + 575, + 230, + 585 + ], + "score": 0.79, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "must be very well aligned to it for transfer to be beneficial – otherwise", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 584, + 507, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 432, + 599 + ], + "score": 1.0, + "content": "there will be interference. The degree of alignment required increases as the task", + "type": "text" + }, + { + "bbox": [ + 433, + 586, + 442, + 596 + ], + "score": 0.65, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 584, + 507, + 599 + ], + "score": 1.0, + "content": "SNR increases,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 595, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 506, + 610 + ], + "score": 1.0, + "content": "but the quantity of benefit or interference decreases correspondingly (Fig. 5BC). In Appendix D we", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 608, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 620 + ], + "score": 1.0, + "content": "explain why our theory predicts these results. Furthermore, in Appendix F we demonstrate these", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 618, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 633 + ], + "score": 1.0, + "content": "phenomena are qualitatively recapitulated in nonlinear networks, which suggests that our theory may", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 630, + 296, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 296, + 642 + ], + "score": 1.0, + "content": "give insight into how to choose auxiliary tasks.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 32.5 + }, + { + "type": "title", + "bbox": [ + 107, + 657, + 190, + 669 + ], + "lines": [ + { + "bbox": [ + 104, + 656, + 192, + 672 + ], + "spans": [ + { + "bbox": [ + 104, + 656, + 192, + 672 + ], + "score": 1.0, + "content": "5 DISCUSSION", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "In summary, our analytic theory of generalization dynamics in deep linear networks reveals that many", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "puzzling aspects of generalization in deep learning already arise in the simple linear setting, where", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "the puzzles can be understood analytically. In particular, deep linear networks learn more important", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "structure in data first, leading to generalization errors that depend on task structure much more than", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "network size. Our theory explains why deep linear networks learn randomized data more slowly than", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 442, + 95 + ], + "lines": [], + "index": 0, + "bbox_fs": [ + 106, + 81, + 443, + 96 + ], + "lines_deleted": true + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 98, + 410, + 140 + ], + "lines": [ + { + "bbox": [ + 199, + 98, + 410, + 140 + ], + "spans": [ + { + "bbox": [ + 199, + 98, + 410, + 140 + ], + "score": 0.95, + "content": "\\varepsilon _ { \\mathrm { n o n - g r a d i e n t } } ^ { \\mathrm { o p t } } = \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\overline { { s } } _ { \\alpha } ^ { 2 } \\right] ^ { - 1 } \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\overline { { s } } _ { \\alpha } ^ { 2 } ( 1 - \\mathcal { O } ( \\overline { { s } } _ { \\alpha } ) ^ { 2 } ) \\right] .", + "type": "interline_equation", + "image_path": "570f4b4fad0704cfefbb961c062c1f4efb04e2f7fe004d72fb17f3060a73f853.jpg" + } + ] + } + ], + "index": 1.5, + "virtual_lines": [ + { + "bbox": [ + 199, + 98, + 410, + 119.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 199, + 119.0, + 410, + 140.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 143, + 506, + 227 + ], + "lines": [ + { + "bbox": [ + 106, + 142, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 142, + 506, + 156 + ], + "score": 1.0, + "content": "Standard gradient descent learning cannot achieve this low generalization error because it cannot", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 103, + 150, + 508, + 174 + ], + "spans": [ + { + "bbox": [ + 103, + 150, + 441, + 174 + ], + "score": 1.0, + "content": "independently adjust all student singular values. A simple algorithm that achieves", + "type": "text" + }, + { + "bbox": [ + 441, + 154, + 483, + 169 + ], + "score": 0.87, + "content": "\\varepsilon _ { \\mathrm { n o n - g r a d i e n t } } ^ { \\mathrm { o p t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 150, + 508, + 174 + ], + "score": 1.0, + "content": "is as", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 166, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 275, + 182 + ], + "score": 1.0, + "content": "follows. From the training data covariance", + "type": "text" + }, + { + "bbox": [ + 276, + 168, + 293, + 179 + ], + "score": 0.88, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 166, + 416, + 182 + ], + "score": 1.0, + "content": ", extract the top singular values", + "type": "text" + }, + { + "bbox": [ + 417, + 169, + 428, + 180 + ], + "score": 0.89, + "content": "\\hat { s } _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 166, + 506, + 182 + ], + "score": 1.0, + "content": "that pop-out of the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 178, + 507, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 326, + 194 + ], + "score": 1.0, + "content": "MP sea, use the functional inverse of (11) to compute", + "type": "text" + }, + { + "bbox": [ + 326, + 180, + 355, + 192 + ], + "score": 0.93, + "content": "\\overline { { s } } _ { a } ( \\widehat { s } _ { \\alpha } )", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 178, + 491, + 194 + ], + "score": 1.0, + "content": ", use (12) to compute the optimal", + "type": "text" + }, + { + "bbox": [ + 491, + 182, + 502, + 191 + ], + "score": 0.84, + "content": "s _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 178, + 507, + 194 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 188, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 214, + 204 + ], + "score": 1.0, + "content": "and then construct a matrix", + "type": "text" + }, + { + "bbox": [ + 214, + 191, + 228, + 201 + ], + "score": 0.26, + "content": "\\mathbf { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 188, + 374, + 204 + ], + "score": 1.0, + "content": "with the same top singular vectors as", + "type": "text" + }, + { + "bbox": [ + 374, + 191, + 391, + 201 + ], + "score": 0.89, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 188, + 506, + 204 + ], + "score": 1.0, + "content": ", but with the outlier singular", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 202, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 188, + 215 + ], + "score": 1.0, + "content": "values shrunk from", + "type": "text" + }, + { + "bbox": [ + 189, + 203, + 200, + 213 + ], + "score": 0.88, + "content": "\\hat { s } _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 202, + 212, + 215 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 213, + 204, + 224, + 213 + ], + "score": 0.86, + "content": "s _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 202, + 505, + 215 + ], + "score": 1.0, + "content": "and the rest set to zero. This non-gradient singular value shrinkage", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 208, + 439, + 232 + ], + "spans": [ + { + "bbox": [ + 104, + 208, + 352, + 232 + ], + "score": 1.0, + "content": "algorithm provably outperforms neural network training with", + "type": "text" + }, + { + "bbox": [ + 353, + 212, + 437, + 227 + ], + "score": 0.7, + "content": "\\varepsilon _ { \\mathrm { n o n - g r a d i e n t } } ^ { \\mathrm { o p t } ^ { - } } \\le \\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } } .", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 218, + 439, + 228 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6, + "bbox_fs": [ + 103, + 142, + 508, + 232 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 241, + 502, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 502, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 502, + 255 + ], + "score": 1.0, + "content": "4 A THEORY FOR THE TRANSFER OF KNOWLEDGE ACROSS MULTIPLE TASKS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 262, + 506, + 372 + ], + "lines": [ + { + "bbox": [ + 104, + 260, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 104, + 260, + 183, + 279 + ], + "score": 1.0, + "content": "Consider two tasks", + "type": "text" + }, + { + "bbox": [ + 184, + 266, + 192, + 275 + ], + "score": 0.8, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 260, + 210, + 279 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 210, + 266, + 219, + 275 + ], + "score": 0.8, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 260, + 276, + 279 + ], + "score": 1.0, + "content": ", described by", + "type": "text" + }, + { + "bbox": [ + 276, + 264, + 290, + 276 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 260, + 304, + 279 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 304, + 264, + 319, + 276 + ], + "score": 0.89, + "content": "\\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 260, + 374, + 279 + ], + "score": 1.0, + "content": "teacher maps", + "type": "text" + }, + { + "bbox": [ + 374, + 261, + 394, + 276 + ], + "score": 0.87, + "content": "\\overline { { \\mathbf { W } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 260, + 412, + 279 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 412, + 261, + 432, + 276 + ], + "score": 0.86, + "content": "\\overline { { \\mathbf { W } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 260, + 470, + 279 + ], + "score": 1.0, + "content": ", of ranks", + "type": "text" + }, + { + "bbox": [ + 470, + 261, + 487, + 277 + ], + "score": 0.91, + "content": "\\overline { { N } } _ { 2 } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 260, + 506, + 279 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 276, + 507, + 293 + ], + "spans": [ + { + "bbox": [ + 107, + 276, + 123, + 291 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 276, + 507, + 293 + ], + "score": 1.0, + "content": ", respectively. Now two student networks can learn from the two teacher networks separately,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 101, + 286, + 510, + 315 + ], + "spans": [ + { + "bbox": [ + 101, + 286, + 305, + 315 + ], + "score": 1.0, + "content": "each achieving optimal early stopping test errors composite teacher (and student) that concatenate", + "type": "text" + }, + { + "bbox": [ + 306, + 291, + 321, + 304 + ], + "score": 0.9, + "content": "\\varepsilon _ { A } ^ { \\mathrm { { o p t } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 286, + 339, + 315 + ], + "score": 1.0, + "content": "and hid", + "type": "text" + }, + { + "bbox": [ + 339, + 290, + 354, + 304 + ], + "score": 0.92, + "content": "\\varepsilon _ { B } ^ { \\mathrm { { o p t } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 286, + 510, + 315 + ], + "score": 1.0, + "content": ". Alternatively, one could construct a and output units, but shares the same", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 313, + 504, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 121, + 337 + ], + "score": 0.88, + "content": "\\overline { { N } } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 313, + 477, + 347 + ], + "score": 1.0, + "content": "ut units (Fig. 7). The composite student and teacher each have two heads, one for each tasneurons per head. Optimal early stopping on each head of the student yields test errors opt opt", + "type": "text" + }, + { + "bbox": [ + 477, + 325, + 504, + 338 + ], + "score": 0.87, + "content": "\\varepsilon _ { A B } ^ { \\mathrm { o p t } }", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 101, + 331, + 503, + 358 + ], + "spans": [ + { + "bbox": [ + 101, + 331, + 123, + 358 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 150, + 331, + 408, + 358 + ], + "score": 1.0, + "content": ". We define the transfer benefit that task B confers on task A to be", + "type": "text" + }, + { + "bbox": [ + 409, + 337, + 503, + 351 + ], + "score": 0.9, + "content": "\\mathcal { T } ^ { A B } \\equiv \\varepsilon _ { A } ^ { \\mathrm { o p t } } - \\varepsilon _ { A B } ^ { \\mathrm { o p t } }", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "score": 1.0, + "content": "A postive (negative) transfer benefit implies learning tasks A and B simultaneously yields a lower", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 361, + 412, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 412, + 373 + ], + "score": 1.0, + "content": "(higher) optimal test error on task A compared to just learning task A alone.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14, + "bbox_fs": [ + 101, + 260, + 510, + 373 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 376, + 506, + 500 + ], + "lines": [ + { + "bbox": [ + 104, + 373, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 104, + 373, + 320, + 391 + ], + "score": 1.0, + "content": "A foundational question is how the transfer benefit", + "type": "text" + }, + { + "bbox": [ + 320, + 376, + 350, + 388 + ], + "score": 0.9, + "content": "\\scriptstyle { \\mathcal { T } } ^ { A B }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 373, + 506, + 391 + ], + "score": 1.0, + "content": "depends on the two tasks defined by", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 387, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 159, + 403 + ], + "score": 1.0, + "content": "the teachers", + "type": "text" + }, + { + "bbox": [ + 159, + 388, + 179, + 402 + ], + "score": 0.88, + "content": "\\overline { { \\mathbf { W } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 387, + 199, + 405 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 199, + 388, + 219, + 402 + ], + "score": 0.86, + "content": "\\overline { { \\mathbf { W } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 387, + 471, + 405 + ], + "score": 1.0, + "content": ". To answer this, consider the SVDs of each teacher alone:", + "type": "text" + }, + { + "bbox": [ + 471, + 388, + 505, + 403 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\overline { { \\mathbf { W } } } ^ { A } = } \\end{array}", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 401, + 507, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 157, + 418 + ], + "score": 0.88, + "content": "\\overline { { \\mathbf { U } } } ^ { A } \\overline { { \\mathbf { S } } } ^ { A } \\overline { { \\mathbf { V } } } ^ { A ^ { T } }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 401, + 177, + 418 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 177, + 403, + 262, + 418 + ], + "score": 0.91, + "content": "\\overline { { \\mathbf { W } } } ^ { B } = \\overline { { \\mathbf { U } } } ^ { B } \\overline { { \\mathbf { S } } } ^ { B } \\overline { { \\mathbf { V } } } ^ { B ^ { T } }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 402, + 397, + 424 + ], + "score": 1.0, + "content": ". From the above, we know that", + "type": "text" + }, + { + "bbox": [ + 397, + 406, + 413, + 420 + ], + "score": 0.88, + "content": "\\varepsilon _ { A } ^ { \\mathrm { { o p t } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 402, + 463, + 424 + ], + "score": 1.0, + "content": "depends on", + "type": "text" + }, + { + "bbox": [ + 463, + 404, + 483, + 418 + ], + "score": 0.89, + "content": "\\overline { { \\mathbf { W } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 402, + 507, + 424 + ], + "score": 1.0, + "content": "only", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 419, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 139, + 437 + ], + "score": 1.0, + "content": "through", + "type": "text" + }, + { + "bbox": [ + 139, + 419, + 153, + 433 + ], + "score": 0.84, + "content": "\\overline { { \\mathbf { S } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 419, + 394, + 437 + ], + "score": 1.0, + "content": ". In App. D we show that the transfer benefit depends on both", + "type": "text" + }, + { + "bbox": [ + 395, + 420, + 414, + 433 + ], + "score": 0.87, + "content": "\\overline { { \\mathbf { W } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 419, + 432, + 437 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 432, + 419, + 452, + 433 + ], + "score": 0.85, + "content": "\\overline { { \\mathbf { W } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 419, + 506, + 437 + ], + "score": 1.0, + "content": "only through", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 430, + 504, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 138, + 451 + ], + "score": 0.81, + "content": "\\overline { { \\mathbf { S } } } ^ { A } , \\overline { { \\mathbf { S } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 430, + 173, + 456 + ], + "score": 1.0, + "content": ", and the", + "type": "text" + }, + { + "bbox": [ + 174, + 435, + 190, + 451 + ], + "score": 0.91, + "content": "\\overline { { N } } _ { 2 } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 430, + 204, + 456 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 204, + 435, + 221, + 451 + ], + "score": 0.91, + "content": "\\overline { { N } } _ { 2 } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 430, + 291, + 456 + ], + "score": 1.0, + "content": "similarity matrix", + "type": "text" + }, + { + "bbox": [ + 291, + 434, + 351, + 451 + ], + "score": 0.92, + "content": "\\mathbf { \\overline { { Q } } } = \\mathbf { \\overline { { V } } } ^ { A ^ { T } } \\mathbf { \\overline { { V } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 430, + 493, + 456 + ], + "score": 1.0, + "content": ". If we think of the columns of each", + "type": "text" + }, + { + "bbox": [ + 494, + 438, + 504, + 450 + ], + "score": 0.73, + "content": "\\overline { { \\mathbf { V } } }", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 450, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 450, + 291, + 464 + ], + "score": 1.0, + "content": "as spanning a low dimensional feature space in", + "type": "text" + }, + { + "bbox": [ + 292, + 451, + 307, + 462 + ], + "score": 0.89, + "content": "\\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 450, + 506, + 464 + ], + "score": 1.0, + "content": "dimensional input space that is important for each", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 462, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 147, + 477 + ], + "score": 1.0, + "content": "task, then", + "type": "text" + }, + { + "bbox": [ + 148, + 462, + 158, + 475 + ], + "score": 0.84, + "content": "\\overline { { \\mathbf { Q } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 462, + 506, + 477 + ], + "score": 1.0, + "content": "reflects the input feature subspace similarity matrix. Interestingly, the transfer benefit", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 474, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 104, + 474, + 272, + 491 + ], + "score": 1.0, + "content": "is independent of output singular vectors", + "type": "text" + }, + { + "bbox": [ + 272, + 474, + 289, + 488 + ], + "score": 0.86, + "content": "\\bar { \\mathbf { U } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 474, + 307, + 491 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 307, + 474, + 323, + 488 + ], + "score": 0.85, + "content": "\\overline { { \\mathbf { U } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 474, + 506, + 491 + ], + "score": 1.0, + "content": ". What matters for knowledge transfer in this", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 488, + 402, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 402, + 501 + ], + "score": 1.0, + "content": "setting are the relevant input features, not how you must respond to them.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22, + "bbox_fs": [ + 104, + 373, + 507, + 501 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 507, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 103, + 504, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 103, + 504, + 440, + 523 + ], + "score": 1.0, + "content": "We describe the transfer benefit for the simple case of two rank one teachers. Then", + "type": "text" + }, + { + "bbox": [ + 441, + 505, + 473, + 520 + ], + "score": 0.52, + "content": "\\overline { { \\mathbf { S } } } ^ { A } , \\overline { { \\mathbf { S } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 504, + 494, + 523 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 494, + 507, + 505, + 520 + ], + "score": 0.68, + "content": "\\overline { { \\mathbf { Q } } }", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 517, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 104, + 517, + 178, + 534 + ], + "score": 1.0, + "content": "are simply scalars", + "type": "text" + }, + { + "bbox": [ + 178, + 522, + 207, + 531 + ], + "score": 0.29, + "content": "s _ { A } , s _ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 517, + 225, + 534 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 225, + 522, + 231, + 532 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 517, + 345, + 534 + ], + "score": 1.0, + "content": ", and we explore the function", + "type": "text" + }, + { + "bbox": [ + 346, + 519, + 419, + 532 + ], + "score": 0.93, + "content": "\\mathcal { T } ^ { A B } ( \\overline { { s } } _ { A } , \\overline { { s } } _ { B } , q )", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 517, + 506, + 534 + ], + "score": 1.0, + "content": "in Fig. 5ABC, which", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 531, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 506, + 543 + ], + "score": 1.0, + "content": "reveals several interesting features. First, knowledge can be transferred from a high SNR task to a", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 433, + 554 + ], + "score": 1.0, + "content": "low SNR task (Fig. 5A) and the degree of transfer increases with task alignment", + "type": "text" + }, + { + "bbox": [ + 433, + 543, + 439, + 553 + ], + "score": 0.75, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 542, + 505, + 554 + ], + "score": 1.0, + "content": ". This can make", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 551, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 104, + 551, + 264, + 567 + ], + "score": 1.0, + "content": "it possible to capture signals from task", + "type": "text" + }, + { + "bbox": [ + 265, + 553, + 273, + 563 + ], + "score": 0.72, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 551, + 506, + 567 + ], + "score": 1.0, + "content": "which would otherwise sink into the MP sea by learning", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 563, + 504, + 576 + ], + "spans": [ + { + "bbox": [ + 104, + 563, + 495, + 576 + ], + "score": 1.0, + "content": "jointly with a related task, even if the tasks are only weakly aligned (Fig. 5A). However, if task", + "type": "text" + }, + { + "bbox": [ + 495, + 564, + 504, + 574 + ], + "score": 0.58, + "content": "A", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 220, + 587 + ], + "score": 1.0, + "content": "already has a high SNR, task", + "type": "text" + }, + { + "bbox": [ + 221, + 575, + 230, + 585 + ], + "score": 0.79, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "must be very well aligned to it for transfer to be beneficial – otherwise", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 584, + 507, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 432, + 599 + ], + "score": 1.0, + "content": "there will be interference. The degree of alignment required increases as the task", + "type": "text" + }, + { + "bbox": [ + 433, + 586, + 442, + 596 + ], + "score": 0.65, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 584, + 507, + 599 + ], + "score": 1.0, + "content": "SNR increases,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 595, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 506, + 610 + ], + "score": 1.0, + "content": "but the quantity of benefit or interference decreases correspondingly (Fig. 5BC). In Appendix D we", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 608, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 620 + ], + "score": 1.0, + "content": "explain why our theory predicts these results. Furthermore, in Appendix F we demonstrate these", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 618, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 633 + ], + "score": 1.0, + "content": "phenomena are qualitatively recapitulated in nonlinear networks, which suggests that our theory may", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 630, + 296, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 296, + 642 + ], + "score": 1.0, + "content": "give insight into how to choose auxiliary tasks.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 32.5, + "bbox_fs": [ + 103, + 504, + 507, + 642 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 657, + 190, + 669 + ], + "lines": [ + { + "bbox": [ + 104, + 656, + 192, + 672 + ], + "spans": [ + { + "bbox": [ + 104, + 656, + 192, + 672 + ], + "score": 1.0, + "content": "5 DISCUSSION", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "In summary, our analytic theory of generalization dynamics in deep linear networks reveals that many", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "puzzling aspects of generalization in deep learning already arise in the simple linear setting, where", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "the puzzles can be understood analytically. In particular, deep linear networks learn more important", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "structure in data first, leading to generalization errors that depend on task structure much more than", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "network size. Our theory explains why deep linear networks learn randomized data more slowly than", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "structured data, and provides a non-gradient based learning method that out-performs gradient descent", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "learning in the linear case. Finally, we provide an analytic theory of how knowledge is transferred", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "from one task to another, demonstrating that the degree of alignment of input features important for", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "each task, but not how one must respond to these features, is critical for facilitating knowledge transfer.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "We think these analytic results provide useful insight into the similar generalization and transfer", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 138, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 505, + 149 + ], + "score": 1.0, + "content": "phenomena observed in the nonlinear case. Among other things, we hope our work will motivate", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "and enable: (1) the search for tighter upper bounds on generalization error that take into account task", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "structure; (2) the design of non gradient based training algorithms that outperform gradient-based", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 495, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 495, + 183 + ], + "score": 1.0, + "content": "learning; and (3) the theory-driven selection of auxiliary tasks that maximize knowledge transfer.", + "type": "text", + "cross_page": true + } + ], + "index": 8 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 676, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 182 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "structured data, and provides a non-gradient based learning method that out-performs gradient descent", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "learning in the linear case. Finally, we provide an analytic theory of how knowledge is transferred", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "from one task to another, demonstrating that the degree of alignment of input features important for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "each task, but not how one must respond to these features, is critical for facilitating knowledge transfer.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "We think these analytic results provide useful insight into the similar generalization and transfer", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 138, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 505, + 149 + ], + "score": 1.0, + "content": "phenomena observed in the nonlinear case. Among other things, we hope our work will motivate", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "and enable: (1) the search for tighter upper bounds on generalization error that take into account task", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "structure; (2) the design of non gradient based training algorithms that outperform gradient-based", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 495, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 495, + 183 + ], + "score": 1.0, + "content": "learning; and (3) the theory-driven selection of auxiliary tasks that maximize knowledge transfer.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 108, + 198, + 175, + 210 + ], + "lines": [ + { + "bbox": [ + 106, + 198, + 176, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 176, + 211 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 216, + 504, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "Madhu S. Advani and Andrew M. Saxe. High-dimensional dynamics of generalization error in neural", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 227, + 251, + 239 + ], + "spans": [ + { + "bbox": [ + 115, + 227, + 251, + 239 + ], + "score": 1.0, + "content": "networks. arXiv, pp. 1–32, 2017.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 245, + 504, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 246, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 505, + 258 + ], + "score": 1.0, + "content": "Sanjeev Arora, Rong Ge, Behnam Neyshabur, and Yi Zhang. Stronger generalization bounds for", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 256, + 504, + 270 + ], + "spans": [ + { + "bbox": [ + 115, + 256, + 504, + 270 + ], + "score": 1.0, + "content": "deep nets via a compression approach. arXiv preprint, pp. 1–39, 2018. URL http://arxiv.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 268, + 230, + 279 + ], + "spans": [ + { + "bbox": [ + 116, + 268, + 230, + 279 + ], + "score": 1.0, + "content": "org/abs/1802.05296.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 109, + 285, + 504, + 331 + ], + "lines": [ + { + "bbox": [ + 106, + 285, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 505, + 299 + ], + "score": 1.0, + "content": "Devansh Arpit, Stanisław Jastrze¸bski, Nicolas Ballas, David Krueger, Emmanuel Bengio, Maxinder S", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 298, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 115, + 298, + 505, + 309 + ], + "score": 1.0, + "content": "Kanwal, Tegan Maharaj, Asja Fischer, Aaron Courville, Yoshua Bengio, and Simon Lacoste-Julien.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 114, + 308, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 114, + 308, + 506, + 321 + ], + "score": 1.0, + "content": "A Closer Look at Memorization in Deep Networks. arXiv preprint, 2017. ISSN 1938-7228. URL", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 320, + 307, + 331 + ], + "spans": [ + { + "bbox": [ + 116, + 320, + 307, + 331 + ], + "score": 1.0, + "content": "http://arxiv.org/abs/1706.05394.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 108, + 337, + 503, + 361 + ], + "lines": [ + { + "bbox": [ + 106, + 338, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 505, + 351 + ], + "score": 1.0, + "content": "Peter Bartlett, Dylan J. Foster, and Matus Telgarsky. Spectrally-normalized margin bounds for neural", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 349, + 500, + 361 + ], + "spans": [ + { + "bbox": [ + 115, + 349, + 500, + 361 + ], + "score": 1.0, + "content": "networks. arXiv preprint, pp. 1–24, 2017. URL http://arxiv.org/abs/1706.08498.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 503, + 390 + ], + "lines": [ + { + "bbox": [ + 106, + 367, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 428, + 379 + ], + "score": 1.0, + "content": "Peter L Bartlett and Shahar Mendelson. Rademacher and Gaussian Complexities", + "type": "text" + }, + { + "bbox": [ + 428, + 370, + 435, + 376 + ], + "score": 0.4, + "content": ":", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 367, + 505, + 379 + ], + "score": 1.0, + "content": "Risk Bounds and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 378, + 428, + 390 + ], + "spans": [ + { + "bbox": [ + 116, + 378, + 428, + 390 + ], + "score": 1.0, + "content": "Structural Results. Journal of Machine Learning Research, 3:463–482, 2002.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 396, + 504, + 430 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "score": 1.0, + "content": "Florent Benaych-Georges and Raj Rao Nadakuditi. The singular values and vectors of low rank", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 408, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 115, + 408, + 506, + 421 + ], + "score": 1.0, + "content": "perturbations of large rectangular random matrices. Journal of Multivariate Analysis, 111:120–135,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 418, + 351, + 431 + ], + "spans": [ + { + "bbox": [ + 115, + 418, + 351, + 431 + ], + "score": 1.0, + "content": "2012. ISSN 0047259X. doi: 10.1016/j.jmva.2012.04.019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 437, + 504, + 460 + ], + "lines": [ + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "Daxiang Dong, Hua Wu, Wei He, Dianhai Yu, and Haifeng Wang. Multi-Task Learning for Multiple", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 447, + 317, + 460 + ], + "spans": [ + { + "bbox": [ + 115, + 447, + 317, + 460 + ], + "score": 1.0, + "content": "Language Translation. Acl, pp. 1723–1732, 2015.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 466, + 504, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "score": 1.0, + "content": "Gintare Karolina Dziugaite and Daniel M. Roy. Computing Nonvacuous Generalization Bounds", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 116, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "for Deep (Stochastic) Neural Networks with Many More Parameters than Training Data. arXiv", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 114, + 489, + 394, + 501 + ], + "spans": [ + { + "bbox": [ + 114, + 489, + 394, + 501 + ], + "score": 1.0, + "content": "preprint, 2017. URL http://arxiv.org/abs/1703.11008.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 507, + 506, + 540 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "score": 1.0, + "content": "Noah Golowich, Alexander Rakhlin, and Ohad Shamir. Size-Independent Sample Complexity of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 517, + 508, + 531 + ], + "spans": [ + { + "bbox": [ + 115, + 517, + 508, + 531 + ], + "score": 1.0, + "content": "Neural Networks. arXiv preprint, (1):1–26, 2017. URL http://arxiv.org/abs/1712.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 529, + 152, + 541 + ], + "spans": [ + { + "bbox": [ + 116, + 529, + 152, + 541 + ], + "score": 1.0, + "content": "06541.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 105, + 547, + 504, + 570 + ], + "lines": [ + { + "bbox": [ + 106, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "I.J. Goodfellow, J Pouget-Abadie, and Mehdi Mirza. Generative Adversarial Networks. arXiv", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 558, + 448, + 571 + ], + "spans": [ + { + "bbox": [ + 114, + 558, + 448, + 571 + ], + "score": 1.0, + "content": "preprint, pp. 1–9, 2014. ISSN 10495258. doi: 10.1001/jamainternmed.2016.8245.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 105, + 577, + 504, + 600 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "Steven S. Hansen, Andrew Lampinen, Gaurav Suri, and James L. McClelland. Building on prior", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 587, + 421, + 600 + ], + "spans": [ + { + "bbox": [ + 115, + 587, + 421, + 600 + ], + "score": 1.0, + "content": "knowledge without building it in. Behavioral and Brain Sciences, 40, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 107, + 606, + 504, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 605, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 620 + ], + "score": 1.0, + "content": "Andrew Lampinen, Shaw Hsu, and James L Mcclelland. Analogies Emerge from Learning Dyamics", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 616, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 115, + 616, + 506, + 632 + ], + "score": 1.0, + "content": "in Neural Networks. Proceedings of the 39th Annual Conference of the Cognitive Science Society,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 629, + 207, + 640 + ], + "spans": [ + { + "bbox": [ + 115, + 629, + 207, + 640 + ], + "score": 1.0, + "content": "pp. 2512–2517, 2017.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 105, + 646, + 504, + 670 + ], + "lines": [ + { + "bbox": [ + 106, + 647, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 647, + 505, + 660 + ], + "score": 1.0, + "content": "Minh-Thang Luong, Quoc V. Le, Ilya Sutskever, Oriol Vinyals, and Lukasz Kaiser. Multi-task", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 658, + 330, + 671 + ], + "spans": [ + { + "bbox": [ + 115, + 658, + 330, + 671 + ], + "score": 1.0, + "content": "Sequence to Sequence Learning. Iclr, pp. 1–9, 2016.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 108, + 677, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 507, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 507, + 690 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei a Rusu, Joel Veness, Marc G Bellemare,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 115, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, Stig Petersen, Charles", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "Beattie, Amir Sadik, Ioannis Antonoglou, Helen King, Dharshan Kumaran, Daan Wierstra, Shane", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 709, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 507, + 723 + ], + "score": 1.0, + "content": "Legg, and Demis Hassabis. Human-level control through deep reinforcement learning. Nature,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 720, + 408, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 408, + 733 + ], + "score": 1.0, + "content": "518(7540):529–533, 2015. ISSN 0028-0836. doi: 10.1038/nature14236.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 182 + ], + "lines": [], + "index": 4, + "bbox_fs": [ + 105, + 83, + 506, + 183 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 198, + 175, + 210 + ], + "lines": [ + { + "bbox": [ + 106, + 198, + 176, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 176, + 211 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 216, + 504, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "Madhu S. Advani and Andrew M. Saxe. High-dimensional dynamics of generalization error in neural", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 227, + 251, + 239 + ], + "spans": [ + { + "bbox": [ + 115, + 227, + 251, + 239 + ], + "score": 1.0, + "content": "networks. arXiv, pp. 1–32, 2017.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 216, + 505, + 239 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 245, + 504, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 246, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 505, + 258 + ], + "score": 1.0, + "content": "Sanjeev Arora, Rong Ge, Behnam Neyshabur, and Yi Zhang. Stronger generalization bounds for", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 256, + 504, + 270 + ], + "spans": [ + { + "bbox": [ + 115, + 256, + 504, + 270 + ], + "score": 1.0, + "content": "deep nets via a compression approach. arXiv preprint, pp. 1–39, 2018. URL http://arxiv.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 268, + 230, + 279 + ], + "spans": [ + { + "bbox": [ + 116, + 268, + 230, + 279 + ], + "score": 1.0, + "content": "org/abs/1802.05296.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 246, + 505, + 279 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 285, + 504, + 331 + ], + "lines": [ + { + "bbox": [ + 106, + 285, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 505, + 299 + ], + "score": 1.0, + "content": "Devansh Arpit, Stanisław Jastrze¸bski, Nicolas Ballas, David Krueger, Emmanuel Bengio, Maxinder S", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 298, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 115, + 298, + 505, + 309 + ], + "score": 1.0, + "content": "Kanwal, Tegan Maharaj, Asja Fischer, Aaron Courville, Yoshua Bengio, and Simon Lacoste-Julien.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 114, + 308, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 114, + 308, + 506, + 321 + ], + "score": 1.0, + "content": "A Closer Look at Memorization in Deep Networks. arXiv preprint, 2017. ISSN 1938-7228. URL", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 320, + 307, + 331 + ], + "spans": [ + { + "bbox": [ + 116, + 320, + 307, + 331 + ], + "score": 1.0, + "content": "http://arxiv.org/abs/1706.05394.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 285, + 506, + 331 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 337, + 503, + 361 + ], + "lines": [ + { + "bbox": [ + 106, + 338, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 505, + 351 + ], + "score": 1.0, + "content": "Peter Bartlett, Dylan J. Foster, and Matus Telgarsky. Spectrally-normalized margin bounds for neural", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 349, + 500, + 361 + ], + "spans": [ + { + "bbox": [ + 115, + 349, + 500, + 361 + ], + "score": 1.0, + "content": "networks. arXiv preprint, pp. 1–24, 2017. URL http://arxiv.org/abs/1706.08498.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 338, + 505, + 361 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 503, + 390 + ], + "lines": [ + { + "bbox": [ + 106, + 367, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 428, + 379 + ], + "score": 1.0, + "content": "Peter L Bartlett and Shahar Mendelson. Rademacher and Gaussian Complexities", + "type": "text" + }, + { + "bbox": [ + 428, + 370, + 435, + 376 + ], + "score": 0.4, + "content": ":", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 367, + 505, + 379 + ], + "score": 1.0, + "content": "Risk Bounds and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 378, + 428, + 390 + ], + "spans": [ + { + "bbox": [ + 116, + 378, + 428, + 390 + ], + "score": 1.0, + "content": "Structural Results. Journal of Machine Learning Research, 3:463–482, 2002.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 367, + 505, + 390 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 396, + 504, + 430 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "score": 1.0, + "content": "Florent Benaych-Georges and Raj Rao Nadakuditi. The singular values and vectors of low rank", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 408, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 115, + 408, + 506, + 421 + ], + "score": 1.0, + "content": "perturbations of large rectangular random matrices. Journal of Multivariate Analysis, 111:120–135,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 418, + 351, + 431 + ], + "spans": [ + { + "bbox": [ + 115, + 418, + 351, + 431 + ], + "score": 1.0, + "content": "2012. ISSN 0047259X. doi: 10.1016/j.jmva.2012.04.019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 396, + 506, + 431 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 437, + 504, + 460 + ], + "lines": [ + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "Daxiang Dong, Hua Wu, Wei He, Dianhai Yu, and Haifeng Wang. Multi-Task Learning for Multiple", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 447, + 317, + 460 + ], + "spans": [ + { + "bbox": [ + 115, + 447, + 317, + 460 + ], + "score": 1.0, + "content": "Language Translation. Acl, pp. 1723–1732, 2015.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 437, + 505, + 460 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 466, + 504, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "score": 1.0, + "content": "Gintare Karolina Dziugaite and Daniel M. Roy. Computing Nonvacuous Generalization Bounds", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 116, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "for Deep (Stochastic) Neural Networks with Many More Parameters than Training Data. arXiv", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 114, + 489, + 394, + 501 + ], + "spans": [ + { + "bbox": [ + 114, + 489, + 394, + 501 + ], + "score": 1.0, + "content": "preprint, 2017. URL http://arxiv.org/abs/1703.11008.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 466, + 505, + 501 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 507, + 506, + 540 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "score": 1.0, + "content": "Noah Golowich, Alexander Rakhlin, and Ohad Shamir. Size-Independent Sample Complexity of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 517, + 508, + 531 + ], + "spans": [ + { + "bbox": [ + 115, + 517, + 508, + 531 + ], + "score": 1.0, + "content": "Neural Networks. arXiv preprint, (1):1–26, 2017. URL http://arxiv.org/abs/1712.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 529, + 152, + 541 + ], + "spans": [ + { + "bbox": [ + 116, + 529, + 152, + 541 + ], + "score": 1.0, + "content": "06541.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 506, + 508, + 541 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 547, + 504, + 570 + ], + "lines": [ + { + "bbox": [ + 106, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "I.J. Goodfellow, J Pouget-Abadie, and Mehdi Mirza. Generative Adversarial Networks. arXiv", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 558, + 448, + 571 + ], + "spans": [ + { + "bbox": [ + 114, + 558, + 448, + 571 + ], + "score": 1.0, + "content": "preprint, pp. 1–9, 2014. ISSN 10495258. doi: 10.1001/jamainternmed.2016.8245.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 547, + 505, + 571 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 577, + 504, + 600 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "Steven S. Hansen, Andrew Lampinen, Gaurav Suri, and James L. McClelland. Building on prior", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 587, + 421, + 600 + ], + "spans": [ + { + "bbox": [ + 115, + 587, + 421, + 600 + ], + "score": 1.0, + "content": "knowledge without building it in. Behavioral and Brain Sciences, 40, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 577, + 505, + 600 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 606, + 504, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 605, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 620 + ], + "score": 1.0, + "content": "Andrew Lampinen, Shaw Hsu, and James L Mcclelland. Analogies Emerge from Learning Dyamics", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 616, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 115, + 616, + 506, + 632 + ], + "score": 1.0, + "content": "in Neural Networks. Proceedings of the 39th Annual Conference of the Cognitive Science Society,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 629, + 207, + 640 + ], + "spans": [ + { + "bbox": [ + 115, + 629, + 207, + 640 + ], + "score": 1.0, + "content": "pp. 2512–2517, 2017.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 605, + 506, + 640 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 646, + 504, + 670 + ], + "lines": [ + { + "bbox": [ + 106, + 647, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 647, + 505, + 660 + ], + "score": 1.0, + "content": "Minh-Thang Luong, Quoc V. Le, Ilya Sutskever, Oriol Vinyals, and Lukasz Kaiser. Multi-task", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 658, + 330, + 671 + ], + "spans": [ + { + "bbox": [ + 115, + 658, + 330, + 671 + ], + "score": 1.0, + "content": "Sequence to Sequence Learning. Iclr, pp. 1–9, 2016.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 106, + 647, + 505, + 671 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 677, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 507, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 507, + 690 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei a Rusu, Joel Veness, Marc G Bellemare,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 115, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, Stig Petersen, Charles", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "Beattie, Amir Sadik, Ioannis Antonoglou, Helen King, Dharshan Kumaran, Daan Wierstra, Shane", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 709, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 507, + 723 + ], + "score": 1.0, + "content": "Legg, and Demis Hassabis. Human-level control through deep reinforcement learning. Nature,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 720, + 408, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 408, + 733 + ], + "score": 1.0, + "content": "518(7540):529–533, 2015. ISSN 0028-0836. doi: 10.1038/nature14236.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45, + "bbox_fs": [ + 106, + 676, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Behnam Neyshabur, Ryota Tomioka, and Nathan Srebro. Norm-based capacity control in neural", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "networks. Conference on Learning Theory (COLT), pp. 1376–1401, 2015. ISSN 15337928. URL", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 308, + 117 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 308, + 117 + ], + "score": 1.0, + "content": "http://arxiv.org/abs/1503.00036.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 110, + 123, + 503, + 157 + ], + "lines": [ + { + "bbox": [ + 107, + 122, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 107, + 122, + 505, + 136 + ], + "score": 1.0, + "content": "Behnam Neyshabur, Srinadh Bhojanapalli, and Nathan Srebro. A PAC-Bayesian Approach to", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 134, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 134, + 505, + 147 + ], + "score": 1.0, + "content": "Spectrally-Normalized Margin Bounds for Neural Networks. arXiv preprint, (2017):1–9, 2017.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 144, + 330, + 158 + ], + "spans": [ + { + "bbox": [ + 116, + 144, + 330, + 158 + ], + "score": 1.0, + "content": "URL http://arxiv.org/abs/1707.09564.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 108, + 164, + 504, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 164, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 505, + 178 + ], + "score": 1.0, + "content": "Jeffrey Pennington, Samuel S. Schoenholz, and Surya Ganguli. Resurrecting the sigmoid in deep", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 115, + 175, + 506, + 189 + ], + "score": 1.0, + "content": "learning through dynamical isometry: theory and practice. Advances in Neural Information", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 187, + 504, + 199 + ], + "spans": [ + { + "bbox": [ + 116, + 187, + 504, + 199 + ], + "score": 1.0, + "content": "Processing Systems 30, (Nips):1–11, 2017. URL http://arxiv.org/abs/1711.04735.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 205, + 506, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 205, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 506, + 218 + ], + "score": 1.0, + "content": "Jeffrey Pennington, Samuel S. Schoenholz, and Surya Ganguli. The Emergence of Spectral Uni-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 216, + 508, + 228 + ], + "spans": [ + { + "bbox": [ + 115, + 216, + 508, + 228 + ], + "score": 1.0, + "content": "versality in Deep Networks. In AISTATS 2018, 2018. URL http://arxiv.org/abs/1802.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 227, + 152, + 239 + ], + "spans": [ + { + "bbox": [ + 116, + 227, + 152, + 239 + ], + "score": 1.0, + "content": "09979.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 245, + 504, + 280 + ], + "lines": [ + { + "bbox": [ + 106, + 246, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 506, + 259 + ], + "score": 1.0, + "content": "Andrei A Rusu, Sergio Gomez Colmenarejo, Caglar Gulcehre, Guillaume Desjardins, James Kirk-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 257, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 115, + 257, + 506, + 271 + ], + "score": 1.0, + "content": "patrick, Razvan Pascanu, Volodymyr Mnih, Koray Kavukcuoglu, and Raia Hadsell. Policy", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 268, + 442, + 280 + ], + "spans": [ + { + "bbox": [ + 116, + 268, + 442, + 280 + ], + "score": 1.0, + "content": "Distillation. arXiv, pp. 1–12, 2015. ISSN 0028-0836. doi: 10.1038/nature14236.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 286, + 505, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 286, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 505, + 300 + ], + "score": 1.0, + "content": "Andrew M. Saxe, James L. McClelland, and Surya Ganguli. Exact solutions to the nonlinear dynamics", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 297, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 115, + 297, + 506, + 311 + ], + "score": 1.0, + "content": "of learning in deep linear neural networks. Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 310, + 181, + 321 + ], + "spans": [ + { + "bbox": [ + 115, + 310, + 181, + 321 + ], + "score": 1.0, + "content": "pp. 1–9, 2013a.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 327, + 504, + 362 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 342 + ], + "score": 1.0, + "content": "Andrew M Saxe, James L Mcclelland, and Surya Ganguli. Learning hierarchical category structure", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 114, + 338, + 507, + 353 + ], + "spans": [ + { + "bbox": [ + 114, + 338, + 507, + 353 + ], + "score": 1.0, + "content": "in deep neural networks. Proceedings of the 35th annual meeting of the Cognitive Science Society,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 351, + 212, + 362 + ], + "spans": [ + { + "bbox": [ + 115, + 351, + 212, + 362 + ], + "score": 1.0, + "content": "pp. 1271–1276, 2013b.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 108, + 369, + 504, + 403 + ], + "lines": [ + { + "bbox": [ + 106, + 368, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 505, + 382 + ], + "score": 1.0, + "content": "Samuel S. Schoenholz, Justin Gilmer, Surya Ganguli, and Jascha Sohl-Dickstein. Deep Information", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 379, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 115, + 379, + 506, + 394 + ], + "score": 1.0, + "content": "Propagation. In International Conference on Learning Representations (ICLR),, number 2016, pp.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 390, + 380, + 403 + ], + "spans": [ + { + "bbox": [ + 115, + 390, + 380, + 403 + ], + "score": 1.0, + "content": "1–18, 2016. URL http://arxiv.org/abs/1611.01232.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 410, + 506, + 477 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 506, + 423 + ], + "score": 1.0, + "content": "David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 114, + 420, + 507, + 435 + ], + "spans": [ + { + "bbox": [ + 114, + 420, + 507, + 435 + ], + "score": 1.0, + "content": "Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, Sander Dieleman,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 431, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 115, + 431, + 506, + 445 + ], + "score": 1.0, + "content": "Dominik Grewe, John Nham, Nal Kalchbrenner, Ilya Sutskever, Timothy Lillicrap, Madeleine", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 115, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "Leach, and Koray Kavukcuoglu. Mastering the game of Go with deep neural networks and tree", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 453, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 115, + 453, + 506, + 466 + ], + "score": 1.0, + "content": "search. Nature, 529(7585):484–489, 2016. ISSN 0028-0836. doi: 10.1038/nature16961. URL", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 466, + 343, + 477 + ], + "spans": [ + { + "bbox": [ + 116, + 466, + 343, + 477 + ], + "score": 1.0, + "content": "http://dx.doi.org/10.1038/nature16961.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 506, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Understanding", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 495, + 507, + 508 + ], + "spans": [ + { + "bbox": [ + 115, + 495, + 507, + 508 + ], + "score": 1.0, + "content": "deep learning requires rethinking generalization. arXiv preprint, 2016. ISSN 10414347. doi:", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 505, + 456, + 518 + ], + "spans": [ + { + "bbox": [ + 115, + 505, + 456, + 518 + ], + "score": 1.0, + "content": "10.1109/TKDE.2015.2507132. URL http://arxiv.org/abs/1611.03530.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "title", + "bbox": [ + 107, + 539, + 369, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 370, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 370, + 554 + ], + "score": 1.0, + "content": "A LEARNING DYNAMICS FOR DEEPER NETWORKS", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 563, + 506, + 608 + ], + "lines": [ + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "score": 1.0, + "content": "In the main text, we described the dynamics of how a single-hidden-layer network converges toward", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 574, + 507, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 237, + 587 + ], + "score": 1.0, + "content": "the training data singular modes", + "type": "text" + }, + { + "bbox": [ + 237, + 575, + 291, + 587 + ], + "score": 0.93, + "content": "\\{ \\hat { s } ^ { \\alpha } , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 574, + 507, + 587 + ], + "score": 1.0, + "content": ", which were originally derived in Saxe et al. (2013a).", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 585, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 297, + 599 + ], + "score": 1.0, + "content": "There it was also proven that for a network with", + "type": "text" + }, + { + "bbox": [ + 297, + 586, + 309, + 597 + ], + "score": 0.86, + "content": "N _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 585, + 354, + 599 + ], + "score": 1.0, + "content": "layers (i.e.", + "type": "text" + }, + { + "bbox": [ + 355, + 586, + 384, + 597 + ], + "score": 0.88, + "content": "N _ { l } - 2", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 585, + 506, + 599 + ], + "score": 1.0, + "content": "hidden layers), the strength of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 597, + 272, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 272, + 609 + ], + "score": 1.0, + "content": "the mode obeys the differential equation:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5 + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 613, + 383, + 637 + ], + "lines": [ + { + "bbox": [ + 227, + 613, + 383, + 637 + ], + "spans": [ + { + "bbox": [ + 227, + 613, + 383, + 637 + ], + "score": 0.93, + "content": "\\tau { \\frac { d } { d t } } u = ( N _ { l } - 1 ) u ^ { 2 - 2 / ( N _ { l } - 1 ) } ( s - u )", + "type": "interline_equation", + "image_path": "e8382140836b5cfe34671dd944c538f5a90a3735e89a8a2bf073af8301a4e25f.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 227, + 613, + 383, + 637 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 641, + 504, + 665 + ], + "lines": [ + { + "bbox": [ + 105, + 640, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 656 + ], + "score": 1.0, + "content": "This equation is separable and can be integrated for any integer number of layers. In particular, we", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 653, + 328, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 328, + 666 + ], + "score": 1.0, + "content": "consider the case of 5 layers (3 hidden), in which case:", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 669, + 385, + 704 + ], + "lines": [ + { + "bbox": [ + 225, + 669, + 385, + 704 + ], + "spans": [ + { + "bbox": [ + 225, + 669, + 385, + 704 + ], + "score": 0.94, + "content": "t ( s , \\hat { s } ) = \\frac { \\tau } { 2 } \\left[ \\frac { \\operatorname { t a n h } ^ { - 1 } \\left( \\sqrt { \\frac { u } { \\hat { s } } } \\right) } { \\hat { s } ^ { 3 / 2 } } - \\frac { 1 } { \\hat { s } \\sqrt { u } } \\right] _ { \\epsilon } ^ { s }", + "type": "interline_equation", + "image_path": "73166119140c9bab6af2d2ea3b4f65abbb44c69b0e083ef0870b03452afa4a5e.jpg" + } + ] + } + ], + "index": 41.5, + "virtual_lines": [ + { + "bbox": [ + 225, + 669, + 385, + 686.5 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 225, + 686.5, + 385, + 704.0 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 333, + 723 + ], + "score": 1.0, + "content": "This expression cannot be analytically inverted to find", + "type": "text" + }, + { + "bbox": [ + 333, + 709, + 359, + 722 + ], + "score": 0.93, + "content": "s ( t , { \\hat { s } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 708, + 505, + 723 + ], + "score": 1.0, + "content": ", so we numerically invert it where", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 719, + 150, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 150, + 734 + ], + "score": 1.0, + "content": "necessary.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "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, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Behnam Neyshabur, Ryota Tomioka, and Nathan Srebro. Norm-based capacity control in neural", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "networks. Conference on Learning Theory (COLT), pp. 1376–1401, 2015. ISSN 15337928. URL", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 308, + 117 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 308, + 117 + ], + "score": 1.0, + "content": "http://arxiv.org/abs/1503.00036.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 82, + 505, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 110, + 123, + 503, + 157 + ], + "lines": [ + { + "bbox": [ + 107, + 122, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 107, + 122, + 505, + 136 + ], + "score": 1.0, + "content": "Behnam Neyshabur, Srinadh Bhojanapalli, and Nathan Srebro. A PAC-Bayesian Approach to", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 134, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 134, + 505, + 147 + ], + "score": 1.0, + "content": "Spectrally-Normalized Margin Bounds for Neural Networks. arXiv preprint, (2017):1–9, 2017.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 144, + 330, + 158 + ], + "spans": [ + { + "bbox": [ + 116, + 144, + 330, + 158 + ], + "score": 1.0, + "content": "URL http://arxiv.org/abs/1707.09564.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 107, + 122, + 505, + 158 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 164, + 504, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 164, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 505, + 178 + ], + "score": 1.0, + "content": "Jeffrey Pennington, Samuel S. Schoenholz, and Surya Ganguli. Resurrecting the sigmoid in deep", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 115, + 175, + 506, + 189 + ], + "score": 1.0, + "content": "learning through dynamical isometry: theory and practice. Advances in Neural Information", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 187, + 504, + 199 + ], + "spans": [ + { + "bbox": [ + 116, + 187, + 504, + 199 + ], + "score": 1.0, + "content": "Processing Systems 30, (Nips):1–11, 2017. URL http://arxiv.org/abs/1711.04735.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 164, + 506, + 199 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 205, + 506, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 205, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 506, + 218 + ], + "score": 1.0, + "content": "Jeffrey Pennington, Samuel S. Schoenholz, and Surya Ganguli. The Emergence of Spectral Uni-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 216, + 508, + 228 + ], + "spans": [ + { + "bbox": [ + 115, + 216, + 508, + 228 + ], + "score": 1.0, + "content": "versality in Deep Networks. In AISTATS 2018, 2018. URL http://arxiv.org/abs/1802.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 227, + 152, + 239 + ], + "spans": [ + { + "bbox": [ + 116, + 227, + 152, + 239 + ], + "score": 1.0, + "content": "09979.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 205, + 508, + 239 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 245, + 504, + 280 + ], + "lines": [ + { + "bbox": [ + 106, + 246, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 506, + 259 + ], + "score": 1.0, + "content": "Andrei A Rusu, Sergio Gomez Colmenarejo, Caglar Gulcehre, Guillaume Desjardins, James Kirk-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 257, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 115, + 257, + 506, + 271 + ], + "score": 1.0, + "content": "patrick, Razvan Pascanu, Volodymyr Mnih, Koray Kavukcuoglu, and Raia Hadsell. Policy", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 268, + 442, + 280 + ], + "spans": [ + { + "bbox": [ + 116, + 268, + 442, + 280 + ], + "score": 1.0, + "content": "Distillation. arXiv, pp. 1–12, 2015. ISSN 0028-0836. doi: 10.1038/nature14236.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 246, + 506, + 280 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 286, + 505, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 286, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 505, + 300 + ], + "score": 1.0, + "content": "Andrew M. Saxe, James L. McClelland, and Surya Ganguli. Exact solutions to the nonlinear dynamics", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 297, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 115, + 297, + 506, + 311 + ], + "score": 1.0, + "content": "of learning in deep linear neural networks. Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 310, + 181, + 321 + ], + "spans": [ + { + "bbox": [ + 115, + 310, + 181, + 321 + ], + "score": 1.0, + "content": "pp. 1–9, 2013a.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 286, + 506, + 321 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 327, + 504, + 362 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 342 + ], + "score": 1.0, + "content": "Andrew M Saxe, James L Mcclelland, and Surya Ganguli. Learning hierarchical category structure", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 114, + 338, + 507, + 353 + ], + "spans": [ + { + "bbox": [ + 114, + 338, + 507, + 353 + ], + "score": 1.0, + "content": "in deep neural networks. Proceedings of the 35th annual meeting of the Cognitive Science Society,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 351, + 212, + 362 + ], + "spans": [ + { + "bbox": [ + 115, + 351, + 212, + 362 + ], + "score": 1.0, + "content": "pp. 1271–1276, 2013b.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 326, + 507, + 362 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 369, + 504, + 403 + ], + "lines": [ + { + "bbox": [ + 106, + 368, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 505, + 382 + ], + "score": 1.0, + "content": "Samuel S. Schoenholz, Justin Gilmer, Surya Ganguli, and Jascha Sohl-Dickstein. Deep Information", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 379, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 115, + 379, + 506, + 394 + ], + "score": 1.0, + "content": "Propagation. In International Conference on Learning Representations (ICLR),, number 2016, pp.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 390, + 380, + 403 + ], + "spans": [ + { + "bbox": [ + 115, + 390, + 380, + 403 + ], + "score": 1.0, + "content": "1–18, 2016. URL http://arxiv.org/abs/1611.01232.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 106, + 368, + 506, + 403 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 410, + 506, + 477 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 506, + 423 + ], + "score": 1.0, + "content": "David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 114, + 420, + 507, + 435 + ], + "spans": [ + { + "bbox": [ + 114, + 420, + 507, + 435 + ], + "score": 1.0, + "content": "Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, Sander Dieleman,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 431, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 115, + 431, + 506, + 445 + ], + "score": 1.0, + "content": "Dominik Grewe, John Nham, Nal Kalchbrenner, Ilya Sutskever, Timothy Lillicrap, Madeleine", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 115, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "Leach, and Koray Kavukcuoglu. Mastering the game of Go with deep neural networks and tree", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 453, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 115, + 453, + 506, + 466 + ], + "score": 1.0, + "content": "search. Nature, 529(7585):484–489, 2016. ISSN 0028-0836. doi: 10.1038/nature16961. URL", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 466, + 343, + 477 + ], + "spans": [ + { + "bbox": [ + 116, + 466, + 343, + 477 + ], + "score": 1.0, + "content": "http://dx.doi.org/10.1038/nature16961.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 408, + 507, + 477 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 506, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Understanding", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 495, + 507, + 508 + ], + "spans": [ + { + "bbox": [ + 115, + 495, + 507, + 508 + ], + "score": 1.0, + "content": "deep learning requires rethinking generalization. arXiv preprint, 2016. ISSN 10414347. doi:", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 505, + 456, + 518 + ], + "spans": [ + { + "bbox": [ + 115, + 505, + 456, + 518 + ], + "score": 1.0, + "content": "10.1109/TKDE.2015.2507132. URL http://arxiv.org/abs/1611.03530.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 484, + 507, + 518 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 539, + 369, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 370, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 370, + 554 + ], + "score": 1.0, + "content": "A LEARNING DYNAMICS FOR DEEPER NETWORKS", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 563, + 506, + 608 + ], + "lines": [ + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "score": 1.0, + "content": "In the main text, we described the dynamics of how a single-hidden-layer network converges toward", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 574, + 507, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 237, + 587 + ], + "score": 1.0, + "content": "the training data singular modes", + "type": "text" + }, + { + "bbox": [ + 237, + 575, + 291, + 587 + ], + "score": 0.93, + "content": "\\{ \\hat { s } ^ { \\alpha } , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 574, + 507, + 587 + ], + "score": 1.0, + "content": ", which were originally derived in Saxe et al. (2013a).", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 585, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 297, + 599 + ], + "score": 1.0, + "content": "There it was also proven that for a network with", + "type": "text" + }, + { + "bbox": [ + 297, + 586, + 309, + 597 + ], + "score": 0.86, + "content": "N _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 585, + 354, + 599 + ], + "score": 1.0, + "content": "layers (i.e.", + "type": "text" + }, + { + "bbox": [ + 355, + 586, + 384, + 597 + ], + "score": 0.88, + "content": "N _ { l } - 2", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 585, + 506, + 599 + ], + "score": 1.0, + "content": "hidden layers), the strength of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 597, + 272, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 272, + 609 + ], + "score": 1.0, + "content": "the mode obeys the differential equation:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 564, + 507, + 609 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 613, + 383, + 637 + ], + "lines": [ + { + "bbox": [ + 227, + 613, + 383, + 637 + ], + "spans": [ + { + "bbox": [ + 227, + 613, + 383, + 637 + ], + "score": 0.93, + "content": "\\tau { \\frac { d } { d t } } u = ( N _ { l } - 1 ) u ^ { 2 - 2 / ( N _ { l } - 1 ) } ( s - u )", + "type": "interline_equation", + "image_path": "e8382140836b5cfe34671dd944c538f5a90a3735e89a8a2bf073af8301a4e25f.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 227, + 613, + 383, + 637 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 641, + 504, + 665 + ], + "lines": [ + { + "bbox": [ + 105, + 640, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 656 + ], + "score": 1.0, + "content": "This equation is separable and can be integrated for any integer number of layers. In particular, we", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 653, + 328, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 328, + 666 + ], + "score": 1.0, + "content": "consider the case of 5 layers (3 hidden), in which case:", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 640, + 506, + 666 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 669, + 385, + 704 + ], + "lines": [ + { + "bbox": [ + 225, + 669, + 385, + 704 + ], + "spans": [ + { + "bbox": [ + 225, + 669, + 385, + 704 + ], + "score": 0.94, + "content": "t ( s , \\hat { s } ) = \\frac { \\tau } { 2 } \\left[ \\frac { \\operatorname { t a n h } ^ { - 1 } \\left( \\sqrt { \\frac { u } { \\hat { s } } } \\right) } { \\hat { s } ^ { 3 / 2 } } - \\frac { 1 } { \\hat { s } \\sqrt { u } } \\right] _ { \\epsilon } ^ { s }", + "type": "interline_equation", + "image_path": "73166119140c9bab6af2d2ea3b4f65abbb44c69b0e083ef0870b03452afa4a5e.jpg" + } + ] + } + ], + "index": 41.5, + "virtual_lines": [ + { + "bbox": [ + 225, + 669, + 385, + 686.5 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 225, + 686.5, + 385, + 704.0 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 333, + 723 + ], + "score": 1.0, + "content": "This expression cannot be analytically inverted to find", + "type": "text" + }, + { + "bbox": [ + 333, + 709, + 359, + 722 + ], + "score": 0.93, + "content": "s ( t , { \\hat { s } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 708, + 505, + 723 + ], + "score": 1.0, + "content": ", so we numerically invert it where", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 719, + 150, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 150, + 734 + ], + "score": 1.0, + "content": "necessary.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 708, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 420, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 421, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 421, + 96 + ], + "score": 1.0, + "content": "B ALIGNMENT LAG IN RANDOMLY INITIALIZED NETWORKS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 506, + 118 + ], + "score": 1.0, + "content": "As noted in the main text, the randomly-initialized networks behave quite similarly to the TA networks,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 506, + 130 + ], + "score": 1.0, + "content": "except that the randomly-initialized networks show a lag due to the time it takes for the network’s", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 129, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 505, + 141 + ], + "score": 1.0, + "content": "modes to align with the data modes. In fig. 9 we explore this lag by plotting the alignment of the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 140, + 453, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 453, + 151 + ], + "score": 1.0, + "content": "modes and the increase in the singular value for several randomly initialized networks.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 155, + 505, + 222 + ], + "lines": [ + { + "bbox": [ + 105, + 155, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 505, + 169 + ], + "score": 1.0, + "content": "Notice that stronger modes align more quickly. Furthermore, the mode alignment is relatively", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 167, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 505, + 179 + ], + "score": 1.0, + "content": "independent – whether the teacher is rank 1 or rank 3, the alignment of the modes is similar for the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 178, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 505, + 190 + ], + "score": 1.0, + "content": "mode of singular value 2. Most importantly, note how the deeper networks show substantially slower", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 189, + 504, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 504, + 201 + ], + "score": 1.0, + "content": "mode alignment, with alignment not completed until around when the singular value increases. This", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 200, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 200, + 505, + 212 + ], + "score": 1.0, + "content": "explains why deeper networks show a larger lag between randomly-initialized and TA networks – the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 211, + 329, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 329, + 224 + ], + "score": 1.0, + "content": "alignment process is much slower for deeper networks.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 106, + 239, + 372, + 252 + ], + "lines": [ + { + "bbox": [ + 106, + 237, + 374, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 374, + 253 + ], + "score": 1.0, + "content": "C TRAIN AND TEST ERRORS AFTER A PROJECTION", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 263, + 504, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "In the case of transfer learning, or more generally when we want to evaluate a network’s loss on a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 275, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 506, + 287 + ], + "score": 1.0, + "content": "subset of its outputs, we need to use a slight generalization of the train and test error formulas given", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 104, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "in the main text. Suppose we are interested in the train and test errors after applying a projection", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 297, + 155, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 142, + 308 + ], + "score": 1.0, + "content": "operator", + "type": "text" + }, + { + "bbox": [ + 142, + 297, + 151, + 307 + ], + "score": 0.65, + "content": "\\mathbf { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 297, + 155, + 308 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 313, + 468, + 352 + ], + "lines": [ + { + "bbox": [ + 142, + 313, + 468, + 352 + ], + "spans": [ + { + "bbox": [ + 142, + 313, + 468, + 352 + ], + "score": 0.93, + "content": "\\varepsilon _ { \\mathrm { t r a i n } } \\equiv \\frac { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { P } \\mathbf { W } \\hat { \\mathbf { x } } ^ { \\mu } - \\mathbf { P } \\hat { \\mathbf { y } } ^ { \\mu } | | _ { 2 } ^ { 2 } } { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { P } \\hat { \\mathbf { y } } ^ { \\mu } | | _ { 2 } ^ { 2 } } , \\varepsilon _ { \\mathrm { t e s t } } \\equiv \\frac { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { P } \\mathbf { W } \\overline { { \\mathbf { x } } } ^ { \\mu } - \\mathbf { P } \\overline { { \\mathbf { y } } } ^ { \\mu } | | _ { 2 } ^ { 2 } } { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { P } \\overline { { \\mathbf { y } } } ^ { \\mu } | | _ { 2 } ^ { 2 } } ,", + "type": "interline_equation", + "image_path": "824d5e77da2fc9bf0002ff555d48fd7e0608505786d086f2d942b570d2f3b38b.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 142, + 313, + 468, + 326.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 142, + 326.0, + 468, + 339.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 142, + 339.0, + 468, + 352.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 342, + 368 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 343, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 343, + 370 + ], + "score": 1.0, + "content": "respectively. As in the main text, we can rexpress these as:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 372, + 441, + 404 + ], + "lines": [ + { + "bbox": [ + 169, + 372, + 441, + 404 + ], + "spans": [ + { + "bbox": [ + 169, + 372, + 441, + 404 + ], + "score": 0.9, + "content": "\\varepsilon _ { \\mathrm { t r a i n } } = \\frac { \\mathrm { T r } { \\mathbf { W } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } { \\mathbf { W } } - 2 \\mathrm { T r } { \\mathbf { W } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\Sigma ^ { 3 1 } + \\mathrm { T r } { \\Sigma ^ { 3 1 } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\Sigma ^ { 3 1 } } { \\mathrm { T r } \\Sigma ^ { 3 1 } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\Sigma ^ { 3 1 } } ,", + "type": "interline_equation", + "image_path": "b3dfe306ce0e4b0416590bb0eb5e48c67ca0e50453c4ad1d27c97a97d4efeb9e.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 169, + 372, + 441, + 382.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 169, + 382.6666666666667, + 441, + 393.33333333333337 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 169, + 393.33333333333337, + 441, + 404.00000000000006 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 408, + 432, + 442 + ], + "lines": [ + { + "bbox": [ + 178, + 408, + 432, + 442 + ], + "spans": [ + { + "bbox": [ + 178, + 408, + 432, + 442 + ], + "score": 0.9, + "content": "\\varepsilon _ { \\mathrm { t e s t } } = \\frac { \\mathrm { T r } { \\mathbf { W } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } { \\mathbf { W } } - 2 \\mathrm { T r } { \\mathbf { W } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\overline { { { \\mathbf { W } } } } + \\mathrm { T r } \\overline { { { \\mathbf { W } } } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\overline { { { \\mathbf { W } } } } } { \\mathrm { T r } \\overline { { { \\mathbf { W } } } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\overline { { { \\mathbf { W } } } } } .", + "type": "interline_equation", + "image_path": "a7f3c63e6dd22c620bfb08e215774d513e2fb6bf53b51956396165b08996231d.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 178, + 408, + 432, + 419.3333333333333 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 178, + 419.3333333333333, + 432, + 430.66666666666663 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 178, + 430.66666666666663, + 432, + 441.99999999999994 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 443, + 371, + 455 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 372, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 372, + 457 + ], + "score": 1.0, + "content": "Using the cyclic property of the trace, we can modify these to get:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 459, + 441, + 490 + ], + "lines": [ + { + "bbox": [ + 170, + 459, + 441, + 490 + ], + "spans": [ + { + "bbox": [ + 170, + 459, + 441, + 490 + ], + "score": 0.91, + "content": "\\varepsilon _ { \\mathrm { t r a i n } } = \\frac { \\mathrm { T r } { \\bf P } { \\bf W } { \\bf W } ^ { T } { \\bf P } ^ { T } - 2 \\mathrm { T r } { \\bf P } \\Sigma ^ { 3 1 } { \\bf W } ^ { T } { \\bf P } ^ { T } + \\mathrm { T r } { \\bf P } \\Sigma ^ { 3 1 } \\Sigma ^ { 3 1 ^ { T } } { \\bf P } ^ { T } } { \\mathrm { T r } { \\bf P } \\Sigma ^ { 3 1 } \\Sigma ^ { 3 1 ^ { T } } { \\bf P } ^ { T } } ,", + "type": "interline_equation", + "image_path": "c7c12ca256b899740c8be0c793209c9a8228e253de168ef8f6fd3701fafdbc93.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 170, + 459, + 441, + 469.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 170, + 469.3333333333333, + 441, + 479.66666666666663 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 170, + 479.66666666666663, + 441, + 489.99999999999994 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 495, + 432, + 529 + ], + "lines": [ + { + "bbox": [ + 178, + 495, + 432, + 529 + ], + "spans": [ + { + "bbox": [ + 178, + 495, + 432, + 529 + ], + "score": 0.89, + "content": "\\varepsilon _ { \\mathrm { t e s t } } = \\frac { \\mathrm { T r } \\mathbf { P } \\mathbf { W } \\mathbf { W } ^ { T } \\mathbf { P } ^ { T } - 2 \\mathrm { T r } \\mathbf { P } \\overline { { \\mathbf { W } } } \\mathbf { W } ^ { T } \\mathbf { P } ^ { T } + \\mathrm { T r } \\mathbf { P } \\overline { { \\mathbf { W } } } \\mathbf { W } ^ { T } \\mathbf { P } ^ { T } } { \\mathrm { T r } \\mathbf { P } \\overline { { \\mathbf { W } } } \\mathbf { W } ^ { T } \\mathbf { P } ^ { T } } .", + "type": "interline_equation", + "image_path": "b809fb7c45678781dfedbcdedaa34d7e51911d701c9fda075999b1f71d247a8e.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 178, + 495, + 432, + 506.3333333333333 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 178, + 506.3333333333333, + 432, + 517.6666666666666 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 178, + 517.6666666666666, + 432, + 529.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 504, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 530, + 502, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 446, + 544 + ], + "score": 1.0, + "content": "As before, we express these in terms of the student, training data and teacher SVDs,", + "type": "text" + }, + { + "bbox": [ + 446, + 531, + 502, + 542 + ], + "score": 0.87, + "content": "\\mathbf { W } = \\mathbf { U } \\mathbf { S } \\mathbf { V } ^ { T }", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 541, + 354, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 167, + 556 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\pmb { \\Sigma } ^ { 3 1 } = \\hat { \\mathbf { U } } \\hat { \\mathbf { S } } \\hat { \\mathbf { V } } ^ { T } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 541, + 188, + 559 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 189, + 542, + 248, + 556 + ], + "score": 0.92, + "content": "\\overline { { \\mathbf { W } } } = \\overline { { \\mathbf { U } } } \\overline { { \\mathbf { S } } } \\overline { { \\mathbf { V } } } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 541, + 354, + 559 + ], + "score": 1.0, + "content": "respectively. Specifically,", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 563, + 504, + 580 + ], + "lines": [ + { + "bbox": [ + 111, + 563, + 504, + 580 + ], + "spans": [ + { + "bbox": [ + 111, + 563, + 504, + 580 + ], + "score": 0.87, + "content": "\\begin{array} { r } { \\operatorname { t r a i n } = \\Big [ \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 3 } } \\hat { s } _ { \\beta } ^ { 2 } \\vert \\vert { \\mathbf { P } } \\hat { \\mathbf { a } } ^ { \\alpha } \\vert \\vert _ { 2 } ^ { 2 } \\Big ] ^ { - 1 } \\Big [ \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } s _ { \\alpha } ^ { 2 } \\vert \\vert { \\mathbf { P } } \\mathbf { u } ^ { \\alpha } \\vert \\vert _ { 2 } ^ { 2 } + \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 3 } } \\hat { s } _ { \\beta } ^ { 2 } \\vert \\vert { \\mathbf { P } } \\hat { \\mathbf { a } } ^ { \\alpha } \\vert \\vert _ { 2 } ^ { 2 } - 2 \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 3 } } s _ { \\alpha } \\hat { s } _ { \\beta } \\big ( { \\mathbf { P } } \\mathbf { u } ^ { \\alpha } \\cdot { \\mathbf { P } } \\hat { \\mathbf { u } } ^ { \\beta } \\big ) \\big ( { \\mathbf { v } } ^ { \\alpha } \\cdot { \\mathbf { \\hat { v } } } ^ { \\beta } \\big ) \\Big ] , } \\end{array}", + "type": "interline_equation", + "image_path": "e2a2b7673c35307ab430f1855d1ff64e839930bd9e9c11e872e6526a7ca5afdb.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 111, + 563, + 504, + 580 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 592, + 504, + 609 + ], + "lines": [ + { + "bbox": [ + 111, + 592, + 504, + 609 + ], + "spans": [ + { + "bbox": [ + 111, + 592, + 504, + 609 + ], + "score": 0.86, + "content": "\\begin{array} { r } { \\varepsilon _ { \\mathrm { t e s t } } = \\Big [ \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 2 } } \\bar { s } _ { \\beta } ^ { 2 } \\big | \\big | { \\bf P } \\bar { \\bf u } ^ { \\alpha } \\big | \\big | _ { 2 } ^ { 2 } \\Big ] ^ { - 1 } \\Big [ \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } s _ { \\alpha } ^ { 2 } \\big | \\big | { \\bf P } { \\bf u } ^ { \\alpha } \\big | \\big | _ { 2 } ^ { 2 } + \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 2 } } \\bar { s } _ { \\beta } ^ { 2 } \\big | \\big | { \\bf P } \\bar { \\bf u } ^ { \\alpha } \\big | \\big | _ { 2 } ^ { 2 } - 2 \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 2 } } s _ { \\alpha } \\bar { s } _ { \\beta } \\big ( { \\bf P } { \\bf u } ^ { \\alpha } \\cdot { \\bf P } { \\bf { \\bar { u } } } ^ { \\beta } \\big ) \\big ( { \\bf v } ^ { \\alpha } \\cdot { \\bf \\bar { v } } ^ { \\beta } \\big ) \\Big ] . } \\end{array}", + "type": "interline_equation", + "image_path": "4b62348655d38b06bf41391656fd181444d4be54d4d2a458526a43428d448f9c.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 111, + 592, + 504, + 609 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 634, + 372, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 372, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 372, + 649 + ], + "score": 1.0, + "content": "D TRANSFER LEARNING DERIVATIONS & DETAILS", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 658, + 337, + 672 + ], + "lines": [ + { + "bbox": [ + 105, + 658, + 339, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 303, + 672 + ], + "score": 1.0, + "content": "Thm 1 (Transfer theorem) The transfer benefit", + "type": "text" + }, + { + "bbox": [ + 304, + 659, + 333, + 670 + ], + "score": 0.89, + "content": "\\scriptstyle { \\mathcal { T } } ^ { A B }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 658, + 339, + 672 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 131, + 679, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 130, + 679, + 277, + 696 + ], + "spans": [ + { + "bbox": [ + 130, + 679, + 222, + 696 + ], + "score": 1.0, + "content": "• Is unaffected by the", + "type": "text" + }, + { + "bbox": [ + 223, + 680, + 239, + 694 + ], + "score": 0.7, + "content": "\\overline { { \\mathbf { U } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 679, + 258, + 696 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 258, + 680, + 274, + 694 + ], + "score": 0.73, + "content": "\\overline { { \\mathbf { U } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 679, + 277, + 696 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 128, + 696, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 128, + 696, + 279, + 722 + ], + "score": 1.0, + "content": "• Is completely determined by only", + "type": "text" + }, + { + "bbox": [ + 279, + 704, + 291, + 718 + ], + "score": 0.53, + "content": "\\sigma _ { z } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 702, + 327, + 718 + ], + "score": 0.51, + "content": ", \\overline { { \\mathbf { S } } } ^ { A } , \\overline { { \\mathbf { S } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 696, + 364, + 722 + ], + "score": 1.0, + "content": ", and the", + "type": "text" + }, + { + "bbox": [ + 364, + 702, + 380, + 718 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 696, + 394, + 722 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 394, + 702, + 411, + 718 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 696, + 483, + 722 + ], + "score": 1.0, + "content": "similarity matrix", + "type": "text" + }, + { + "bbox": [ + 483, + 705, + 506, + 718 + ], + "score": 0.83, + "content": "\\overline { { \\mathbf { Q } } } =", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 142, + 714, + 183, + 731 + ], + "spans": [ + { + "bbox": [ + 142, + 717, + 180, + 731 + ], + "score": 0.87, + "content": "\\overline { { \\mathbf { V } } } ^ { A T } \\overline { { \\mathbf { V } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 714, + 183, + 731 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 420, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 421, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 421, + 96 + ], + "score": 1.0, + "content": "B ALIGNMENT LAG IN RANDOMLY INITIALIZED NETWORKS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 506, + 118 + ], + "score": 1.0, + "content": "As noted in the main text, the randomly-initialized networks behave quite similarly to the TA networks,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 506, + 130 + ], + "score": 1.0, + "content": "except that the randomly-initialized networks show a lag due to the time it takes for the network’s", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 129, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 505, + 141 + ], + "score": 1.0, + "content": "modes to align with the data modes. In fig. 9 we explore this lag by plotting the alignment of the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 140, + 453, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 453, + 151 + ], + "score": 1.0, + "content": "modes and the increase in the singular value for several randomly initialized networks.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 106, + 506, + 151 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 155, + 505, + 222 + ], + "lines": [ + { + "bbox": [ + 105, + 155, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 505, + 169 + ], + "score": 1.0, + "content": "Notice that stronger modes align more quickly. Furthermore, the mode alignment is relatively", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 167, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 505, + 179 + ], + "score": 1.0, + "content": "independent – whether the teacher is rank 1 or rank 3, the alignment of the modes is similar for the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 178, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 505, + 190 + ], + "score": 1.0, + "content": "mode of singular value 2. Most importantly, note how the deeper networks show substantially slower", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 189, + 504, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 504, + 201 + ], + "score": 1.0, + "content": "mode alignment, with alignment not completed until around when the singular value increases. This", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 200, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 200, + 505, + 212 + ], + "score": 1.0, + "content": "explains why deeper networks show a larger lag between randomly-initialized and TA networks – the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 211, + 329, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 329, + 224 + ], + "score": 1.0, + "content": "alignment process is much slower for deeper networks.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 155, + 505, + 224 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 239, + 372, + 252 + ], + "lines": [ + { + "bbox": [ + 106, + 237, + 374, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 374, + 253 + ], + "score": 1.0, + "content": "C TRAIN AND TEST ERRORS AFTER A PROJECTION", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 263, + 504, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "In the case of transfer learning, or more generally when we want to evaluate a network’s loss on a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 275, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 506, + 287 + ], + "score": 1.0, + "content": "subset of its outputs, we need to use a slight generalization of the train and test error formulas given", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 104, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "in the main text. Suppose we are interested in the train and test errors after applying a projection", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 297, + 155, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 142, + 308 + ], + "score": 1.0, + "content": "operator", + "type": "text" + }, + { + "bbox": [ + 142, + 297, + 151, + 307 + ], + "score": 0.65, + "content": "\\mathbf { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 297, + 155, + 308 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 104, + 263, + 506, + 308 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 313, + 468, + 352 + ], + "lines": [ + { + "bbox": [ + 142, + 313, + 468, + 352 + ], + "spans": [ + { + "bbox": [ + 142, + 313, + 468, + 352 + ], + "score": 0.93, + "content": "\\varepsilon _ { \\mathrm { t r a i n } } \\equiv \\frac { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { P } \\mathbf { W } \\hat { \\mathbf { x } } ^ { \\mu } - \\mathbf { P } \\hat { \\mathbf { y } } ^ { \\mu } | | _ { 2 } ^ { 2 } } { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { P } \\hat { \\mathbf { y } } ^ { \\mu } | | _ { 2 } ^ { 2 } } , \\varepsilon _ { \\mathrm { t e s t } } \\equiv \\frac { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { P } \\mathbf { W } \\overline { { \\mathbf { x } } } ^ { \\mu } - \\mathbf { P } \\overline { { \\mathbf { y } } } ^ { \\mu } | | _ { 2 } ^ { 2 } } { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { P } \\overline { { \\mathbf { y } } } ^ { \\mu } | | _ { 2 } ^ { 2 } } ,", + "type": "interline_equation", + "image_path": "824d5e77da2fc9bf0002ff555d48fd7e0608505786d086f2d942b570d2f3b38b.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 142, + 313, + 468, + 326.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 142, + 326.0, + 468, + 339.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 142, + 339.0, + 468, + 352.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 342, + 368 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 343, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 343, + 370 + ], + "score": 1.0, + "content": "respectively. As in the main text, we can rexpress these as:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 355, + 343, + 370 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 372, + 441, + 404 + ], + "lines": [ + { + "bbox": [ + 169, + 372, + 441, + 404 + ], + "spans": [ + { + "bbox": [ + 169, + 372, + 441, + 404 + ], + "score": 0.9, + "content": "\\varepsilon _ { \\mathrm { t r a i n } } = \\frac { \\mathrm { T r } { \\mathbf { W } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } { \\mathbf { W } } - 2 \\mathrm { T r } { \\mathbf { W } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\Sigma ^ { 3 1 } + \\mathrm { T r } { \\Sigma ^ { 3 1 } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\Sigma ^ { 3 1 } } { \\mathrm { T r } \\Sigma ^ { 3 1 } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\Sigma ^ { 3 1 } } ,", + "type": "interline_equation", + "image_path": "b3dfe306ce0e4b0416590bb0eb5e48c67ca0e50453c4ad1d27c97a97d4efeb9e.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 169, + 372, + 441, + 382.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 169, + 382.6666666666667, + 441, + 393.33333333333337 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 169, + 393.33333333333337, + 441, + 404.00000000000006 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 408, + 432, + 442 + ], + "lines": [ + { + "bbox": [ + 178, + 408, + 432, + 442 + ], + "spans": [ + { + "bbox": [ + 178, + 408, + 432, + 442 + ], + "score": 0.9, + "content": "\\varepsilon _ { \\mathrm { t e s t } } = \\frac { \\mathrm { T r } { \\mathbf { W } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } { \\mathbf { W } } - 2 \\mathrm { T r } { \\mathbf { W } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\overline { { { \\mathbf { W } } } } + \\mathrm { T r } \\overline { { { \\mathbf { W } } } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\overline { { { \\mathbf { W } } } } } { \\mathrm { T r } \\overline { { { \\mathbf { W } } } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\overline { { { \\mathbf { W } } } } } .", + "type": "interline_equation", + "image_path": "a7f3c63e6dd22c620bfb08e215774d513e2fb6bf53b51956396165b08996231d.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 178, + 408, + 432, + 419.3333333333333 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 178, + 419.3333333333333, + 432, + 430.66666666666663 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 178, + 430.66666666666663, + 432, + 441.99999999999994 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 443, + 371, + 455 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 372, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 372, + 457 + ], + "score": 1.0, + "content": "Using the cyclic property of the trace, we can modify these to get:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 442, + 372, + 457 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 459, + 441, + 490 + ], + "lines": [ + { + "bbox": [ + 170, + 459, + 441, + 490 + ], + "spans": [ + { + "bbox": [ + 170, + 459, + 441, + 490 + ], + "score": 0.91, + "content": "\\varepsilon _ { \\mathrm { t r a i n } } = \\frac { \\mathrm { T r } { \\bf P } { \\bf W } { \\bf W } ^ { T } { \\bf P } ^ { T } - 2 \\mathrm { T r } { \\bf P } \\Sigma ^ { 3 1 } { \\bf W } ^ { T } { \\bf P } ^ { T } + \\mathrm { T r } { \\bf P } \\Sigma ^ { 3 1 } \\Sigma ^ { 3 1 ^ { T } } { \\bf P } ^ { T } } { \\mathrm { T r } { \\bf P } \\Sigma ^ { 3 1 } \\Sigma ^ { 3 1 ^ { T } } { \\bf P } ^ { T } } ,", + "type": "interline_equation", + "image_path": "c7c12ca256b899740c8be0c793209c9a8228e253de168ef8f6fd3701fafdbc93.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 170, + 459, + 441, + 469.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 170, + 469.3333333333333, + 441, + 479.66666666666663 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 170, + 479.66666666666663, + 441, + 489.99999999999994 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 495, + 432, + 529 + ], + "lines": [ + { + "bbox": [ + 178, + 495, + 432, + 529 + ], + "spans": [ + { + "bbox": [ + 178, + 495, + 432, + 529 + ], + "score": 0.89, + "content": "\\varepsilon _ { \\mathrm { t e s t } } = \\frac { \\mathrm { T r } \\mathbf { P } \\mathbf { W } \\mathbf { W } ^ { T } \\mathbf { P } ^ { T } - 2 \\mathrm { T r } \\mathbf { P } \\overline { { \\mathbf { W } } } \\mathbf { W } ^ { T } \\mathbf { P } ^ { T } + \\mathrm { T r } \\mathbf { P } \\overline { { \\mathbf { W } } } \\mathbf { W } ^ { T } \\mathbf { P } ^ { T } } { \\mathrm { T r } \\mathbf { P } \\overline { { \\mathbf { W } } } \\mathbf { W } ^ { T } \\mathbf { P } ^ { T } } .", + "type": "interline_equation", + "image_path": "b809fb7c45678781dfedbcdedaa34d7e51911d701c9fda075999b1f71d247a8e.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 178, + 495, + 432, + 506.3333333333333 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 178, + 506.3333333333333, + 432, + 517.6666666666666 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 178, + 517.6666666666666, + 432, + 529.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 504, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 530, + 502, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 446, + 544 + ], + "score": 1.0, + "content": "As before, we express these in terms of the student, training data and teacher SVDs,", + "type": "text" + }, + { + "bbox": [ + 446, + 531, + 502, + 542 + ], + "score": 0.87, + "content": "\\mathbf { W } = \\mathbf { U } \\mathbf { S } \\mathbf { V } ^ { T }", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 541, + 354, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 167, + 556 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\pmb { \\Sigma } ^ { 3 1 } = \\hat { \\mathbf { U } } \\hat { \\mathbf { S } } \\hat { \\mathbf { V } } ^ { T } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 541, + 188, + 559 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 189, + 542, + 248, + 556 + ], + "score": 0.92, + "content": "\\overline { { \\mathbf { W } } } = \\overline { { \\mathbf { U } } } \\overline { { \\mathbf { S } } } \\overline { { \\mathbf { V } } } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 541, + 354, + 559 + ], + "score": 1.0, + "content": "respectively. Specifically,", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 530, + 502, + 559 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 563, + 504, + 580 + ], + "lines": [ + { + "bbox": [ + 111, + 563, + 504, + 580 + ], + "spans": [ + { + "bbox": [ + 111, + 563, + 504, + 580 + ], + "score": 0.87, + "content": "\\begin{array} { r } { \\operatorname { t r a i n } = \\Big [ \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 3 } } \\hat { s } _ { \\beta } ^ { 2 } \\vert \\vert { \\mathbf { P } } \\hat { \\mathbf { a } } ^ { \\alpha } \\vert \\vert _ { 2 } ^ { 2 } \\Big ] ^ { - 1 } \\Big [ \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } s _ { \\alpha } ^ { 2 } \\vert \\vert { \\mathbf { P } } \\mathbf { u } ^ { \\alpha } \\vert \\vert _ { 2 } ^ { 2 } + \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 3 } } \\hat { s } _ { \\beta } ^ { 2 } \\vert \\vert { \\mathbf { P } } \\hat { \\mathbf { a } } ^ { \\alpha } \\vert \\vert _ { 2 } ^ { 2 } - 2 \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 3 } } s _ { \\alpha } \\hat { s } _ { \\beta } \\big ( { \\mathbf { P } } \\mathbf { u } ^ { \\alpha } \\cdot { \\mathbf { P } } \\hat { \\mathbf { u } } ^ { \\beta } \\big ) \\big ( { \\mathbf { v } } ^ { \\alpha } \\cdot { \\mathbf { \\hat { v } } } ^ { \\beta } \\big ) \\Big ] , } \\end{array}", + "type": "interline_equation", + "image_path": "e2a2b7673c35307ab430f1855d1ff64e839930bd9e9c11e872e6526a7ca5afdb.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 111, + 563, + 504, + 580 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 592, + 504, + 609 + ], + "lines": [ + { + "bbox": [ + 111, + 592, + 504, + 609 + ], + "spans": [ + { + "bbox": [ + 111, + 592, + 504, + 609 + ], + "score": 0.86, + "content": "\\begin{array} { r } { \\varepsilon _ { \\mathrm { t e s t } } = \\Big [ \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 2 } } \\bar { s } _ { \\beta } ^ { 2 } \\big | \\big | { \\bf P } \\bar { \\bf u } ^ { \\alpha } \\big | \\big | _ { 2 } ^ { 2 } \\Big ] ^ { - 1 } \\Big [ \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } s _ { \\alpha } ^ { 2 } \\big | \\big | { \\bf P } { \\bf u } ^ { \\alpha } \\big | \\big | _ { 2 } ^ { 2 } + \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 2 } } \\bar { s } _ { \\beta } ^ { 2 } \\big | \\big | { \\bf P } \\bar { \\bf u } ^ { \\alpha } \\big | \\big | _ { 2 } ^ { 2 } - 2 \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 2 } } s _ { \\alpha } \\bar { s } _ { \\beta } \\big ( { \\bf P } { \\bf u } ^ { \\alpha } \\cdot { \\bf P } { \\bf { \\bar { u } } } ^ { \\beta } \\big ) \\big ( { \\bf v } ^ { \\alpha } \\cdot { \\bf \\bar { v } } ^ { \\beta } \\big ) \\Big ] . } \\end{array}", + "type": "interline_equation", + "image_path": "4b62348655d38b06bf41391656fd181444d4be54d4d2a458526a43428d448f9c.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 111, + 592, + 504, + 609 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 634, + 372, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 372, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 372, + 649 + ], + "score": 1.0, + "content": "D TRANSFER LEARNING DERIVATIONS & DETAILS", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 658, + 337, + 672 + ], + "lines": [ + { + "bbox": [ + 105, + 658, + 339, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 303, + 672 + ], + "score": 1.0, + "content": "Thm 1 (Transfer theorem) The transfer benefit", + "type": "text" + }, + { + "bbox": [ + 304, + 659, + 333, + 670 + ], + "score": 0.89, + "content": "\\scriptstyle { \\mathcal { T } } ^ { A B }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 658, + 339, + 672 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 658, + 339, + 672 + ] + }, + { + "type": "list", + "bbox": [ + 131, + 679, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 130, + 679, + 277, + 696 + ], + "spans": [ + { + "bbox": [ + 130, + 679, + 222, + 696 + ], + "score": 1.0, + "content": "• Is unaffected by the", + "type": "text" + }, + { + "bbox": [ + 223, + 680, + 239, + 694 + ], + "score": 0.7, + "content": "\\overline { { \\mathbf { U } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 679, + 258, + 696 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 258, + 680, + 274, + 694 + ], + "score": 0.73, + "content": "\\overline { { \\mathbf { U } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 679, + 277, + 696 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 696, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 128, + 696, + 279, + 722 + ], + "score": 1.0, + "content": "• Is completely determined by only", + "type": "text" + }, + { + "bbox": [ + 279, + 704, + 291, + 718 + ], + "score": 0.53, + "content": "\\sigma _ { z } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 702, + 327, + 718 + ], + "score": 0.51, + "content": ", \\overline { { \\mathbf { S } } } ^ { A } , \\overline { { \\mathbf { S } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 696, + 364, + 722 + ], + "score": 1.0, + "content": ", and the", + "type": "text" + }, + { + "bbox": [ + 364, + 702, + 380, + 718 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 696, + 394, + 722 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 394, + 702, + 411, + 718 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 696, + 483, + 722 + ], + "score": 1.0, + "content": "similarity matrix", + "type": "text" + }, + { + "bbox": [ + 483, + 705, + 506, + 718 + ], + "score": 0.83, + "content": "\\overline { { \\mathbf { Q } } } =", + "type": "inline_equation" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 714, + 183, + 731 + ], + "spans": [ + { + "bbox": [ + 142, + 717, + 180, + 731 + ], + "score": 0.87, + "content": "\\overline { { \\mathbf { V } } } ^ { A T } \\overline { { \\mathbf { V } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 714, + 183, + 731 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + } + ], + "index": 40, + "bbox_fs": [ + 128, + 679, + 506, + 731 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 131, + 495, + 601 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 131, + 495, + 601 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 131, + 495, + 601 + ], + "spans": [ + { + "bbox": [ + 107, + 131, + 495, + 601 + ], + "score": 0.949, + "type": "image", + "image_path": "f7d69e78559f4561bf6dde026948060bf03ae8cb1ead40ce9131543b8df1331b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 131, + 495, + 287.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 287.66666666666663, + 495, + 444.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 444.33333333333326, + 495, + 600.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 608, + 506, + 675 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 608, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 621 + ], + "score": 1.0, + "content": "Figure 9: Alignment of randomly-initialized network modes to data modes and growth of singular", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 619, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 631 + ], + "score": 1.0, + "content": "values, plotted for 1 hidden layer (first two rows, a-d) and 3 hidden layers (last two rows, e-h), and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 630, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 506, + 642 + ], + "score": 1.0, + "content": "for a rank 1 teacher (first and third rows, a & e), or a rank 3 teacher (second and fourth rows, b-d &", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 460, + 653 + ], + "score": 1.0, + "content": "f-h). The columns are the different modes, with respective singular values of 6, 4, and 2.", + "type": "text" + }, + { + "bbox": [ + 461, + 642, + 472, + 652 + ], + "score": 0.85, + "content": "\\sigma _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 641, + 505, + 653 + ], + "score": 1.0, + "content": "was set", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 651, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 664 + ], + "score": 1.0, + "content": "to 1. The deeper networks show substantially slower mode alignment, with alignment not completed", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 663, + 296, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 296, + 675 + ], + "score": 1.0, + "content": "until around when the singular value increases.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 131, + 495, + 601 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 131, + 495, + 601 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 131, + 495, + 601 + ], + "spans": [ + { + "bbox": [ + 107, + 131, + 495, + 601 + ], + "score": 0.949, + "type": "image", + "image_path": "f7d69e78559f4561bf6dde026948060bf03ae8cb1ead40ce9131543b8df1331b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 131, + 495, + 287.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 287.66666666666663, + 495, + 444.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 444.33333333333326, + 495, + 600.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 608, + 506, + 675 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 608, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 621 + ], + "score": 1.0, + "content": "Figure 9: Alignment of randomly-initialized network modes to data modes and growth of singular", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 619, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 631 + ], + "score": 1.0, + "content": "values, plotted for 1 hidden layer (first two rows, a-d) and 3 hidden layers (last two rows, e-h), and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 630, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 506, + 642 + ], + "score": 1.0, + "content": "for a rank 1 teacher (first and third rows, a & e), or a rank 3 teacher (second and fourth rows, b-d &", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 460, + 653 + ], + "score": 1.0, + "content": "f-h). The columns are the different modes, with respective singular values of 6, 4, and 2.", + "type": "text" + }, + { + "bbox": [ + 461, + 642, + 472, + 652 + ], + "score": 0.85, + "content": "\\sigma _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 641, + 505, + 653 + ], + "score": 1.0, + "content": "was set", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 651, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 664 + ], + "score": 1.0, + "content": "to 1. The deeper networks show substantially slower mode alignment, with alignment not completed", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 663, + 296, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 296, + 675 + ], + "score": 1.0, + "content": "until around when the singular value increases.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 178, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 179, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 179, + 95 + ], + "score": 1.0, + "content": "Proof: We define", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 97, + 444, + 193 + ], + "lines": [ + { + "bbox": [ + 166, + 97, + 444, + 193 + ], + "spans": [ + { + "bbox": [ + 166, + 97, + 444, + 193 + ], + "score": 0.86, + "content": "\\begin{array} { l l } { { { \\overline { { { \\cal { \\bf { U } } } } } } ^ { A B } = \\begin{array} { c } { { { \\overline { { { \\cal { N } } } } } _ { 3 } } } \\\\ { { { \\overline { { { \\cal { N } } } } } _ { 3 } } } \\\\ { { { \\overline { { { \\cal { N } } } } } _ { 3 } } } \\end{array} } } & { { { \\overline { { { \\cal { N } } } } } _ { 3 } ^ { A } \\begin{array} { c } { { { \\overline { { { \\cal { N } } } } } _ { 2 } ^ { B } } } \\\\ { { \\left| \\begin{array} { c } { { { \\bf { \\overline { { { \\bf { U } } } } } } ^ { A } } } \\end{array} \\right| } } } \\\\ { { { \\overline { { { \\bf { U } } } } } ^ { B } } } \\end{array} } & { { { \\overline { { { \\bf { S } } } } } ^ { A B } = \\begin{array} { c } { { { \\overline { { { \\cal { N } } } } } _ { 2 } ^ { A } } } \\\\ { { { \\overline { { { \\cal { N } } } } } _ { 2 } ^ { B } } } \\end{array} } } \\\\ { { { \\overline { { { \\cal { N } } } } } _ { 2 } ^ { A B } = \\begin{array} { c } { { { \\overline { { { \\cal { N } } } } } _ { 3 } ^ { A } } } \\end{array} } } & { { { \\overline { { { \\bf { U } } } } } _ { 2 } ^ { B } } } \\end{array}", + "type": "interline_equation", + "image_path": "f14751854781d9ed6b6cd2d58f59abe99d16da60103bf5deb51a18fe492fe695.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 166, + 97, + 444, + 129.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 166, + 129.0, + 444, + 161.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 166, + 161.0, + 444, + 193.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 206, + 413, + 246 + ], + "lines": [ + { + "bbox": [ + 196, + 206, + 413, + 246 + ], + "spans": [ + { + "bbox": [ + 196, + 206, + 413, + 246 + ], + "score": 0.89, + "content": "\\mathbf { \\overline { { W } } } ^ { A + B } = [ \\frac { \\mathbf { \\overline { { U } } } ^ { A } } { \\mathbf { 0 } } | \\begin{array} { c } { \\mathbf { 0 } } \\\\ { \\mathbf { \\overline { { U } } } ^ { B } } \\end{array} ] [ \\frac { \\mathbf { \\overline { { S } } } ^ { A } } { \\mathbf { 0 } } | \\begin{array} { c } { \\mathbf { 0 } } \\\\ { \\mathbf { \\overline { { S } } } ^ { B } } \\end{array} ] [ \\frac { \\mathbf { \\overline { { V } } } ^ { A ^ { T } } } { \\mathbf { \\overline { { V } } } ^ { B ^ { T } } } ] ", + "type": "interline_equation", + "image_path": "a18b9f94544a5a673db1bcfe1b5857da9b17361d350e76db494cf0796df70657.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 196, + 206, + 413, + 246 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 248, + 506, + 321 + ], + "lines": [ + { + "bbox": [ + 103, + 245, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 103, + 245, + 248, + 268 + ], + "score": 1.0, + "content": "Because of the 0 blocks in UAB,", + "type": "text" + }, + { + "bbox": [ + 244, + 250, + 430, + 265 + ], + "score": 1.0, + "content": "the vectors in blocks corresponding to task", + "type": "text" + }, + { + "bbox": [ + 430, + 252, + 439, + 262 + ], + "score": 0.78, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 250, + 479, + 265 + ], + "score": 1.0, + "content": "and task", + "type": "text" + }, + { + "bbox": [ + 479, + 252, + 488, + 262 + ], + "score": 0.84, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 250, + 506, + 265 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 103, + 261, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 103, + 261, + 242, + 281 + ], + "score": 1.0, + "content": "completely orthogonal, so UAB", + "type": "text" + }, + { + "bbox": [ + 238, + 264, + 469, + 278 + ], + "score": 1.0, + "content": "remains orthonormal. Thus the relationship between the", + "type": "text" + }, + { + "bbox": [ + 470, + 263, + 487, + 276 + ], + "score": 0.89, + "content": "\\overline { { \\mathbf { U } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 264, + 506, + 278 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 275, + 507, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 123, + 290 + ], + "score": 0.88, + "content": "\\overline { { \\mathbf { U } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 275, + 507, + 296 + ], + "score": 1.0, + "content": "is irrelevant to the transfer. (In our simulations we use arbitrary orthonormal matrices for", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 284, + 509, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 123, + 305 + ], + "score": 0.82, + "content": "\\overline { { \\mathbf { U } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 284, + 141, + 312 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 142, + 291, + 158, + 305 + ], + "score": 0.79, + "content": "\\overline { { \\mathbf { U } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 284, + 509, + 312 + ], + "score": 1.0, + "content": ".) Therefore the transfer effects will be entirely driven by the relationship between the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 102, + 300, + 295, + 324 + ], + "spans": [ + { + "bbox": [ + 102, + 300, + 142, + 324 + ], + "score": 1.0, + "content": "matrices", + "type": "text" + }, + { + "bbox": [ + 143, + 306, + 159, + 319 + ], + "score": 0.88, + "content": "\\overline { { \\mathbf { V } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 300, + 177, + 324 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 177, + 305, + 194, + 319 + ], + "score": 0.91, + "content": "\\overline { { \\mathbf { V } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 300, + 295, + 324 + ], + "score": 1.0, + "content": "and the singular values.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 325, + 506, + 405 + ], + "lines": [ + { + "bbox": [ + 102, + 323, + 504, + 345 + ], + "spans": [ + { + "bbox": [ + 102, + 323, + 150, + 345 + ], + "score": 1.0, + "content": "We define", + "type": "text" + }, + { + "bbox": [ + 151, + 328, + 167, + 343 + ], + "score": 0.91, + "content": "\\overline { { N } } _ { 2 } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 323, + 183, + 345 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 183, + 328, + 200, + 343 + ], + "score": 0.91, + "content": "\\overline { { N } } _ { 2 } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 323, + 275, + 345 + ], + "score": 1.0, + "content": "similarity matrix", + "type": "text" + }, + { + "bbox": [ + 275, + 325, + 338, + 343 + ], + "score": 0.92, + "content": "\\mathbf { \\overline { { Q } } } = \\mathbf { \\overline { { V } } } ^ { A ^ { T } } \\mathbf { \\overline { { V } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 323, + 493, + 345 + ], + "score": 1.0, + "content": ". If we think of the columns of each", + "type": "text" + }, + { + "bbox": [ + 494, + 330, + 504, + 342 + ], + "score": 0.77, + "content": "\\overline { { \\mathbf { V } } }", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 302, + 356 + ], + "score": 1.0, + "content": "as spanning a low dimensional feature space in", + "type": "text" + }, + { + "bbox": [ + 303, + 343, + 317, + 354 + ], + "score": 0.88, + "content": "\\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 342, + 506, + 356 + ], + "score": 1.0, + "content": "dimensional input space that is important for", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 354, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 169, + 368 + ], + "score": 1.0, + "content": "each task, then", + "type": "text" + }, + { + "bbox": [ + 170, + 354, + 180, + 367 + ], + "score": 0.85, + "content": "\\overline { { \\mathbf { Q } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 354, + 506, + 368 + ], + "score": 1.0, + "content": "reflects the input feature subspace similarity matrix. We can now calculate the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 102, + 362, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 102, + 364, + 218, + 384 + ], + "score": 1.0, + "content": "singular values of WA+", + "type": "text" + }, + { + "bbox": [ + 206, + 362, + 430, + 385 + ], + "score": 1.0, + "content": "B. First, note that the input singular modes of WA+B a", + "type": "text" + }, + { + "bbox": [ + 424, + 370, + 506, + 381 + ], + "score": 1.0, + "content": "re eigenvectors of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 379, + 509, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 176, + 397 + ], + "score": 0.92, + "content": "\\overline { { \\mathbf { W } } } ^ { A + B ^ { T } } \\overline { { \\mathbf { W } } } ^ { A + B }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 379, + 509, + 403 + ], + "score": 1.0, + "content": "B, and the associated singular values are square roots of the eigenvalues of WA+B.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 395, + 130, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 130, + 409 + ], + "score": 1.0, + "content": "Now", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 404, + 460, + 423 + ], + "lines": [ + { + "bbox": [ + 150, + 404, + 460, + 423 + ], + "spans": [ + { + "bbox": [ + 150, + 404, + 460, + 423 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\overline { { \\mathbf { W } } } ^ { A + B ^ { T } } \\overline { { \\mathbf { W } } } ^ { A + B } = \\overline { { \\mathbf { V } } } ^ { A B } \\overline { { \\mathbf { S } } } ^ { A B } \\overline { { \\mathbf { U } } } ^ { A B ^ { T } } \\overline { { \\mathbf { U } } } ^ { A B } \\overline { { \\mathbf { S } } } ^ { A B } \\overline { { \\mathbf { V } } } ^ { A B ^ { T } } = \\overline { { \\mathbf { V } } } ^ { A B } \\overline { { \\mathbf { S } } } ^ { A B ^ { 2 } } \\overline { { \\mathbf { V } } } ^ { A B ^ { T } } } \\end{array}", + "type": "interline_equation", + "image_path": "43f3e333d102893ea85bcb339755c45e779e6ca5d1bd65d76ea9b096dcd55ec1.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 150, + 404, + 460, + 423 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 426, + 271, + 438 + ], + "lines": [ + { + "bbox": [ + 106, + 426, + 271, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 137, + 439 + ], + "score": 1.0, + "content": "Now if", + "type": "text" + }, + { + "bbox": [ + 137, + 427, + 143, + 436 + ], + "score": 0.84, + "content": "\\vec { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 426, + 271, + 439 + ], + "score": 1.0, + "content": "is an eigenvector of this matrix:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 253, + 443, + 359, + 461 + ], + "lines": [ + { + "bbox": [ + 253, + 443, + 359, + 461 + ], + "spans": [ + { + "bbox": [ + 253, + 443, + 359, + 461 + ], + "score": 0.91, + "content": "\\overline { { { \\bf V } } } ^ { A B } \\overline { { { \\bf S } } } ^ { A B ^ { 2 } } \\overline { { { \\bf V } } } ^ { A B ^ { T } } \\vec { c } = \\lambda \\vec { c }", + "type": "interline_equation", + "image_path": "d7fbbfee188d62cbef18a339da60f5fecd653384c9ddb9f8966295ffd74cec4d.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 253, + 443, + 359, + 461 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 468, + 175, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 177, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 177, + 480 + ], + "score": 1.0, + "content": "This implies that", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 477, + 387, + 495 + ], + "lines": [ + { + "bbox": [ + 225, + 477, + 387, + 495 + ], + "spans": [ + { + "bbox": [ + 225, + 477, + 387, + 495 + ], + "score": 0.91, + "content": "\\mathbf { \\overline { { { V } } } } ^ { A B ^ { T } } \\mathbf { \\overline { { { V } } } } ^ { A B } \\mathbf { \\overline { { { S } } } } ^ { A B ^ { 2 } } \\mathbf { \\overline { { { V } } } } ^ { A B ^ { T } } { \\vec { c } } = \\lambda \\mathbf { \\overline { { { V } } } } ^ { A B ^ { T } } { \\vec { c } }", + "type": "interline_equation", + "image_path": "50b46fc1cb03b08ff6212cd1f7f0a846462b9c8bc1bced40cebff3590a8bc23f.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 225, + 477, + 387, + 495 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 497, + 506, + 559 + ], + "lines": [ + { + "bbox": [ + 101, + 493, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 101, + 495, + 250, + 518 + ], + "score": 1.0, + "content": "Hence eigenvalues of VABSAB2V", + "type": "text" + }, + { + "bbox": [ + 267, + 496, + 403, + 517 + ], + "score": 1.0, + "content": "T are also eigenvalues of VABT V", + "type": "text" + }, + { + "bbox": [ + 369, + 497, + 443, + 513 + ], + "score": 0.9, + "content": "\\overline { { { \\bf V } } } ^ { A B ^ { T } } \\overline { { { \\bf V } } } ^ { A B } \\overline { { { \\bf S } } } ^ { A B ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 493, + 506, + 516 + ], + "score": 1.0, + "content": ", with the map-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 102, + 510, + 509, + 532 + ], + "spans": [ + { + "bbox": [ + 102, + 510, + 270, + 532 + ], + "score": 1.0, + "content": "ping between the eigenvectors given by", + "type": "text" + }, + { + "bbox": [ + 271, + 513, + 293, + 527 + ], + "score": 0.9, + "content": "\\overline { { \\mathbf { V } } } ^ { A B }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 510, + 509, + 532 + ], + "score": 1.0, + "content": ". Furthermore, this mapping must be a bijection for", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 527, + 507, + 543 + ], + "spans": [ + { + "bbox": [ + 104, + 528, + 462, + 543 + ], + "score": 1.0, + "content": "eigenvectors with non-zero eigenvalues, since the matrices have the same rank (the rank of", + "type": "text" + }, + { + "bbox": [ + 462, + 527, + 485, + 541 + ], + "score": 0.87, + "content": "\\overline { { \\mathbf { V } } } ^ { A B }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 528, + 507, + 543 + ], + "score": 1.0, + "content": "). To", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 101, + 540, + 354, + 563 + ], + "spans": [ + { + "bbox": [ + 101, + 540, + 210, + 563 + ], + "score": 1.0, + "content": "see this, note that SAB 2 i", + "type": "text" + }, + { + "bbox": [ + 203, + 546, + 354, + 559 + ], + "score": 1.0, + "content": "s full rank. From this, it is clear that", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 563, + 420, + 581 + ], + "lines": [ + { + "bbox": [ + 190, + 563, + 420, + 581 + ], + "spans": [ + { + "bbox": [ + 190, + 563, + 420, + 581 + ], + "score": 0.89, + "content": "\\mathrm { r a n k } \\overline { { { \\mathbf { V } } } } ^ { A B ^ { T } } \\overline { { { \\mathbf { V } } } } ^ { A B } \\overline { { { \\mathbf { S } } } } ^ { A B ^ { 2 } } = \\mathrm { r a n k } \\overline { { { \\mathbf { V } } } } ^ { A B ^ { T } } \\overline { { { \\mathbf { V } } } } ^ { A B } = \\mathrm { r a n k } \\overline { { { \\mathbf { V } } } } ^ { A B } .", + "type": "interline_equation", + "image_path": "0bc80a4ea89838e575d1e39ac60c1781ae8dad24763c055da29210f52e7d5ca3.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 190, + 563, + 420, + 581 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 586, + 276, + 603 + ], + "lines": [ + { + "bbox": [ + 100, + 583, + 277, + 608 + ], + "spans": [ + { + "bbox": [ + 100, + 583, + 195, + 608 + ], + "score": 1.0, + "content": "Furthermore, SAB2 is", + "type": "text" + }, + { + "bbox": [ + 186, + 591, + 277, + 603 + ], + "score": 1.0, + "content": "positive definite, so", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 607, + 380, + 626 + ], + "lines": [ + { + "bbox": [ + 230, + 607, + 380, + 626 + ], + "spans": [ + { + "bbox": [ + 230, + 607, + 380, + 626 + ], + "score": 0.92, + "content": "\\operatorname { r a n k } { \\overline { { \\mathbf { V } } } } ^ { A B } { \\overline { { \\mathbf { S } } } } ^ { A B ^ { 2 } } { \\overline { { \\mathbf { V } } } } ^ { A B ^ { T } } = \\operatorname { r a n k } { \\overline { { \\mathbf { V } } } } ^ { A B } .", + "type": "interline_equation", + "image_path": "6024782c7c6e7e4621afe41cd86c3d33045b9dfe4a3339b1e81d109d9f9f61ae.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 230, + 607, + 380, + 626 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 637, + 425, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 636, + 426, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 426, + 651 + ], + "score": 1.0, + "content": "Now that we know the eigenvectors of these matrices are in bijection, note that:", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 653, + 504, + 694 + ], + "lines": [ + { + "bbox": [ + 111, + 653, + 504, + 694 + ], + "spans": [ + { + "bbox": [ + 111, + 653, + 504, + 694 + ], + "score": 0.92, + "content": "\\begin{array}{c} \\overline { { \\mathbf { V } } } ^ { A B ^ { T } } \\overline { { \\mathbf { V } } } ^ { A B } \\overline { { \\mathbf { S } } } ^ { A B ^ { 2 } } = [ \\frac { \\overline { { \\mathbf { V } } } ^ { A ^ { T } } } { \\overline { { \\mathbf { V } } } ^ { B ^ { T } } } ] [ \\begin{array} { c } { \\overline { { \\mathbf { V } } } ^ { A } \\begin{array} { c } { \\overline { { \\mathbf { V } } } ^ { B } } \\end{array} } \\end{array} ] [ \\frac { \\overline { { \\mathbf { S } } } ^ { A ^ { 2 } } } { \\mathbf { 0 } } \\end{array} ] \\frac { \\mathbf { 0 } } { \\overline { { \\mathbf { S } } } ^ { B ^ { 2 } } } ] = [ \\begin{array} { c c } { \\mathbf { I } } & { \\mathbf { Q } } \\\\ { \\mathbf { Q } ^ { \\mathbf { T } } } & { \\mathbf { I } } \\end{array} ] [ \\frac { \\overline { { \\mathbf { S } } } ^ { A ^ { 2 } } } { \\mathbf { 0 } } \\begin{array} { c } { \\mathbf { [ \\begin{array} { c } { \\mathbf { 0 } } \\\\ { \\overline { { \\mathbf { S } } } ^ { B ^ { 2 } } } \\end{array} ] } \\overline { { \\mathbf { S } } } ^ { B ^ { 2 } } } \\end{array} ]", + "type": "interline_equation", + "image_path": "be28d71d674191e649188adf52e87ce586d0dcb0b12b5f5659e8081cf5581141.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 111, + 653, + 504, + 694 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 703, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 704, + 505, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 704, + 505, + 715 + ], + "score": 1.0, + "content": "Because the output modes don’t matter (as noted above), the alignment between the eigenvectors of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 102, + 712, + 490, + 734 + ], + "spans": [ + { + "bbox": [ + 102, + 712, + 161, + 734 + ], + "score": 1.0, + "content": "VABSAB2V", + "type": "text" + }, + { + "bbox": [ + 146, + 712, + 187, + 729 + ], + "score": 1.0, + "content": "ABT", + "type": "text" + }, + { + "bbox": [ + 181, + 716, + 199, + 734 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 199, + 716, + 215, + 731 + ], + "score": 0.87, + "content": "\\overline { { \\mathbf { V } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 716, + 490, + 734 + ], + "score": 1.0, + "content": ", weighted by their respective eigenvalues, gives the transfer benefit.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 178, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 179, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 179, + 95 + ], + "score": 1.0, + "content": "Proof: We define", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 81, + 179, + 95 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 97, + 444, + 193 + ], + "lines": [ + { + "bbox": [ + 166, + 97, + 444, + 193 + ], + "spans": [ + { + "bbox": [ + 166, + 97, + 444, + 193 + ], + "score": 0.86, + "content": "\\begin{array} { l l } { { { \\overline { { { \\cal { \\bf { U } } } } } } ^ { A B } = \\begin{array} { c } { { { \\overline { { { \\cal { N } } } } } _ { 3 } } } \\\\ { { { \\overline { { { \\cal { N } } } } } _ { 3 } } } \\\\ { { { \\overline { { { \\cal { N } } } } } _ { 3 } } } \\end{array} } } & { { { \\overline { { { \\cal { N } } } } } _ { 3 } ^ { A } \\begin{array} { c } { { { \\overline { { { \\cal { N } } } } } _ { 2 } ^ { B } } } \\\\ { { \\left| \\begin{array} { c } { { { \\bf { \\overline { { { \\bf { U } } } } } } ^ { A } } } \\end{array} \\right| } } } \\\\ { { { \\overline { { { \\bf { U } } } } } ^ { B } } } \\end{array} } & { { { \\overline { { { \\bf { S } } } } } ^ { A B } = \\begin{array} { c } { { { \\overline { { { \\cal { N } } } } } _ { 2 } ^ { A } } } \\\\ { { { \\overline { { { \\cal { N } } } } } _ { 2 } ^ { B } } } \\end{array} } } \\\\ { { { \\overline { { { \\cal { N } } } } } _ { 2 } ^ { A B } = \\begin{array} { c } { { { \\overline { { { \\cal { N } } } } } _ { 3 } ^ { A } } } \\end{array} } } & { { { \\overline { { { \\bf { U } } } } } _ { 2 } ^ { B } } } \\end{array}", + "type": "interline_equation", + "image_path": "f14751854781d9ed6b6cd2d58f59abe99d16da60103bf5deb51a18fe492fe695.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 166, + 97, + 444, + 129.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 166, + 129.0, + 444, + 161.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 166, + 161.0, + 444, + 193.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 206, + 413, + 246 + ], + "lines": [ + { + "bbox": [ + 196, + 206, + 413, + 246 + ], + "spans": [ + { + "bbox": [ + 196, + 206, + 413, + 246 + ], + "score": 0.89, + "content": "\\mathbf { \\overline { { W } } } ^ { A + B } = [ \\frac { \\mathbf { \\overline { { U } } } ^ { A } } { \\mathbf { 0 } } | \\begin{array} { c } { \\mathbf { 0 } } \\\\ { \\mathbf { \\overline { { U } } } ^ { B } } \\end{array} ] [ \\frac { \\mathbf { \\overline { { S } } } ^ { A } } { \\mathbf { 0 } } | \\begin{array} { c } { \\mathbf { 0 } } \\\\ { \\mathbf { \\overline { { S } } } ^ { B } } \\end{array} ] [ \\frac { \\mathbf { \\overline { { V } } } ^ { A ^ { T } } } { \\mathbf { \\overline { { V } } } ^ { B ^ { T } } } ] ", + "type": "interline_equation", + "image_path": "a18b9f94544a5a673db1bcfe1b5857da9b17361d350e76db494cf0796df70657.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 196, + 206, + 413, + 246 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 248, + 506, + 321 + ], + "lines": [ + { + "bbox": [ + 103, + 245, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 103, + 245, + 248, + 268 + ], + "score": 1.0, + "content": "Because of the 0 blocks in UAB,", + "type": "text" + }, + { + "bbox": [ + 244, + 250, + 430, + 265 + ], + "score": 1.0, + "content": "the vectors in blocks corresponding to task", + "type": "text" + }, + { + "bbox": [ + 430, + 252, + 439, + 262 + ], + "score": 0.78, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 250, + 479, + 265 + ], + "score": 1.0, + "content": "and task", + "type": "text" + }, + { + "bbox": [ + 479, + 252, + 488, + 262 + ], + "score": 0.84, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 250, + 506, + 265 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 103, + 261, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 103, + 261, + 242, + 281 + ], + "score": 1.0, + "content": "completely orthogonal, so UAB", + "type": "text" + }, + { + "bbox": [ + 238, + 264, + 469, + 278 + ], + "score": 1.0, + "content": "remains orthonormal. Thus the relationship between the", + "type": "text" + }, + { + "bbox": [ + 470, + 263, + 487, + 276 + ], + "score": 0.89, + "content": "\\overline { { \\mathbf { U } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 264, + 506, + 278 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 275, + 507, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 123, + 290 + ], + "score": 0.88, + "content": "\\overline { { \\mathbf { U } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 275, + 507, + 296 + ], + "score": 1.0, + "content": "is irrelevant to the transfer. (In our simulations we use arbitrary orthonormal matrices for", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 284, + 509, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 123, + 305 + ], + "score": 0.82, + "content": "\\overline { { \\mathbf { U } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 284, + 141, + 312 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 142, + 291, + 158, + 305 + ], + "score": 0.79, + "content": "\\overline { { \\mathbf { U } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 284, + 509, + 312 + ], + "score": 1.0, + "content": ".) Therefore the transfer effects will be entirely driven by the relationship between the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 102, + 300, + 295, + 324 + ], + "spans": [ + { + "bbox": [ + 102, + 300, + 142, + 324 + ], + "score": 1.0, + "content": "matrices", + "type": "text" + }, + { + "bbox": [ + 143, + 306, + 159, + 319 + ], + "score": 0.88, + "content": "\\overline { { \\mathbf { V } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 300, + 177, + 324 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 177, + 305, + 194, + 319 + ], + "score": 0.91, + "content": "\\overline { { \\mathbf { V } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 300, + 295, + 324 + ], + "score": 1.0, + "content": "and the singular values.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 102, + 245, + 509, + 324 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 325, + 506, + 405 + ], + "lines": [ + { + "bbox": [ + 102, + 323, + 504, + 345 + ], + "spans": [ + { + "bbox": [ + 102, + 323, + 150, + 345 + ], + "score": 1.0, + "content": "We define", + "type": "text" + }, + { + "bbox": [ + 151, + 328, + 167, + 343 + ], + "score": 0.91, + "content": "\\overline { { N } } _ { 2 } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 323, + 183, + 345 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 183, + 328, + 200, + 343 + ], + "score": 0.91, + "content": "\\overline { { N } } _ { 2 } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 323, + 275, + 345 + ], + "score": 1.0, + "content": "similarity matrix", + "type": "text" + }, + { + "bbox": [ + 275, + 325, + 338, + 343 + ], + "score": 0.92, + "content": "\\mathbf { \\overline { { Q } } } = \\mathbf { \\overline { { V } } } ^ { A ^ { T } } \\mathbf { \\overline { { V } } } ^ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 323, + 493, + 345 + ], + "score": 1.0, + "content": ". If we think of the columns of each", + "type": "text" + }, + { + "bbox": [ + 494, + 330, + 504, + 342 + ], + "score": 0.77, + "content": "\\overline { { \\mathbf { V } } }", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 302, + 356 + ], + "score": 1.0, + "content": "as spanning a low dimensional feature space in", + "type": "text" + }, + { + "bbox": [ + 303, + 343, + 317, + 354 + ], + "score": 0.88, + "content": "\\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 342, + 506, + 356 + ], + "score": 1.0, + "content": "dimensional input space that is important for", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 354, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 169, + 368 + ], + "score": 1.0, + "content": "each task, then", + "type": "text" + }, + { + "bbox": [ + 170, + 354, + 180, + 367 + ], + "score": 0.85, + "content": "\\overline { { \\mathbf { Q } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 354, + 506, + 368 + ], + "score": 1.0, + "content": "reflects the input feature subspace similarity matrix. We can now calculate the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 102, + 362, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 102, + 364, + 218, + 384 + ], + "score": 1.0, + "content": "singular values of WA+", + "type": "text" + }, + { + "bbox": [ + 206, + 362, + 430, + 385 + ], + "score": 1.0, + "content": "B. First, note that the input singular modes of WA+B a", + "type": "text" + }, + { + "bbox": [ + 424, + 370, + 506, + 381 + ], + "score": 1.0, + "content": "re eigenvectors of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 379, + 509, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 176, + 397 + ], + "score": 0.92, + "content": "\\overline { { \\mathbf { W } } } ^ { A + B ^ { T } } \\overline { { \\mathbf { W } } } ^ { A + B }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 379, + 509, + 403 + ], + "score": 1.0, + "content": "B, and the associated singular values are square roots of the eigenvalues of WA+B.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 395, + 130, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 130, + 409 + ], + "score": 1.0, + "content": "Now", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.5, + "bbox_fs": [ + 102, + 323, + 509, + 409 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 404, + 460, + 423 + ], + "lines": [ + { + "bbox": [ + 150, + 404, + 460, + 423 + ], + "spans": [ + { + "bbox": [ + 150, + 404, + 460, + 423 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\overline { { \\mathbf { W } } } ^ { A + B ^ { T } } \\overline { { \\mathbf { W } } } ^ { A + B } = \\overline { { \\mathbf { V } } } ^ { A B } \\overline { { \\mathbf { S } } } ^ { A B } \\overline { { \\mathbf { U } } } ^ { A B ^ { T } } \\overline { { \\mathbf { U } } } ^ { A B } \\overline { { \\mathbf { S } } } ^ { A B } \\overline { { \\mathbf { V } } } ^ { A B ^ { T } } = \\overline { { \\mathbf { V } } } ^ { A B } \\overline { { \\mathbf { S } } } ^ { A B ^ { 2 } } \\overline { { \\mathbf { V } } } ^ { A B ^ { T } } } \\end{array}", + "type": "interline_equation", + "image_path": "43f3e333d102893ea85bcb339755c45e779e6ca5d1bd65d76ea9b096dcd55ec1.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 150, + 404, + 460, + 423 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 426, + 271, + 438 + ], + "lines": [ + { + "bbox": [ + 106, + 426, + 271, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 137, + 439 + ], + "score": 1.0, + "content": "Now if", + "type": "text" + }, + { + "bbox": [ + 137, + 427, + 143, + 436 + ], + "score": 0.84, + "content": "\\vec { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 426, + 271, + 439 + ], + "score": 1.0, + "content": "is an eigenvector of this matrix:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 426, + 271, + 439 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 253, + 443, + 359, + 461 + ], + "lines": [ + { + "bbox": [ + 253, + 443, + 359, + 461 + ], + "spans": [ + { + "bbox": [ + 253, + 443, + 359, + 461 + ], + "score": 0.91, + "content": "\\overline { { { \\bf V } } } ^ { A B } \\overline { { { \\bf S } } } ^ { A B ^ { 2 } } \\overline { { { \\bf V } } } ^ { A B ^ { T } } \\vec { c } = \\lambda \\vec { c }", + "type": "interline_equation", + "image_path": "d7fbbfee188d62cbef18a339da60f5fecd653384c9ddb9f8966295ffd74cec4d.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 253, + 443, + 359, + 461 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 468, + 175, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 177, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 177, + 480 + ], + "score": 1.0, + "content": "This implies that", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 466, + 177, + 480 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 477, + 387, + 495 + ], + "lines": [ + { + "bbox": [ + 225, + 477, + 387, + 495 + ], + "spans": [ + { + "bbox": [ + 225, + 477, + 387, + 495 + ], + "score": 0.91, + "content": "\\mathbf { \\overline { { { V } } } } ^ { A B ^ { T } } \\mathbf { \\overline { { { V } } } } ^ { A B } \\mathbf { \\overline { { { S } } } } ^ { A B ^ { 2 } } \\mathbf { \\overline { { { V } } } } ^ { A B ^ { T } } { \\vec { c } } = \\lambda \\mathbf { \\overline { { { V } } } } ^ { A B ^ { T } } { \\vec { c } }", + "type": "interline_equation", + "image_path": "50b46fc1cb03b08ff6212cd1f7f0a846462b9c8bc1bced40cebff3590a8bc23f.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 225, + 477, + 387, + 495 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 497, + 506, + 559 + ], + "lines": [ + { + "bbox": [ + 101, + 493, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 101, + 495, + 250, + 518 + ], + "score": 1.0, + "content": "Hence eigenvalues of VABSAB2V", + "type": "text" + }, + { + "bbox": [ + 267, + 496, + 403, + 517 + ], + "score": 1.0, + "content": "T are also eigenvalues of VABT V", + "type": "text" + }, + { + "bbox": [ + 369, + 497, + 443, + 513 + ], + "score": 0.9, + "content": "\\overline { { { \\bf V } } } ^ { A B ^ { T } } \\overline { { { \\bf V } } } ^ { A B } \\overline { { { \\bf S } } } ^ { A B ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 493, + 506, + 516 + ], + "score": 1.0, + "content": ", with the map-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 102, + 510, + 509, + 532 + ], + "spans": [ + { + "bbox": [ + 102, + 510, + 270, + 532 + ], + "score": 1.0, + "content": "ping between the eigenvectors given by", + "type": "text" + }, + { + "bbox": [ + 271, + 513, + 293, + 527 + ], + "score": 0.9, + "content": "\\overline { { \\mathbf { V } } } ^ { A B }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 510, + 509, + 532 + ], + "score": 1.0, + "content": ". Furthermore, this mapping must be a bijection for", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 527, + 507, + 543 + ], + "spans": [ + { + "bbox": [ + 104, + 528, + 462, + 543 + ], + "score": 1.0, + "content": "eigenvectors with non-zero eigenvalues, since the matrices have the same rank (the rank of", + "type": "text" + }, + { + "bbox": [ + 462, + 527, + 485, + 541 + ], + "score": 0.87, + "content": "\\overline { { \\mathbf { V } } } ^ { A B }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 528, + 507, + 543 + ], + "score": 1.0, + "content": "). To", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 101, + 540, + 354, + 563 + ], + "spans": [ + { + "bbox": [ + 101, + 540, + 210, + 563 + ], + "score": 1.0, + "content": "see this, note that SAB 2 i", + "type": "text" + }, + { + "bbox": [ + 203, + 546, + 354, + 559 + ], + "score": 1.0, + "content": "s full rank. From this, it is clear that", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 101, + 493, + 509, + 563 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 563, + 420, + 581 + ], + "lines": [ + { + "bbox": [ + 190, + 563, + 420, + 581 + ], + "spans": [ + { + "bbox": [ + 190, + 563, + 420, + 581 + ], + "score": 0.89, + "content": "\\mathrm { r a n k } \\overline { { { \\mathbf { V } } } } ^ { A B ^ { T } } \\overline { { { \\mathbf { V } } } } ^ { A B } \\overline { { { \\mathbf { S } } } } ^ { A B ^ { 2 } } = \\mathrm { r a n k } \\overline { { { \\mathbf { V } } } } ^ { A B ^ { T } } \\overline { { { \\mathbf { V } } } } ^ { A B } = \\mathrm { r a n k } \\overline { { { \\mathbf { V } } } } ^ { A B } .", + "type": "interline_equation", + "image_path": "0bc80a4ea89838e575d1e39ac60c1781ae8dad24763c055da29210f52e7d5ca3.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 190, + 563, + 420, + 581 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 586, + 276, + 603 + ], + "lines": [ + { + "bbox": [ + 100, + 583, + 277, + 608 + ], + "spans": [ + { + "bbox": [ + 100, + 583, + 195, + 608 + ], + "score": 1.0, + "content": "Furthermore, SAB2 is", + "type": "text" + }, + { + "bbox": [ + 186, + 591, + 277, + 603 + ], + "score": 1.0, + "content": "positive definite, so", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 100, + 583, + 277, + 608 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 607, + 380, + 626 + ], + "lines": [ + { + "bbox": [ + 230, + 607, + 380, + 626 + ], + "spans": [ + { + "bbox": [ + 230, + 607, + 380, + 626 + ], + "score": 0.92, + "content": "\\operatorname { r a n k } { \\overline { { \\mathbf { V } } } } ^ { A B } { \\overline { { \\mathbf { S } } } } ^ { A B ^ { 2 } } { \\overline { { \\mathbf { V } } } } ^ { A B ^ { T } } = \\operatorname { r a n k } { \\overline { { \\mathbf { V } } } } ^ { A B } .", + "type": "interline_equation", + "image_path": "6024782c7c6e7e4621afe41cd86c3d33045b9dfe4a3339b1e81d109d9f9f61ae.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 230, + 607, + 380, + 626 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 637, + 425, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 636, + 426, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 426, + 651 + ], + "score": 1.0, + "content": "Now that we know the eigenvectors of these matrices are in bijection, note that:", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 636, + 426, + 651 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 653, + 504, + 694 + ], + "lines": [ + { + "bbox": [ + 111, + 653, + 504, + 694 + ], + "spans": [ + { + "bbox": [ + 111, + 653, + 504, + 694 + ], + "score": 0.92, + "content": "\\begin{array}{c} \\overline { { \\mathbf { V } } } ^ { A B ^ { T } } \\overline { { \\mathbf { V } } } ^ { A B } \\overline { { \\mathbf { S } } } ^ { A B ^ { 2 } } = [ \\frac { \\overline { { \\mathbf { V } } } ^ { A ^ { T } } } { \\overline { { \\mathbf { V } } } ^ { B ^ { T } } } ] [ \\begin{array} { c } { \\overline { { \\mathbf { V } } } ^ { A } \\begin{array} { c } { \\overline { { \\mathbf { V } } } ^ { B } } \\end{array} } \\end{array} ] [ \\frac { \\overline { { \\mathbf { S } } } ^ { A ^ { 2 } } } { \\mathbf { 0 } } \\end{array} ] \\frac { \\mathbf { 0 } } { \\overline { { \\mathbf { S } } } ^ { B ^ { 2 } } } ] = [ \\begin{array} { c c } { \\mathbf { I } } & { \\mathbf { Q } } \\\\ { \\mathbf { Q } ^ { \\mathbf { T } } } & { \\mathbf { I } } \\end{array} ] [ \\frac { \\overline { { \\mathbf { S } } } ^ { A ^ { 2 } } } { \\mathbf { 0 } } \\begin{array} { c } { \\mathbf { [ \\begin{array} { c } { \\mathbf { 0 } } \\\\ { \\overline { { \\mathbf { S } } } ^ { B ^ { 2 } } } \\end{array} ] } \\overline { { \\mathbf { S } } } ^ { B ^ { 2 } } } \\end{array} ]", + "type": "interline_equation", + "image_path": "be28d71d674191e649188adf52e87ce586d0dcb0b12b5f5659e8081cf5581141.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 111, + 653, + 504, + 694 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 703, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 704, + 505, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 704, + 505, + 715 + ], + "score": 1.0, + "content": "Because the output modes don’t matter (as noted above), the alignment between the eigenvectors of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 102, + 712, + 490, + 734 + ], + "spans": [ + { + "bbox": [ + 102, + 712, + 161, + 734 + ], + "score": 1.0, + "content": "VABSAB2V", + "type": "text" + }, + { + "bbox": [ + 146, + 712, + 187, + 729 + ], + "score": 1.0, + "content": "ABT", + "type": "text" + }, + { + "bbox": [ + 181, + 716, + 199, + 734 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 199, + 716, + 215, + 731 + ], + "score": 0.87, + "content": "\\overline { { \\mathbf { V } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 716, + 490, + 734 + ], + "score": 1.0, + "content": ", weighted by their respective eigenvalues, gives the transfer benefit.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 102, + 704, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "For any given tasks, the transfer benefit can be calculated using our theory. However, in certain", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "special cases, we can give exact answers. For example, in the rank one case with equal singular", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 315, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 209, + 116 + ], + "score": 1.0, + "content": "values between the tasks", + "type": "text" + }, + { + "bbox": [ + 209, + 105, + 266, + 116 + ], + "score": 0.9, + "content": "\\mathit { \\Pi } _ { \\overline { { { s } } } _ { A } } ^ { \\prime } = \\mathit { \\Pi } _ { \\overline { { { s } } } _ { B } } ^ { \\prime } = \\mathit { \\Pi } _ { \\overline { { { s } } } } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 105, + 315, + 116 + ], + "score": 1.0, + "content": "), the matrix", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 124, + 369, + 165 + ], + "lines": [ + { + "bbox": [ + 241, + 124, + 369, + 165 + ], + "spans": [ + { + "bbox": [ + 241, + 124, + 369, + 165 + ], + "score": 0.94, + "content": "\\left[ \\begin{array} { l l } { \\mathbf { I } } & { \\mathbf { Q } } \\\\ { \\mathbf { Q } ^ { \\mathbf { T } } } & { \\mathbf { I } } \\end{array} \\right] \\left[ \\frac { \\mathbf { \\overline { { S } } } ^ { A ^ { 2 } } \\mathbf { \\Phi } } { \\mathbf { 0 } } \\right] \\mathbf { \\overline { { S } } } ^ { B ^ { 2 } } \\mathbf { \\Phi } ]", + "type": "interline_equation", + "image_path": "6aae4f1a123bce7b66db026b59e4796fc3c20b5647fa05e85504bf5559ce2853.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 241, + 124, + 369, + 144.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 241, + 144.5, + 369, + 165.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 173, + 149, + 185 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 150, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 150, + 185 + ], + "score": 1.0, + "content": "reduces to", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 278, + 187, + 333, + 215 + ], + "lines": [ + { + "bbox": [ + 278, + 187, + 333, + 215 + ], + "spans": [ + { + "bbox": [ + 278, + 187, + 333, + 215 + ], + "score": 0.91, + "content": "\\left[ \\begin{array} { l l } { 1 } & { q } \\\\ { q } & { 1 } \\end{array} \\right] \\overline { { s } } ^ { 2 }", + "type": "interline_equation", + "image_path": "6a2c53846f1ca48cec4d80ce2c1220c9e646aad6bf64eda364d75f6fa394d57f.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 278, + 187, + 333, + 201.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 278, + 201.0, + 333, + 215.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 224, + 282, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 223, + 282, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 175, + 237 + ], + "score": 1.0, + "content": "with eigenvalues", + "type": "text" + }, + { + "bbox": [ + 175, + 224, + 212, + 236 + ], + "score": 0.93, + "content": "s \\sqrt { 1 \\pm q }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 223, + 282, + 237 + ], + "score": 1.0, + "content": "and eigenvectors", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 279, + 244, + 331, + 273 + ], + "lines": [ + { + "bbox": [ + 279, + 244, + 331, + 273 + ], + "spans": [ + { + "bbox": [ + 279, + 244, + 331, + 273 + ], + "score": 0.93, + "content": "\\left[ \\begin{array} { c c } { 1 } & { 1 } \\\\ { 1 } & { - 1 } \\end{array} \\right]", + "type": "interline_equation", + "image_path": "2f0d2041763343936b837f370cfb8ba4aca59bf616c69f3d2049dadc2ca9c356.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 279, + 244, + 331, + 258.5 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 279, + 258.5, + 331, + 273.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 281, + 505, + 315 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 294 + ], + "score": 1.0, + "content": "Corresponding to the shared structure between the tasks and the differences between them. We", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 292, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 245, + 306 + ], + "score": 1.0, + "content": "note that the sign of the alignment", + "type": "text" + }, + { + "bbox": [ + 246, + 294, + 252, + 304 + ], + "score": 0.8, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 292, + 505, + 306 + ], + "score": 1.0, + "content": "is irrelevant as a special case of the fact (noted above) that any", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 304, + 393, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 393, + 315 + ], + "score": 1.0, + "content": "orthogonal transformation on the output modes does not affect transfer.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 108, + 333, + 292, + 344 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 293, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 293, + 346 + ], + "score": 1.0, + "content": "D.1 MISALIGNMENT AND INTERFERENCE", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 354, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 506, + 368 + ], + "score": 1.0, + "content": "Why is there interference between tasks which are not well aligned? In the rank one case, we are", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 102, + 363, + 508, + 385 + ], + "spans": [ + { + "bbox": [ + 102, + 363, + 334, + 385 + ], + "score": 1.0, + "content": "effectively changing the (input) singular dimensions of", + "type": "text" + }, + { + "bbox": [ + 335, + 369, + 351, + 381 + ], + "score": 0.9, + "content": "\\overline { { \\mathbf { Y } } } _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 363, + 375, + 385 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 375, + 366, + 392, + 380 + ], + "score": 0.9, + "content": "\\overline { { \\mathbf { V } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 363, + 404, + 385 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 405, + 366, + 427, + 380 + ], + "score": 0.89, + "content": "\\overline { { \\mathbf { V } } } ^ { A B }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 363, + 508, + 385 + ], + "score": 1.0, + "content": ". The two singular", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 380, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 104, + 380, + 172, + 397 + ], + "score": 1.0, + "content": "modes of VAB", + "type": "text" + }, + { + "bbox": [ + 169, + 381, + 506, + 398 + ], + "score": 1.0, + "content": "correspond to the shared structure between the tasks (weighted by the relative signal", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 394, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 408 + ], + "score": 1.0, + "content": "strengths), and the differences between them, respectively. Although we may be improving our", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 230, + 419 + ], + "score": 1.0, + "content": "estimates of the shared mode if", + "type": "text" + }, + { + "bbox": [ + 231, + 407, + 255, + 417 + ], + "score": 0.89, + "content": "q > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 406, + 424, + 419 + ], + "score": 1.0, + "content": "(by increasing its singular value relative to", + "type": "text" + }, + { + "bbox": [ + 424, + 407, + 437, + 418 + ], + "score": 0.84, + "content": "{ \\overline { { s } } } _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "), we are actually", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 417, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 104, + 417, + 226, + 434 + ], + "score": 1.0, + "content": "decreasing its alignment with", + "type": "text" + }, + { + "bbox": [ + 226, + 418, + 243, + 431 + ], + "score": 0.88, + "content": "\\overline { { \\mathbf { V } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 417, + 271, + 434 + ], + "score": 1.0, + "content": "unless", + "type": "text" + }, + { + "bbox": [ + 271, + 421, + 295, + 432 + ], + "score": 0.91, + "content": "q = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 417, + 506, + 434 + ], + "score": 1.0, + "content": ". This misalignment is captured by the second mode", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 431, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 104, + 433, + 117, + 446 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 431, + 140, + 445 + ], + "score": 0.9, + "content": "\\overline { { \\mathbf { V } } } ^ { A B }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 433, + 506, + 448 + ], + "score": 1.0, + "content": ", but the increase in the singular value of the first mode must come at the cost of a decrease", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "in the singular value of the second mode. See Fig. 10 for a conceptual illustration of this. This means", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "score": 1.0, + "content": "that the multi-task setting allows the distinctions between the tasks to sink towards the sea of noise,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "while pulling out the common structure. In other words, transferring knowledge from one task always", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 479, + 504, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 494, + 491 + ], + "score": 1.0, + "content": "comes at the cost of ignoring differences between the tasks. Furthermore, incorporating a task", + "type": "text" + }, + { + "bbox": [ + 495, + 479, + 504, + 489 + ], + "score": 0.76, + "content": "B", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 490, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 248, + 502 + ], + "score": 1.0, + "content": "allows its noise to seep into the task", + "type": "text" + }, + { + "bbox": [ + 249, + 490, + 257, + 500 + ], + "score": 0.57, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 490, + 506, + 502 + ], + "score": 1.0, + "content": "signal. Together, these two effects help to explain why transfer", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 501, + 331, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 331, + 512 + ], + "score": 1.0, + "content": "can be sometimes beneficial but sometimes detrimental.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 21 + }, + { + "type": "image", + "bbox": [ + 232, + 532, + 379, + 606 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 232, + 532, + 379, + 606 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 232, + 532, + 379, + 606 + ], + "spans": [ + { + "bbox": [ + 232, + 532, + 379, + 606 + ], + "score": 0.957, + "type": "image", + "image_path": "2ff9eeb17e34a1c5c018c10339262e9b2643717551b0503ce8da75485a108ec8.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 232, + 532, + 379, + 569.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 232, + 569.0, + 379, + 606.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 621, + 504, + 644 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 618, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 104, + 618, + 264, + 636 + ], + "score": 1.0, + "content": "Figure 10: Conceptual cartoon of how", + "type": "text" + }, + { + "bbox": [ + 264, + 621, + 294, + 632 + ], + "score": 0.9, + "content": "\\mathcal { T } ^ { A B }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 618, + 506, + 636 + ], + "score": 1.0, + "content": ", the transfer benefit (or cost) arises from alignment", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 632, + 236, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 236, + 645 + ], + "score": 1.0, + "content": "between the task’s input modes.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 107, + 671, + 330, + 684 + ], + "lines": [ + { + "bbox": [ + 105, + 670, + 331, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 331, + 685 + ], + "score": 1.0, + "content": "E NON-GRADIENT TRAINING ALGORITHM", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "In Fig. 11 we show the match between the error achieved by training the student by gradient descent", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "and the optimal stopping error predicted by the non-gradient shrinkage algorithm in the case of a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 721, + 168, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 168, + 732 + ], + "score": 1.0, + "content": "rank-1 teacher.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "For any given tasks, the transfer benefit can be calculated using our theory. However, in certain", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "special cases, we can give exact answers. For example, in the rank one case with equal singular", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 315, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 209, + 116 + ], + "score": 1.0, + "content": "values between the tasks", + "type": "text" + }, + { + "bbox": [ + 209, + 105, + 266, + 116 + ], + "score": 0.9, + "content": "\\mathit { \\Pi } _ { \\overline { { { s } } } _ { A } } ^ { \\prime } = \\mathit { \\Pi } _ { \\overline { { { s } } } _ { B } } ^ { \\prime } = \\mathit { \\Pi } _ { \\overline { { { s } } } } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 105, + 315, + 116 + ], + "score": 1.0, + "content": "), the matrix", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 505, + 116 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 124, + 369, + 165 + ], + "lines": [ + { + "bbox": [ + 241, + 124, + 369, + 165 + ], + "spans": [ + { + "bbox": [ + 241, + 124, + 369, + 165 + ], + "score": 0.94, + "content": "\\left[ \\begin{array} { l l } { \\mathbf { I } } & { \\mathbf { Q } } \\\\ { \\mathbf { Q } ^ { \\mathbf { T } } } & { \\mathbf { I } } \\end{array} \\right] \\left[ \\frac { \\mathbf { \\overline { { S } } } ^ { A ^ { 2 } } \\mathbf { \\Phi } } { \\mathbf { 0 } } \\right] \\mathbf { \\overline { { S } } } ^ { B ^ { 2 } } \\mathbf { \\Phi } ]", + "type": "interline_equation", + "image_path": "6aae4f1a123bce7b66db026b59e4796fc3c20b5647fa05e85504bf5559ce2853.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 241, + 124, + 369, + 144.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 241, + 144.5, + 369, + 165.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 173, + 149, + 185 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 150, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 150, + 185 + ], + "score": 1.0, + "content": "reduces to", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 173, + 150, + 185 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 278, + 187, + 333, + 215 + ], + "lines": [ + { + "bbox": [ + 278, + 187, + 333, + 215 + ], + "spans": [ + { + "bbox": [ + 278, + 187, + 333, + 215 + ], + "score": 0.91, + "content": "\\left[ \\begin{array} { l l } { 1 } & { q } \\\\ { q } & { 1 } \\end{array} \\right] \\overline { { s } } ^ { 2 }", + "type": "interline_equation", + "image_path": "6a2c53846f1ca48cec4d80ce2c1220c9e646aad6bf64eda364d75f6fa394d57f.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 278, + 187, + 333, + 201.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 278, + 201.0, + 333, + 215.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 224, + 282, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 223, + 282, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 175, + 237 + ], + "score": 1.0, + "content": "with eigenvalues", + "type": "text" + }, + { + "bbox": [ + 175, + 224, + 212, + 236 + ], + "score": 0.93, + "content": "s \\sqrt { 1 \\pm q }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 223, + 282, + 237 + ], + "score": 1.0, + "content": "and eigenvectors", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 223, + 282, + 237 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 279, + 244, + 331, + 273 + ], + "lines": [ + { + "bbox": [ + 279, + 244, + 331, + 273 + ], + "spans": [ + { + "bbox": [ + 279, + 244, + 331, + 273 + ], + "score": 0.93, + "content": "\\left[ \\begin{array} { c c } { 1 } & { 1 } \\\\ { 1 } & { - 1 } \\end{array} \\right]", + "type": "interline_equation", + "image_path": "2f0d2041763343936b837f370cfb8ba4aca59bf616c69f3d2049dadc2ca9c356.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 279, + 244, + 331, + 258.5 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 279, + 258.5, + 331, + 273.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 281, + 505, + 315 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 294 + ], + "score": 1.0, + "content": "Corresponding to the shared structure between the tasks and the differences between them. We", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 292, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 245, + 306 + ], + "score": 1.0, + "content": "note that the sign of the alignment", + "type": "text" + }, + { + "bbox": [ + 246, + 294, + 252, + 304 + ], + "score": 0.8, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 292, + 505, + 306 + ], + "score": 1.0, + "content": "is irrelevant as a special case of the fact (noted above) that any", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 304, + 393, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 393, + 315 + ], + "score": 1.0, + "content": "orthogonal transformation on the output modes does not affect transfer.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 281, + 505, + 315 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 333, + 292, + 344 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 293, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 293, + 346 + ], + "score": 1.0, + "content": "D.1 MISALIGNMENT AND INTERFERENCE", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 354, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 506, + 368 + ], + "score": 1.0, + "content": "Why is there interference between tasks which are not well aligned? In the rank one case, we are", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 102, + 363, + 508, + 385 + ], + "spans": [ + { + "bbox": [ + 102, + 363, + 334, + 385 + ], + "score": 1.0, + "content": "effectively changing the (input) singular dimensions of", + "type": "text" + }, + { + "bbox": [ + 335, + 369, + 351, + 381 + ], + "score": 0.9, + "content": "\\overline { { \\mathbf { Y } } } _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 363, + 375, + 385 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 375, + 366, + 392, + 380 + ], + "score": 0.9, + "content": "\\overline { { \\mathbf { V } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 363, + 404, + 385 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 405, + 366, + 427, + 380 + ], + "score": 0.89, + "content": "\\overline { { \\mathbf { V } } } ^ { A B }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 363, + 508, + 385 + ], + "score": 1.0, + "content": ". The two singular", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 380, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 104, + 380, + 172, + 397 + ], + "score": 1.0, + "content": "modes of VAB", + "type": "text" + }, + { + "bbox": [ + 169, + 381, + 506, + 398 + ], + "score": 1.0, + "content": "correspond to the shared structure between the tasks (weighted by the relative signal", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 394, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 408 + ], + "score": 1.0, + "content": "strengths), and the differences between them, respectively. Although we may be improving our", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 230, + 419 + ], + "score": 1.0, + "content": "estimates of the shared mode if", + "type": "text" + }, + { + "bbox": [ + 231, + 407, + 255, + 417 + ], + "score": 0.89, + "content": "q > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 406, + 424, + 419 + ], + "score": 1.0, + "content": "(by increasing its singular value relative to", + "type": "text" + }, + { + "bbox": [ + 424, + 407, + 437, + 418 + ], + "score": 0.84, + "content": "{ \\overline { { s } } } _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "), we are actually", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 417, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 104, + 417, + 226, + 434 + ], + "score": 1.0, + "content": "decreasing its alignment with", + "type": "text" + }, + { + "bbox": [ + 226, + 418, + 243, + 431 + ], + "score": 0.88, + "content": "\\overline { { \\mathbf { V } } } ^ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 417, + 271, + 434 + ], + "score": 1.0, + "content": "unless", + "type": "text" + }, + { + "bbox": [ + 271, + 421, + 295, + 432 + ], + "score": 0.91, + "content": "q = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 417, + 506, + 434 + ], + "score": 1.0, + "content": ". This misalignment is captured by the second mode", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 431, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 104, + 433, + 117, + 446 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 431, + 140, + 445 + ], + "score": 0.9, + "content": "\\overline { { \\mathbf { V } } } ^ { A B }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 433, + 506, + 448 + ], + "score": 1.0, + "content": ", but the increase in the singular value of the first mode must come at the cost of a decrease", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "in the singular value of the second mode. See Fig. 10 for a conceptual illustration of this. This means", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "score": 1.0, + "content": "that the multi-task setting allows the distinctions between the tasks to sink towards the sea of noise,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "while pulling out the common structure. In other words, transferring knowledge from one task always", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 479, + 504, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 494, + 491 + ], + "score": 1.0, + "content": "comes at the cost of ignoring differences between the tasks. Furthermore, incorporating a task", + "type": "text" + }, + { + "bbox": [ + 495, + 479, + 504, + 489 + ], + "score": 0.76, + "content": "B", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 490, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 248, + 502 + ], + "score": 1.0, + "content": "allows its noise to seep into the task", + "type": "text" + }, + { + "bbox": [ + 249, + 490, + 257, + 500 + ], + "score": 0.57, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 490, + 506, + 502 + ], + "score": 1.0, + "content": "signal. Together, these two effects help to explain why transfer", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 501, + 331, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 331, + 512 + ], + "score": 1.0, + "content": "can be sometimes beneficial but sometimes detrimental.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 21, + "bbox_fs": [ + 102, + 355, + 508, + 512 + ] + }, + { + "type": "image", + "bbox": [ + 232, + 532, + 379, + 606 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 232, + 532, + 379, + 606 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 232, + 532, + 379, + 606 + ], + "spans": [ + { + "bbox": [ + 232, + 532, + 379, + 606 + ], + "score": 0.957, + "type": "image", + "image_path": "2ff9eeb17e34a1c5c018c10339262e9b2643717551b0503ce8da75485a108ec8.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 232, + 532, + 379, + 569.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 232, + 569.0, + 379, + 606.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 621, + 504, + 644 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 618, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 104, + 618, + 264, + 636 + ], + "score": 1.0, + "content": "Figure 10: Conceptual cartoon of how", + "type": "text" + }, + { + "bbox": [ + 264, + 621, + 294, + 632 + ], + "score": 0.9, + "content": "\\mathcal { T } ^ { A B }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 618, + 506, + 636 + ], + "score": 1.0, + "content": ", the transfer benefit (or cost) arises from alignment", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 632, + 236, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 236, + 645 + ], + "score": 1.0, + "content": "between the task’s input modes.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 107, + 671, + 330, + 684 + ], + "lines": [ + { + "bbox": [ + 105, + 670, + 331, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 331, + 685 + ], + "score": 1.0, + "content": "E NON-GRADIENT TRAINING ALGORITHM", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "In Fig. 11 we show the match between the error achieved by training the student by gradient descent", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "and the optimal stopping error predicted by the non-gradient shrinkage algorithm in the case of a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 721, + 168, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 168, + 732 + ], + "score": 1.0, + "content": "rank-1 teacher.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 698, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 226, + 82, + 382, + 198 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 226, + 82, + 382, + 198 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 226, + 82, + 382, + 198 + ], + "spans": [ + { + "bbox": [ + 226, + 82, + 382, + 198 + ], + "score": 0.959, + "type": "image", + "image_path": "8fe699450a90e0a1da920afb212efc64c0b70cce8fa419ef6569d47e281026cc.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 226, + 82, + 382, + 96.5 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 226, + 96.5, + 382, + 111.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 226, + 111.0, + 382, + 125.5 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 226, + 125.5, + 382, + 140.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 226, + 140.0, + 382, + 154.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 226, + 154.5, + 382, + 169.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 226, + 169.0, + 382, + 183.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 226, + 183.5, + 382, + 198.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 209, + 504, + 232 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "score": 1.0, + "content": "Figure 11: Match between optimal stopping error prediction from non-gradient training algorithm", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 220, + 338, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 338, + 232 + ], + "score": 1.0, + "content": "and empirical optimal stopping error for a rank-1 teacher.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 6.0 + }, + { + "type": "title", + "bbox": [ + 107, + 256, + 444, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 254, + 446, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 446, + 270 + ], + "score": 1.0, + "content": "F TRANSFER RESULTS GENERALIZE TO NON-LINEAR NETWORKS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 108, + 281, + 504, + 315 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 506, + 294 + ], + "score": 1.0, + "content": "Since most deep learning practitioners do not train linear networks, it is important that our theoretical", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 293, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 304 + ], + "score": 1.0, + "content": "insights generalize beyond this simple case. In this section we show that the transfer patterns", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 303, + 297, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 297, + 315 + ], + "score": 1.0, + "content": "qualitatively generalize to non-linear networks.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 319, + 505, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 319, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 315, + 332 + ], + "score": 1.0, + "content": "Here, we show results from teacher networks with", + "type": "text" + }, + { + "bbox": [ + 315, + 319, + 399, + 331 + ], + "score": 0.7, + "content": "\\overline { { N } } _ { 1 } = 1 0 0 \\overline { { N } } _ { 3 } = 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 319, + 403, + 332 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 403, + 319, + 437, + 331 + ], + "score": 0.89, + "content": "\\overline { { N } } _ { 2 } = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 319, + 506, + 332 + ], + "score": 1.0, + "content": "(thus the task is", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 330, + 504, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 504, + 343 + ], + "score": 1.0, + "content": "higher rank) and leaky relu non-linearities at the hidden and output layers. We train a student with", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 341, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 188, + 355 + ], + "score": 1.0, + "content": "leaky relu units and", + "type": "text" + }, + { + "bbox": [ + 188, + 342, + 228, + 353 + ], + "score": 0.93, + "content": "N _ { 2 } = N _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 341, + 505, + 355 + ], + "score": 1.0, + "content": "to solve this task. Results qualitatively look quite similar to those in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 351, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 367 + ], + "score": 1.0, + "content": "Fig 5. of the main text for rank one linear teachers, see below. Thus our insights into transfer may", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 363, + 399, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 399, + 377 + ], + "score": 1.0, + "content": "help to understand multi-task benefits in more complicated architectures.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16 + }, + { + "type": "image", + "bbox": [ + 108, + 388, + 496, + 486 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 388, + 496, + 486 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 388, + 496, + 486 + ], + "spans": [ + { + "bbox": [ + 108, + 388, + 496, + 486 + ], + "score": 0.969, + "type": "image", + "image_path": "3aa21b341a46731773f7366f14f4c4df08b4e4ea25985a881fa5ca23d11fc270.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 108, + 388, + 496, + 420.6666666666667 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 108, + 420.6666666666667, + 496, + 453.33333333333337 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 108, + 453.33333333333337, + 496, + 486.00000000000006 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 498, + 506, + 579 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 497, + 507, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 213, + 513 + ], + "score": 1.0, + "content": "Figure 12: Transfer benefit", + "type": "text" + }, + { + "bbox": [ + 213, + 499, + 287, + 512 + ], + "score": 0.92, + "content": "\\mathcal { T } ^ { A B } ( \\overline { { s } } _ { A } , \\overline { { s } } _ { B } , q )", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 497, + 507, + 513 + ], + "score": 1.0, + "content": "for non-linear teachers and students, plotted at different", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 511, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 145, + 525 + ], + "score": 1.0, + "content": "values of", + "type": "text" + }, + { + "bbox": [ + 146, + 513, + 158, + 523 + ], + "score": 0.85, + "content": "{ \\overline { { s } } } _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 511, + 177, + 525 + ], + "score": 1.0, + "content": ". (a)", + "type": "text" + }, + { + "bbox": [ + 177, + 511, + 253, + 523 + ], + "score": 0.92, + "content": "\\overline { { s } } _ { A } = 0 . 8 4 = \\sqrt [ 4 ] { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 511, + 506, + 525 + ], + "score": 1.0, + "content": ". With support from another aligned task, especially one with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 419, + 536 + ], + "score": 1.0, + "content": "moderately higher SNR, performance on a low SNR task will improve. (b)", + "type": "text" + }, + { + "bbox": [ + 420, + 524, + 452, + 534 + ], + "score": 0.91, + "content": "{ \\overline { { s } } } _ { A } = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 523, + 505, + 536 + ], + "score": 1.0, + "content": ". Tasks with", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 535, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 506, + 546 + ], + "score": 1.0, + "content": "modest signals will face interference from poorly aligned tasks, but benefits from well aligned tasks.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 544, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 270, + 558 + ], + "score": 1.0, + "content": "These effects are amplified by SNR. (c)", + "type": "text" + }, + { + "bbox": [ + 270, + 545, + 311, + 556 + ], + "score": 0.91, + "content": "\\overline { { s } } _ { A } = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 544, + 506, + 558 + ], + "score": 1.0, + "content": ". Tasks with very strong signals will show little", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 555, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 570 + ], + "score": 1.0, + "content": "effect from other tasks (note y-axis scale), but any impact will be negative unless the tasks are very", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 567, + 160, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 160, + 579 + ], + "score": 1.0, + "content": "well aligned.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 106, + 603, + 376, + 615 + ], + "lines": [ + { + "bbox": [ + 105, + 600, + 378, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 378, + 618 + ], + "score": 1.0, + "content": "G VARYING THE NUMBER OF TRAINING EXAMPLES", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 628, + 506, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 504, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 504, + 640 + ], + "score": 1.0, + "content": "In the main text, we focused on the test error dynamics in the case in which the number of examples", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 639, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 652 + ], + "score": 1.0, + "content": "equalled the number of inputs. Here we show how the formula for test error curves is modified as", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 650, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 241, + 662 + ], + "score": 1.0, + "content": "the number of training examples", + "type": "text" + }, + { + "bbox": [ + 241, + 651, + 250, + 660 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 651, + 379, + 662 + ], + "score": 1.0, + "content": "is varied. For simplicity, when", + "type": "text" + }, + { + "bbox": [ + 379, + 650, + 414, + 662 + ], + "score": 0.91, + "content": "P \\neq N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 651, + 505, + 662 + ], + "score": 1.0, + "content": ", we focus on the case", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 661, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 264, + 674 + ], + "score": 1.0, + "content": "of a full rank student with aspect ratio", + "type": "text" + }, + { + "bbox": [ + 264, + 662, + 291, + 672 + ], + "score": 0.89, + "content": "A = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 661, + 326, + 674 + ], + "score": 1.0, + "content": "(so that", + "type": "text" + }, + { + "bbox": [ + 326, + 662, + 392, + 672 + ], + "score": 0.91, + "content": "N _ { 1 } = N _ { 2 } = N _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 661, + 506, + 674 + ], + "score": 1.0, + "content": "). The more general case of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "score": 1.0, + "content": "lower rank students with non-unity aspect ratios can be easily found from this case, but with some", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 682, + 205, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 205, + 697 + ], + "score": 1.0, + "content": "additional bookkeeping.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 700, + 430, + 712 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 431, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 391, + 714 + ], + "score": 1.0, + "content": "As before, we assume the teacher generates noisy outputs from a set of", + "type": "text" + }, + { + "bbox": [ + 392, + 701, + 400, + 710 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 699, + 431, + 714 + ], + "score": 1.0, + "content": "inputs:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 718, + 392, + 732 + ], + "lines": [ + { + "bbox": [ + 219, + 718, + 392, + 732 + ], + "spans": [ + { + "bbox": [ + 219, + 718, + 392, + 732 + ], + "score": 0.91, + "content": "\\hat { \\mathbf { y } } ^ { \\mu } = \\overline { { \\mathbf { W } } } \\hat { \\mathbf { x } } ^ { \\mu } + \\mathbf { z } ^ { \\mu } \\qquad \\mathrm { f o r } \\quad \\mu = 1 , \\ldots , \\mathbf { P } .", + "type": "interline_equation", + "image_path": "017aac481874cee2e8ced8eecd7adc08c4e109af6d0b198562927d7c19ea5c3d.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 219, + 718, + 392, + 732 + ], + "spans": [], + "index": 37 + } + ] + } + ], + "page_idx": 16, + "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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 226, + 82, + 382, + 198 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 226, + 82, + 382, + 198 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 226, + 82, + 382, + 198 + ], + "spans": [ + { + "bbox": [ + 226, + 82, + 382, + 198 + ], + "score": 0.959, + "type": "image", + "image_path": "8fe699450a90e0a1da920afb212efc64c0b70cce8fa419ef6569d47e281026cc.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 226, + 82, + 382, + 96.5 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 226, + 96.5, + 382, + 111.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 226, + 111.0, + 382, + 125.5 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 226, + 125.5, + 382, + 140.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 226, + 140.0, + 382, + 154.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 226, + 154.5, + 382, + 169.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 226, + 169.0, + 382, + 183.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 226, + 183.5, + 382, + 198.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 209, + 504, + 232 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "score": 1.0, + "content": "Figure 11: Match between optimal stopping error prediction from non-gradient training algorithm", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 220, + 338, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 338, + 232 + ], + "score": 1.0, + "content": "and empirical optimal stopping error for a rank-1 teacher.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 6.0 + }, + { + "type": "title", + "bbox": [ + 107, + 256, + 444, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 254, + 446, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 446, + 270 + ], + "score": 1.0, + "content": "F TRANSFER RESULTS GENERALIZE TO NON-LINEAR NETWORKS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 108, + 281, + 504, + 315 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 506, + 294 + ], + "score": 1.0, + "content": "Since most deep learning practitioners do not train linear networks, it is important that our theoretical", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 293, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 304 + ], + "score": 1.0, + "content": "insights generalize beyond this simple case. In this section we show that the transfer patterns", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 303, + 297, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 297, + 315 + ], + "score": 1.0, + "content": "qualitatively generalize to non-linear networks.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 281, + 506, + 315 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 319, + 505, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 319, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 315, + 332 + ], + "score": 1.0, + "content": "Here, we show results from teacher networks with", + "type": "text" + }, + { + "bbox": [ + 315, + 319, + 399, + 331 + ], + "score": 0.7, + "content": "\\overline { { N } } _ { 1 } = 1 0 0 \\overline { { N } } _ { 3 } = 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 319, + 403, + 332 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 403, + 319, + 437, + 331 + ], + "score": 0.89, + "content": "\\overline { { N } } _ { 2 } = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 319, + 506, + 332 + ], + "score": 1.0, + "content": "(thus the task is", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 330, + 504, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 504, + 343 + ], + "score": 1.0, + "content": "higher rank) and leaky relu non-linearities at the hidden and output layers. We train a student with", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 341, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 188, + 355 + ], + "score": 1.0, + "content": "leaky relu units and", + "type": "text" + }, + { + "bbox": [ + 188, + 342, + 228, + 353 + ], + "score": 0.93, + "content": "N _ { 2 } = N _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 341, + 505, + 355 + ], + "score": 1.0, + "content": "to solve this task. Results qualitatively look quite similar to those in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 351, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 367 + ], + "score": 1.0, + "content": "Fig 5. of the main text for rank one linear teachers, see below. Thus our insights into transfer may", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 363, + 399, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 399, + 377 + ], + "score": 1.0, + "content": "help to understand multi-task benefits in more complicated architectures.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 319, + 506, + 377 + ] + }, + { + "type": "image", + "bbox": [ + 108, + 388, + 496, + 486 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 388, + 496, + 486 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 388, + 496, + 486 + ], + "spans": [ + { + "bbox": [ + 108, + 388, + 496, + 486 + ], + "score": 0.969, + "type": "image", + "image_path": "3aa21b341a46731773f7366f14f4c4df08b4e4ea25985a881fa5ca23d11fc270.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 108, + 388, + 496, + 420.6666666666667 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 108, + 420.6666666666667, + 496, + 453.33333333333337 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 108, + 453.33333333333337, + 496, + 486.00000000000006 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 498, + 506, + 579 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 497, + 507, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 213, + 513 + ], + "score": 1.0, + "content": "Figure 12: Transfer benefit", + "type": "text" + }, + { + "bbox": [ + 213, + 499, + 287, + 512 + ], + "score": 0.92, + "content": "\\mathcal { T } ^ { A B } ( \\overline { { s } } _ { A } , \\overline { { s } } _ { B } , q )", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 497, + 507, + 513 + ], + "score": 1.0, + "content": "for non-linear teachers and students, plotted at different", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 511, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 145, + 525 + ], + "score": 1.0, + "content": "values of", + "type": "text" + }, + { + "bbox": [ + 146, + 513, + 158, + 523 + ], + "score": 0.85, + "content": "{ \\overline { { s } } } _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 511, + 177, + 525 + ], + "score": 1.0, + "content": ". (a)", + "type": "text" + }, + { + "bbox": [ + 177, + 511, + 253, + 523 + ], + "score": 0.92, + "content": "\\overline { { s } } _ { A } = 0 . 8 4 = \\sqrt [ 4 ] { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 511, + 506, + 525 + ], + "score": 1.0, + "content": ". With support from another aligned task, especially one with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 419, + 536 + ], + "score": 1.0, + "content": "moderately higher SNR, performance on a low SNR task will improve. (b)", + "type": "text" + }, + { + "bbox": [ + 420, + 524, + 452, + 534 + ], + "score": 0.91, + "content": "{ \\overline { { s } } } _ { A } = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 523, + 505, + 536 + ], + "score": 1.0, + "content": ". Tasks with", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 535, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 506, + 546 + ], + "score": 1.0, + "content": "modest signals will face interference from poorly aligned tasks, but benefits from well aligned tasks.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 544, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 270, + 558 + ], + "score": 1.0, + "content": "These effects are amplified by SNR. (c)", + "type": "text" + }, + { + "bbox": [ + 270, + 545, + 311, + 556 + ], + "score": 0.91, + "content": "\\overline { { s } } _ { A } = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 544, + 506, + 558 + ], + "score": 1.0, + "content": ". Tasks with very strong signals will show little", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 555, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 570 + ], + "score": 1.0, + "content": "effect from other tasks (note y-axis scale), but any impact will be negative unless the tasks are very", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 567, + 160, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 160, + 579 + ], + "score": 1.0, + "content": "well aligned.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 106, + 603, + 376, + 615 + ], + "lines": [ + { + "bbox": [ + 105, + 600, + 378, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 378, + 618 + ], + "score": 1.0, + "content": "G VARYING THE NUMBER OF TRAINING EXAMPLES", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 628, + 506, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 504, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 504, + 640 + ], + "score": 1.0, + "content": "In the main text, we focused on the test error dynamics in the case in which the number of examples", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 639, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 652 + ], + "score": 1.0, + "content": "equalled the number of inputs. Here we show how the formula for test error curves is modified as", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 650, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 241, + 662 + ], + "score": 1.0, + "content": "the number of training examples", + "type": "text" + }, + { + "bbox": [ + 241, + 651, + 250, + 660 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 651, + 379, + 662 + ], + "score": 1.0, + "content": "is varied. For simplicity, when", + "type": "text" + }, + { + "bbox": [ + 379, + 650, + 414, + 662 + ], + "score": 0.91, + "content": "P \\neq N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 651, + 505, + 662 + ], + "score": 1.0, + "content": ", we focus on the case", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 661, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 264, + 674 + ], + "score": 1.0, + "content": "of a full rank student with aspect ratio", + "type": "text" + }, + { + "bbox": [ + 264, + 662, + 291, + 672 + ], + "score": 0.89, + "content": "A = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 661, + 326, + 674 + ], + "score": 1.0, + "content": "(so that", + "type": "text" + }, + { + "bbox": [ + 326, + 662, + 392, + 672 + ], + "score": 0.91, + "content": "N _ { 1 } = N _ { 2 } = N _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 661, + 506, + 674 + ], + "score": 1.0, + "content": "). The more general case of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "score": 1.0, + "content": "lower rank students with non-unity aspect ratios can be easily found from this case, but with some", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 682, + 205, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 205, + 697 + ], + "score": 1.0, + "content": "additional bookkeeping.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 629, + 506, + 697 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 700, + 430, + 712 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 431, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 391, + 714 + ], + "score": 1.0, + "content": "As before, we assume the teacher generates noisy outputs from a set of", + "type": "text" + }, + { + "bbox": [ + 392, + 701, + 400, + 710 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 699, + 431, + 714 + ], + "score": 1.0, + "content": "inputs:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 699, + 431, + 714 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 718, + 392, + 732 + ], + "lines": [ + { + "bbox": [ + 219, + 718, + 392, + 732 + ], + "spans": [ + { + "bbox": [ + 219, + 718, + 392, + 732 + ], + "score": 0.91, + "content": "\\hat { \\mathbf { y } } ^ { \\mu } = \\overline { { \\mathbf { W } } } \\hat { \\mathbf { x } } ^ { \\mu } + \\mathbf { z } ^ { \\mu } \\qquad \\mathrm { f o r } \\quad \\mu = 1 , \\ldots , \\mathbf { P } .", + "type": "interline_equation", + "image_path": "017aac481874cee2e8ced8eecd7adc08c4e109af6d0b198562927d7c19ea5c3d.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 219, + 718, + 392, + 732 + ], + "spans": [], + "index": 37 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 79, + 492, + 281 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 79, + 492, + 281 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 79, + 492, + 281 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 492, + 281 + ], + "score": 0.976, + "type": "image", + "image_path": "cdfbc5d1756ec978413726647b732f78c395fed4934518082d5a82318c0a50f6.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 79, + 492, + 146.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 146.33333333333331, + 492, + 213.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 213.66666666666663, + 492, + 280.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 292, + 506, + 397 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 292, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 380, + 306 + ], + "score": 1.0, + "content": "Figure 13: The effects of varying the number of training examples", + "type": "text" + }, + { + "bbox": [ + 381, + 293, + 390, + 303 + ], + "score": 0.75, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 292, + 506, + 306 + ], + "score": 1.0, + "content": ". (a) Test error for a student", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 305, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 505, + 316 + ], + "score": 1.0, + "content": "learning from a rank-1 teacher with an SNR of 3, with different numbers of inputs. (b,c) Minimum", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 315, + 507, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 253, + 330 + ], + "score": 1.0, + "content": "generalization error plotted against", + "type": "text" + }, + { + "bbox": [ + 254, + 315, + 289, + 329 + ], + "score": 0.94, + "content": "\\sqrt { P / N _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 315, + 336, + 330 + ], + "score": 1.0, + "content": "and SNR ·", + "type": "text" + }, + { + "bbox": [ + 336, + 315, + 371, + 329 + ], + "score": 0.72, + "content": "\\sqrt { P / N _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 315, + 507, + 330 + ], + "score": 1.0, + "content": ", respectively, at different SNRs.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 327, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 133, + 343 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 133, + 329, + 171, + 341 + ], + "score": 0.92, + "content": "P \\geq N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 329, + 421, + 343 + ], + "score": 1.0, + "content": ", the minimum generalization error is simply determined by", + "type": "text" + }, + { + "bbox": [ + 421, + 327, + 475, + 342 + ], + "score": 0.92, + "content": "\\mathrm { S N R } \\sqrt { P / N _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 329, + 506, + 343 + ], + "score": 1.0, + "content": ", so all", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 341, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 325, + 353 + ], + "score": 1.0, + "content": "curves converge to a single asymptotic line in (c) as", + "type": "text" + }, + { + "bbox": [ + 325, + 341, + 334, + 351 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 341, + 408, + 353 + ], + "score": 1.0, + "content": "increases. When", + "type": "text" + }, + { + "bbox": [ + 408, + 341, + 446, + 352 + ], + "score": 0.91, + "content": "P < N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 341, + 505, + 353 + ], + "score": 1.0, + "content": ", however, the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 352, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 506, + 364 + ], + "score": 1.0, + "content": "curves for different SNRs separate because the projection and noise effects depend on initial SNR.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 362, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 506, + 376 + ], + "score": 1.0, + "content": "(d) Optimal stopping error for gaussian vs. orthogonal inputs, showing a strong correlation. Thus our", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 373, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 387 + ], + "score": 1.0, + "content": "use of orthogonal inputs in the theory also yields insight into the more general case of approximately", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 384, + 415, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 277, + 397 + ], + "score": 1.0, + "content": "unit norm Gaussian inputs. (For all panels", + "type": "text" + }, + { + "bbox": [ + 277, + 384, + 371, + 396 + ], + "score": 0.89, + "content": "N _ { 1 } = N _ { 2 } = N _ { 3 } = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 385, + 374, + 397 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 374, + 384, + 408, + 396 + ], + "score": 0.78, + "content": "{ \\overline { { N } } } _ { 2 } ^ { - } = 1 .", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 385, + 415, + 397 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 105, + 414, + 493, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 412, + 495, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 495, + 429 + ], + "score": 1.0, + "content": "This training set yields important second-order training statistics that will guide student learning:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 428, + 413, + 442 + ], + "lines": [ + { + "bbox": [ + 198, + 428, + 413, + 442 + ], + "spans": [ + { + "bbox": [ + 198, + 428, + 413, + 442 + ], + "score": 0.86, + "content": "\\begin{array} { r } { \\pmb { \\Sigma } ^ { 1 1 } \\equiv \\hat { \\mathbf { X } } \\hat { \\mathbf { X } } ^ { T } \\qquad \\pmb { \\Sigma } ^ { 3 1 } \\equiv \\hat { \\mathbf { Y } } \\hat { \\mathbf { X } } ^ { T } = \\overline { { \\mathbf { W } } } \\hat { \\mathbf { X } } \\hat { \\mathbf { X } } ^ { T } + \\mathbf { Z } \\hat { \\mathbf { X } } ^ { T } . } \\end{array}", + "type": "interline_equation", + "image_path": "209c20bdf91e361008c626888198448737b108bc9fa9e2b412c9e72f9d64346e.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 198, + 428, + 413, + 442 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 445, + 506, + 675 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 128, + 460 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 129, + 445, + 154, + 457 + ], + "score": 0.34, + "content": "\\hat { \\mathbf { X } } , \\hat { \\mathbf { Y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 444, + 175, + 460 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 176, + 447, + 184, + 457 + ], + "score": 0.73, + "content": "\\mathbf { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 444, + 222, + 460 + ], + "score": 1.0, + "content": "are each", + "type": "text" + }, + { + "bbox": [ + 222, + 445, + 237, + 458 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 444, + 251, + 460 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 252, + 446, + 261, + 457 + ], + "score": 0.67, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 444, + 264, + 460 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 265, + 445, + 280, + 458 + ], + "score": 0.76, + "content": "\\overline { { N } } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 444, + 294, + 460 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 295, + 447, + 303, + 457 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 444, + 325, + 460 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 326, + 446, + 340, + 457 + ], + "score": 0.89, + "content": "\\overline { { N } } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 444, + 355, + 460 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 355, + 447, + 364, + 457 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 444, + 485, + 460 + ], + "score": 1.0, + "content": "matrices respectively, whose", + "type": "text" + }, + { + "bbox": [ + 486, + 449, + 493, + 457 + ], + "score": 0.68, + "content": "\\mu ^ { \\mathrm { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 444, + 506, + 460 + ], + "score": 1.0, + "content": "’th", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 456, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 104, + 456, + 157, + 470 + ], + "score": 1.0, + "content": "columns are", + "type": "text" + }, + { + "bbox": [ + 157, + 458, + 186, + 469 + ], + "score": 0.29, + "content": "\\hat { \\mathbf { x } } ^ { \\mu } , \\hat { \\mathbf { y } } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 456, + 207, + 470 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 207, + 458, + 218, + 468 + ], + "score": 0.87, + "content": "\\hat { \\mathbf { z } } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 456, + 275, + 470 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + }, + { + "bbox": [ + 276, + 457, + 293, + 468 + ], + "score": 0.89, + "content": "\\dot { \\mathbf { \\Sigma } } ^ { 1 \\mathrm { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 456, + 315, + 470 + ], + "score": 1.0, + "content": "is an", + "type": "text" + }, + { + "bbox": [ + 316, + 457, + 330, + 469 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 456, + 344, + 470 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 344, + 457, + 359, + 469 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 456, + 477, + 470 + ], + "score": 1.0, + "content": "input correlation matrix, and", + "type": "text" + }, + { + "bbox": [ + 477, + 457, + 494, + 468 + ], + "score": 0.88, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 456, + 506, + 470 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 467, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 118, + 481 + ], + "score": 1.0, + "content": "an", + "type": "text" + }, + { + "bbox": [ + 119, + 468, + 133, + 480 + ], + "score": 0.91, + "content": "\\overline { { N } } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 467, + 147, + 481 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 148, + 468, + 163, + 480 + ], + "score": 0.91, + "content": "\\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 467, + 441, + 481 + ], + "score": 1.0, + "content": "the input-output correlation matrix. We choose the matrix elements", + "type": "text" + }, + { + "bbox": [ + 442, + 468, + 453, + 481 + ], + "score": 0.9, + "content": "z _ { i } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 467, + 506, + 481 + ], + "score": 1.0, + "content": "of the noise", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 479, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 104, + 479, + 135, + 494 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 135, + 481, + 143, + 491 + ], + "score": 0.7, + "content": "\\mathbf { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 479, + 389, + 494 + ], + "score": 1.0, + "content": "to be drawn iid from a Gaussian with zero mean and variance", + "type": "text" + }, + { + "bbox": [ + 390, + 480, + 420, + 493 + ], + "score": 0.94, + "content": "\\sigma _ { z } ^ { 2 } / \\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 479, + 506, + 494 + ], + "score": 1.0, + "content": ". The noise scaling is", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 492, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 280, + 506 + ], + "score": 1.0, + "content": "chosen so the singular values of the teacher", + "type": "text" + }, + { + "bbox": [ + 281, + 492, + 294, + 504 + ], + "score": 0.81, + "content": "\\overline { { \\mathbf { W } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 493, + 349, + 506 + ], + "score": 1.0, + "content": "and the noise", + "type": "text" + }, + { + "bbox": [ + 350, + 494, + 358, + 504 + ], + "score": 0.6, + "content": "\\mathbf { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 493, + 393, + 506 + ], + "score": 1.0, + "content": "are both", + "type": "text" + }, + { + "bbox": [ + 394, + 494, + 415, + 506 + ], + "score": 0.89, + "content": "O ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 493, + 506, + 506 + ], + "score": 1.0, + "content": ", leading to non-trivial", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 504, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 517 + ], + "score": 1.0, + "content": "generalization effects. Furthermore, we chose training inputs to be close to unit-norm, and make", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 513, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 104, + 513, + 220, + 530 + ], + "score": 1.0, + "content": "the input covariance matrix", + "type": "text" + }, + { + "bbox": [ + 221, + 515, + 238, + 526 + ], + "score": 0.89, + "content": "\\pmb { \\Sigma } ^ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 513, + 506, + 530 + ], + "score": 1.0, + "content": "as white as possible (whitening is a common pre-processing step", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 526, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 184, + 540 + ], + "score": 1.0, + "content": "for inputs). When", + "type": "text" + }, + { + "bbox": [ + 184, + 527, + 222, + 539 + ], + "score": 0.9, + "content": "P > \\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 527, + 399, + 540 + ], + "score": 1.0, + "content": ", this can be done by choosing the rows of", + "type": "text" + }, + { + "bbox": [ + 399, + 526, + 410, + 538 + ], + "score": 0.85, + "content": "\\hat { \\bf X }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 527, + 506, + 540 + ], + "score": 1.0, + "content": "to be orthonormal and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 540, + 504, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 185, + 558 + ], + "score": 1.0, + "content": "then scaling up by", + "type": "text" + }, + { + "bbox": [ + 186, + 540, + 222, + 559 + ], + "score": 0.93, + "content": "\\sqrt { P / \\overline { { N } } _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 542, + 441, + 558 + ], + "score": 1.0, + "content": ", so the columns are approximately unit norm. Then", + "type": "text" + }, + { + "bbox": [ + 441, + 542, + 504, + 556 + ], + "score": 0.93, + "content": "\\Sigma ^ { 1 1 } = P / \\overline { { N } } _ { 1 } \\mathbf { I }", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 104, + 559, + 318, + 572 + ], + "score": 1.0, + "content": "is proportional to the identity. On the otherhand, if", + "type": "text" + }, + { + "bbox": [ + 319, + 559, + 356, + 571 + ], + "score": 0.92, + "content": "P < \\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 559, + 470, + 572 + ], + "score": 1.0, + "content": ", we choose the columns of", + "type": "text" + }, + { + "bbox": [ + 471, + 558, + 481, + 570 + ], + "score": 0.85, + "content": "\\hat { \\bf X }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 559, + 506, + 572 + ], + "score": 1.0, + "content": "to be", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 570, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 189, + 585 + ], + "score": 1.0, + "content": "orthonormal, so that", + "type": "text" + }, + { + "bbox": [ + 190, + 571, + 234, + 583 + ], + "score": 0.92, + "content": "\\pmb { \\Sigma } ^ { 1 1 } = \\pmb { \\mathcal { P } } ^ { | | }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 570, + 265, + 585 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 265, + 570, + 280, + 583 + ], + "score": 0.89, + "content": "\\mathcal { P } ^ { | | }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 570, + 411, + 585 + ], + "score": 1.0, + "content": "is a projection operator onto the", + "type": "text" + }, + { + "bbox": [ + 411, + 573, + 421, + 583 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 570, + 506, + 585 + ], + "score": 1.0, + "content": "dimensional column", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 583, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 104, + 583, + 144, + 599 + ], + "score": 1.0, + "content": "space of", + "type": "text" + }, + { + "bbox": [ + 144, + 583, + 154, + 595 + ], + "score": 0.81, + "content": "\\hat { \\mathbf X }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 583, + 506, + 599 + ], + "score": 1.0, + "content": "spanned by the input examples. Both these choices are intended to approximate the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 240, + 609 + ], + "score": 1.0, + "content": "situation in which the columns of", + "type": "text" + }, + { + "bbox": [ + 240, + 596, + 250, + 607 + ], + "score": 0.81, + "content": "\\hat { \\bf X }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 597, + 505, + 609 + ], + "score": 1.0, + "content": "are chosen to be iid unit-norm vectors. Finally, as generalization", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 102, + 603, + 502, + 626 + ], + "spans": [ + { + "bbox": [ + 102, + 603, + 491, + 626 + ], + "score": 1.0, + "content": "performance will depend on the ratio of teacher singular values to the noise variance parameter", + "type": "text" + }, + { + "bbox": [ + 491, + 608, + 502, + 621 + ], + "score": 0.89, + "content": "\\sigma _ { z } ^ { 2 }", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 165, + 632 + ], + "score": 1.0, + "content": "we simply set", + "type": "text" + }, + { + "bbox": [ + 166, + 620, + 198, + 630 + ], + "score": 0.92, + "content": "\\sigma _ { z } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "as in the main text. Thus, given the unit-norm inputs, we can think of the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 630, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 506, + 643 + ], + "score": 1.0, + "content": "teacher singular values as signal to noise ratios (SNRs). We now examine how the dynamics of the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 642, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 363, + 653 + ], + "score": 1.0, + "content": "test error evolves as we vary the number of training examples", + "type": "text" + }, + { + "bbox": [ + 363, + 642, + 372, + 651 + ], + "score": 0.79, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 642, + 505, + 653 + ], + "score": 1.0, + "content": ". We split our analyses into two", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 652, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 390, + 665 + ], + "score": 1.0, + "content": "distinct regimes: (1) the oversampled regime in which the data density", + "type": "text" + }, + { + "bbox": [ + 391, + 652, + 455, + 664 + ], + "score": 0.93, + "content": "\\bar { \\mathcal { D } } \\equiv P / N _ { 1 } > \\mathrm { ~ \\bar { ~ } { ~ 1 ~ } ~ }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 652, + 506, + 665 + ], + "score": 1.0, + "content": ", and (2) the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 662, + 264, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 232, + 675 + ], + "score": 1.0, + "content": "undersampled regime in which", + "type": "text" + }, + { + "bbox": [ + 232, + 663, + 259, + 673 + ], + "score": 0.9, + "content": "\\mathcal { D } < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 662, + 264, + 675 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 108, + 687, + 254, + 699 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 255, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 255, + 699 + ], + "score": 1.0, + "content": "G.1 THE OVERSAMPLED REGIME", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 108, + 707, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 706, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 706, + 211, + 721 + ], + "score": 1.0, + "content": "The oversampled regime", + "type": "text" + }, + { + "bbox": [ + 212, + 709, + 240, + 719 + ], + "score": 0.85, + "content": "\\mathcal { D } > 1 \\vert", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 706, + 347, + 721 + ], + "score": 1.0, + "content": ") is relatively simple. First", + "type": "text" + }, + { + "bbox": [ + 347, + 708, + 364, + 718 + ], + "score": 0.88, + "content": "\\pmb { \\Sigma } ^ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 706, + 471, + 721 + ], + "score": 1.0, + "content": "is scaled up by a factor of", + "type": "text" + }, + { + "bbox": [ + 472, + 709, + 480, + 718 + ], + "score": 0.81, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 706, + 506, + 721 + ], + "score": 1.0, + "content": ". And", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 717, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 717, + 261, + 733 + ], + "score": 1.0, + "content": "in the input-output covariance matrix,", + "type": "text" + }, + { + "bbox": [ + 262, + 719, + 362, + 731 + ], + "score": 0.89, + "content": "{ \\boldsymbol { \\Sigma } } ^ { 3 1 } = \\overline { { \\mathbf { W } } } \\hat { \\mathbf { X } } \\hat { \\mathbf { X } } ^ { T } + \\mathbf { Z } \\hat { \\mathbf { X } } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 717, + 457, + 733 + ], + "score": 1.0, + "content": ", the signal component,", + "type": "text" + }, + { + "bbox": [ + 458, + 719, + 494, + 731 + ], + "score": 0.51, + "content": "\\overline { { \\mathbf { W } } } \\hat { \\mathbf { X } } \\hat { \\mathbf { X } } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 717, + 506, + 733 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 79, + 492, + 281 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 79, + 492, + 281 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 79, + 492, + 281 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 492, + 281 + ], + "score": 0.976, + "type": "image", + "image_path": "cdfbc5d1756ec978413726647b732f78c395fed4934518082d5a82318c0a50f6.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 79, + 492, + 146.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 146.33333333333331, + 492, + 213.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 213.66666666666663, + 492, + 280.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 292, + 506, + 397 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 292, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 380, + 306 + ], + "score": 1.0, + "content": "Figure 13: The effects of varying the number of training examples", + "type": "text" + }, + { + "bbox": [ + 381, + 293, + 390, + 303 + ], + "score": 0.75, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 292, + 506, + 306 + ], + "score": 1.0, + "content": ". (a) Test error for a student", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 305, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 505, + 316 + ], + "score": 1.0, + "content": "learning from a rank-1 teacher with an SNR of 3, with different numbers of inputs. (b,c) Minimum", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 315, + 507, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 253, + 330 + ], + "score": 1.0, + "content": "generalization error plotted against", + "type": "text" + }, + { + "bbox": [ + 254, + 315, + 289, + 329 + ], + "score": 0.94, + "content": "\\sqrt { P / N _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 315, + 336, + 330 + ], + "score": 1.0, + "content": "and SNR ·", + "type": "text" + }, + { + "bbox": [ + 336, + 315, + 371, + 329 + ], + "score": 0.72, + "content": "\\sqrt { P / N _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 315, + 507, + 330 + ], + "score": 1.0, + "content": ", respectively, at different SNRs.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 327, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 133, + 343 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 133, + 329, + 171, + 341 + ], + "score": 0.92, + "content": "P \\geq N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 329, + 421, + 343 + ], + "score": 1.0, + "content": ", the minimum generalization error is simply determined by", + "type": "text" + }, + { + "bbox": [ + 421, + 327, + 475, + 342 + ], + "score": 0.92, + "content": "\\mathrm { S N R } \\sqrt { P / N _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 329, + 506, + 343 + ], + "score": 1.0, + "content": ", so all", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 341, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 325, + 353 + ], + "score": 1.0, + "content": "curves converge to a single asymptotic line in (c) as", + "type": "text" + }, + { + "bbox": [ + 325, + 341, + 334, + 351 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 341, + 408, + 353 + ], + "score": 1.0, + "content": "increases. When", + "type": "text" + }, + { + "bbox": [ + 408, + 341, + 446, + 352 + ], + "score": 0.91, + "content": "P < N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 341, + 505, + 353 + ], + "score": 1.0, + "content": ", however, the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 352, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 506, + 364 + ], + "score": 1.0, + "content": "curves for different SNRs separate because the projection and noise effects depend on initial SNR.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 362, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 506, + 376 + ], + "score": 1.0, + "content": "(d) Optimal stopping error for gaussian vs. orthogonal inputs, showing a strong correlation. Thus our", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 373, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 387 + ], + "score": 1.0, + "content": "use of orthogonal inputs in the theory also yields insight into the more general case of approximately", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 384, + 415, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 277, + 397 + ], + "score": 1.0, + "content": "unit norm Gaussian inputs. (For all panels", + "type": "text" + }, + { + "bbox": [ + 277, + 384, + 371, + 396 + ], + "score": 0.89, + "content": "N _ { 1 } = N _ { 2 } = N _ { 3 } = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 385, + 374, + 397 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 374, + 384, + 408, + 396 + ], + "score": 0.78, + "content": "{ \\overline { { N } } } _ { 2 } ^ { - } = 1 .", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 385, + 415, + 397 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 105, + 414, + 493, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 412, + 495, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 495, + 429 + ], + "score": 1.0, + "content": "This training set yields important second-order training statistics that will guide student learning:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 412, + 495, + 429 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 428, + 413, + 442 + ], + "lines": [ + { + "bbox": [ + 198, + 428, + 413, + 442 + ], + "spans": [ + { + "bbox": [ + 198, + 428, + 413, + 442 + ], + "score": 0.86, + "content": "\\begin{array} { r } { \\pmb { \\Sigma } ^ { 1 1 } \\equiv \\hat { \\mathbf { X } } \\hat { \\mathbf { X } } ^ { T } \\qquad \\pmb { \\Sigma } ^ { 3 1 } \\equiv \\hat { \\mathbf { Y } } \\hat { \\mathbf { X } } ^ { T } = \\overline { { \\mathbf { W } } } \\hat { \\mathbf { X } } \\hat { \\mathbf { X } } ^ { T } + \\mathbf { Z } \\hat { \\mathbf { X } } ^ { T } . } \\end{array}", + "type": "interline_equation", + "image_path": "209c20bdf91e361008c626888198448737b108bc9fa9e2b412c9e72f9d64346e.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 198, + 428, + 413, + 442 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 445, + 506, + 675 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 128, + 460 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 129, + 445, + 154, + 457 + ], + "score": 0.34, + "content": "\\hat { \\mathbf { X } } , \\hat { \\mathbf { Y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 444, + 175, + 460 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 176, + 447, + 184, + 457 + ], + "score": 0.73, + "content": "\\mathbf { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 444, + 222, + 460 + ], + "score": 1.0, + "content": "are each", + "type": "text" + }, + { + "bbox": [ + 222, + 445, + 237, + 458 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 444, + 251, + 460 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 252, + 446, + 261, + 457 + ], + "score": 0.67, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 444, + 264, + 460 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 265, + 445, + 280, + 458 + ], + "score": 0.76, + "content": "\\overline { { N } } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 444, + 294, + 460 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 295, + 447, + 303, + 457 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 444, + 325, + 460 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 326, + 446, + 340, + 457 + ], + "score": 0.89, + "content": "\\overline { { N } } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 444, + 355, + 460 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 355, + 447, + 364, + 457 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 444, + 485, + 460 + ], + "score": 1.0, + "content": "matrices respectively, whose", + "type": "text" + }, + { + "bbox": [ + 486, + 449, + 493, + 457 + ], + "score": 0.68, + "content": "\\mu ^ { \\mathrm { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 444, + 506, + 460 + ], + "score": 1.0, + "content": "’th", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 456, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 104, + 456, + 157, + 470 + ], + "score": 1.0, + "content": "columns are", + "type": "text" + }, + { + "bbox": [ + 157, + 458, + 186, + 469 + ], + "score": 0.29, + "content": "\\hat { \\mathbf { x } } ^ { \\mu } , \\hat { \\mathbf { y } } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 456, + 207, + 470 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 207, + 458, + 218, + 468 + ], + "score": 0.87, + "content": "\\hat { \\mathbf { z } } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 456, + 275, + 470 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + }, + { + "bbox": [ + 276, + 457, + 293, + 468 + ], + "score": 0.89, + "content": "\\dot { \\mathbf { \\Sigma } } ^ { 1 \\mathrm { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 456, + 315, + 470 + ], + "score": 1.0, + "content": "is an", + "type": "text" + }, + { + "bbox": [ + 316, + 457, + 330, + 469 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 456, + 344, + 470 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 344, + 457, + 359, + 469 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 456, + 477, + 470 + ], + "score": 1.0, + "content": "input correlation matrix, and", + "type": "text" + }, + { + "bbox": [ + 477, + 457, + 494, + 468 + ], + "score": 0.88, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 456, + 506, + 470 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 467, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 118, + 481 + ], + "score": 1.0, + "content": "an", + "type": "text" + }, + { + "bbox": [ + 119, + 468, + 133, + 480 + ], + "score": 0.91, + "content": "\\overline { { N } } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 467, + 147, + 481 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 148, + 468, + 163, + 480 + ], + "score": 0.91, + "content": "\\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 467, + 441, + 481 + ], + "score": 1.0, + "content": "the input-output correlation matrix. We choose the matrix elements", + "type": "text" + }, + { + "bbox": [ + 442, + 468, + 453, + 481 + ], + "score": 0.9, + "content": "z _ { i } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 467, + 506, + 481 + ], + "score": 1.0, + "content": "of the noise", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 479, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 104, + 479, + 135, + 494 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 135, + 481, + 143, + 491 + ], + "score": 0.7, + "content": "\\mathbf { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 479, + 389, + 494 + ], + "score": 1.0, + "content": "to be drawn iid from a Gaussian with zero mean and variance", + "type": "text" + }, + { + "bbox": [ + 390, + 480, + 420, + 493 + ], + "score": 0.94, + "content": "\\sigma _ { z } ^ { 2 } / \\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 479, + 506, + 494 + ], + "score": 1.0, + "content": ". The noise scaling is", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 492, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 280, + 506 + ], + "score": 1.0, + "content": "chosen so the singular values of the teacher", + "type": "text" + }, + { + "bbox": [ + 281, + 492, + 294, + 504 + ], + "score": 0.81, + "content": "\\overline { { \\mathbf { W } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 493, + 349, + 506 + ], + "score": 1.0, + "content": "and the noise", + "type": "text" + }, + { + "bbox": [ + 350, + 494, + 358, + 504 + ], + "score": 0.6, + "content": "\\mathbf { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 493, + 393, + 506 + ], + "score": 1.0, + "content": "are both", + "type": "text" + }, + { + "bbox": [ + 394, + 494, + 415, + 506 + ], + "score": 0.89, + "content": "O ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 493, + 506, + 506 + ], + "score": 1.0, + "content": ", leading to non-trivial", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 504, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 517 + ], + "score": 1.0, + "content": "generalization effects. Furthermore, we chose training inputs to be close to unit-norm, and make", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 513, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 104, + 513, + 220, + 530 + ], + "score": 1.0, + "content": "the input covariance matrix", + "type": "text" + }, + { + "bbox": [ + 221, + 515, + 238, + 526 + ], + "score": 0.89, + "content": "\\pmb { \\Sigma } ^ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 513, + 506, + 530 + ], + "score": 1.0, + "content": "as white as possible (whitening is a common pre-processing step", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 526, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 184, + 540 + ], + "score": 1.0, + "content": "for inputs). When", + "type": "text" + }, + { + "bbox": [ + 184, + 527, + 222, + 539 + ], + "score": 0.9, + "content": "P > \\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 527, + 399, + 540 + ], + "score": 1.0, + "content": ", this can be done by choosing the rows of", + "type": "text" + }, + { + "bbox": [ + 399, + 526, + 410, + 538 + ], + "score": 0.85, + "content": "\\hat { \\bf X }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 527, + 506, + 540 + ], + "score": 1.0, + "content": "to be orthonormal and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 540, + 504, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 185, + 558 + ], + "score": 1.0, + "content": "then scaling up by", + "type": "text" + }, + { + "bbox": [ + 186, + 540, + 222, + 559 + ], + "score": 0.93, + "content": "\\sqrt { P / \\overline { { N } } _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 542, + 441, + 558 + ], + "score": 1.0, + "content": ", so the columns are approximately unit norm. Then", + "type": "text" + }, + { + "bbox": [ + 441, + 542, + 504, + 556 + ], + "score": 0.93, + "content": "\\Sigma ^ { 1 1 } = P / \\overline { { N } } _ { 1 } \\mathbf { I }", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 104, + 559, + 318, + 572 + ], + "score": 1.0, + "content": "is proportional to the identity. On the otherhand, if", + "type": "text" + }, + { + "bbox": [ + 319, + 559, + 356, + 571 + ], + "score": 0.92, + "content": "P < \\overline { { N } } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 559, + 470, + 572 + ], + "score": 1.0, + "content": ", we choose the columns of", + "type": "text" + }, + { + "bbox": [ + 471, + 558, + 481, + 570 + ], + "score": 0.85, + "content": "\\hat { \\bf X }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 559, + 506, + 572 + ], + "score": 1.0, + "content": "to be", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 570, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 189, + 585 + ], + "score": 1.0, + "content": "orthonormal, so that", + "type": "text" + }, + { + "bbox": [ + 190, + 571, + 234, + 583 + ], + "score": 0.92, + "content": "\\pmb { \\Sigma } ^ { 1 1 } = \\pmb { \\mathcal { P } } ^ { | | }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 570, + 265, + 585 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 265, + 570, + 280, + 583 + ], + "score": 0.89, + "content": "\\mathcal { P } ^ { | | }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 570, + 411, + 585 + ], + "score": 1.0, + "content": "is a projection operator onto the", + "type": "text" + }, + { + "bbox": [ + 411, + 573, + 421, + 583 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 570, + 506, + 585 + ], + "score": 1.0, + "content": "dimensional column", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 583, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 104, + 583, + 144, + 599 + ], + "score": 1.0, + "content": "space of", + "type": "text" + }, + { + "bbox": [ + 144, + 583, + 154, + 595 + ], + "score": 0.81, + "content": "\\hat { \\mathbf X }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 583, + 506, + 599 + ], + "score": 1.0, + "content": "spanned by the input examples. Both these choices are intended to approximate the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 240, + 609 + ], + "score": 1.0, + "content": "situation in which the columns of", + "type": "text" + }, + { + "bbox": [ + 240, + 596, + 250, + 607 + ], + "score": 0.81, + "content": "\\hat { \\bf X }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 597, + 505, + 609 + ], + "score": 1.0, + "content": "are chosen to be iid unit-norm vectors. Finally, as generalization", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 102, + 603, + 502, + 626 + ], + "spans": [ + { + "bbox": [ + 102, + 603, + 491, + 626 + ], + "score": 1.0, + "content": "performance will depend on the ratio of teacher singular values to the noise variance parameter", + "type": "text" + }, + { + "bbox": [ + 491, + 608, + 502, + 621 + ], + "score": 0.89, + "content": "\\sigma _ { z } ^ { 2 }", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 165, + 632 + ], + "score": 1.0, + "content": "we simply set", + "type": "text" + }, + { + "bbox": [ + 166, + 620, + 198, + 630 + ], + "score": 0.92, + "content": "\\sigma _ { z } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "as in the main text. Thus, given the unit-norm inputs, we can think of the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 630, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 506, + 643 + ], + "score": 1.0, + "content": "teacher singular values as signal to noise ratios (SNRs). We now examine how the dynamics of the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 642, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 363, + 653 + ], + "score": 1.0, + "content": "test error evolves as we vary the number of training examples", + "type": "text" + }, + { + "bbox": [ + 363, + 642, + 372, + 651 + ], + "score": 0.79, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 642, + 505, + 653 + ], + "score": 1.0, + "content": ". We split our analyses into two", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 652, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 390, + 665 + ], + "score": 1.0, + "content": "distinct regimes: (1) the oversampled regime in which the data density", + "type": "text" + }, + { + "bbox": [ + 391, + 652, + 455, + 664 + ], + "score": 0.93, + "content": "\\bar { \\mathcal { D } } \\equiv P / N _ { 1 } > \\mathrm { ~ \\bar { ~ } { ~ 1 ~ } ~ }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 652, + 506, + 665 + ], + "score": 1.0, + "content": ", and (2) the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 662, + 264, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 232, + 675 + ], + "score": 1.0, + "content": "undersampled regime in which", + "type": "text" + }, + { + "bbox": [ + 232, + 663, + 259, + 673 + ], + "score": 0.9, + "content": "\\mathcal { D } < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 662, + 264, + 675 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 23, + "bbox_fs": [ + 102, + 444, + 506, + 675 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 687, + 254, + 699 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 255, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 255, + 699 + ], + "score": 1.0, + "content": "G.1 THE OVERSAMPLED REGIME", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 108, + 707, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 706, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 706, + 211, + 721 + ], + "score": 1.0, + "content": "The oversampled regime", + "type": "text" + }, + { + "bbox": [ + 212, + 709, + 240, + 719 + ], + "score": 0.85, + "content": "\\mathcal { D } > 1 \\vert", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 706, + 347, + 721 + ], + "score": 1.0, + "content": ") is relatively simple. First", + "type": "text" + }, + { + "bbox": [ + 347, + 708, + 364, + 718 + ], + "score": 0.88, + "content": "\\pmb { \\Sigma } ^ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 706, + 471, + 721 + ], + "score": 1.0, + "content": "is scaled up by a factor of", + "type": "text" + }, + { + "bbox": [ + 472, + 709, + 480, + 718 + ], + "score": 0.81, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 706, + 506, + 721 + ], + "score": 1.0, + "content": ". And", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 717, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 717, + 261, + 733 + ], + "score": 1.0, + "content": "in the input-output covariance matrix,", + "type": "text" + }, + { + "bbox": [ + 262, + 719, + 362, + 731 + ], + "score": 0.89, + "content": "{ \\boldsymbol { \\Sigma } } ^ { 3 1 } = \\overline { { \\mathbf { W } } } \\hat { \\mathbf { X } } \\hat { \\mathbf { X } } ^ { T } + \\mathbf { Z } \\hat { \\mathbf { X } } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 717, + 457, + 733 + ], + "score": 1.0, + "content": ", the signal component,", + "type": "text" + }, + { + "bbox": [ + 458, + 719, + 494, + 731 + ], + "score": 0.51, + "content": "\\overline { { \\mathbf { W } } } \\hat { \\mathbf { X } } \\hat { \\mathbf { X } } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 717, + 506, + 733 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 204, + 96 + ], + "score": 1.0, + "content": "scaled up by a factor of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 204, + 83, + 214, + 92 + ], + "score": 0.8, + "content": "\\mathcal { D }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 214, + 81, + 326, + 96 + ], + "score": 1.0, + "content": "while the noise component √", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 327, + 81, + 349, + 93 + ], + "score": 0.88, + "content": "\\mathbf { Z } \\hat { \\mathbf { X } } ^ { T }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 350, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "has the same singular value spectrum", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 95, + 132, + 108 + ], + "score": 1.0, + "content": "as the", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 133, + 95, + 161, + 105 + ], + "score": 0.89, + "content": "\\mathcal { D } = 1", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 161, + 95, + 295, + 108 + ], + "score": 1.0, + "content": "case, up to an overall scaling by √", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 295, + 93, + 313, + 106 + ], + "score": 0.9, + "content": "\\sqrt { \\mathcal { D } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 314, + 95, + 389, + 108 + ], + "score": 1.0, + "content": "(since the rows of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 390, + 93, + 400, + 105 + ], + "score": 0.8, + "content": "\\hat { \\mathbf X }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 400, + 95, + 506, + 108 + ], + "score": 1.0, + "content": "are orthogonal and all its√", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 106, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 218, + 119 + ], + "score": 1.0, + "content": "singular values are equal to", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 219, + 106, + 237, + 118 + ], + "score": 0.89, + "content": "\\sqrt { \\mathcal { D } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 238, + 106, + 486, + 119 + ], + "score": 1.0, + "content": "). This leads to an increase in the effective SNR by a factor of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 486, + 106, + 503, + 118 + ], + "score": 0.91, + "content": "\\sqrt { \\mathcal { D } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 503, + 106, + 506, + 119 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 119, + 505, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 296, + 130 + ], + "score": 1.0, + "content": "Thus overall, the test error curves for the case of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 297, + 119, + 324, + 129 + ], + "score": 0.91, + "content": "\\mathcal { D } > 1", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 324, + 119, + 505, + 130 + ], + "score": 1.0, + "content": "can be simply obtained from the theory of the", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 128, + 506, + 143 + ], + "spans": [ + { + "bbox": [ + 104, + 128, + 186, + 143 + ], + "score": 1.0, + "content": "test error curves for", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 187, + 129, + 214, + 139 + ], + "score": 0.91, + "content": "\\mathcal { D } = 1", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 214, + 128, + 444, + 143 + ], + "score": 1.0, + "content": "through two modifications: (1) a boost in the SNR for the", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 445, + 129, + 473, + 140 + ], + "score": 0.92, + "content": "\\mathcal { D } = 1", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 473, + 128, + 506, + 143 + ], + "score": 1.0, + "content": "case by", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 140, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 205, + 155 + ], + "score": 1.0, + "content": "a multiplicative factor of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 206, + 140, + 223, + 153 + ], + "score": 0.91, + "content": "\\sqrt { \\mathcal { D } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 223, + 141, + 505, + 155 + ], + "score": 1.0, + "content": ", and (2) and an overall speed up in the learning time by a multiplicative", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 152, + 156, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 143, + 164 + ], + "score": 1.0, + "content": "factor of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 143, + 153, + 152, + 163 + ], + "score": 0.82, + "content": "\\mathcal { D }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 152, + 152, + 156, + 164 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 6 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 706, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 164 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 204, + 96 + ], + "score": 1.0, + "content": "scaled up by a factor of", + "type": "text" + }, + { + "bbox": [ + 204, + 83, + 214, + 92 + ], + "score": 0.8, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 81, + 326, + 96 + ], + "score": 1.0, + "content": "while the noise component √", + "type": "text" + }, + { + "bbox": [ + 327, + 81, + 349, + 93 + ], + "score": 0.88, + "content": "\\mathbf { Z } \\hat { \\mathbf { X } } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "has the same singular value spectrum", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 95, + 132, + 108 + ], + "score": 1.0, + "content": "as the", + "type": "text" + }, + { + "bbox": [ + 133, + 95, + 161, + 105 + ], + "score": 0.89, + "content": "\\mathcal { D } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 95, + 295, + 108 + ], + "score": 1.0, + "content": "case, up to an overall scaling by √", + "type": "text" + }, + { + "bbox": [ + 295, + 93, + 313, + 106 + ], + "score": 0.9, + "content": "\\sqrt { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 95, + 389, + 108 + ], + "score": 1.0, + "content": "(since the rows of", + "type": "text" + }, + { + "bbox": [ + 390, + 93, + 400, + 105 + ], + "score": 0.8, + "content": "\\hat { \\mathbf X }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 95, + 506, + 108 + ], + "score": 1.0, + "content": "are orthogonal and all its√", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 106, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 218, + 119 + ], + "score": 1.0, + "content": "singular values are equal to", + "type": "text" + }, + { + "bbox": [ + 219, + 106, + 237, + 118 + ], + "score": 0.89, + "content": "\\sqrt { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 106, + 486, + 119 + ], + "score": 1.0, + "content": "). This leads to an increase in the effective SNR by a factor of", + "type": "text" + }, + { + "bbox": [ + 486, + 106, + 503, + 118 + ], + "score": 0.91, + "content": "\\sqrt { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 106, + 506, + 119 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 119, + 505, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 296, + 130 + ], + "score": 1.0, + "content": "Thus overall, the test error curves for the case of", + "type": "text" + }, + { + "bbox": [ + 297, + 119, + 324, + 129 + ], + "score": 0.91, + "content": "\\mathcal { D } > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 119, + 505, + 130 + ], + "score": 1.0, + "content": "can be simply obtained from the theory of the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 128, + 506, + 143 + ], + "spans": [ + { + "bbox": [ + 104, + 128, + 186, + 143 + ], + "score": 1.0, + "content": "test error curves for", + "type": "text" + }, + { + "bbox": [ + 187, + 129, + 214, + 139 + ], + "score": 0.91, + "content": "\\mathcal { D } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 128, + 444, + 143 + ], + "score": 1.0, + "content": "through two modifications: (1) a boost in the SNR for the", + "type": "text" + }, + { + "bbox": [ + 445, + 129, + 473, + 140 + ], + "score": 0.92, + "content": "\\mathcal { D } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 128, + 506, + 143 + ], + "score": 1.0, + "content": "case by", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 140, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 205, + 155 + ], + "score": 1.0, + "content": "a multiplicative factor of", + "type": "text" + }, + { + "bbox": [ + 206, + 140, + 223, + 153 + ], + "score": 0.91, + "content": "\\sqrt { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 141, + 505, + 155 + ], + "score": 1.0, + "content": ", and (2) and an overall speed up in the learning time by a multiplicative", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 152, + 156, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 143, + 164 + ], + "score": 1.0, + "content": "factor of", + "type": "text" + }, + { + "bbox": [ + 143, + 153, + 152, + 163 + ], + "score": 0.82, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 152, + 156, + 164 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 108, + 177, + 261, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 177, + 263, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 263, + 189 + ], + "score": 1.0, + "content": "G.2 THE UNDERSAMPLED REGIME", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 197, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 231, + 210 + ], + "score": 1.0, + "content": "For the undersampled regime", + "type": "text" + }, + { + "bbox": [ + 232, + 198, + 261, + 209 + ], + "score": 0.85, + "content": "\\mathcal { D } < 1 \\dot { }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 197, + 420, + 210 + ], + "score": 1.0, + "content": "), we must account for the fact that the", + "type": "text" + }, + { + "bbox": [ + 420, + 198, + 429, + 208 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "training inputs do", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 209, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 177, + 223 + ], + "score": 1.0, + "content": "not span the full", + "type": "text" + }, + { + "bbox": [ + 178, + 210, + 191, + 221 + ], + "score": 0.87, + "content": "N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 209, + 451, + 223 + ], + "score": 1.0, + "content": "dimensional space of all inputs. Thus the projection operator", + "type": "text" + }, + { + "bbox": [ + 452, + 209, + 467, + 221 + ], + "score": 0.88, + "content": "\\mathcal { P } ^ { | | }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 209, + 505, + 223 + ], + "score": 1.0, + "content": "onto the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 221, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 107, + 223, + 116, + 233 + ], + "score": 0.79, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 221, + 240, + 236 + ], + "score": 1.0, + "content": "dimensional column space of", + "type": "text" + }, + { + "bbox": [ + 241, + 222, + 251, + 234 + ], + "score": 0.81, + "content": "\\hat { \\mathbf X }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 221, + 456, + 236 + ], + "score": 1.0, + "content": "plays a crucial role. Indeed the input-correlation", + "type": "text" + }, + { + "bbox": [ + 456, + 222, + 502, + 234 + ], + "score": 0.92, + "content": "\\pmb { \\Sigma } ^ { 1 1 } = \\pmb { \\mathcal { P } } ^ { | | }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 221, + 506, + 236 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 232, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 104, + 232, + 126, + 249 + ], + "score": 1.0, + "content": "And", + "type": "text" + }, + { + "bbox": [ + 126, + 234, + 217, + 246 + ], + "score": 0.91, + "content": "{ \\boldsymbol { \\Sigma } } ^ { 3 1 } = \\overline { { \\mathbf { W } } } \\mathbf { \\mathcal { P } } ^ { | | } + \\mathbf { Z } \\hat { \\mathbf { X } } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 232, + 506, + 249 + ], + "score": 1.0, + "content": ". This implies that the learning dynamics only transforms the composite", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 247, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 213, + 260 + ], + "score": 1.0, + "content": "student map W from the", + "type": "text" + }, + { + "bbox": [ + 213, + 248, + 223, + 257 + ], + "score": 0.79, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 247, + 437, + 260 + ], + "score": 1.0, + "content": "dimensional subspace spanned by the inputs to the", + "type": "text" + }, + { + "bbox": [ + 437, + 247, + 451, + 258 + ], + "score": 0.9, + "content": "N _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 247, + 505, + 260 + ], + "score": 1.0, + "content": "dimensional", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 311, + 271 + ], + "score": 1.0, + "content": "output space. In contrast, the student map from the", + "type": "text" + }, + { + "bbox": [ + 311, + 258, + 344, + 269 + ], + "score": 0.92, + "content": "N _ { 1 } - P", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "dimensional subspace orthogonal to the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 268, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 104, + 268, + 144, + 285 + ], + "score": 1.0, + "content": "image of", + "type": "text" + }, + { + "bbox": [ + 144, + 269, + 159, + 281 + ], + "score": 0.89, + "content": "\\mathcal { P } ^ { | | }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 268, + 506, + 285 + ], + "score": 1.0, + "content": "remains frozen. Tracing through the equations of the main paper and accounting for the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 281, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 104, + 282, + 187, + 297 + ], + "score": 1.0, + "content": "projection operator", + "type": "text" + }, + { + "bbox": [ + 187, + 281, + 202, + 294 + ], + "score": 0.88, + "content": "\\mathcal { P } ^ { | | }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 282, + 506, + 297 + ], + "score": 1.0, + "content": ", we find the effective aspect ratio for this undersampled learning problem", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 293, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 134, + 308 + ], + "score": 1.0, + "content": "(when", + "type": "text" + }, + { + "bbox": [ + 134, + 294, + 201, + 306 + ], + "score": 0.89, + "content": "N _ { 3 } = N _ { 2 } = N _ { 1 } ;", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 293, + 255, + 308 + ], + "score": 1.0, + "content": "is no longer", + "type": "text" + }, + { + "bbox": [ + 255, + 294, + 307, + 306 + ], + "score": 0.93, + "content": "\\mathcal { A } = N _ { 3 } / \\bar { N _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 293, + 350, + 308 + ], + "score": 1.0, + "content": "but rather", + "type": "text" + }, + { + "bbox": [ + 351, + 294, + 397, + 306 + ], + "score": 0.92, + "content": "\\mathcal { D } = P / N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 293, + 506, + 308 + ], + "score": 1.0, + "content": ". Furthermore, in the limit", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 305, + 504, + 321 + ], + "spans": [ + { + "bbox": [ + 107, + 306, + 165, + 319 + ], + "score": 0.92, + "content": "\\overline { { N } } _ { 3 } , \\overline { { N } } _ { 1 } \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 305, + 191, + 321 + ], + "score": 1.0, + "content": "while", + "type": "text" + }, + { + "bbox": [ + 192, + 307, + 206, + 318 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 305, + 242, + 321 + ], + "score": 1.0, + "content": "remains √", + "type": "text" + }, + { + "bbox": [ + 243, + 307, + 264, + 320 + ], + "score": 0.9, + "content": "O ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 305, + 447, + 321 + ], + "score": 1.0, + "content": ", the singular values of the signal component", + "type": "text" + }, + { + "bbox": [ + 447, + 306, + 474, + 318 + ], + "score": 0.89, + "content": "\\overline { { \\mathbf { W } } } \\mathcal { P } ^ { | | }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 305, + 487, + 321 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 487, + 307, + 504, + 317 + ], + "score": 0.86, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 319, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 221, + 333 + ], + "score": 1.0, + "content": "are attenuated by a factor of", + "type": "text" + }, + { + "bbox": [ + 222, + 319, + 239, + 331 + ], + "score": 0.91, + "content": "\\sqrt { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 319, + 506, + 333 + ], + "score": 1.0, + "content": ", making the associated singular vectors more susceptible to noise.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "score": 1.0, + "content": "Again tracing through the equations of the main paper, with all of these modifications, we find the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 341, + 412, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 412, + 355 + ], + "score": 1.0, + "content": "final formula for test error curves in the undersampled measurement regime:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 356, + 475, + 388 + ], + "lines": [ + { + "bbox": [ + 136, + 356, + 475, + 388 + ], + "spans": [ + { + "bbox": [ + 136, + 356, + 475, + 388 + ], + "score": 0.94, + "content": "\\varepsilon _ { \\mathsf { t e s t } } ( t ) = { \\frac { \\left[ ( N _ { 3 } - P ) \\epsilon ^ { 2 } + ( P - { \\overline { { N } } } _ { 2 } ) \\langle s ( { \\hat { s } } , t ) ^ { 2 } \\rangle + \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\left[ ( s _ { \\alpha } ( t ) - { \\overline { { s } } } _ { \\alpha } ) ^ { 2 } + 2 s _ { \\alpha } ( t ) { \\overline { { s } } } _ { \\alpha } ( 1 - { \\mathcal { O } } ( { \\sqrt { \\overline { { D } } } } { \\overline { { s } } } _ { \\alpha } ) ) \\right] \\right] } { \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } { \\overline { { s } } } _ { \\alpha } ^ { 2 } \\right] } }", + "type": "interline_equation", + "image_path": "8f6ceadd27457f5652cdaa6ec4f561c6d4443cbcd30ad5996998202abd0ca431.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 136, + 356, + 475, + 366.6666666666667 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 136, + 366.6666666666667, + 475, + 377.33333333333337 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 136, + 377.33333333333337, + 475, + 388.00000000000006 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 389, + 505, + 503 + ], + "lines": [ + { + "bbox": [ + 106, + 389, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 354, + 402 + ], + "score": 1.0, + "content": "This equation has several modifications compared to the case", + "type": "text" + }, + { + "bbox": [ + 355, + 390, + 389, + 401 + ], + "score": 0.91, + "content": "P = N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 389, + 506, + 402 + ], + "score": 1.0, + "content": "in (15). First the term in the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 400, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 192, + 413 + ], + "score": 1.0, + "content": "numerator involving", + "type": "text" + }, + { + "bbox": [ + 193, + 401, + 227, + 412 + ], + "score": 0.92, + "content": "N _ { 3 } - P", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 400, + 388, + 413 + ], + "score": 1.0, + "content": "reflects generalization error due to the", + "type": "text" + }, + { + "bbox": [ + 388, + 401, + 423, + 412 + ], + "score": 0.92, + "content": "N _ { 3 } - P", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 400, + 506, + 413 + ], + "score": 1.0, + "content": "dimensional frozen", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 269, + 424 + ], + "score": 1.0, + "content": "subspace, and the initial weight variance", + "type": "text" + }, + { + "bbox": [ + 270, + 411, + 279, + 421 + ], + "score": 0.85, + "content": "\\epsilon ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "contributes to this generalization error. The second term", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 421, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 235, + 435 + ], + "score": 1.0, + "content": "in the numerator involves all the", + "type": "text" + }, + { + "bbox": [ + 235, + 422, + 269, + 433 + ], + "score": 0.92, + "content": "P - { \\overline { { N } } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 421, + 506, + 435 + ], + "score": 1.0, + "content": "training modes which cannot be correlated with the teacher,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 171, + 446 + ], + "score": 1.0, + "content": "and the average", + "type": "text" + }, + { + "bbox": [ + 172, + 433, + 182, + 445 + ], + "score": 0.87, + "content": "\\langle \\cdot \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "is over a Marcenko-Pasteur distribution of singular values (see (13)) except with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 173, + 457 + ], + "score": 1.0, + "content": "the aspect ratio", + "type": "text" + }, + { + "bbox": [ + 173, + 446, + 182, + 454 + ], + "score": 0.78, + "content": "\\mathcal { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 444, + 235, + 457 + ], + "score": 1.0, + "content": "replaced by", + "type": "text" + }, + { + "bbox": [ + 235, + 445, + 244, + 454 + ], + "score": 0.81, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 444, + 505, + 457 + ], + "score": 1.0, + "content": ". The third term accounts for learned correlations between the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 433, + 468 + ], + "score": 1.0, + "content": "student and teacher. It involves the transformation from teacher singular values", + "type": "text" + }, + { + "bbox": [ + 433, + 456, + 439, + 465 + ], + "score": 0.28, + "content": "\\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 455, + 505, + 468 + ], + "score": 1.0, + "content": "to training data", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 168, + 479 + ], + "score": 1.0, + "content": "singular values", + "type": "text" + }, + { + "bbox": [ + 168, + 467, + 174, + 476 + ], + "score": 0.78, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 466, + 437, + 479 + ], + "score": 1.0, + "content": "through the formula (11) except with the aspect ratio replacement √", + "type": "text" + }, + { + "bbox": [ + 438, + 466, + 470, + 477 + ], + "score": 0.91, + "content": "A \\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 466, + 505, + 479 + ], + "score": 1.0, + "content": ", and the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 477, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 284, + 491 + ], + "score": 1.0, + "content": "effective teacher singular value attenuation", + "type": "text" + }, + { + "bbox": [ + 284, + 477, + 327, + 489 + ], + "score": 0.93, + "content": "\\overline { { s } } \\sqrt { D } \\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 478, + 505, + 491 + ], + "score": 1.0, + "content": ". Similarly, the computation of the singular", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 489, + 455, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 358, + 503 + ], + "score": 1.0, + "content": "vector overlap is done through (12) also with the replacements", + "type": "text" + }, + { + "bbox": [ + 358, + 491, + 390, + 501 + ], + "score": 0.91, + "content": "A \\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 491, + 408, + 503 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 408, + 489, + 451, + 502 + ], + "score": 0.93, + "content": "\\overline { { s } } \\sqrt { D } \\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 491, + 455, + 503 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28.5 + }, + { + "type": "title", + "bbox": [ + 109, + 516, + 463, + 537 + ], + "lines": [ + { + "bbox": [ + 107, + 515, + 465, + 527 + ], + "spans": [ + { + "bbox": [ + 107, + 515, + 128, + 527 + ], + "score": 1.0, + "content": "G.3", + "type": "text" + }, + { + "bbox": [ + 131, + 515, + 465, + 527 + ], + "score": 1.0, + "content": "COMPARISON OF THEORY AND EXPERIMENT FOR UNDER AND OVER SAMPLED", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 132, + 528, + 242, + 537 + ], + "spans": [ + { + "bbox": [ + 132, + 528, + 242, + 537 + ], + "score": 1.0, + "content": "MEASUREMENT REGIMES", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 546, + 506, + 670 + ], + "lines": [ + { + "bbox": [ + 104, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 546, + 506, + 560 + ], + "score": 1.0, + "content": "In Fig. 13, we show an excellent match between our theory and empirical simulations for varying", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 558, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 144, + 570 + ], + "score": 1.0, + "content": "values of", + "type": "text" + }, + { + "bbox": [ + 144, + 559, + 153, + 568 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 558, + 506, + 570 + ], + "score": 1.0, + "content": ", both in the oversampled and undersampled measurement regimes. There are a number of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 570, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 505, + 581 + ], + "score": 1.0, + "content": "interesting features to note. First, although the minimum generalization error improves monotonically", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 579, + 505, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 126, + 593 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 126, + 581, + 135, + 590 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 579, + 201, + 593 + ], + "score": 1.0, + "content": ", the asymptotic", + "type": "text" + }, + { + "bbox": [ + 202, + 581, + 232, + 591 + ], + "score": 0.86, + "content": "t \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 579, + 505, + 593 + ], + "score": 1.0, + "content": ") generalization error does not, because of a frozen subspace (Advani", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 590, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 104, + 590, + 316, + 604 + ], + "score": 1.0, + "content": "& Saxe, 2017) of the modes that are not overfit when", + "type": "text" + }, + { + "bbox": [ + 317, + 591, + 351, + 602 + ], + "score": 0.92, + "content": "P < N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 590, + 483, + 604 + ], + "score": 1.0, + "content": ", because the training data rank is", + "type": "text" + }, + { + "bbox": [ + 484, + 591, + 503, + 602 + ], + "score": 0.88, + "content": "\\le P", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 590, + 506, + 604 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 602, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 164, + 616 + ], + "score": 1.0, + "content": "Second, when", + "type": "text" + }, + { + "bbox": [ + 164, + 603, + 199, + 614 + ], + "score": 0.91, + "content": "P \\geq N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 603, + 435, + 616 + ], + "score": 1.0, + "content": ", the minimum generalization error is simply determined by", + "type": "text" + }, + { + "bbox": [ + 436, + 602, + 490, + 616 + ], + "score": 0.92, + "content": "\\mathbf { S N R } \\sqrt { P / N _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 603, + 506, + 616 + ], + "score": 1.0, + "content": ", so", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 614, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 305, + 627 + ], + "score": 1.0, + "content": "all curves converge to a single asymptotic line as", + "type": "text" + }, + { + "bbox": [ + 305, + 615, + 314, + 624 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 614, + 384, + 627 + ], + "score": 1.0, + "content": "increases. When", + "type": "text" + }, + { + "bbox": [ + 385, + 614, + 419, + 625 + ], + "score": 0.91, + "content": "P < N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 614, + 506, + 627 + ], + "score": 1.0, + "content": ", however, the curves", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 624, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 506, + 639 + ], + "score": 1.0, + "content": "for different SNRs separate because the projection and noise effects depend on initial SNR. Finally,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "in Fig. 13D we show that approximately unit norm i.i.d. gaussian inputs yield similar results to the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 646, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 660 + ], + "score": 1.0, + "content": "orthogonalized data matrices we employed in the theory, although the gaussian inputs do result in", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 658, + 260, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 260, + 671 + ], + "score": 1.0, + "content": "slightly higher optimal stopping error.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 41 + }, + { + "type": "title", + "bbox": [ + 108, + 686, + 305, + 698 + ], + "lines": [ + { + "bbox": [ + 105, + 685, + 307, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 307, + 699 + ], + "score": 1.0, + "content": "H LESS THAN FULL RANK STUDENTS", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "Although we generally assumed students were full rank in the main text to simplify the calculations,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "score": 1.0, + "content": "our theory remains exact for TA networks of any rank. Furthermore, as shown in Fig. 14, the TA", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48.5 + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 164 + ], + "lines": [], + "index": 3, + "bbox_fs": [ + 104, + 81, + 506, + 164 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 177, + 261, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 177, + 263, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 263, + 189 + ], + "score": 1.0, + "content": "G.2 THE UNDERSAMPLED REGIME", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 197, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 231, + 210 + ], + "score": 1.0, + "content": "For the undersampled regime", + "type": "text" + }, + { + "bbox": [ + 232, + 198, + 261, + 209 + ], + "score": 0.85, + "content": "\\mathcal { D } < 1 \\dot { }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 197, + 420, + 210 + ], + "score": 1.0, + "content": "), we must account for the fact that the", + "type": "text" + }, + { + "bbox": [ + 420, + 198, + 429, + 208 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "training inputs do", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 209, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 177, + 223 + ], + "score": 1.0, + "content": "not span the full", + "type": "text" + }, + { + "bbox": [ + 178, + 210, + 191, + 221 + ], + "score": 0.87, + "content": "N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 209, + 451, + 223 + ], + "score": 1.0, + "content": "dimensional space of all inputs. Thus the projection operator", + "type": "text" + }, + { + "bbox": [ + 452, + 209, + 467, + 221 + ], + "score": 0.88, + "content": "\\mathcal { P } ^ { | | }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 209, + 505, + 223 + ], + "score": 1.0, + "content": "onto the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 221, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 107, + 223, + 116, + 233 + ], + "score": 0.79, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 221, + 240, + 236 + ], + "score": 1.0, + "content": "dimensional column space of", + "type": "text" + }, + { + "bbox": [ + 241, + 222, + 251, + 234 + ], + "score": 0.81, + "content": "\\hat { \\mathbf X }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 221, + 456, + 236 + ], + "score": 1.0, + "content": "plays a crucial role. Indeed the input-correlation", + "type": "text" + }, + { + "bbox": [ + 456, + 222, + 502, + 234 + ], + "score": 0.92, + "content": "\\pmb { \\Sigma } ^ { 1 1 } = \\pmb { \\mathcal { P } } ^ { | | }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 221, + 506, + 236 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 232, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 104, + 232, + 126, + 249 + ], + "score": 1.0, + "content": "And", + "type": "text" + }, + { + "bbox": [ + 126, + 234, + 217, + 246 + ], + "score": 0.91, + "content": "{ \\boldsymbol { \\Sigma } } ^ { 3 1 } = \\overline { { \\mathbf { W } } } \\mathbf { \\mathcal { P } } ^ { | | } + \\mathbf { Z } \\hat { \\mathbf { X } } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 232, + 506, + 249 + ], + "score": 1.0, + "content": ". This implies that the learning dynamics only transforms the composite", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 247, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 213, + 260 + ], + "score": 1.0, + "content": "student map W from the", + "type": "text" + }, + { + "bbox": [ + 213, + 248, + 223, + 257 + ], + "score": 0.79, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 247, + 437, + 260 + ], + "score": 1.0, + "content": "dimensional subspace spanned by the inputs to the", + "type": "text" + }, + { + "bbox": [ + 437, + 247, + 451, + 258 + ], + "score": 0.9, + "content": "N _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 247, + 505, + 260 + ], + "score": 1.0, + "content": "dimensional", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 311, + 271 + ], + "score": 1.0, + "content": "output space. In contrast, the student map from the", + "type": "text" + }, + { + "bbox": [ + 311, + 258, + 344, + 269 + ], + "score": 0.92, + "content": "N _ { 1 } - P", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "dimensional subspace orthogonal to the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 268, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 104, + 268, + 144, + 285 + ], + "score": 1.0, + "content": "image of", + "type": "text" + }, + { + "bbox": [ + 144, + 269, + 159, + 281 + ], + "score": 0.89, + "content": "\\mathcal { P } ^ { | | }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 268, + 506, + 285 + ], + "score": 1.0, + "content": "remains frozen. Tracing through the equations of the main paper and accounting for the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 281, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 104, + 282, + 187, + 297 + ], + "score": 1.0, + "content": "projection operator", + "type": "text" + }, + { + "bbox": [ + 187, + 281, + 202, + 294 + ], + "score": 0.88, + "content": "\\mathcal { P } ^ { | | }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 282, + 506, + 297 + ], + "score": 1.0, + "content": ", we find the effective aspect ratio for this undersampled learning problem", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 293, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 134, + 308 + ], + "score": 1.0, + "content": "(when", + "type": "text" + }, + { + "bbox": [ + 134, + 294, + 201, + 306 + ], + "score": 0.89, + "content": "N _ { 3 } = N _ { 2 } = N _ { 1 } ;", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 293, + 255, + 308 + ], + "score": 1.0, + "content": "is no longer", + "type": "text" + }, + { + "bbox": [ + 255, + 294, + 307, + 306 + ], + "score": 0.93, + "content": "\\mathcal { A } = N _ { 3 } / \\bar { N _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 293, + 350, + 308 + ], + "score": 1.0, + "content": "but rather", + "type": "text" + }, + { + "bbox": [ + 351, + 294, + 397, + 306 + ], + "score": 0.92, + "content": "\\mathcal { D } = P / N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 293, + 506, + 308 + ], + "score": 1.0, + "content": ". Furthermore, in the limit", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 305, + 504, + 321 + ], + "spans": [ + { + "bbox": [ + 107, + 306, + 165, + 319 + ], + "score": 0.92, + "content": "\\overline { { N } } _ { 3 } , \\overline { { N } } _ { 1 } \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 305, + 191, + 321 + ], + "score": 1.0, + "content": "while", + "type": "text" + }, + { + "bbox": [ + 192, + 307, + 206, + 318 + ], + "score": 0.9, + "content": "\\overline { { N } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 305, + 242, + 321 + ], + "score": 1.0, + "content": "remains √", + "type": "text" + }, + { + "bbox": [ + 243, + 307, + 264, + 320 + ], + "score": 0.9, + "content": "O ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 305, + 447, + 321 + ], + "score": 1.0, + "content": ", the singular values of the signal component", + "type": "text" + }, + { + "bbox": [ + 447, + 306, + 474, + 318 + ], + "score": 0.89, + "content": "\\overline { { \\mathbf { W } } } \\mathcal { P } ^ { | | }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 305, + 487, + 321 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 487, + 307, + 504, + 317 + ], + "score": 0.86, + "content": "\\pmb { \\Sigma } ^ { 3 1 }", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 319, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 221, + 333 + ], + "score": 1.0, + "content": "are attenuated by a factor of", + "type": "text" + }, + { + "bbox": [ + 222, + 319, + 239, + 331 + ], + "score": 0.91, + "content": "\\sqrt { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 319, + 506, + 333 + ], + "score": 1.0, + "content": ", making the associated singular vectors more susceptible to noise.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "score": 1.0, + "content": "Again tracing through the equations of the main paper, with all of these modifications, we find the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 341, + 412, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 412, + 355 + ], + "score": 1.0, + "content": "final formula for test error curves in the undersampled measurement regime:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14, + "bbox_fs": [ + 104, + 197, + 506, + 355 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 356, + 475, + 388 + ], + "lines": [ + { + "bbox": [ + 136, + 356, + 475, + 388 + ], + "spans": [ + { + "bbox": [ + 136, + 356, + 475, + 388 + ], + "score": 0.94, + "content": "\\varepsilon _ { \\mathsf { t e s t } } ( t ) = { \\frac { \\left[ ( N _ { 3 } - P ) \\epsilon ^ { 2 } + ( P - { \\overline { { N } } } _ { 2 } ) \\langle s ( { \\hat { s } } , t ) ^ { 2 } \\rangle + \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\left[ ( s _ { \\alpha } ( t ) - { \\overline { { s } } } _ { \\alpha } ) ^ { 2 } + 2 s _ { \\alpha } ( t ) { \\overline { { s } } } _ { \\alpha } ( 1 - { \\mathcal { O } } ( { \\sqrt { \\overline { { D } } } } { \\overline { { s } } } _ { \\alpha } ) ) \\right] \\right] } { \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } { \\overline { { s } } } _ { \\alpha } ^ { 2 } \\right] } }", + "type": "interline_equation", + "image_path": "8f6ceadd27457f5652cdaa6ec4f561c6d4443cbcd30ad5996998202abd0ca431.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 136, + 356, + 475, + 366.6666666666667 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 136, + 366.6666666666667, + 475, + 377.33333333333337 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 136, + 377.33333333333337, + 475, + 388.00000000000006 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 389, + 505, + 503 + ], + "lines": [ + { + "bbox": [ + 106, + 389, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 354, + 402 + ], + "score": 1.0, + "content": "This equation has several modifications compared to the case", + "type": "text" + }, + { + "bbox": [ + 355, + 390, + 389, + 401 + ], + "score": 0.91, + "content": "P = N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 389, + 506, + 402 + ], + "score": 1.0, + "content": "in (15). First the term in the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 400, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 192, + 413 + ], + "score": 1.0, + "content": "numerator involving", + "type": "text" + }, + { + "bbox": [ + 193, + 401, + 227, + 412 + ], + "score": 0.92, + "content": "N _ { 3 } - P", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 400, + 388, + 413 + ], + "score": 1.0, + "content": "reflects generalization error due to the", + "type": "text" + }, + { + "bbox": [ + 388, + 401, + 423, + 412 + ], + "score": 0.92, + "content": "N _ { 3 } - P", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 400, + 506, + 413 + ], + "score": 1.0, + "content": "dimensional frozen", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 269, + 424 + ], + "score": 1.0, + "content": "subspace, and the initial weight variance", + "type": "text" + }, + { + "bbox": [ + 270, + 411, + 279, + 421 + ], + "score": 0.85, + "content": "\\epsilon ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "contributes to this generalization error. The second term", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 421, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 235, + 435 + ], + "score": 1.0, + "content": "in the numerator involves all the", + "type": "text" + }, + { + "bbox": [ + 235, + 422, + 269, + 433 + ], + "score": 0.92, + "content": "P - { \\overline { { N } } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 421, + 506, + 435 + ], + "score": 1.0, + "content": "training modes which cannot be correlated with the teacher,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 171, + 446 + ], + "score": 1.0, + "content": "and the average", + "type": "text" + }, + { + "bbox": [ + 172, + 433, + 182, + 445 + ], + "score": 0.87, + "content": "\\langle \\cdot \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "is over a Marcenko-Pasteur distribution of singular values (see (13)) except with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 173, + 457 + ], + "score": 1.0, + "content": "the aspect ratio", + "type": "text" + }, + { + "bbox": [ + 173, + 446, + 182, + 454 + ], + "score": 0.78, + "content": "\\mathcal { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 444, + 235, + 457 + ], + "score": 1.0, + "content": "replaced by", + "type": "text" + }, + { + "bbox": [ + 235, + 445, + 244, + 454 + ], + "score": 0.81, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 444, + 505, + 457 + ], + "score": 1.0, + "content": ". The third term accounts for learned correlations between the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 433, + 468 + ], + "score": 1.0, + "content": "student and teacher. It involves the transformation from teacher singular values", + "type": "text" + }, + { + "bbox": [ + 433, + 456, + 439, + 465 + ], + "score": 0.28, + "content": "\\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 455, + 505, + 468 + ], + "score": 1.0, + "content": "to training data", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 168, + 479 + ], + "score": 1.0, + "content": "singular values", + "type": "text" + }, + { + "bbox": [ + 168, + 467, + 174, + 476 + ], + "score": 0.78, + "content": "\\hat { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 466, + 437, + 479 + ], + "score": 1.0, + "content": "through the formula (11) except with the aspect ratio replacement √", + "type": "text" + }, + { + "bbox": [ + 438, + 466, + 470, + 477 + ], + "score": 0.91, + "content": "A \\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 466, + 505, + 479 + ], + "score": 1.0, + "content": ", and the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 477, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 284, + 491 + ], + "score": 1.0, + "content": "effective teacher singular value attenuation", + "type": "text" + }, + { + "bbox": [ + 284, + 477, + 327, + 489 + ], + "score": 0.93, + "content": "\\overline { { s } } \\sqrt { D } \\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 478, + 505, + 491 + ], + "score": 1.0, + "content": ". Similarly, the computation of the singular", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 489, + 455, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 358, + 503 + ], + "score": 1.0, + "content": "vector overlap is done through (12) also with the replacements", + "type": "text" + }, + { + "bbox": [ + 358, + 491, + 390, + 501 + ], + "score": 0.91, + "content": "A \\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 491, + 408, + 503 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 408, + 489, + 451, + 502 + ], + "score": 0.93, + "content": "\\overline { { s } } \\sqrt { D } \\overline { { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 491, + 455, + 503 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 389, + 506, + 503 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 516, + 463, + 537 + ], + "lines": [ + { + "bbox": [ + 107, + 515, + 465, + 527 + ], + "spans": [ + { + "bbox": [ + 107, + 515, + 128, + 527 + ], + "score": 1.0, + "content": "G.3", + "type": "text" + }, + { + "bbox": [ + 131, + 515, + 465, + 527 + ], + "score": 1.0, + "content": "COMPARISON OF THEORY AND EXPERIMENT FOR UNDER AND OVER SAMPLED", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 132, + 528, + 242, + 537 + ], + "spans": [ + { + "bbox": [ + 132, + 528, + 242, + 537 + ], + "score": 1.0, + "content": "MEASUREMENT REGIMES", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 546, + 506, + 670 + ], + "lines": [ + { + "bbox": [ + 104, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 546, + 506, + 560 + ], + "score": 1.0, + "content": "In Fig. 13, we show an excellent match between our theory and empirical simulations for varying", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 558, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 144, + 570 + ], + "score": 1.0, + "content": "values of", + "type": "text" + }, + { + "bbox": [ + 144, + 559, + 153, + 568 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 558, + 506, + 570 + ], + "score": 1.0, + "content": ", both in the oversampled and undersampled measurement regimes. There are a number of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 570, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 505, + 581 + ], + "score": 1.0, + "content": "interesting features to note. First, although the minimum generalization error improves monotonically", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 579, + 505, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 126, + 593 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 126, + 581, + 135, + 590 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 579, + 201, + 593 + ], + "score": 1.0, + "content": ", the asymptotic", + "type": "text" + }, + { + "bbox": [ + 202, + 581, + 232, + 591 + ], + "score": 0.86, + "content": "t \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 579, + 505, + 593 + ], + "score": 1.0, + "content": ") generalization error does not, because of a frozen subspace (Advani", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 590, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 104, + 590, + 316, + 604 + ], + "score": 1.0, + "content": "& Saxe, 2017) of the modes that are not overfit when", + "type": "text" + }, + { + "bbox": [ + 317, + 591, + 351, + 602 + ], + "score": 0.92, + "content": "P < N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 590, + 483, + 604 + ], + "score": 1.0, + "content": ", because the training data rank is", + "type": "text" + }, + { + "bbox": [ + 484, + 591, + 503, + 602 + ], + "score": 0.88, + "content": "\\le P", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 590, + 506, + 604 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 602, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 164, + 616 + ], + "score": 1.0, + "content": "Second, when", + "type": "text" + }, + { + "bbox": [ + 164, + 603, + 199, + 614 + ], + "score": 0.91, + "content": "P \\geq N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 603, + 435, + 616 + ], + "score": 1.0, + "content": ", the minimum generalization error is simply determined by", + "type": "text" + }, + { + "bbox": [ + 436, + 602, + 490, + 616 + ], + "score": 0.92, + "content": "\\mathbf { S N R } \\sqrt { P / N _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 603, + 506, + 616 + ], + "score": 1.0, + "content": ", so", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 614, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 305, + 627 + ], + "score": 1.0, + "content": "all curves converge to a single asymptotic line as", + "type": "text" + }, + { + "bbox": [ + 305, + 615, + 314, + 624 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 614, + 384, + 627 + ], + "score": 1.0, + "content": "increases. When", + "type": "text" + }, + { + "bbox": [ + 385, + 614, + 419, + 625 + ], + "score": 0.91, + "content": "P < N _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 614, + 506, + 627 + ], + "score": 1.0, + "content": ", however, the curves", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 624, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 506, + 639 + ], + "score": 1.0, + "content": "for different SNRs separate because the projection and noise effects depend on initial SNR. Finally,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "in Fig. 13D we show that approximately unit norm i.i.d. gaussian inputs yield similar results to the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 646, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 660 + ], + "score": 1.0, + "content": "orthogonalized data matrices we employed in the theory, although the gaussian inputs do result in", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 658, + 260, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 260, + 671 + ], + "score": 1.0, + "content": "slightly higher optimal stopping error.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 41, + "bbox_fs": [ + 104, + 546, + 506, + 671 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 686, + 305, + 698 + ], + "lines": [ + { + "bbox": [ + 105, + 685, + 307, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 307, + 699 + ], + "score": 1.0, + "content": "H LESS THAN FULL RANK STUDENTS", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "Although we generally assumed students were full rank in the main text to simplify the calculations,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "score": 1.0, + "content": "our theory remains exact for TA networks of any rank. Furthermore, as shown in Fig. 14, the TA", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "and random networks again show very similar optimal stopping generalization error, but with the", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "optimal stopping time of the random networks lagging behind that of the TA networks. Furthermore,", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 116 + ], + "score": 1.0, + "content": "this lag increases as the rank of the random network decreases (because a low rank network will", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "score": 1.0, + "content": "have less initial projection onto the random modes, there is is more alignment to be done). However,", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "reducing the student rank does not change the optimal stopping error (as long as it is still greater than", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 178, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 178, + 150 + ], + "score": 1.0, + "content": "the teacher rank).", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 48.5, + "bbox_fs": [ + 105, + 709, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 506, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "and random networks again show very similar optimal stopping generalization error, but with the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "optimal stopping time of the random networks lagging behind that of the TA networks. Furthermore,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 116 + ], + "score": 1.0, + "content": "this lag increases as the rank of the random network decreases (because a low rank network will", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "score": 1.0, + "content": "have less initial projection onto the random modes, there is is more alignment to be done). However,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "reducing the student rank does not change the optimal stopping error (as long as it is still greater than", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 178, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 178, + 150 + ], + "score": 1.0, + "content": "the teacher rank).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "image", + "bbox": [ + 106, + 162, + 505, + 502 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 162, + 505, + 502 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 162, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 505, + 502 + ], + "score": 0.954, + "type": "image", + "image_path": "6f1091544ee918b4ed7b6456f495e4dd5c10e618ea9cc7217b0d7c4d68a60fb8.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 106, + 162, + 505, + 275.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 275.3333333333333, + 505, + 388.66666666666663 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 388.66666666666663, + 505, + 501.99999999999994 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 509, + 504, + 531 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "(c) Optimal generalization error vs. optimal(d) Optimal generalization error vs. optimal stopping time for", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 519, + 367, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 367, + 531 + ], + "score": 1.0, + "content": "stopping time for randomly initialized networksinitially aligned networks", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "image_caption", + "bbox": [ + 106, + 539, + 505, + 660 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "Figure 14: Empirical verification that the simplifying assumptions of our theory are approximately", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "valid in the regime we are considering at different student ranks. Initializations with random initial", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 561, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 573 + ], + "score": 1.0, + "content": "weights (random init.) and initializations with initial weight aligned to the noisy data SVD (aligned", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 573, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 584 + ], + "score": 1.0, + "content": "init.) are compared across varying student ranks. (a) The minimum generalization errors are almost", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 581, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 104, + 581, + 506, + 597 + ], + "score": 1.0, + "content": "identical between the different initializations and different student ranks. (b) The optimal stopping", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "time in the randomly initialized networks consistently lags behind the aligned networks, because it", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "takes time for the alignment to occur. This lag increases as the students rank decreases. (c) Randomly", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 615, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 630 + ], + "score": 1.0, + "content": "initialized networks of varying ranks obey qualitatively similar trends of increase in optimal stopping", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 640 + ], + "score": 1.0, + "content": "error and optimal stopping time as SNR decreases. (d) The theory predicts the aligned networks", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "trends of increase in optimal stopping error and optimal stopping time with decreasing SNR almost", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 649, + 401, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 329, + 662 + ], + "score": 1.0, + "content": "perfectly. (All plots are made with a rank 1 teacher and", + "type": "text" + }, + { + "bbox": [ + 329, + 649, + 398, + 660 + ], + "score": 0.91, + "content": "N _ { 1 } = N _ { 3 } = 1 0 0 \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 649, + 401, + 662 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 16 + } + ], + "index": 9.5 + } + ], + "page_idx": 19, + "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": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 506, + 149 + ], + "lines": [], + "index": 2.5, + "bbox_fs": [ + 105, + 82, + 506, + 150 + ], + "lines_deleted": true + }, + { + "type": "image", + "bbox": [ + 106, + 162, + 505, + 502 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 162, + 505, + 502 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 162, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 505, + 502 + ], + "score": 0.954, + "type": "image", + "image_path": "6f1091544ee918b4ed7b6456f495e4dd5c10e618ea9cc7217b0d7c4d68a60fb8.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 106, + 162, + 505, + 275.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 275.3333333333333, + 505, + 388.66666666666663 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 388.66666666666663, + 505, + 501.99999999999994 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 509, + 504, + 531 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "(c) Optimal generalization error vs. optimal(d) Optimal generalization error vs. optimal stopping time for", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 519, + 367, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 367, + 531 + ], + "score": 1.0, + "content": "stopping time for randomly initialized networksinitially aligned networks", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "image_caption", + "bbox": [ + 106, + 539, + 505, + 660 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "Figure 14: Empirical verification that the simplifying assumptions of our theory are approximately", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "valid in the regime we are considering at different student ranks. Initializations with random initial", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 561, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 573 + ], + "score": 1.0, + "content": "weights (random init.) and initializations with initial weight aligned to the noisy data SVD (aligned", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 573, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 584 + ], + "score": 1.0, + "content": "init.) are compared across varying student ranks. (a) The minimum generalization errors are almost", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 581, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 104, + 581, + 506, + 597 + ], + "score": 1.0, + "content": "identical between the different initializations and different student ranks. (b) The optimal stopping", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "time in the randomly initialized networks consistently lags behind the aligned networks, because it", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "takes time for the alignment to occur. This lag increases as the students rank decreases. (c) Randomly", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 615, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 630 + ], + "score": 1.0, + "content": "initialized networks of varying ranks obey qualitatively similar trends of increase in optimal stopping", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 640 + ], + "score": 1.0, + "content": "error and optimal stopping time as SNR decreases. (d) The theory predicts the aligned networks", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "trends of increase in optimal stopping error and optimal stopping time with decreasing SNR almost", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 649, + 401, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 329, + 662 + ], + "score": 1.0, + "content": "perfectly. (All plots are made with a rank 1 teacher and", + "type": "text" + }, + { + "bbox": [ + 329, + 649, + 398, + 660 + ], + "score": 0.91, + "content": "N _ { 1 } = N _ { 3 } = 1 0 0 \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 649, + 401, + 662 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 16 + } + ], + "index": 9.5 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/ryfMLoCqtQ/ryfMLoCqtQ_model.json b/parse/train/ryfMLoCqtQ/ryfMLoCqtQ_model.json new file mode 100644 index 0000000000000000000000000000000000000000..d4f5d517b382f2be1a15443e7680e4c89292f8e2 --- /dev/null +++ b/parse/train/ryfMLoCqtQ/ryfMLoCqtQ_model.json @@ -0,0 +1,43098 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 762, + 1304, + 762, + 1304, + 1374, + 398, + 1374 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1468, + 1404, + 1468, + 1404, + 1743, + 298, + 1743 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1759, + 1403, + 1759, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 0, + "poly": [ + 297, + 224, + 1410, + 224, + 1410, + 376, + 297, + 376 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 862, + 432, + 1219, + 432, + 1219, + 615, + 862, + 615 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 314, + 431, + 668, + 431, + 668, + 555, + 314, + 555 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 301, + 1413, + 573, + 1413, + 573, + 1448, + 301, + 1448 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 104, + 299, + 104 + ], + "score": 0.875 + }, + { + "category_id": 0, + "poly": [ + 773, + 695, + 927, + 695, + 927, + 729, + 773, + 729 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 856, + 2089, + 856, + 2112, + 841, + 2112 + ], + "score": 0.723 + }, + { + "category_id": 0, + "poly": [ + 865, + 432, + 1041, + 432, + 1041, + 463, + 865, + 463 + ], + "score": 0.117 + }, + { + "category_id": 15, + "poly": [ + 290.0, + 221.0, + 1415.0, + 221.0, + 1415.0, + 279.0, + 290.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 282.0, + 1412.0, + 282.0, + 1412.0, + 330.0, + 292.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 336.0, + 452.0, + 336.0, + 452.0, + 387.0, + 292.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1410.0, + 578.0, + 1410.0, + 578.0, + 1457.0, + 294.0, + 1457.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": [ + 770.0, + 694.0, + 932.0, + 694.0, + 932.0, + 732.0, + 770.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 859.0, + 2088.0, + 859.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 429.0, + 1044.0, + 429.0, + 1044.0, + 469.0, + 862.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 757.0, + 1306.0, + 757.0, + 1306.0, + 803.0, + 392.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 791.0, + 1306.0, + 791.0, + 1306.0, + 834.0, + 391.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 824.0, + 1305.0, + 824.0, + 1305.0, + 862.0, + 392.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 858.0, + 1304.0, + 858.0, + 1304.0, + 888.0, + 395.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 886.0, + 1308.0, + 886.0, + 1308.0, + 919.0, + 393.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 915.0, + 1308.0, + 915.0, + 1308.0, + 951.0, + 393.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 946.0, + 1305.0, + 946.0, + 1305.0, + 981.0, + 393.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 977.0, + 1306.0, + 977.0, + 1306.0, + 1010.0, + 395.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1008.0, + 1305.0, + 1008.0, + 1305.0, + 1042.0, + 393.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1035.0, + 1308.0, + 1035.0, + 1308.0, + 1074.0, + 392.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1069.0, + 1306.0, + 1069.0, + 1306.0, + 1102.0, + 394.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1100.0, + 1305.0, + 1100.0, + 1305.0, + 1133.0, + 394.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1126.0, + 1304.0, + 1126.0, + 1304.0, + 1166.0, + 392.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1159.0, + 1305.0, + 1159.0, + 1305.0, + 1194.0, + 394.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1192.0, + 1307.0, + 1192.0, + 1307.0, + 1222.0, + 395.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1222.0, + 1309.0, + 1222.0, + 1309.0, + 1254.0, + 395.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1252.0, + 1306.0, + 1252.0, + 1306.0, + 1285.0, + 395.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1283.0, + 1307.0, + 1283.0, + 1307.0, + 1316.0, + 394.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1312.0, + 1308.0, + 1312.0, + 1308.0, + 1347.0, + 393.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1341.0, + 1243.0, + 1341.0, + 1243.0, + 1377.0, + 393.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1470.0, + 1405.0, + 1470.0, + 1405.0, + 1503.0, + 296.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1497.0, + 1406.0, + 1497.0, + 1406.0, + 1537.0, + 292.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1531.0, + 1409.0, + 1531.0, + 1409.0, + 1564.0, + 294.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1559.0, + 1406.0, + 1559.0, + 1406.0, + 1596.0, + 293.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1590.0, + 1406.0, + 1590.0, + 1406.0, + 1626.0, + 293.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1619.0, + 1407.0, + 1619.0, + 1407.0, + 1656.0, + 292.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1651.0, + 1404.0, + 1651.0, + 1404.0, + 1684.0, + 297.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1681.0, + 1402.0, + 1681.0, + 1402.0, + 1717.0, + 294.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1712.0, + 867.0, + 1712.0, + 867.0, + 1749.0, + 294.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1761.0, + 1404.0, + 1761.0, + 1404.0, + 1794.0, + 296.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1787.0, + 1407.0, + 1787.0, + 1407.0, + 1825.0, + 293.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1848.0, + 1405.0, + 1848.0, + 1405.0, + 1887.0, + 292.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1878.0, + 1408.0, + 1878.0, + 1408.0, + 1920.0, + 291.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1971.0, + 1408.0, + 1971.0, + 1408.0, + 2008.0, + 292.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 429.0, + 1046.0, + 429.0, + 1046.0, + 467.0, + 861.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 459.0, + 1220.0, + 459.0, + 1220.0, + 499.0, + 859.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 489.0, + 1089.0, + 489.0, + 1089.0, + 528.0, + 860.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 523.0, + 914.0, + 523.0, + 914.0, + 555.0, + 861.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 552.0, + 1021.0, + 552.0, + 1021.0, + 587.0, + 861.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 586.0, + 1218.0, + 586.0, + 1218.0, + 617.0, + 862.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 428.0, + 580.0, + 428.0, + 580.0, + 466.0, + 312.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 458.0, + 617.0, + 458.0, + 617.0, + 500.0, + 310.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 491.0, + 538.0, + 491.0, + 538.0, + 526.0, + 313.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 525.0, + 668.0, + 525.0, + 668.0, + 557.0, + 313.0, + 557.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 228, + 1404, + 228, + 1404, + 476, + 298, + 476 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 489, + 1404, + 489, + 1404, + 705, + 298, + 705 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1476, + 1405, + 1476, + 1405, + 1685, + 297, + 1685 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 718, + 1405, + 718, + 1405, + 906, + 298, + 906 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1202, + 1405, + 1202, + 1405, + 1349, + 297, + 1349 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1017, + 1404, + 1017, + 1404, + 1111, + 298, + 1111 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 660, + 1367, + 1036, + 1367, + 1036, + 1462, + 660, + 1462 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 491, + 1849, + 1205, + 1849, + 1205, + 1947, + 491, + 1947 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 299, + 1964, + 1403, + 1964, + 1403, + 2036, + 299, + 2036 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 291, + 1798, + 1373, + 1798, + 1373, + 1832, + 291, + 1832 + ], + "score": 0.922 + }, + { + "category_id": 8, + "poly": [ + 600, + 1745, + 1094, + 1745, + 1094, + 1785, + 600, + 1785 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 289, + 1695, + 1319, + 1695, + 1319, + 1731, + 289, + 1731 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 104, + 299, + 104 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 302, + 948, + 752, + 948, + 752, + 984, + 302, + 984 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1401, + 1400, + 1401, + 1400, + 1432, + 1366, + 1432 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 298, + 1149, + 930, + 1149, + 930, + 1180, + 298, + 1180 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1884, + 1400, + 1884, + 1400, + 1914, + 1366, + 1914 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1752, + 1400, + 1752, + 1400, + 1781, + 1366, + 1781 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 840, + 2087, + 859, + 2087, + 859, + 2113, + 840, + 2113 + ], + "score": 0.737 + }, + { + "category_id": 2, + "poly": [ + 840, + 2087, + 860, + 2087, + 860, + 2113, + 840, + 2113 + ], + "score": 0.204 + }, + { + "category_id": 14, + "poly": [ + 490, + 1846, + 1210, + 1846, + 1210, + 1949, + 490, + 1949 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { \\pmb { \\Sigma } ^ { 1 1 } \\equiv \\overset { \\overline { { \\boldsymbol { N } } } _ { 1 } } { \\mu = 1 } \\hat { \\mathbf { x } } ^ { \\mu } \\hat { \\mathbf { x } } ^ { \\mu T } = \\mathbf { I } , \\qquad \\pmb { \\Sigma } ^ { 3 1 } \\equiv \\overset { \\overline { { \\boldsymbol { N } } } _ { 1 } } { \\mu = 1 } \\hat { \\mathbf { y } } ^ { \\mu } \\hat { \\mathbf { x } } ^ { \\mu T } = \\overline { { \\mathbf { W } } } + \\mathbf { Z } \\hat { \\mathbf { X } } ^ { T } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 661, + 1363, + 1036, + 1363, + 1036, + 1463, + 661, + 1463 + ], + "score": 0.95, + "latex": "\\overline { { \\mathbf { W } } } = \\overline { { \\mathbf { U } } } \\overline { { \\mathbf { S } } } \\overline { { \\mathbf { V } } } ^ { T } = \\sum _ { \\alpha = 1 } ^ { \\overline { { N _ { 2 } } } } \\overline { { s } } ^ { \\alpha } \\overline { { \\mathbf { u } } } ^ { \\alpha } \\overline { { \\mathbf { v } } } ^ { \\alpha T } ," + }, + { + "category_id": 13, + "poly": [ + 844, + 1579, + 1080, + 1579, + 1080, + 1616, + 844, + 1616 + ], + "score": 0.93, + "latex": "\\mathcal { A } = \\overline { { N _ { 3 } } } / \\overline { { N _ { 1 } } } \\in ( 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 644, + 1235, + 832, + 1235, + 832, + 1273, + 644, + 1273 + ], + "score": 0.93, + "latex": "\\overline { { \\mathbf { W } } } ^ { 3 2 } \\in \\mathbb { R } ^ { \\overline { { N _ { 3 } } } \\times \\overline { { N _ { 2 } } } }" + }, + { + "category_id": 13, + "poly": [ + 1194, + 1275, + 1314, + 1275, + 1314, + 1310, + 1194, + 1310 + ], + "score": 0.93, + "latex": "\\overline { { \\mathbf { y } } } = \\overline { { \\mathbf { W } } } \\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 401, + 1235, + 590, + 1235, + 590, + 1273, + 401, + 1273 + ], + "score": 0.92, + "latex": "\\overline { { \\mathbf { W } } } ^ { 2 1 } \\in \\mathbb { R } ^ { \\overline { { N _ { 2 } } } \\times \\overline { { N } } _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 594, + 1478, + 753, + 1478, + 753, + 1513, + 594, + 1513 + ], + "score": 0.92, + "latex": "\\overline { { \\mathbf { V } } } \\in \\mathbb { R } ^ { \\overline { { N _ { 1 } } } \\times \\overline { { N } } _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 380, + 1478, + 539, + 1478, + 539, + 1512, + 380, + 1512 + ], + "score": 0.92, + "latex": "\\overline { { \\mathbf { U } } } \\in \\mathbb { R } ^ { \\overline { { N _ { 3 } } } \\times \\overline { { N } } _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 398, + 1580, + 553, + 1580, + 553, + 1615, + 398, + 1615 + ], + "score": 0.92, + "latex": "\\overline { { N _ { 1 } } } , \\overline { { N _ { 3 } } } \\infty" + }, + { + "category_id": 13, + "poly": [ + 693, + 1615, + 828, + 1615, + 828, + 1649, + 693, + 1649 + ], + "score": 0.91, + "latex": "\\overline { { N } } _ { 2 } \\sim O ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1513, + 400, + 1513, + 400, + 1546, + 298, + 1546 + ], + "score": 0.91, + "latex": "\\overline { { N _ { 2 } } } \\times \\overline { { N _ { 2 } } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1307, + 483, + 1307, + 483, + 1345, + 297, + 1345 + ], + "score": 0.91, + "latex": "\\dot { \\overline { { \\mathbf { W } } } } \\equiv \\overline { { \\mathbf { W } } } ^ { 3 \\bar { 2 } } \\overline { { \\mathbf { W } } } ^ { 2 1 }" + }, + { + "category_id": 14, + "poly": [ + 600, + 1744, + 1100, + 1744, + 1100, + 1785, + 600, + 1785 + ], + "score": 0.91, + "latex": "\\hat { { \\bf y } } ^ { \\mu } = \\overline { { { \\bf W } } } \\hat { \\bf x } ^ { \\mu } + { \\bf z } ^ { \\mu } \\qquad \\mathrm { f o r } \\quad \\mu = { \\bf 1 } , \\ldots , \\overline { { { \\bf N } } } _ { \\bf 1 } ." + }, + { + "category_id": 13, + "poly": [ + 878, + 1999, + 1035, + 1999, + 1035, + 2031, + 878, + 2031 + ], + "score": 0.9, + "latex": "\\mathbf { Z } \\in \\mathbb { R } ^ { \\overline { { N } } _ { 3 } \\times \\overline { { N } } _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 646, + 1582, + 705, + 1582, + 705, + 1615, + 646, + 1615 + ], + "score": 0.9, + "latex": "O ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 827, + 1649, + 867, + 1649, + 867, + 1682, + 827, + 1682 + ], + "score": 0.9, + "latex": "\\overline { { N } } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 596, + 1964, + 644, + 1964, + 644, + 1995, + 596, + 1995 + ], + "score": 0.9, + "latex": "\\pmb { \\Sigma } ^ { 1 1 }" + }, + { + "category_id": 13, + "poly": [ + 762, + 1548, + 821, + 1548, + 821, + 1582, + 762, + 1582 + ], + "score": 0.89, + "latex": "O ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 1053, + 1696, + 1092, + 1696, + 1092, + 1729, + 1053, + 1729 + ], + "score": 0.89, + "latex": "\\overline { { N } } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1062, + 1203, + 1099, + 1203, + 1099, + 1236, + 1062, + 1236 + ], + "score": 0.89, + "latex": "\\overline { { N } } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 508, + 2000, + 556, + 2000, + 556, + 2031, + 508, + 2031 + ], + "score": 0.89, + "latex": "\\pmb { \\Sigma } ^ { 3 1 }" + }, + { + "category_id": 13, + "poly": [ + 1127, + 1514, + 1153, + 1514, + 1153, + 1543, + 1127, + 1543 + ], + "score": 0.85, + "latex": "\\overline { { \\mathbf { V } } }" + }, + { + "category_id": 13, + "poly": [ + 1258, + 1313, + 1293, + 1313, + 1293, + 1344, + 1258, + 1344 + ], + "score": 0.85, + "latex": "\\overline { { \\mathbf { W } } }" + }, + { + "category_id": 13, + "poly": [ + 1051, + 1515, + 1077, + 1515, + 1077, + 1543, + 1051, + 1543 + ], + "score": 0.84, + "latex": "\\overline { { \\mathbf { U } } }" + }, + { + "category_id": 13, + "poly": [ + 1319, + 1482, + 1341, + 1482, + 1341, + 1512, + 1319, + 1512 + ], + "score": 0.81, + "latex": "\\overline { \\mathbf { S } }" + }, + { + "category_id": 13, + "poly": [ + 1232, + 1547, + 1251, + 1547, + 1251, + 1576, + 1232, + 1576 + ], + "score": 0.79, + "latex": "\\overline { { \\mathbf { S } } }" + }, + { + "category_id": 13, + "poly": [ + 1350, + 2005, + 1371, + 2005, + 1371, + 2035, + 1350, + 2035 + ], + "score": 0.76, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1253, + 1209, + 1266, + 1209, + 1266, + 1234, + 1253, + 1234 + ], + "score": 0.66, + "latex": "i" + }, + { + "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": [ + 292.0, + 944.0, + 759.0, + 944.0, + 759.0, + 989.0, + 292.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1147.0, + 933.0, + 1147.0, + 933.0, + 1182.0, + 295.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 863.0, + 2085.0, + 863.0, + 2121.0, + 838.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2121.0, + 838.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 1404.0, + 231.0, + 1404.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 263.0, + 1405.0, + 263.0, + 1405.0, + 296.0, + 294.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 293.0, + 1406.0, + 293.0, + 1406.0, + 327.0, + 296.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 324.0, + 1404.0, + 324.0, + 1404.0, + 354.0, + 296.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 352.0, + 1404.0, + 352.0, + 1404.0, + 386.0, + 294.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 382.0, + 1407.0, + 382.0, + 1407.0, + 418.0, + 293.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 411.0, + 1405.0, + 411.0, + 1405.0, + 451.0, + 292.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 443.0, + 1281.0, + 443.0, + 1281.0, + 480.0, + 294.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 487.0, + 1408.0, + 487.0, + 1408.0, + 527.0, + 293.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 518.0, + 1406.0, + 518.0, + 1406.0, + 560.0, + 292.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 550.0, + 1404.0, + 550.0, + 1404.0, + 587.0, + 293.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 583.0, + 1405.0, + 583.0, + 1405.0, + 617.0, + 293.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 614.0, + 1405.0, + 614.0, + 1405.0, + 645.0, + 296.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 643.0, + 1405.0, + 643.0, + 1405.0, + 677.0, + 293.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 672.0, + 585.0, + 672.0, + 585.0, + 711.0, + 293.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1474.0, + 379.0, + 1474.0, + 379.0, + 1520.0, + 291.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1474.0, + 593.0, + 1474.0, + 593.0, + 1520.0, + 540.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1474.0, + 1318.0, + 1474.0, + 1318.0, + 1520.0, + 754.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 1474.0, + 1407.0, + 1474.0, + 1407.0, + 1520.0, + 1342.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 1513.0, + 1050.0, + 1513.0, + 1050.0, + 1550.0, + 401.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1513.0, + 1126.0, + 1513.0, + 1126.0, + 1550.0, + 1078.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 1513.0, + 1406.0, + 1513.0, + 1406.0, + 1550.0, + 1154.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1548.0, + 761.0, + 1548.0, + 761.0, + 1582.0, + 294.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1548.0, + 1231.0, + 1548.0, + 1231.0, + 1582.0, + 822.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 1548.0, + 1405.0, + 1548.0, + 1405.0, + 1582.0, + 1252.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1579.0, + 397.0, + 1579.0, + 397.0, + 1618.0, + 292.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1579.0, + 645.0, + 1579.0, + 645.0, + 1618.0, + 554.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1579.0, + 843.0, + 1579.0, + 843.0, + 1618.0, + 706.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1579.0, + 1407.0, + 1579.0, + 1407.0, + 1618.0, + 1081.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1616.0, + 692.0, + 1616.0, + 692.0, + 1652.0, + 294.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1616.0, + 1405.0, + 1616.0, + 1405.0, + 1652.0, + 829.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1651.0, + 826.0, + 1651.0, + 826.0, + 1687.0, + 292.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1651.0, + 1138.0, + 1651.0, + 1138.0, + 1687.0, + 868.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 716.0, + 1405.0, + 716.0, + 1405.0, + 757.0, + 293.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 749.0, + 1403.0, + 749.0, + 1403.0, + 785.0, + 295.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 780.0, + 1406.0, + 780.0, + 1406.0, + 817.0, + 292.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 812.0, + 1406.0, + 812.0, + 1406.0, + 845.0, + 293.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 840.0, + 1408.0, + 840.0, + 1408.0, + 879.0, + 293.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 870.0, + 1207.0, + 870.0, + 1207.0, + 908.0, + 293.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1201.0, + 1061.0, + 1201.0, + 1061.0, + 1239.0, + 294.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1201.0, + 1252.0, + 1201.0, + 1252.0, + 1239.0, + 1100.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 1201.0, + 1405.0, + 1201.0, + 1405.0, + 1239.0, + 1267.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1233.0, + 400.0, + 1233.0, + 400.0, + 1285.0, + 293.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 1233.0, + 643.0, + 1233.0, + 643.0, + 1285.0, + 591.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1233.0, + 1407.0, + 1233.0, + 1407.0, + 1285.0, + 833.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1276.0, + 1193.0, + 1276.0, + 1193.0, + 1312.0, + 294.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 1276.0, + 1405.0, + 1276.0, + 1405.0, + 1312.0, + 1315.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1304.0, + 296.0, + 1304.0, + 296.0, + 1357.0, + 291.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 1304.0, + 1257.0, + 1304.0, + 1257.0, + 1357.0, + 484.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1304.0, + 1307.0, + 1304.0, + 1307.0, + 1357.0, + 1294.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1017.0, + 1405.0, + 1017.0, + 1405.0, + 1052.0, + 295.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1048.0, + 1404.0, + 1048.0, + 1404.0, + 1081.0, + 293.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1079.0, + 1005.0, + 1079.0, + 1005.0, + 1111.0, + 296.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1961.0, + 595.0, + 1961.0, + 595.0, + 2001.0, + 294.0, + 2001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1961.0, + 1407.0, + 1961.0, + 1407.0, + 2001.0, + 645.0, + 2001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1992.0, + 507.0, + 1992.0, + 507.0, + 2042.0, + 290.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 1992.0, + 877.0, + 1992.0, + 877.0, + 2042.0, + 557.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 1992.0, + 1349.0, + 1992.0, + 1349.0, + 2042.0, + 1036.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 1992.0, + 1409.0, + 1992.0, + 1409.0, + 2042.0, + 1372.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1794.0, + 1377.0, + 1794.0, + 1377.0, + 1839.0, + 293.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1692.0, + 1052.0, + 1692.0, + 1052.0, + 1737.0, + 291.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 1692.0, + 1324.0, + 1692.0, + 1324.0, + 1737.0, + 1093.0, + 1737.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 654, + 1406, + 654, + 1406, + 811, + 299, + 811 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 947, + 1403, + 947, + 1403, + 1076, + 299, + 1076 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 402, + 1405, + 402, + 1405, + 559, + 298, + 559 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1749, + 1406, + 1749, + 1406, + 1844, + 298, + 1844 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 227, + 1403, + 227, + 1403, + 389, + 298, + 389 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 301, + 1538, + 1401, + 1538, + 1401, + 1632, + 301, + 1632 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 479, + 828, + 1220, + 828, + 1220, + 932, + 479, + 932 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 298, + 1201, + 1414, + 1201, + 1414, + 1275, + 298, + 1275 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 298, + 1941, + 1399, + 1941, + 1399, + 2006, + 298, + 2006 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 294, + 1095, + 1396, + 1095, + 1396, + 1178, + 294, + 1178 + ], + "score": 0.933 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 301, + 598, + 816, + 598, + 816, + 630, + 301, + 630 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1366, + 865, + 1400, + 865, + 1400, + 895, + 1366, + 895 + ], + "score": 0.884 + }, + { + "category_id": 0, + "poly": [ + 293, + 1680, + 1363, + 1680, + 1363, + 1714, + 293, + 1714 + ], + "score": 0.88 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1454, + 1401, + 1454, + 1401, + 1484, + 1366, + 1484 + ], + "score": 0.868 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1337, + 1401, + 1337, + 1401, + 1366, + 1366, + 1366 + ], + "score": 0.851 + }, + { + "category_id": 0, + "poly": [ + 301, + 1883, + 1249, + 1883, + 1249, + 1915, + 301, + 1915 + ], + "score": 0.824 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1174, + 1400, + 1174, + 1400, + 1201, + 1365, + 1201 + ], + "score": 0.816 + }, + { + "category_id": 8, + "poly": [ + 399, + 1414, + 1303, + 1414, + 1303, + 1524, + 399, + 1524 + ], + "score": 0.743 + }, + { + "category_id": 8, + "poly": [ + 389, + 1294, + 1302, + 1294, + 1302, + 1404, + 389, + 1404 + ], + "score": 0.71 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.656 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.392 + }, + { + "category_id": 8, + "poly": [ + 394, + 1292, + 1301, + 1292, + 1301, + 1523, + 394, + 1523 + ], + "score": 0.21 + }, + { + "category_id": 14, + "poly": [ + 395, + 1291, + 1303, + 1291, + 1303, + 1527, + 395, + 1527 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\varepsilon _ { \\mathrm { t r a i n } } = \\left[ \\overbrace { \\sum _ { \\beta = 1 } ^ { N _ { 3 } } } ^ { \\overline { { S } } _ { 3 } } \\hat { s } _ { \\beta } ^ { 2 } \\right] ^ { - 1 } \\left[ \\underset { \\alpha = 1 } { \\overset { N _ { 2 } } { \\sum _ { \\alpha } } } s _ { \\alpha } ^ { 2 } + \\underset { \\beta = 1 } { \\overset { \\overline { { N } } _ { 3 } } { \\sum _ { \\beta } } } \\hat { s } _ { \\beta } ^ { 2 } - 2 \\underset { \\alpha = 1 } { \\overset { N _ { 2 } } { \\sum _ { \\beta = 1 } } } \\sum _ { \\beta = 1 } ^ { \\overline { { N _ { 3 } } } } s _ { \\alpha } \\hat { s } _ { \\beta } \\left( \\mathbf { u } ^ { \\alpha } \\cdot \\hat { \\mathbf { u } } ^ { \\beta } \\right) \\left( \\mathbf { v } ^ { \\alpha } \\cdot \\hat { \\mathbf { v } } ^ { \\beta } \\right) \\right] , } \\\\ & { \\varepsilon _ { \\mathrm { t e s t } } = \\left[ \\underset { \\beta = 1 } { \\overset { \\overline { { N } } _ { 2 } } { \\sum _ { \\beta } } } \\overline { { s } } _ { \\beta } ^ { 2 } \\right] ^ { - 1 } \\left[ \\underset { \\alpha = 1 } { \\overset { N _ { 2 } } { \\sum _ { \\alpha } } } s _ { \\alpha } ^ { 2 } + \\underset { \\beta = 1 } { \\overset { \\overline { { N } } _ { 2 } } { \\sum _ { \\beta } } } \\frac { 1 } { s _ { \\beta } ^ { 2 } } - 2 \\underset { \\alpha = 1 } { \\overset { N _ { 2 } } { \\sum _ { \\alpha } } } \\sum _ { \\beta = 1 } ^ { \\overline { { N _ { 2 } } } } s _ { \\alpha } \\overline { { s } } _ { \\beta } \\left( \\mathbf { u } ^ { \\alpha } \\cdot \\overline { { \\mathbf { u } } } ^ { \\beta } \\right) \\left( \\mathbf { v } ^ { \\alpha } \\cdot \\overline { { \\mathbf { v } } } ^ { \\beta } \\right) \\right] . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 480, + 825, + 1219, + 825, + 1219, + 933, + 480, + 933 + ], + "score": 0.93, + "latex": "\\varepsilon _ { \\mathrm { t r a i n } } \\equiv \\frac { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { W } \\hat { \\mathbf { x } } ^ { \\mu } - \\hat { \\mathbf { y } } ^ { \\mu } | | _ { 2 } ^ { 2 } } { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\hat { \\mathbf { y } } ^ { \\mu } | | _ { 2 } ^ { 2 } } , \\varepsilon _ { \\mathrm { t e s t } } \\equiv \\frac { \\langle | | \\mathbf { W } \\overline { { \\mathbf { x } } } - \\overline { { \\mathbf { y } } } | | _ { 2 } ^ { 2 } \\rangle } { \\langle | | \\overline { { \\mathbf { y } } } | | _ { 2 } ^ { 2 } \\rangle } ," + }, + { + "category_id": 13, + "poly": [ + 386, + 1599, + 534, + 1599, + 534, + 1633, + 386, + 1633 + ], + "score": 0.93, + "latex": "\\{ \\overline { { s } } ^ { \\alpha } , \\bar { \\overline { { \\mathbf { u } } } } ^ { \\alpha } , \\overline { { \\mathbf { v } } } ^ { \\alpha } \\}" + }, + { + "category_id": 13, + "poly": [ + 733, + 1569, + 882, + 1569, + 882, + 1603, + 733, + 1603 + ], + "score": 0.93, + "latex": "\\{ s ^ { \\alpha } , \\mathbf { u } ^ { \\alpha } , \\mathbf { v } ^ { \\alpha } \\}" + }, + { + "category_id": 13, + "poly": [ + 1204, + 1569, + 1352, + 1569, + 1352, + 1603, + 1204, + 1603 + ], + "score": 0.92, + "latex": "\\{ \\hat { s } ^ { \\alpha } , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}" + }, + { + "category_id": 13, + "poly": [ + 1167, + 979, + 1306, + 979, + 1306, + 1013, + 1167, + 1013 + ], + "score": 0.92, + "latex": "\\overline { { \\mathbf { y } } } ^ { \\mu } = \\overline { { \\mathbf { W } } } \\overline { { \\mathbf { x } } } ^ { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 356, + 1971, + 658, + 1971, + 658, + 2011, + 356, + 2011 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\sum _ { \\mu } | | \\hat { \\mathbf { y } } ^ { \\mu } - \\mathbf { W } ^ { 3 2 } \\mathbf { W } ^ { 2 1 } \\bar { \\hat { \\mathbf { x } } ^ { \\mu } } | | _ { 2 } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 810, + 684, + 919, + 684, + 919, + 718, + 810, + 718 + ], + "score": 0.92, + "latex": "N _ { 2 } \\geq \\overline { { N _ { 2 } } }" + }, + { + "category_id": 14, + "poly": [ + 310, + 1091, + 1404, + 1091, + 1404, + 1180, + 310, + 1180 + ], + "score": 0.92, + "latex": "\\mathrm { ~ \\xi ~ } _ { \\mathrm { t r a i n } } = \\frac { \\mathrm { T } \\mathbf { F } \\mathbf { W } ^ { T } \\mathbf { W } - 2 \\mathrm { T r } \\mathbf { W } ^ { T } { \\boldsymbol { \\Sigma } } ^ { 3 1 } + \\mathrm { T r } { \\boldsymbol { \\Sigma } } ^ { 3 1 T } { \\boldsymbol { \\Sigma } } ^ { 3 1 } } { \\mathrm { T r } \\boldsymbol { \\Sigma } ^ { 3 1 T } \\boldsymbol { \\Sigma } ^ { 3 1 } } , \\mathrm { ~ \\xi ~ } _ { \\mathrm { f e s t } } = \\frac { \\mathrm { T r } \\mathbf { W } ^ { T } \\mathbf { W } - 2 \\mathrm { T r } \\mathbf { W } ^ { T } \\overline { { \\mathbf { W } } } + \\mathrm { T r } \\overline { { \\mathbf { W } } } ^ { T } \\overline { { \\mathbf { W } } } } { \\mathrm { T r } \\overline { { \\mathbf { W } } } ^ { T } \\overline { { \\mathbf { W } } } } ." + }, + { + "category_id": 13, + "poly": [ + 919, + 435, + 1018, + 435, + 1018, + 465, + 919, + 465 + ], + "score": 0.92, + "latex": "P = { \\overline { { N _ { 1 } } } }" + }, + { + "category_id": 13, + "poly": [ + 481, + 686, + 590, + 686, + 590, + 717, + 481, + 717 + ], + "score": 0.91, + "latex": "N _ { 1 } = \\overline { { N _ { 1 } } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 261, + 381, + 261, + 381, + 299, + 298, + 299 + ], + "score": 0.91, + "latex": "\\sigma _ { z } ^ { 2 } / \\overline { { N } } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 429, + 525, + 526, + 525, + 526, + 558, + 429, + 558 + ], + "score": 0.91, + "latex": "P \\neq \\overline { { N } } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 923, + 1233, + 1088, + 1233, + 1088, + 1271, + 923, + 1271 + ], + "score": 0.91, + "latex": "\\overline { { \\mathbf { W } } } = \\overline { { \\mathbf { U } } } \\overline { { \\mathbf { S } } } \\overline { { \\mathbf { V } } } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 1248, + 328, + 1331, + 328, + 1331, + 357, + 1248, + 357 + ], + "score": 0.91, + "latex": "\\sigma _ { z } = 1" + }, + { + "category_id": 13, + "poly": [ + 785, + 746, + 1045, + 746, + 1045, + 779, + 785, + 779 + ], + "score": 0.9, + "latex": "\\mathbf { \\dot { y } } = \\mathbf { W } ^ { 3 2 } \\mathbf { W } ^ { 2 1 } \\equiv \\mathbf { W } \\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 682, + 230, + 715, + 230, + 715, + 265, + 682, + 265 + ], + "score": 0.9, + "latex": "z _ { i } ^ { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 644, + 687, + 754, + 687, + 754, + 718, + 644, + 718 + ], + "score": 0.9, + "latex": "N _ { 3 } = \\overline { { N _ { 3 } } }" + }, + { + "category_id": 13, + "poly": [ + 1045, + 325, + 1077, + 325, + 1077, + 360, + 1045, + 360 + ], + "score": 0.9, + "latex": "\\sigma _ { z } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 572, + 1012, + 603, + 1012, + 603, + 1046, + 572, + 1046 + ], + "score": 0.89, + "latex": "\\langle \\cdot \\rangle" + }, + { + "category_id": 13, + "poly": [ + 584, + 950, + 620, + 950, + 620, + 980, + 584, + 980 + ], + "score": 0.89, + "latex": "{ \\hat { \\mathbf { y } } } ^ { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 298, + 299, + 357, + 299, + 357, + 330, + 298, + 330 + ], + "score": 0.89, + "latex": "O ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 1024, + 1046, + 1078, + 1046, + 1078, + 1074, + 1024, + 1074 + ], + "score": 0.88, + "latex": "\\varepsilon _ { \\mathrm { t r a i n } }" + }, + { + "category_id": 13, + "poly": [ + 462, + 1208, + 507, + 1208, + 507, + 1235, + 462, + 1235 + ], + "score": 0.88, + "latex": "\\varepsilon _ { \\mathrm { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 1127, + 1046, + 1172, + 1046, + 1172, + 1073, + 1127, + 1073 + ], + "score": 0.88, + "latex": "{ \\varepsilon } _ { \\mathrm { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 358, + 1208, + 412, + 1208, + 412, + 1235, + 358, + 1235 + ], + "score": 0.87, + "latex": "\\varepsilon _ { \\mathrm { t r a i n } }" + }, + { + "category_id": 13, + "poly": [ + 707, + 659, + 740, + 659, + 740, + 686, + 707, + 686 + ], + "score": 0.87, + "latex": "N _ { i }" + }, + { + "category_id": 13, + "poly": [ + 414, + 232, + 446, + 232, + 446, + 258, + 414, + 258 + ], + "score": 0.87, + "latex": "\\mathbf { z } ^ { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 500, + 950, + 535, + 950, + 535, + 977, + 500, + 977 + ], + "score": 0.86, + "latex": "\\hat { \\mathbf { x } } ^ { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 694, + 1236, + 864, + 1236, + 864, + 1272, + 694, + 1272 + ], + "score": 0.84, + "latex": "\\begin{array} { r } { \\pmb { \\Sigma } ^ { 3 1 } = \\hat { \\mathbf { U } } \\hat { \\mathbf { S } } \\hat { \\mathbf { V } } ^ { T } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 526, + 1239, + 681, + 1239, + 681, + 1272, + 526, + 1272 + ], + "score": 0.84, + "latex": "\\mathbf { W } = \\mathbf { U } \\mathbf { S } \\mathbf { V } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 842, + 1977, + 859, + 1977, + 859, + 2000, + 842, + 2000 + ], + "score": 0.83, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1211, + 1945, + 1231, + 1945, + 1231, + 1970, + 1211, + 1970 + ], + "score": 0.79, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1092, + 262, + 1130, + 262, + 1130, + 294, + 1092, + 294 + ], + "score": 0.78, + "latex": "\\overline { { \\mathbf { W } } }" + }, + { + "category_id": 13, + "poly": [ + 1246, + 1017, + 1267, + 1017, + 1267, + 1040, + 1246, + 1040 + ], + "score": 0.64, + "latex": "\\overline { { \\mathbf { x } } }" + }, + { + "category_id": 13, + "poly": [ + 1282, + 266, + 1306, + 266, + 1306, + 294, + 1282, + 294 + ], + "score": 0.51, + "latex": "\\mathbf { Z }" + }, + { + "category_id": 13, + "poly": [ + 1272, + 952, + 1294, + 952, + 1294, + 976, + 1272, + 976 + ], + "score": 0.51, + "latex": "\\overline { { \\mathbf { x } } }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 598.0, + 820.0, + 598.0, + 820.0, + 634.0, + 294.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1675.0, + 1369.0, + 1675.0, + 1369.0, + 1718.0, + 293.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1881.0, + 1251.0, + 1881.0, + 1251.0, + 1920.0, + 294.0, + 1920.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": [ + 296.0, + 656.0, + 706.0, + 656.0, + 706.0, + 690.0, + 296.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 656.0, + 1403.0, + 656.0, + 1403.0, + 690.0, + 741.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 683.0, + 480.0, + 683.0, + 480.0, + 722.0, + 294.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 683.0, + 643.0, + 683.0, + 643.0, + 722.0, + 591.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 683.0, + 809.0, + 683.0, + 809.0, + 722.0, + 755.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 683.0, + 1404.0, + 683.0, + 1404.0, + 722.0, + 920.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 711.0, + 1406.0, + 711.0, + 1406.0, + 758.0, + 292.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 741.0, + 784.0, + 741.0, + 784.0, + 786.0, + 290.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 741.0, + 1408.0, + 741.0, + 1408.0, + 786.0, + 1046.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 775.0, + 1142.0, + 775.0, + 1142.0, + 816.0, + 293.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 949.0, + 499.0, + 949.0, + 499.0, + 983.0, + 295.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 949.0, + 583.0, + 949.0, + 583.0, + 983.0, + 536.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 949.0, + 1271.0, + 949.0, + 1271.0, + 983.0, + 621.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 949.0, + 1405.0, + 949.0, + 1405.0, + 983.0, + 1295.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 978.0, + 1166.0, + 978.0, + 1166.0, + 1015.0, + 294.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 978.0, + 1404.0, + 978.0, + 1404.0, + 1015.0, + 1307.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1013.0, + 571.0, + 1013.0, + 571.0, + 1050.0, + 294.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1013.0, + 1245.0, + 1013.0, + 1245.0, + 1050.0, + 604.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1013.0, + 1404.0, + 1013.0, + 1404.0, + 1050.0, + 1268.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1043.0, + 1023.0, + 1043.0, + 1023.0, + 1079.0, + 294.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 1043.0, + 1126.0, + 1043.0, + 1126.0, + 1079.0, + 1079.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1043.0, + 1399.0, + 1043.0, + 1399.0, + 1079.0, + 1173.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 400.0, + 1405.0, + 400.0, + 1405.0, + 439.0, + 293.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 430.0, + 918.0, + 430.0, + 918.0, + 471.0, + 293.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 430.0, + 1407.0, + 430.0, + 1407.0, + 471.0, + 1019.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 463.0, + 1406.0, + 463.0, + 1406.0, + 501.0, + 295.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 494.0, + 1406.0, + 494.0, + 1406.0, + 531.0, + 295.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 522.0, + 428.0, + 522.0, + 428.0, + 564.0, + 295.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 522.0, + 1318.0, + 522.0, + 1318.0, + 564.0, + 527.0, + 564.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": [ + 295.0, + 1781.0, + 1404.0, + 1781.0, + 1404.0, + 1815.0, + 295.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1810.0, + 1408.0, + 1810.0, + 1408.0, + 1846.0, + 295.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 227.0, + 413.0, + 227.0, + 413.0, + 262.0, + 296.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 227.0, + 681.0, + 227.0, + 681.0, + 262.0, + 447.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 227.0, + 1404.0, + 227.0, + 1404.0, + 262.0, + 716.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 259.0, + 297.0, + 259.0, + 297.0, + 305.0, + 292.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 259.0, + 1091.0, + 259.0, + 1091.0, + 305.0, + 382.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 259.0, + 1281.0, + 259.0, + 1281.0, + 305.0, + 1131.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 259.0, + 1408.0, + 259.0, + 1408.0, + 305.0, + 1307.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 294.0, + 297.0, + 294.0, + 297.0, + 331.0, + 294.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 294.0, + 1404.0, + 294.0, + 1404.0, + 331.0, + 358.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 320.0, + 1044.0, + 320.0, + 1044.0, + 371.0, + 291.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 320.0, + 1247.0, + 320.0, + 1247.0, + 371.0, + 1078.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 320.0, + 1409.0, + 320.0, + 1409.0, + 371.0, + 1332.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 354.0, + 1281.0, + 354.0, + 1281.0, + 391.0, + 293.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1538.0, + 1403.0, + 1538.0, + 1403.0, + 1572.0, + 297.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1567.0, + 732.0, + 1567.0, + 732.0, + 1604.0, + 296.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1567.0, + 1203.0, + 1567.0, + 1203.0, + 1604.0, + 883.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1567.0, + 1405.0, + 1567.0, + 1405.0, + 1604.0, + 1353.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1598.0, + 385.0, + 1598.0, + 385.0, + 1636.0, + 296.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 1598.0, + 859.0, + 1598.0, + 859.0, + 1636.0, + 535.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1200.0, + 357.0, + 1200.0, + 357.0, + 1238.0, + 294.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 1200.0, + 461.0, + 1200.0, + 461.0, + 1238.0, + 413.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1200.0, + 1407.0, + 1200.0, + 1407.0, + 1238.0, + 508.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1227.0, + 525.0, + 1227.0, + 525.0, + 1286.0, + 289.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 1227.0, + 693.0, + 1227.0, + 693.0, + 1286.0, + 682.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1227.0, + 922.0, + 1227.0, + 922.0, + 1286.0, + 865.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 1227.0, + 1386.0, + 1227.0, + 1386.0, + 1286.0, + 1089.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1937.0, + 1210.0, + 1937.0, + 1210.0, + 1981.0, + 293.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 1937.0, + 1404.0, + 1937.0, + 1404.0, + 1981.0, + 1232.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1964.0, + 355.0, + 1964.0, + 355.0, + 2012.0, + 291.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1964.0, + 841.0, + 1964.0, + 841.0, + 2012.0, + 659.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1964.0, + 1406.0, + 1964.0, + 1406.0, + 2012.0, + 860.0, + 2012.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1246, + 1406, + 1246, + 1406, + 1524, + 296, + 1524 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 295, + 639, + 1405, + 639, + 1405, + 927, + 295, + 927 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 939, + 1405, + 939, + 1405, + 1161, + 296, + 1161 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1537, + 1404, + 1537, + 1404, + 1662, + 297, + 1662 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1675, + 1404, + 1675, + 1404, + 1770, + 298, + 1770 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 304, + 225, + 1026, + 225, + 1026, + 499, + 304, + 499 + ], + "score": 0.958 + }, + { + "category_id": 4, + "poly": [ + 1033, + 225, + 1403, + 225, + 1403, + 500, + 1033, + 500 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 297, + 1970, + 1409, + 1970, + 1409, + 2035, + 297, + 2035 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 543, + 1928, + 1150, + 1928, + 1150, + 1965, + 543, + 1965 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 296, + 1860, + 1403, + 1860, + 1403, + 1924, + 296, + 1924 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 522, + 1168, + 1175, + 1168, + 1175, + 1242, + 522, + 1242 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1190, + 1400, + 1190, + 1400, + 1220, + 1366, + 1220 + ], + "score": 0.876 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1931, + 1399, + 1931, + 1399, + 1961, + 1352, + 1961 + ], + "score": 0.873 + }, + { + "category_id": 9, + "poly": [ + 1366, + 612, + 1400, + 612, + 1400, + 639, + 1366, + 639 + ], + "score": 0.838 + }, + { + "category_id": 8, + "poly": [ + 306, + 551, + 1383, + 551, + 1383, + 617, + 306, + 617 + ], + "score": 0.805 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.784 + }, + { + "category_id": 0, + "poly": [ + 297, + 1805, + 1377, + 1805, + 1377, + 1836, + 297, + 1836 + ], + "score": 0.779 + }, + { + "category_id": 8, + "poly": [ + 523, + 1167, + 1175, + 1167, + 1175, + 1242, + 523, + 1242 + ], + "score": 0.131 + }, + { + "category_id": 1, + "poly": [ + 297, + 1805, + 1377, + 1805, + 1377, + 1836, + 297, + 1836 + ], + "score": 0.112 + }, + { + "category_id": 14, + "poly": [ + 525, + 1163, + 1176, + 1163, + 1176, + 1243, + 525, + 1243 + ], + "score": 0.93, + "latex": "s ( t , \\hat { s } ) = \\frac { \\hat { s } e ^ { 2 \\hat { s } t / \\tau } } { e ^ { 2 \\hat { s } t / \\tau } - 1 + \\hat { s } / \\epsilon } , \\qquad t ( s , \\hat { s } ) = \\frac { \\tau } { 2 \\hat { s } } \\ln \\frac { \\hat { s } / \\epsilon - 1 } { \\hat { s } / s - 1 } ." + }, + { + "category_id": 13, + "poly": [ + 615, + 1097, + 799, + 1097, + 799, + 1131, + 615, + 1131 + ], + "score": 0.93, + "latex": "s ^ { \\alpha } ( t ) \\stackrel { \\textstyle - } { = } s ( t , { \\hat { s } } ^ { \\alpha } )" + }, + { + "category_id": 13, + "poly": [ + 807, + 863, + 955, + 863, + 955, + 897, + 807, + 897 + ], + "score": 0.93, + "latex": "\\{ \\hat { s } ^ { \\alpha } , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}" + }, + { + "category_id": 13, + "poly": [ + 502, + 1128, + 574, + 1128, + 574, + 1162, + 502, + 1162 + ], + "score": 0.93, + "latex": "t ( s , { \\hat { s } } )" + }, + { + "category_id": 13, + "poly": [ + 1184, + 1098, + 1255, + 1098, + 1255, + 1131, + 1184, + 1131 + ], + "score": 0.93, + "latex": "s ( t , { \\hat { s } } )" + }, + { + "category_id": 13, + "poly": [ + 592, + 1400, + 690, + 1400, + 690, + 1433, + 592, + 1433 + ], + "score": 0.93, + "latex": "s ( t , { \\hat { s } } ) / { \\hat { s } }" + }, + { + "category_id": 13, + "poly": [ + 508, + 1248, + 580, + 1248, + 580, + 1281, + 508, + 1281 + ], + "score": 0.92, + "latex": "s ( t , { \\hat { s } } )" + }, + { + "category_id": 13, + "poly": [ + 1142, + 1492, + 1234, + 1492, + 1234, + 1525, + 1142, + 1525 + ], + "score": 0.92, + "latex": "\\hat { s } < t / \\tau" + }, + { + "category_id": 13, + "poly": [ + 512, + 1310, + 583, + 1310, + 583, + 1342, + 512, + 1342 + ], + "score": 0.92, + "latex": "s ( t , { \\hat { s } } )" + }, + { + "category_id": 13, + "poly": [ + 471, + 1492, + 562, + 1492, + 562, + 1525, + 471, + 1525 + ], + "score": 0.92, + "latex": "\\hat { s } > t / \\tau" + }, + { + "category_id": 13, + "poly": [ + 1288, + 1677, + 1360, + 1677, + 1360, + 1709, + 1288, + 1709 + ], + "score": 0.92, + "latex": "t ( s , { \\hat { s } } )" + }, + { + "category_id": 13, + "poly": [ + 1169, + 831, + 1401, + 831, + 1401, + 867, + 1169, + 867 + ], + "score": 0.92, + "latex": "\\{ s ^ { \\alpha } ( t ) , \\mathbf { u } ^ { \\alpha } ( \\mathbf { t } ) , \\mathbf { v } ^ { ( } \\mathbf { t } ) \\}" + }, + { + "category_id": 13, + "poly": [ + 815, + 973, + 1007, + 973, + 1007, + 1005, + 815, + 1005 + ], + "score": 0.92, + "latex": "\\mathbf { W } = \\mathbf { W ^ { 3 2 } W ^ { 2 1 } }" + }, + { + "category_id": 13, + "poly": [ + 381, + 640, + 485, + 640, + 485, + 674, + 381, + 674 + ], + "score": 0.91, + "latex": "\\tau \\equiv 1 / \\lambda" + }, + { + "category_id": 14, + "poly": [ + 310, + 547, + 1389, + 547, + 1389, + 618, + 310, + 618 + ], + "score": 0.9, + "latex": "\\tau \\frac { d } { d t } \\mathbf { W } ^ { 2 1 } = \\mathbf { W } ^ { 3 2 ^ { T } } \\left( \\boldsymbol { \\Sigma } ^ { 3 1 } - \\mathbf { W } ^ { 3 2 } \\mathbf { W } ^ { 2 1 } \\boldsymbol { \\Sigma } ^ { 1 1 } \\right) , \\qquad \\tau \\frac { d } { d t } \\mathbf { W } ^ { 3 2 } = \\left( \\boldsymbol { \\Sigma } ^ { 3 1 } - \\mathbf { W } ^ { 3 2 } \\mathbf { W } ^ { 2 1 } \\boldsymbol { \\Sigma } ^ { 1 1 } \\right) \\mathbf { W } ^ { 2 1 ^ { T } } ," + }, + { + "category_id": 13, + "poly": [ + 296, + 730, + 489, + 730, + 489, + 760, + 296, + 760 + ], + "score": 0.9, + "latex": "\\mathbf { W } = \\mathbf { W ^ { 3 2 } W ^ { 2 1 } }" + }, + { + "category_id": 13, + "poly": [ + 1198, + 1400, + 1240, + 1400, + 1240, + 1433, + 1198, + 1433 + ], + "score": 0.9, + "latex": "t / \\tau" + }, + { + "category_id": 13, + "poly": [ + 1258, + 2001, + 1309, + 2001, + 1309, + 2030, + 1258, + 2030 + ], + "score": 0.9, + "latex": "\\pmb { \\Sigma } ^ { 3 1 }" + }, + { + "category_id": 13, + "poly": [ + 1149, + 1337, + 1397, + 1337, + 1397, + 1373, + 1149, + 1373 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { t / \\tau = \\frac { 1 } { 2 \\hat { s } } \\ln { \\left( \\hat { s } / \\epsilon - \\mathrm { 1 } \\right) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1283, + 1372, + 1399, + 1372, + 1399, + 1402, + 1283, + 1402 + ], + "score": 0.89, + "latex": "t / \\tau \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 868, + 1371, + 934, + 1371, + 934, + 1397, + 868, + 1397 + ], + "score": 0.89, + "latex": "t = 0" + }, + { + "category_id": 14, + "poly": [ + 549, + 1928, + 1150, + 1928, + 1150, + 1965, + 549, + 1965 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { s _ { \\alpha } ( t ) = s ( t , \\hat { s } _ { \\alpha } ) , \\qquad { \\bf u } ^ { \\alpha } ( t ) = \\hat { \\bf u } ^ { \\alpha } , \\qquad { \\bf v } ^ { \\alpha } ( t ) = \\hat { \\bf v } ^ { \\alpha } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1264, + 642, + 1330, + 642, + 1330, + 669, + 1264, + 669 + ], + "score": 0.89, + "latex": "t = 0" + }, + { + "category_id": 13, + "poly": [ + 598, + 791, + 1206, + 791, + 1206, + 834, + 598, + 834 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\mathbf { W } ( t ) = \\mathbf { U } ( t ) \\mathbf { S } ( t ) \\mathbf { V } ( t ) ^ { T } = \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } \\mathbf { s } _ { \\alpha } ( t ) \\mathbf { u } ^ { \\alpha } ( t ) \\mathbf { v } ^ { \\alpha } ( t ) ^ { T } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 478, + 1035, + 526, + 1035, + 526, + 1065, + 478, + 1065 + ], + "score": 0.88, + "latex": "\\boldsymbol { \\Sigma } ^ { 3 1 }" + }, + { + "category_id": 13, + "poly": [ + 1332, + 1309, + 1403, + 1309, + 1403, + 1341, + 1332, + 1341 + ], + "score": 0.87, + "latex": "s ( t , { \\hat { s } } )" + }, + { + "category_id": 13, + "poly": [ + 753, + 699, + 815, + 699, + 815, + 728, + 753, + 728 + ], + "score": 0.87, + "latex": "\\mathbf { W } ^ { 2 1 }" + }, + { + "category_id": 13, + "poly": [ + 1291, + 939, + 1352, + 939, + 1352, + 970, + 1291, + 970 + ], + "score": 0.87, + "latex": "\\mathbf { W ^ { 2 1 } }" + }, + { + "category_id": 13, + "poly": [ + 638, + 730, + 790, + 730, + 790, + 761, + 638, + 761 + ], + "score": 0.86, + "latex": "\\mathbf { W } = \\epsilon \\mathbf { U } \\mathbf { V } ^ { \\mathbf { T } }" + }, + { + "category_id": 13, + "poly": [ + 329, + 835, + 421, + 835, + 421, + 862, + 329, + 862 + ], + "score": 0.86, + "latex": "t \\infty" + }, + { + "category_id": 13, + "poly": [ + 871, + 699, + 933, + 699, + 933, + 729, + 871, + 729 + ], + "score": 0.86, + "latex": "\\mathbf { W ^ { 3 2 } }" + }, + { + "category_id": 13, + "poly": [ + 435, + 831, + 568, + 831, + 568, + 862, + 435, + 862 + ], + "score": 0.86, + "latex": "\\mathbf { W } \\to \\Sigma ^ { 3 1 }" + }, + { + "category_id": 13, + "poly": [ + 583, + 2001, + 618, + 2001, + 618, + 2030, + 583, + 2030 + ], + "score": 0.86, + "latex": "\\overline { { \\mathbf { W } } }" + }, + { + "category_id": 13, + "poly": [ + 295, + 973, + 358, + 973, + 358, + 1005, + 295, + 1005 + ], + "score": 0.83, + "latex": "\\mathbf { W ^ { 3 2 } }" + }, + { + "category_id": 13, + "poly": [ + 875, + 1402, + 891, + 1402, + 891, + 1427, + 875, + 1427 + ], + "score": 0.8, + "latex": "\\hat { s }" + }, + { + "category_id": 13, + "poly": [ + 1153, + 972, + 1304, + 972, + 1304, + 1006, + 1153, + 1006 + ], + "score": 0.76, + "latex": "\\mathbf { W } = \\epsilon \\hat { \\mathbf { U } } \\hat { \\mathbf { V } } ^ { \\mathbf { T } }" + }, + { + "category_id": 13, + "poly": [ + 624, + 1315, + 642, + 1315, + 642, + 1336, + 624, + 1336 + ], + "score": 0.76, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 838, + 1285, + 853, + 1285, + 853, + 1306, + 838, + 1306 + ], + "score": 0.75, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1264, + 1249, + 1282, + 1249, + 1282, + 1275, + 1264, + 1275 + ], + "score": 0.75, + "latex": "\\hat { s }" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1374, + 1249, + 1374, + 1249, + 1397, + 1233, + 1397 + ], + "score": 0.74, + "latex": "\\hat { s }" + }, + { + "category_id": 13, + "poly": [ + 822, + 1375, + 837, + 1375, + 837, + 1397, + 822, + 1397 + ], + "score": 0.74, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1033, + 472, + 1119, + 472, + 1119, + 500, + 1033, + 500 + ], + "score": 0.69, + "latex": "t \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1311, + 1319, + 1311, + 1319, + 1335, + 1304, + 1335 + ], + "score": 0.69, + "latex": "\\hat { s }" + }, + { + "category_id": 13, + "poly": [ + 1093, + 1464, + 1108, + 1464, + 1108, + 1488, + 1093, + 1488 + ], + "score": 0.67, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 959, + 732, + 987, + 732, + 987, + 760, + 959, + 760 + ], + "score": 0.6, + "latex": "\\mathbf { V }" + }, + { + "category_id": 13, + "poly": [ + 931, + 1043, + 945, + 1043, + 945, + 1064, + 931, + 1064 + ], + "score": 0.6, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 879, + 733, + 908, + 733, + 908, + 760, + 879, + 760 + ], + "score": 0.59, + "latex": "\\mathbf { U }" + }, + { + "category_id": 13, + "poly": [ + 923, + 1314, + 938, + 1314, + 938, + 1336, + 923, + 1336 + ], + "score": 0.58, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 676, + 768, + 691, + 768, + 691, + 789, + 676, + 789 + ], + "score": 0.5, + "latex": "\\epsilon" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 229.0, + 374.0, + 229.0, + 374.0, + 266.0, + 305.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 231.0, + 715.0, + 231.0, + 715.0, + 263.0, + 688.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 270.0, + 727.0, + 270.0, + 727.0, + 284.0, + 714.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 265.0, + 1005.0, + 265.0, + 1005.0, + 301.0, + 966.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 278.0, + 624.0, + 278.0, + 624.0, + 306.0, + 606.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 305.0, + 339.0, + 305.0, + 339.0, + 374.0, + 299.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 296.0, + 708.0, + 296.0, + 708.0, + 385.0, + 667.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 297.0, + 1027.0, + 297.0, + 1027.0, + 343.0, + 993.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 336.0, + 644.0, + 336.0, + 644.0, + 348.0, + 632.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 349.0, + 370.0, + 349.0, + 370.0, + 366.0, + 353.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 359.0, + 643.0, + 359.0, + 643.0, + 368.0, + 635.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 342.0, + 1026.0, + 342.0, + 1026.0, + 367.0, + 977.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 363.0, + 1027.0, + 363.0, + 1027.0, + 389.0, + 992.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 372.0, + 993.0, + 372.0, + 993.0, + 382.0, + 977.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 377.0, + 655.0, + 377.0, + 655.0, + 395.0, + 632.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 386.0, + 1026.0, + 386.0, + 1026.0, + 412.0, + 993.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 424.0, + 369.0, + 424.0, + 369.0, + 441.0, + 353.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 430.0, + 726.0, + 430.0, + 726.0, + 443.0, + 713.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 447.0, + 391.0, + 447.0, + 391.0, + 464.0, + 375.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 449.0, + 432.0, + 449.0, + 432.0, + 467.0, + 415.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 449.0, + 584.0, + 449.0, + 584.0, + 462.0, + 573.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 455.0, + 746.0, + 455.0, + 746.0, + 466.0, + 738.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 453.0, + 829.0, + 453.0, + 829.0, + 466.0, + 816.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 450.0, + 889.0, + 450.0, + 889.0, + 467.0, + 874.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 450.0, + 954.0, + 450.0, + 954.0, + 469.0, + 931.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 468.0, + 499.0, + 468.0, + 499.0, + 498.0, + 461.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 470.0, + 852.0, + 470.0, + 852.0, + 499.0, + 834.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 226.0, + 1404.0, + 226.0, + 1404.0, + 260.0, + 1033.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 258.0, + 1403.0, + 258.0, + 1403.0, + 289.0, + 1033.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 288.0, + 1403.0, + 288.0, + 1403.0, + 320.0, + 1033.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 316.0, + 1405.0, + 316.0, + 1405.0, + 353.0, + 1031.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 349.0, + 1404.0, + 349.0, + 1404.0, + 380.0, + 1032.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 376.0, + 1405.0, + 376.0, + 1405.0, + 413.0, + 1030.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 409.0, + 1404.0, + 409.0, + 1404.0, + 441.0, + 1033.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 438.0, + 1405.0, + 438.0, + 1405.0, + 473.0, + 1031.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 470.0, + 1130.0, + 470.0, + 1130.0, + 504.0, + 1120.0, + 504.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": [ + 837.0, + 2086.0, + 861.0, + 2086.0, + 861.0, + 2118.0, + 837.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1803.0, + 1382.0, + 1803.0, + 1382.0, + 1837.0, + 295.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1246.0, + 507.0, + 1246.0, + 507.0, + 1283.0, + 294.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1246.0, + 1263.0, + 1246.0, + 1263.0, + 1283.0, + 581.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 1246.0, + 1406.0, + 1246.0, + 1406.0, + 1283.0, + 1283.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1277.0, + 837.0, + 1277.0, + 837.0, + 1314.0, + 296.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1277.0, + 1406.0, + 1277.0, + 1406.0, + 1314.0, + 854.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1306.0, + 511.0, + 1306.0, + 511.0, + 1343.0, + 295.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1306.0, + 623.0, + 1306.0, + 623.0, + 1343.0, + 584.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1306.0, + 922.0, + 1306.0, + 922.0, + 1343.0, + 643.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 1306.0, + 1303.0, + 1306.0, + 1303.0, + 1343.0, + 939.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 1306.0, + 1331.0, + 1306.0, + 1331.0, + 1343.0, + 1320.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1306.0, + 1407.0, + 1306.0, + 1407.0, + 1343.0, + 1404.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 1323.0, + 821.0, + 1323.0, + 821.0, + 1403.0, + 283.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 1323.0, + 867.0, + 1323.0, + 867.0, + 1403.0, + 838.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 1323.0, + 1148.0, + 1323.0, + 1148.0, + 1403.0, + 935.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1323.0, + 1419.0, + 1323.0, + 1419.0, + 1403.0, + 1400.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1397.0, + 591.0, + 1397.0, + 591.0, + 1434.0, + 294.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1397.0, + 874.0, + 1397.0, + 874.0, + 1434.0, + 691.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1397.0, + 1197.0, + 1397.0, + 1197.0, + 1434.0, + 892.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1397.0, + 1407.0, + 1397.0, + 1407.0, + 1434.0, + 1241.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1428.0, + 1406.0, + 1428.0, + 1406.0, + 1466.0, + 293.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1459.0, + 1092.0, + 1459.0, + 1092.0, + 1495.0, + 293.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1459.0, + 1404.0, + 1459.0, + 1404.0, + 1495.0, + 1109.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1493.0, + 470.0, + 1493.0, + 470.0, + 1525.0, + 296.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1493.0, + 1141.0, + 1493.0, + 1141.0, + 1525.0, + 563.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1493.0, + 1343.0, + 1493.0, + 1343.0, + 1525.0, + 1235.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 640.0, + 380.0, + 640.0, + 380.0, + 674.0, + 294.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 640.0, + 1263.0, + 640.0, + 1263.0, + 674.0, + 486.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 640.0, + 1403.0, + 640.0, + 1403.0, + 674.0, + 1331.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 670.0, + 1403.0, + 670.0, + 1403.0, + 703.0, + 293.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 696.0, + 752.0, + 696.0, + 752.0, + 738.0, + 289.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 696.0, + 870.0, + 696.0, + 870.0, + 738.0, + 816.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 696.0, + 1403.0, + 696.0, + 1403.0, + 738.0, + 934.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 725.0, + 295.0, + 725.0, + 295.0, + 767.0, + 292.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 725.0, + 637.0, + 725.0, + 637.0, + 767.0, + 490.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 725.0, + 878.0, + 725.0, + 878.0, + 767.0, + 791.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 725.0, + 958.0, + 725.0, + 958.0, + 767.0, + 909.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 725.0, + 1406.0, + 725.0, + 1406.0, + 767.0, + 988.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 280.0, + 760.0, + 597.0, + 760.0, + 597.0, + 853.0, + 280.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 760.0, + 1422.0, + 760.0, + 1422.0, + 853.0, + 1207.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 829.0, + 328.0, + 829.0, + 328.0, + 869.0, + 292.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 829.0, + 434.0, + 829.0, + 434.0, + 869.0, + 422.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 829.0, + 1168.0, + 829.0, + 1168.0, + 869.0, + 569.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 862.0, + 806.0, + 862.0, + 806.0, + 899.0, + 293.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 862.0, + 1406.0, + 862.0, + 1406.0, + 899.0, + 956.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 895.0, + 1324.0, + 895.0, + 1324.0, + 929.0, + 295.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 938.0, + 1290.0, + 938.0, + 1290.0, + 976.0, + 291.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 938.0, + 1407.0, + 938.0, + 1407.0, + 976.0, + 1353.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 969.0, + 814.0, + 969.0, + 814.0, + 1012.0, + 359.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 969.0, + 1152.0, + 969.0, + 1152.0, + 1012.0, + 1008.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 969.0, + 1411.0, + 969.0, + 1411.0, + 1012.0, + 1305.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1003.0, + 1407.0, + 1003.0, + 1407.0, + 1042.0, + 294.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1032.0, + 477.0, + 1032.0, + 477.0, + 1071.0, + 294.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1032.0, + 930.0, + 1032.0, + 930.0, + 1071.0, + 527.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1032.0, + 1405.0, + 1032.0, + 1405.0, + 1071.0, + 946.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1065.0, + 1405.0, + 1065.0, + 1405.0, + 1102.0, + 293.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1095.0, + 614.0, + 1095.0, + 614.0, + 1133.0, + 294.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 1095.0, + 1183.0, + 1095.0, + 1183.0, + 1133.0, + 800.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 1095.0, + 1405.0, + 1095.0, + 1405.0, + 1133.0, + 1256.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1127.0, + 501.0, + 1127.0, + 501.0, + 1165.0, + 293.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 1127.0, + 704.0, + 1127.0, + 704.0, + 1165.0, + 575.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1537.0, + 1405.0, + 1537.0, + 1405.0, + 1571.0, + 294.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1565.0, + 1405.0, + 1565.0, + 1405.0, + 1605.0, + 292.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1598.0, + 1405.0, + 1598.0, + 1405.0, + 1637.0, + 294.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1630.0, + 1313.0, + 1630.0, + 1313.0, + 1663.0, + 294.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1674.0, + 1287.0, + 1674.0, + 1287.0, + 1712.0, + 293.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 1674.0, + 1405.0, + 1674.0, + 1405.0, + 1712.0, + 1361.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1707.0, + 1404.0, + 1707.0, + 1404.0, + 1741.0, + 294.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1738.0, + 1130.0, + 1738.0, + 1130.0, + 1772.0, + 296.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1966.0, + 1403.0, + 1966.0, + 1403.0, + 2002.0, + 296.0, + 2002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1997.0, + 582.0, + 1997.0, + 582.0, + 2041.0, + 292.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1997.0, + 1257.0, + 1997.0, + 1257.0, + 2041.0, + 619.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 1997.0, + 1406.0, + 1997.0, + 1406.0, + 2041.0, + 1310.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1859.0, + 1405.0, + 1859.0, + 1405.0, + 1895.0, + 295.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1892.0, + 1302.0, + 1892.0, + 1302.0, + 1928.0, + 295.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1803.0, + 1382.0, + 1803.0, + 1382.0, + 1837.0, + 295.0, + 1837.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1380, + 1405, + 1380, + 1405, + 1638, + 296, + 1638 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1652, + 1405, + 1652, + 1405, + 1844, + 298, + 1844 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 588, + 1404, + 588, + 1404, + 752, + 297, + 752 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1937, + 1403, + 1937, + 1403, + 2035, + 299, + 2035 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 956, + 1403, + 956, + 1403, + 1052, + 299, + 1052 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 311, + 225, + 1366, + 225, + 1366, + 462, + 311, + 462 + ], + "score": 0.966 + }, + { + "category_id": 4, + "poly": [ + 298, + 466, + 1402, + 466, + 1402, + 560, + 298, + 560 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 495, + 1068, + 1198, + 1068, + 1198, + 1172, + 495, + 1172 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 539, + 1272, + 1156, + 1272, + 1156, + 1363, + 539, + 1363 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 563, + 846, + 1132, + 846, + 1132, + 936, + 563, + 936 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 292, + 1193, + 1404, + 1193, + 1404, + 1258, + 292, + 1258 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 297, + 765, + 1402, + 765, + 1402, + 831, + 297, + 831 + ], + "score": 0.945 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1304, + 1400, + 1304, + 1400, + 1335, + 1352, + 1335 + ], + "score": 0.904 + }, + { + "category_id": 9, + "poly": [ + 1352, + 876, + 1400, + 876, + 1400, + 908, + 1352, + 908 + ], + "score": 0.904 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1105, + 1400, + 1105, + 1400, + 1136, + 1352, + 1136 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 294, + 1880, + 1371, + 1880, + 1371, + 1913, + 294, + 1913 + ], + "score": 0.809 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.737 + }, + { + "category_id": 1, + "poly": [ + 294, + 1880, + 1371, + 1880, + 1371, + 1913, + 294, + 1913 + ], + "score": 0.094 + }, + { + "category_id": 14, + "poly": [ + 539, + 1272, + 1156, + 1272, + 1156, + 1366, + 539, + 1366 + ], + "score": 0.94, + "latex": "P ( \\hat { s } ) = \\left\\{ \\begin{array} { l l } { \\frac { \\sqrt { 4 A - ( \\hat { s } ^ { 2 } - ( 1 + A ) ) ^ { 2 } } } { \\pi A \\hat { s } } } & { \\hat { s } \\in [ 1 - \\sqrt { \\mathcal { A } } , 1 + \\sqrt { \\mathcal { A } } ] } \\\\ { 0 } & { \\mathrm { o t h e r w i s e } . } \\end{array} \\right." + }, + { + "category_id": 14, + "poly": [ + 497, + 1065, + 1199, + 1065, + 1199, + 1177, + 497, + 1177 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\mathcal { O } ( \\overline { { s } } ) = \\left\\{ \\begin{array} { l l } { \\left[ 1 - \\frac { \\mathcal { A } ( 1 + \\overline { { s } } ^ { 2 } ) } { \\overline { { s } } ^ { 2 } ( A + \\overline { { s } } ^ { 2 } ) } \\right] ^ { 1 / 2 } \\left[ 1 - \\frac { ( \\mathcal { A } + \\overline { { s } } ^ { 2 } ) } { \\overline { { s } } ^ { 2 } ( 1 + \\overline { { s } } ^ { 2 } ) } \\right] ^ { 1 / 2 } } & { \\mathrm { i f } \\overline { { s } } > \\mathcal { A } ^ { 1 / 4 } } \\\\ { 0 } & { \\mathrm { o t h e r w i s e } } \\end{array} \\right. } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 432, + 716, + 668, + 716, + 668, + 751, + 432, + 751 + ], + "score": 0.93, + "latex": "\\mathcal { A } = \\overline { { N _ { 3 } } } / \\overline { { N _ { 1 } } } \\in \\overline { { ( 0 , 1 ] } }" + }, + { + "category_id": 13, + "poly": [ + 1094, + 1938, + 1243, + 1938, + 1243, + 1972, + 1094, + 1972 + ], + "score": 0.93, + "latex": "\\{ \\overline { { s } } ^ { \\alpha } , \\overline { { \\mathbf { u } } } ^ { \\alpha } , \\overline { { \\mathbf { v } } } ^ { \\alpha } \\}" + }, + { + "category_id": 14, + "poly": [ + 564, + 845, + 1133, + 845, + 1133, + 940, + 564, + 940 + ], + "score": 0.93, + "latex": "{ \\hat { s } } ( { \\overline { { s } } } ) = { \\left\\{ \\begin{array} { l l } { ( { \\overline { { s } } } ) ^ { - 1 } { \\sqrt { ( 1 + { \\overline { { s } } } ^ { 2 } ) ( A + { \\overline { { s } } } ^ { 2 } ) } } } & { { \\mathrm { ~ i f ~ } } { \\overline { { s } } } > A ^ { 1 / 4 } } \\\\ { 1 + { \\sqrt { A } } } & { { \\mathrm { ~ o t h e r w i s e . } } } \\end{array} \\right. }" + }, + { + "category_id": 13, + "poly": [ + 460, + 1192, + 563, + 1192, + 563, + 1226, + 460, + 1226 + ], + "score": 0.93, + "latex": "N _ { 3 } - { \\overline { { N _ { 2 } } } }" + }, + { + "category_id": 13, + "poly": [ + 727, + 716, + 860, + 716, + 860, + 751, + 727, + 751 + ], + "score": 0.92, + "latex": "\\overline { { N } } _ { 2 } \\sim O ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 1054, + 1571, + 1150, + 1571, + 1150, + 1605, + 1054, + 1605 + ], + "score": 0.92, + "latex": "1 + { \\sqrt { A } }" + }, + { + "category_id": 13, + "poly": [ + 619, + 1972, + 767, + 1972, + 767, + 2006, + 619, + 2006 + ], + "score": 0.92, + "latex": "\\{ \\hat { s } ^ { \\alpha } , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}" + }, + { + "category_id": 13, + "poly": [ + 776, + 988, + 1098, + 988, + 1098, + 1022, + 776, + 1022 + ], + "score": 0.92, + "latex": "\\left| \\hat { \\mathbf { u } } ^ { \\alpha } \\cdot \\overline { { \\mathbf { u } } } ^ { \\alpha } \\right| \\left| \\hat { \\mathbf { v } } ^ { \\alpha } \\cdot \\overline { { \\mathbf { v } } } ^ { \\alpha } \\right| = \\mathcal { O } ( \\overline { { s } } _ { \\alpha } )" + }, + { + "category_id": 13, + "poly": [ + 476, + 1651, + 586, + 1651, + 586, + 1685, + 476, + 1685 + ], + "score": 0.92, + "latex": "\\overline { { s } } > \\mathcal { A } ^ { 1 / 4 }" + }, + { + "category_id": 13, + "poly": [ + 626, + 1808, + 735, + 1808, + 735, + 1839, + 626, + 1839 + ], + "score": 0.92, + "latex": "\\overline { { s } } > \\mathcal { A } ^ { 1 / 4 }" + }, + { + "category_id": 13, + "poly": [ + 1149, + 685, + 1303, + 685, + 1303, + 719, + 1149, + 719 + ], + "score": 0.92, + "latex": "\\overline { { N _ { 1 } } } , \\overline { { N _ { 3 } } } \\overline { { } } \\infty" + }, + { + "category_id": 13, + "poly": [ + 955, + 1442, + 1051, + 1442, + 1051, + 1476, + 955, + 1476 + ], + "score": 0.92, + "latex": "1 \\pm { \\sqrt { A } }" + }, + { + "category_id": 13, + "poly": [ + 1116, + 768, + 1181, + 768, + 1181, + 802, + 1116, + 802 + ], + "score": 0.92, + "latex": "\\hat { s } ( \\overline { { s } } _ { \\alpha } )" + }, + { + "category_id": 13, + "poly": [ + 1244, + 1507, + 1353, + 1507, + 1353, + 1541, + 1244, + 1541 + ], + "score": 0.91, + "latex": "\\overline { { s } } \\leq { \\mathcal { A } } ^ { 1 / 4 }" + }, + { + "category_id": 13, + "poly": [ + 1079, + 1507, + 1187, + 1507, + 1187, + 1539, + 1079, + 1539 + ], + "score": 0.91, + "latex": "\\overline { { s } } = \\mathcal { A } ^ { 1 / 4 }" + }, + { + "category_id": 13, + "poly": [ + 694, + 526, + 892, + 526, + 892, + 560, + 694, + 560 + ], + "score": 0.9, + "latex": "{ \\widetilde { N _ { 1 } } } = { \\overline { { N _ { 3 } } } } = 1 0 0 ." + }, + { + "category_id": 13, + "poly": [ + 711, + 1718, + 781, + 1718, + 781, + 1745, + 711, + 1745 + ], + "score": 0.9, + "latex": "\\hat { s } > \\overline { { s } }" + }, + { + "category_id": 13, + "poly": [ + 1344, + 1573, + 1404, + 1573, + 1404, + 1608, + 1344, + 1608 + ], + "score": 0.9, + "latex": "\\mathcal { O } ( \\overline { { s } } )" + }, + { + "category_id": 13, + "poly": [ + 517, + 956, + 557, + 956, + 557, + 989, + 517, + 989 + ], + "score": 0.9, + "latex": "\\overline { { N } } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1102, + 1193, + 1142, + 1193, + 1142, + 1226, + 1102, + 1226 + ], + "score": 0.9, + "latex": "\\overline { { N } } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 706, + 1747, + 750, + 1747, + 750, + 1780, + 706, + 1780 + ], + "score": 0.89, + "latex": "\\hat { s } / \\overline { { s } }" + }, + { + "category_id": 13, + "poly": [ + 404, + 1444, + 455, + 1444, + 455, + 1475, + 404, + 1475 + ], + "score": 0.89, + "latex": "\\pmb { \\Sigma } ^ { 3 1 }" + }, + { + "category_id": 13, + "poly": [ + 783, + 956, + 833, + 956, + 833, + 986, + 783, + 986 + ], + "score": 0.89, + "latex": "\\pmb { \\Sigma } ^ { 3 1 }" + }, + { + "category_id": 13, + "poly": [ + 952, + 591, + 1004, + 591, + 1004, + 622, + 952, + 622 + ], + "score": 0.89, + "latex": "\\pmb { \\Sigma } ^ { 3 1 }" + }, + { + "category_id": 13, + "poly": [ + 775, + 1193, + 825, + 1193, + 825, + 1223, + 775, + 1223 + ], + "score": 0.89, + "latex": "\\pmb { \\Sigma } ^ { 3 1 }" + }, + { + "category_id": 13, + "poly": [ + 1361, + 959, + 1401, + 959, + 1401, + 989, + 1361, + 989 + ], + "score": 0.88, + "latex": "\\overline { { N } } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1104, + 1972, + 1152, + 1972, + 1152, + 2001, + 1104, + 2001 + ], + "score": 0.88, + "latex": "\\pmb { \\Sigma } ^ { 3 1 }" + }, + { + "category_id": 13, + "poly": [ + 921, + 767, + 972, + 767, + 972, + 797, + 921, + 797 + ], + "score": 0.88, + "latex": "\\pmb { \\Sigma } ^ { 3 1 }" + }, + { + "category_id": 13, + "poly": [ + 531, + 766, + 571, + 766, + 571, + 799, + 531, + 799 + ], + "score": 0.87, + "latex": "\\overline { { N } } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1101, + 801, + 1118, + 801, + 1118, + 825, + 1101, + 825 + ], + "score": 0.82, + "latex": "\\hat { s }" + }, + { + "category_id": 13, + "poly": [ + 740, + 589, + 768, + 589, + 768, + 622, + 740, + 622 + ], + "score": 0.8, + "latex": "\\hat { \\mathbf X }" + }, + { + "category_id": 13, + "poly": [ + 617, + 499, + 634, + 499, + 634, + 525, + 617, + 525 + ], + "score": 0.78, + "latex": "\\hat { s }" + }, + { + "category_id": 13, + "poly": [ + 439, + 624, + 475, + 624, + 475, + 655, + 439, + 655 + ], + "score": 0.76, + "latex": "\\overline { { \\mathbf { W } } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1973, + 333, + 1973, + 333, + 2000, + 298, + 2000 + ], + "score": 0.76, + "latex": "\\overline { { \\mathbf { W } } }" + }, + { + "category_id": 13, + "poly": [ + 613, + 1576, + 631, + 1576, + 631, + 1602, + 613, + 1602 + ], + "score": 0.75, + "latex": "\\hat { s }" + }, + { + "category_id": 13, + "poly": [ + 725, + 802, + 742, + 802, + 742, + 826, + 725, + 826 + ], + "score": 0.71, + "latex": "\\overline { { s } }" + }, + { + "category_id": 13, + "poly": [ + 614, + 1687, + 631, + 1687, + 631, + 1713, + 614, + 1713 + ], + "score": 0.71, + "latex": "\\hat { s }" + }, + { + "category_id": 13, + "poly": [ + 1168, + 1813, + 1186, + 1813, + 1186, + 1838, + 1168, + 1838 + ], + "score": 0.69, + "latex": "\\overline { { s } }" + }, + { + "category_id": 13, + "poly": [ + 361, + 1513, + 377, + 1513, + 377, + 1538, + 361, + 1538 + ], + "score": 0.68, + "latex": "\\overline { { s } }" + }, + { + "category_id": 13, + "poly": [ + 658, + 530, + 675, + 530, + 675, + 555, + 658, + 555 + ], + "score": 0.65, + "latex": "\\overline { { s } }" + }, + { + "category_id": 13, + "poly": [ + 1093, + 1749, + 1112, + 1749, + 1112, + 1774, + 1093, + 1774 + ], + "score": 0.6, + "latex": "\\overline { { s } }" + }, + { + "category_id": 13, + "poly": [ + 516, + 1750, + 533, + 1750, + 533, + 1774, + 516, + 1774 + ], + "score": 0.48, + "latex": "\\overline { { s } }" + }, + { + "category_id": 13, + "poly": [ + 870, + 627, + 893, + 627, + 893, + 654, + 870, + 654 + ], + "score": 0.46, + "latex": "\\mathbf { Z }" + }, + { + "category_id": 13, + "poly": [ + 551, + 499, + 568, + 499, + 568, + 525, + 551, + 525 + ], + "score": 0.44, + "latex": "\\hat { s }" + }, + { + "category_id": 13, + "poly": [ + 1379, + 658, + 1403, + 658, + 1403, + 684, + 1379, + 684 + ], + "score": 0.4, + "latex": "\\&" + }, + { + "category_id": 13, + "poly": [ + 810, + 500, + 828, + 500, + 828, + 524, + 810, + 524 + ], + "score": 0.39, + "latex": "\\overline { { s } }" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 229.0, + 342.0, + 229.0, + 342.0, + 263.0, + 313.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 244.0, + 413.0, + 244.0, + 413.0, + 271.0, + 389.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 226.0, + 859.0, + 226.0, + 859.0, + 263.0, + 813.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 244.0, + 1055.0, + 244.0, + 1055.0, + 264.0, + 1037.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 224.0, + 1199.0, + 224.0, + 1199.0, + 265.0, + 1128.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 258.0, + 362.0, + 258.0, + 362.0, + 283.0, + 336.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 263.0, + 784.0, + 263.0, + 784.0, + 290.0, + 691.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 269.0, + 854.0, + 269.0, + 854.0, + 287.0, + 835.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 263.0, + 1095.0, + 263.0, + 1095.0, + 287.0, + 1042.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 274.0, + 1194.0, + 274.0, + 1194.0, + 296.0, + 1152.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 297.0, + 361.0, + 297.0, + 361.0, + 357.0, + 316.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 284.0, + 761.0, + 284.0, + 761.0, + 328.0, + 689.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 301.0, + 855.0, + 301.0, + 855.0, + 339.0, + 808.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 283.0, + 1094.0, + 283.0, + 1094.0, + 326.0, + 1038.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 290.0, + 1195.0, + 290.0, + 1195.0, + 364.0, + 1128.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 336.0, + 853.0, + 336.0, + 853.0, + 356.0, + 835.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 354.0, + 362.0, + 354.0, + 362.0, + 376.0, + 334.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 345.0, + 771.0, + 345.0, + 771.0, + 372.0, + 691.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 360.0, + 912.0, + 360.0, + 912.0, + 369.0, + 903.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 354.0, + 1110.0, + 354.0, + 1110.0, + 380.0, + 1043.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 359.0, + 1196.0, + 359.0, + 1196.0, + 383.0, + 1154.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 367.0, + 778.0, + 367.0, + 778.0, + 390.0, + 698.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 374.0, + 900.0, + 374.0, + 900.0, + 383.0, + 890.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 404.0, + 363.0, + 404.0, + 363.0, + 423.0, + 343.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 402.0, + 875.0, + 402.0, + 875.0, + 411.0, + 864.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 388.0, + 887.0, + 388.0, + 887.0, + 397.0, + 877.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 389.0, + 1122.0, + 389.0, + 1122.0, + 411.0, + 1041.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 402.0, + 1199.0, + 402.0, + 1199.0, + 425.0, + 1154.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 427.0, + 387.0, + 427.0, + 387.0, + 443.0, + 373.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 427.0, + 630.0, + 427.0, + 630.0, + 443.0, + 616.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 424.0, + 877.0, + 424.0, + 877.0, + 446.0, + 848.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 422.0, + 958.0, + 422.0, + 958.0, + 449.0, + 926.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 424.0, + 1036.0, + 424.0, + 1036.0, + 445.0, + 1005.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 424.0, + 1216.0, + 424.0, + 1216.0, + 446.0, + 1187.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 423.0, + 1291.0, + 423.0, + 1291.0, + 446.0, + 1261.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 424.0, + 1364.0, + 424.0, + 1364.0, + 445.0, + 1334.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 444.0, + 527.0, + 444.0, + 527.0, + 463.0, + 512.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 441.0, + 953.0, + 441.0, + 953.0, + 466.0, + 930.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 442.0, + 1285.0, + 442.0, + 1285.0, + 465.0, + 1266.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.25, + 281.5, + 1039.25, + 281.5, + 1039.25, + 304.0, + 900.25, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 403.0, + 860.0, + 403.0, + 860.0, + 425.0, + 835.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 464.0, + 1404.0, + 464.0, + 1404.0, + 502.0, + 294.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 497.0, + 550.0, + 497.0, + 550.0, + 531.0, + 294.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 497.0, + 616.0, + 497.0, + 616.0, + 531.0, + 569.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 497.0, + 809.0, + 497.0, + 809.0, + 531.0, + 635.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 497.0, + 1406.0, + 497.0, + 1406.0, + 531.0, + 829.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 528.0, + 657.0, + 528.0, + 657.0, + 562.0, + 296.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 528.0, + 693.0, + 528.0, + 693.0, + 562.0, + 676.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 528.0, + 904.0, + 528.0, + 904.0, + 562.0, + 893.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1878.0, + 1368.0, + 1878.0, + 1368.0, + 1913.0, + 295.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2119.0, + 838.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1381.0, + 1405.0, + 1381.0, + 1405.0, + 1416.0, + 295.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1412.0, + 1405.0, + 1412.0, + 1405.0, + 1447.0, + 295.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1441.0, + 403.0, + 1441.0, + 403.0, + 1484.0, + 293.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1441.0, + 954.0, + 1441.0, + 954.0, + 1484.0, + 456.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 1441.0, + 1406.0, + 1441.0, + 1406.0, + 1484.0, + 1052.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1475.0, + 1406.0, + 1475.0, + 1406.0, + 1512.0, + 294.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1509.0, + 360.0, + 1509.0, + 360.0, + 1544.0, + 293.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1509.0, + 1078.0, + 1509.0, + 1078.0, + 1544.0, + 378.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1509.0, + 1243.0, + 1509.0, + 1243.0, + 1544.0, + 1188.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1509.0, + 1405.0, + 1509.0, + 1405.0, + 1544.0, + 1354.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1538.0, + 1406.0, + 1538.0, + 1406.0, + 1575.0, + 293.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1572.0, + 612.0, + 1572.0, + 612.0, + 1611.0, + 294.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1572.0, + 1053.0, + 1572.0, + 1053.0, + 1611.0, + 632.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 1572.0, + 1343.0, + 1572.0, + 1343.0, + 1611.0, + 1151.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1606.0, + 960.0, + 1606.0, + 960.0, + 1640.0, + 295.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1650.0, + 475.0, + 1650.0, + 475.0, + 1691.0, + 293.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 1650.0, + 1406.0, + 1650.0, + 1406.0, + 1691.0, + 587.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1685.0, + 613.0, + 1685.0, + 613.0, + 1718.0, + 296.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1685.0, + 1403.0, + 1685.0, + 1403.0, + 1718.0, + 632.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1715.0, + 710.0, + 1715.0, + 710.0, + 1751.0, + 293.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 1715.0, + 1407.0, + 1715.0, + 1407.0, + 1751.0, + 782.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1743.0, + 515.0, + 1743.0, + 515.0, + 1785.0, + 292.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1743.0, + 705.0, + 1743.0, + 705.0, + 1785.0, + 534.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 1743.0, + 1092.0, + 1743.0, + 1092.0, + 1785.0, + 751.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 1743.0, + 1410.0, + 1743.0, + 1410.0, + 1785.0, + 1113.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1775.0, + 1408.0, + 1775.0, + 1408.0, + 1816.0, + 293.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1807.0, + 625.0, + 1807.0, + 625.0, + 1847.0, + 293.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 1807.0, + 1167.0, + 1807.0, + 1167.0, + 1847.0, + 736.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1807.0, + 1410.0, + 1807.0, + 1410.0, + 1847.0, + 1187.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 589.0, + 739.0, + 589.0, + 739.0, + 629.0, + 294.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 589.0, + 951.0, + 589.0, + 951.0, + 629.0, + 769.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 589.0, + 1406.0, + 589.0, + 1406.0, + 629.0, + 1005.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 625.0, + 438.0, + 625.0, + 438.0, + 658.0, + 295.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 625.0, + 869.0, + 625.0, + 869.0, + 658.0, + 476.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 625.0, + 1406.0, + 625.0, + 1406.0, + 658.0, + 894.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 655.0, + 1378.0, + 655.0, + 1378.0, + 689.0, + 294.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 685.0, + 1148.0, + 685.0, + 1148.0, + 721.0, + 294.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 685.0, + 1404.0, + 685.0, + 1404.0, + 721.0, + 1304.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 716.0, + 431.0, + 716.0, + 431.0, + 752.0, + 294.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 716.0, + 726.0, + 716.0, + 726.0, + 752.0, + 669.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 716.0, + 872.0, + 716.0, + 872.0, + 752.0, + 861.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1936.0, + 1093.0, + 1936.0, + 1093.0, + 1975.0, + 294.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 1936.0, + 1407.0, + 1936.0, + 1407.0, + 1975.0, + 1244.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1967.0, + 297.0, + 1967.0, + 297.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1967.0, + 618.0, + 1967.0, + 618.0, + 2008.0, + 334.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1967.0, + 1103.0, + 1967.0, + 1103.0, + 2008.0, + 768.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1967.0, + 1404.0, + 1967.0, + 1404.0, + 2008.0, + 1153.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 1405.0, + 2001.0, + 1405.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 951.0, + 516.0, + 951.0, + 516.0, + 993.0, + 293.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 951.0, + 782.0, + 951.0, + 782.0, + 993.0, + 558.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 951.0, + 1360.0, + 951.0, + 1360.0, + 993.0, + 834.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 982.0, + 775.0, + 982.0, + 775.0, + 1025.0, + 292.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 982.0, + 1409.0, + 982.0, + 1409.0, + 1025.0, + 1099.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1020.0, + 611.0, + 1020.0, + 611.0, + 1055.0, + 297.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1187.0, + 459.0, + 1187.0, + 459.0, + 1232.0, + 291.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1187.0, + 774.0, + 1187.0, + 774.0, + 1232.0, + 564.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 1187.0, + 1101.0, + 1187.0, + 1101.0, + 1232.0, + 826.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1187.0, + 1405.0, + 1187.0, + 1405.0, + 1232.0, + 1143.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1225.0, + 1183.0, + 1225.0, + 1183.0, + 1258.0, + 296.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 760.0, + 530.0, + 760.0, + 530.0, + 804.0, + 292.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 760.0, + 920.0, + 760.0, + 920.0, + 804.0, + 572.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 760.0, + 1115.0, + 760.0, + 1115.0, + 804.0, + 973.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 760.0, + 1407.0, + 760.0, + 1407.0, + 804.0, + 1182.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 795.0, + 724.0, + 795.0, + 724.0, + 833.0, + 293.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 795.0, + 1100.0, + 795.0, + 1100.0, + 833.0, + 743.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 795.0, + 1389.0, + 795.0, + 1389.0, + 833.0, + 1119.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1878.0, + 1368.0, + 1878.0, + 1368.0, + 1913.0, + 295.0, + 1913.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 295, + 1264, + 1405, + 1264, + 1405, + 1619, + 295, + 1619 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1876, + 1403, + 1876, + 1403, + 2036, + 297, + 2036 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 296, + 958, + 1403, + 958, + 1403, + 1086, + 296, + 1086 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 306, + 219, + 1383, + 219, + 1383, + 685, + 306, + 685 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 300, + 1131, + 1397, + 1131, + 1397, + 1242, + 300, + 1242 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 301, + 1739, + 1397, + 1739, + 1397, + 1854, + 301, + 1854 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 295, + 1631, + 1401, + 1631, + 1401, + 1696, + 295, + 1696 + ], + "score": 0.953 + }, + { + "category_id": 4, + "poly": [ + 295, + 713, + 1406, + 713, + 1406, + 900, + 295, + 900 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2113, + 840, + 2113 + ], + "score": 0.796 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1239, + 1400, + 1239, + 1400, + 1266, + 1352, + 1266 + ], + "score": 0.757 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1847, + 1400, + 1847, + 1400, + 1877, + 1351, + 1877 + ], + "score": 0.539 + }, + { + "category_id": 4, + "poly": [ + 295, + 713, + 1407, + 713, + 1407, + 899, + 295, + 899 + ], + "score": 0.519 + }, + { + "category_id": 13, + "poly": [ + 955, + 1357, + 1067, + 1357, + 1067, + 1389, + 955, + 1389 + ], + "score": 0.94, + "latex": "N _ { 2 } - \\overline { { N } } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 433, + 960, + 614, + 960, + 614, + 994, + 433, + 994 + ], + "score": 0.94, + "latex": "\\{ s ^ { \\alpha } ( t ) , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}" + }, + { + "category_id": 13, + "poly": [ + 344, + 1485, + 564, + 1485, + 564, + 1522, + 344, + 1522 + ], + "score": 0.93, + "latex": "\\mathcal { R } _ { i n } = [ f , 1 + \\sqrt { \\mathcal { A } } ]" + }, + { + "category_id": 13, + "poly": [ + 1167, + 1450, + 1401, + 1450, + 1401, + 1487, + 1167, + 1487 + ], + "score": 0.93, + "latex": "\\mathcal { R } _ { o u t } = [ 1 - \\sqrt { \\mathcal { A } } , f ]" + }, + { + "category_id": 13, + "poly": [ + 368, + 1266, + 556, + 1266, + 556, + 1300, + 368, + 1300 + ], + "score": 0.93, + "latex": "s _ { \\alpha } ( t ) = s ( \\hat { s } _ { \\alpha } , t )" + }, + { + "category_id": 13, + "poly": [ + 985, + 1021, + 1155, + 1021, + 1155, + 1055, + 985, + 1055 + ], + "score": 0.93, + "latex": "\\{ \\mathbf { u } ^ { \\alpha } ( t ) , \\mathbf { \\bar { v } } ^ { \\alpha } ( t ) \\}" + }, + { + "category_id": 13, + "poly": [ + 1114, + 1267, + 1248, + 1267, + 1248, + 1299, + 1114, + 1299 + ], + "score": 0.93, + "latex": "\\hat { s } _ { \\alpha } = \\hat { s } ( \\overline { { s } } _ { \\alpha } )" + }, + { + "category_id": 13, + "poly": [ + 1118, + 1488, + 1248, + 1488, + 1248, + 1522, + 1118, + 1522 + ], + "score": 0.93, + "latex": "1 - N _ { 2 } / N _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 890, + 1420, + 996, + 1420, + 996, + 1451, + 890, + 1451 + ], + "score": 0.92, + "latex": "N _ { 3 } - N _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 425, + 1524, + 509, + 1524, + 509, + 1558, + 425, + 1558 + ], + "score": 0.92, + "latex": "N _ { 2 } / N _ { 3 }" + }, + { + "category_id": 14, + "poly": [ + 310, + 1128, + 1399, + 1128, + 1399, + 1243, + 310, + 1243 + ], + "score": 0.92, + "latex": "\\mathfrak { c } _ { \\mathrm { r e a i n } } ( t ) = \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 3 } } \\hat { s } _ { \\alpha } ^ { 2 } \\right] ^ { - 1 } \\left[ ( N _ { 3 } - N _ { 2 } ) \\langle \\hat { s } ^ { 2 } \\rangle _ { \\mathcal { R } _ { o u t } } + ( N _ { 2 } - \\overline { { N } } _ { 2 } ) \\langle ( s ( \\hat { s } , t ) - \\hat { s } ) ^ { 2 } \\rangle _ { \\mathcal { R } _ { i n } } + \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\left[ s _ { \\alpha } ( t ) - \\hat { s } _ { \\alpha } \\right] ^ { 2 } \\right]" + }, + { + "category_id": 13, + "poly": [ + 1090, + 1908, + 1148, + 1908, + 1148, + 1941, + 1090, + 1941 + ], + "score": 0.92, + "latex": "\\left\\{ \\overline { { s } } _ { \\alpha } \\right\\}" + }, + { + "category_id": 14, + "poly": [ + 310, + 1737, + 1398, + 1737, + 1398, + 1854, + 310, + 1854 + ], + "score": 0.92, + "latex": "\\varepsilon _ { \\mathrm { t e x t } } ( t ) = \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\overline { { s } } _ { \\alpha } ^ { 2 } \\right] ^ { - 1 } \\left[ ( N _ { 2 } - \\overline { { N } } _ { 2 } ) \\langle s ( \\hat { s } , t ) ^ { 2 } \\rangle _ { \\mathcal { R } _ { i n } } + \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\left[ ( s _ { \\alpha } ( t ) - \\overline { { s } } _ { \\alpha } ) ^ { 2 } + 2 s _ { \\alpha } ( t ) \\overline { { s } } _ { \\alpha } ( 1 - \\mathcal { O } ( \\overline { { s } } _ { \\alpha } ) ) \\right] \\right]" + }, + { + "category_id": 13, + "poly": [ + 1204, + 1520, + 1349, + 1520, + 1349, + 1556, + 1204, + 1556 + ], + "score": 0.92, + "latex": "f = 1 - \\sqrt { \\mathcal { A } }" + }, + { + "category_id": 13, + "poly": [ + 355, + 1938, + 513, + 1938, + 513, + 1976, + 355, + 1976 + ], + "score": 0.92, + "latex": "\\mathcal { A } = \\overline { { N } } _ { 3 } / \\overline { { N } } _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1132, + 1944, + 1169, + 1944, + 1169, + 1973, + 1132, + 1973 + ], + "score": 0.91, + "latex": "N _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 614, + 1556, + 663, + 1556, + 663, + 1585, + 614, + 1585 + ], + "score": 0.9, + "latex": "\\mathcal { R } _ { i n }" + }, + { + "category_id": 13, + "poly": [ + 884, + 1909, + 922, + 1909, + 922, + 1939, + 884, + 1939 + ], + "score": 0.9, + "latex": "\\overline { { N } } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 492, + 1421, + 552, + 1421, + 552, + 1451, + 492, + 1451 + ], + "score": 0.9, + "latex": "\\mathcal { R } _ { o u t }" + }, + { + "category_id": 13, + "poly": [ + 635, + 1387, + 676, + 1387, + 676, + 1419, + 635, + 1419 + ], + "score": 0.9, + "latex": "\\overline { { N } } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 683, + 1359, + 733, + 1359, + 733, + 1389, + 683, + 1389 + ], + "score": 0.9, + "latex": "\\mathcal { R } _ { i n }" + }, + { + "category_id": 13, + "poly": [ + 1349, + 1297, + 1399, + 1297, + 1399, + 1331, + 1349, + 1331 + ], + "score": 0.89, + "latex": "\\langle \\cdot \\rangle _ { \\mathcal { R } }" + }, + { + "category_id": 13, + "poly": [ + 742, + 867, + 845, + 867, + 845, + 898, + 742, + 898 + ], + "score": 0.89, + "latex": "N _ { 2 } = 5 0" + }, + { + "category_id": 13, + "poly": [ + 664, + 1454, + 702, + 1454, + 702, + 1484, + 664, + 1484 + ], + "score": 0.89, + "latex": "N _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1255, + 966, + 1308, + 966, + 1308, + 992, + 1255, + 992 + ], + "score": 0.88, + "latex": "\\varepsilon _ { \\mathrm { t r a i n } }" + }, + { + "category_id": 13, + "poly": [ + 855, + 867, + 962, + 867, + 962, + 898, + 855, + 898 + ], + "score": 0.88, + "latex": "N _ { 3 } = 5 0 ." + }, + { + "category_id": 13, + "poly": [ + 934, + 1057, + 987, + 1057, + 987, + 1084, + 934, + 1084 + ], + "score": 0.88, + "latex": "\\varepsilon _ { \\mathrm { t r a i n } }" + }, + { + "category_id": 13, + "poly": [ + 1148, + 1559, + 1201, + 1559, + 1201, + 1586, + 1148, + 1586 + ], + "score": 0.87, + "latex": "\\varepsilon _ { \\mathrm { t r a i n } }" + }, + { + "category_id": 13, + "poly": [ + 1243, + 1301, + 1274, + 1301, + 1274, + 1328, + 1243, + 1328 + ], + "score": 0.87, + "latex": "\\overline { { s } } _ { \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 1363, + 1389, + 1401, + 1389, + 1401, + 1419, + 1363, + 1419 + ], + "score": 0.87, + "latex": "N _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 617, + 867, + 732, + 867, + 732, + 898, + 617, + 898 + ], + "score": 0.86, + "latex": "N _ { 1 } = 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 297, + 1665, + 342, + 1665, + 342, + 1694, + 297, + 1694 + ], + "score": 0.86, + "latex": "\\varepsilon _ { \\mathrm { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 649, + 1489, + 670, + 1489, + 670, + 1521, + 649, + 1521 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 298, + 1974, + 330, + 1974, + 330, + 2003, + 298, + 2003 + ], + "score": 0.85, + "latex": "N _ { l }" + }, + { + "category_id": 13, + "poly": [ + 1356, + 966, + 1402, + 966, + 1402, + 992, + 1356, + 992 + ], + "score": 0.84, + "latex": "\\varepsilon _ { \\mathrm { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 1136, + 1329, + 1161, + 1329, + 1161, + 1355, + 1136, + 1355 + ], + "score": 0.8, + "latex": "\\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 975, + 1979, + 988, + 1979, + 988, + 2000, + 975, + 2000 + ], + "score": 0.73, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 495, + 1980, + 509, + 1980, + 509, + 2000, + 495, + 2000 + ], + "score": 0.6, + "latex": "\\epsilon" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 227.0, + 366.0, + 227.0, + 366.0, + 260.0, + 316.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 230.0, + 574.0, + 230.0, + 574.0, + 257.0, + 549.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 222.0, + 835.0, + 222.0, + 835.0, + 262.0, + 784.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 220.0, + 941.0, + 220.0, + 941.0, + 398.0, + 904.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 233.0, + 956.0, + 233.0, + 956.0, + 250.0, + 943.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 236.0, + 1131.0, + 236.0, + 1131.0, + 252.0, + 1117.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 230.0, + 1179.0, + 230.0, + 1179.0, + 257.0, + 1153.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 238.0, + 1212.0, + 238.0, + 1212.0, + 261.0, + 1182.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 274.0, + 366.0, + 274.0, + 366.0, + 355.0, + 315.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 286.0, + 593.0, + 286.0, + 593.0, + 353.0, + 555.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 305.0, + 857.0, + 305.0, + 857.0, + 333.0, + 815.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 273.0, + 956.0, + 273.0, + 956.0, + 332.0, + 940.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 261.0, + 1211.0, + 261.0, + 1211.0, + 375.0, + 1148.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 324.0, + 1292.0, + 324.0, + 1292.0, + 341.0, + 1277.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 333.0, + 1033.0, + 333.0, + 1033.0, + 350.0, + 1019.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 356.0, + 365.0, + 356.0, + 365.0, + 380.0, + 331.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 343.0, + 593.0, + 343.0, + 593.0, + 360.0, + 577.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 349.0, + 863.0, + 349.0, + 863.0, + 399.0, + 784.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 355.0, + 955.0, + 355.0, + 955.0, + 372.0, + 940.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 389.0, + 977.0, + 389.0, + 977.0, + 405.0, + 962.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 365.0, + 1001.0, + 365.0, + 1001.0, + 383.0, + 987.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 356.0, + 1211.0, + 356.0, + 1211.0, + 375.0, + 1183.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 388.0, + 1227.0, + 388.0, + 1227.0, + 399.0, + 1218.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 364.0, + 1252.0, + 364.0, + 1252.0, + 380.0, + 1238.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 399.0, + 380.0, + 399.0, + 380.0, + 431.0, + 332.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 428.0, + 461.0, + 428.0, + 461.0, + 453.0, + 433.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 414.0, + 528.0, + 414.0, + 528.0, + 431.0, + 513.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 404.0, + 592.0, + 404.0, + 592.0, + 414.0, + 578.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 415.0, + 609.0, + 415.0, + 609.0, + 429.0, + 599.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 429.0, + 700.0, + 429.0, + 700.0, + 453.0, + 672.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 413.0, + 775.0, + 413.0, + 775.0, + 431.0, + 760.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 396.0, + 871.0, + 396.0, + 871.0, + 441.0, + 792.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 398.0, + 971.0, + 398.0, + 971.0, + 427.0, + 940.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 409.0, + 1103.0, + 409.0, + 1103.0, + 453.0, + 988.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 414.0, + 1131.0, + 414.0, + 1131.0, + 427.0, + 1120.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 404.0, + 1232.0, + 404.0, + 1232.0, + 427.0, + 1201.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 404.0, + 1353.0, + 404.0, + 1353.0, + 450.0, + 1242.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 465.0, + 331.0, + 465.0, + 331.0, + 487.0, + 311.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 468.0, + 352.0, + 468.0, + 352.0, + 484.0, + 337.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 462.0, + 597.0, + 462.0, + 597.0, + 489.0, + 553.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 455.0, + 831.0, + 455.0, + 831.0, + 481.0, + 784.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 454.0, + 956.0, + 454.0, + 956.0, + 631.0, + 899.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 468.0, + 1131.0, + 468.0, + 1131.0, + 485.0, + 1117.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 461.0, + 1180.0, + 461.0, + 1180.0, + 494.0, + 1151.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 476.0, + 833.0, + 476.0, + 833.0, + 496.0, + 810.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 508.0, + 352.0, + 508.0, + 352.0, + 523.0, + 333.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 501.0, + 957.0, + 501.0, + 957.0, + 523.0, + 939.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 489.0, + 1212.0, + 489.0, + 1212.0, + 608.0, + 1149.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 522.0, + 339.0, + 522.0, + 339.0, + 589.0, + 315.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 521.0, + 582.0, + 521.0, + 582.0, + 588.0, + 554.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 523.0, + 1211.0, + 523.0, + 1211.0, + 545.0, + 1182.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 543.0, + 353.0, + 543.0, + 353.0, + 566.0, + 333.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 537.0, + 858.0, + 537.0, + 858.0, + 568.0, + 814.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 539.0, + 956.0, + 539.0, + 956.0, + 557.0, + 940.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 557.0, + 1212.0, + 557.0, + 1212.0, + 580.0, + 1182.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 563.0, + 1290.0, + 563.0, + 1290.0, + 582.0, + 1269.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 575.0, + 956.0, + 575.0, + 956.0, + 592.0, + 940.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 573.0, + 1026.0, + 573.0, + 1026.0, + 590.0, + 1011.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 583.0, + 353.0, + 583.0, + 353.0, + 604.0, + 332.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 586.0, + 596.0, + 586.0, + 596.0, + 605.0, + 575.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 591.0, + 1211.0, + 591.0, + 1211.0, + 614.0, + 1182.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 591.0, + 1263.0, + 591.0, + 1263.0, + 601.0, + 1253.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 625.0, + 352.0, + 625.0, + 352.0, + 642.0, + 336.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 601.0, + 863.0, + 601.0, + 863.0, + 657.0, + 784.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 609.0, + 957.0, + 609.0, + 957.0, + 629.0, + 938.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 626.0, + 973.0, + 626.0, + 973.0, + 636.0, + 965.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 605.0, + 994.0, + 605.0, + 994.0, + 616.0, + 984.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 619.0, + 1228.0, + 619.0, + 1228.0, + 648.0, + 1180.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 600.0, + 1249.0, + 600.0, + 1249.0, + 616.0, + 1236.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 649.0, + 368.0, + 649.0, + 368.0, + 662.0, + 357.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 662.0, + 455.0, + 662.0, + 455.0, + 686.0, + 428.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 647.0, + 527.0, + 647.0, + 527.0, + 663.0, + 513.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 647.0, + 612.0, + 647.0, + 612.0, + 664.0, + 597.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 662.0, + 700.0, + 662.0, + 700.0, + 686.0, + 672.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 647.0, + 775.0, + 647.0, + 775.0, + 663.0, + 760.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 646.0, + 872.0, + 646.0, + 872.0, + 675.0, + 792.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 639.0, + 1103.0, + 639.0, + 1103.0, + 686.0, + 974.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 636.0, + 1231.0, + 636.0, + 1231.0, + 659.0, + 1201.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 635.0, + 1341.0, + 635.0, + 1341.0, + 684.0, + 1237.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 639.0, + 1375.0, + 639.0, + 1375.0, + 658.0, + 1346.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.75, + 251.0, + 777.75, + 251.0, + 777.75, + 270.0, + 733.75, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.25, + 278.5, + 1099.25, + 278.5, + 1099.25, + 296.5, + 1067.25, + 296.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 501.5, + 1113.0, + 501.5, + 1113.0, + 510.5, + 1074.0, + 510.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 485.0, + 1388.0, + 485.0, + 1388.0, + 507.5, + 1319.0, + 507.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 527.5, + 601.0, + 527.5, + 601.0, + 543.5, + 568.0, + 543.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 514.5, + 786.0, + 514.5, + 786.0, + 540.0, + 701.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.25, + 582.5, + 861.25, + 582.5, + 861.25, + 608.0, + 807.25, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.25, + 604.0, + 514.25, + 604.0, + 514.25, + 622.0, + 483.25, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.75, + 557.5, + 783.75, + 557.5, + 783.75, + 580.5, + 704.75, + 580.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 596.0, + 786.0, + 596.0, + 786.0, + 620.5, + 703.0, + 620.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 713.0, + 1407.0, + 713.0, + 1407.0, + 749.0, + 294.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 740.0, + 1407.0, + 740.0, + 1407.0, + 785.0, + 292.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 774.0, + 1408.0, + 774.0, + 1408.0, + 809.0, + 292.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 805.0, + 1407.0, + 805.0, + 1407.0, + 840.0, + 293.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 833.0, + 1407.0, + 833.0, + 1407.0, + 876.0, + 292.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 868.0, + 616.0, + 868.0, + 616.0, + 900.0, + 297.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 868.0, + 741.0, + 868.0, + 741.0, + 900.0, + 733.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 868.0, + 854.0, + 868.0, + 854.0, + 900.0, + 846.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 868.0, + 978.0, + 868.0, + 978.0, + 900.0, + 963.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 862.0, + 2087.0, + 862.0, + 2117.0, + 840.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 715.0, + 1405.0, + 715.0, + 1405.0, + 747.0, + 296.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 741.0, + 1405.0, + 741.0, + 1405.0, + 784.0, + 293.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 777.0, + 1406.0, + 777.0, + 1406.0, + 809.0, + 294.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 806.0, + 1406.0, + 806.0, + 1406.0, + 839.0, + 293.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 834.0, + 1407.0, + 834.0, + 1407.0, + 876.0, + 292.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 866.0, + 616.0, + 866.0, + 616.0, + 902.0, + 296.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 866.0, + 741.0, + 866.0, + 741.0, + 902.0, + 733.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 866.0, + 854.0, + 866.0, + 854.0, + 902.0, + 846.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 866.0, + 980.0, + 866.0, + 980.0, + 902.0, + 963.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1263.0, + 367.0, + 1263.0, + 367.0, + 1299.0, + 294.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 1263.0, + 1113.0, + 1263.0, + 1113.0, + 1299.0, + 557.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1263.0, + 1403.0, + 1263.0, + 1403.0, + 1299.0, + 1249.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1295.0, + 1242.0, + 1295.0, + 1242.0, + 1336.0, + 293.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 1295.0, + 1348.0, + 1295.0, + 1348.0, + 1336.0, + 1275.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1295.0, + 1405.0, + 1295.0, + 1405.0, + 1336.0, + 1400.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1326.0, + 1135.0, + 1326.0, + 1135.0, + 1363.0, + 295.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1326.0, + 1405.0, + 1326.0, + 1405.0, + 1363.0, + 1162.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1356.0, + 682.0, + 1356.0, + 682.0, + 1396.0, + 293.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1356.0, + 954.0, + 1356.0, + 954.0, + 1396.0, + 734.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 1356.0, + 1406.0, + 1356.0, + 1406.0, + 1396.0, + 1068.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1387.0, + 634.0, + 1387.0, + 634.0, + 1423.0, + 294.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 1387.0, + 1362.0, + 1387.0, + 1362.0, + 1423.0, + 677.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1387.0, + 1405.0, + 1387.0, + 1405.0, + 1423.0, + 1402.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1416.0, + 491.0, + 1416.0, + 491.0, + 1457.0, + 292.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 1416.0, + 889.0, + 1416.0, + 889.0, + 1457.0, + 553.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1416.0, + 1406.0, + 1416.0, + 1406.0, + 1457.0, + 997.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1451.0, + 663.0, + 1451.0, + 663.0, + 1491.0, + 294.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 1451.0, + 1166.0, + 1451.0, + 1166.0, + 1491.0, + 703.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1451.0, + 1405.0, + 1451.0, + 1405.0, + 1491.0, + 1402.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1485.0, + 343.0, + 1485.0, + 343.0, + 1524.0, + 293.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1485.0, + 648.0, + 1485.0, + 648.0, + 1524.0, + 565.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1485.0, + 1117.0, + 1485.0, + 1117.0, + 1524.0, + 671.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1485.0, + 1407.0, + 1485.0, + 1407.0, + 1524.0, + 1249.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1520.0, + 424.0, + 1520.0, + 424.0, + 1559.0, + 293.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 1520.0, + 1203.0, + 1520.0, + 1203.0, + 1559.0, + 510.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 1520.0, + 1407.0, + 1520.0, + 1407.0, + 1559.0, + 1350.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1553.0, + 613.0, + 1553.0, + 613.0, + 1593.0, + 292.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1553.0, + 1147.0, + 1553.0, + 1147.0, + 1593.0, + 664.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 1553.0, + 1407.0, + 1553.0, + 1407.0, + 1593.0, + 1202.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1582.0, + 1408.0, + 1582.0, + 1408.0, + 1621.0, + 293.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1877.0, + 1404.0, + 1877.0, + 1404.0, + 1911.0, + 296.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1902.0, + 883.0, + 1902.0, + 883.0, + 1945.0, + 294.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 1902.0, + 1089.0, + 1902.0, + 1089.0, + 1945.0, + 923.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1902.0, + 1405.0, + 1902.0, + 1405.0, + 1945.0, + 1149.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1938.0, + 354.0, + 1938.0, + 354.0, + 1979.0, + 292.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1938.0, + 1131.0, + 1938.0, + 1131.0, + 1979.0, + 514.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1938.0, + 1405.0, + 1938.0, + 1405.0, + 1979.0, + 1170.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1970.0, + 494.0, + 1970.0, + 494.0, + 2009.0, + 331.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 1970.0, + 974.0, + 1970.0, + 974.0, + 2009.0, + 510.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2009.0, + 989.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2003.0, + 1337.0, + 2003.0, + 1337.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 955.0, + 432.0, + 955.0, + 432.0, + 998.0, + 291.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 955.0, + 1254.0, + 955.0, + 1254.0, + 998.0, + 615.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 955.0, + 1355.0, + 955.0, + 1355.0, + 998.0, + 1309.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 990.0, + 1405.0, + 990.0, + 1405.0, + 1026.0, + 294.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1021.0, + 984.0, + 1021.0, + 984.0, + 1058.0, + 294.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1021.0, + 1406.0, + 1021.0, + 1406.0, + 1058.0, + 1156.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1052.0, + 933.0, + 1052.0, + 933.0, + 1087.0, + 292.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1052.0, + 1181.0, + 1052.0, + 1181.0, + 1087.0, + 988.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1631.0, + 1405.0, + 1631.0, + 1405.0, + 1667.0, + 297.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 1661.0, + 1241.0, + 1661.0, + 1241.0, + 1697.0, + 343.0, + 1697.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1000, + 1405, + 1000, + 1405, + 1308, + 297, + 1308 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1559, + 1405, + 1559, + 1405, + 1774, + 298, + 1774 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1322, + 1403, + 1322, + 1403, + 1545, + 298, + 1545 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1789, + 1404, + 1789, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 306, + 220, + 1382, + 220, + 1382, + 685, + 306, + 685 + ], + "score": 0.974 + }, + { + "category_id": 4, + "poly": [ + 296, + 713, + 1407, + 713, + 1407, + 899, + 296, + 899 + ], + "score": 0.955 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.888 + }, + { + "category_id": 0, + "poly": [ + 297, + 942, + 1400, + 942, + 1400, + 971, + 297, + 971 + ], + "score": 0.758 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 857, + 2088, + 857, + 2111, + 841, + 2111 + ], + "score": 0.747 + }, + { + "category_id": 4, + "poly": [ + 296, + 713, + 1406, + 713, + 1406, + 899, + 296, + 899 + ], + "score": 0.202 + }, + { + "category_id": 1, + "poly": [ + 297, + 942, + 1400, + 942, + 1400, + 971, + 297, + 971 + ], + "score": 0.148 + }, + { + "category_id": 13, + "poly": [ + 297, + 1481, + 425, + 1481, + 425, + 1516, + 297, + 1516 + ], + "score": 0.94, + "latex": "\\mathrm { m i n } _ { t } \\varepsilon _ { \\mathrm { t e s t } } ( t )" + }, + { + "category_id": 13, + "poly": [ + 547, + 1591, + 619, + 1591, + 619, + 1623, + 547, + 1623 + ], + "score": 0.93, + "latex": "t ( s , { \\hat { s } } )" + }, + { + "category_id": 13, + "poly": [ + 460, + 1444, + 739, + 1444, + 739, + 1484, + 460, + 1484 + ], + "score": 0.93, + "latex": "t _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } } \\equiv \\mathrm { a r g m i n } _ { t } \\varepsilon _ { \\mathrm { t e s t } } ( t )" + }, + { + "category_id": 13, + "poly": [ + 985, + 1652, + 1075, + 1652, + 1075, + 1682, + 985, + 1682 + ], + "score": 0.92, + "latex": "N _ { l } = 5" + }, + { + "category_id": 13, + "poly": [ + 851, + 747, + 931, + 747, + 931, + 776, + 851, + 776 + ], + "score": 0.91, + "latex": "n _ { l } = 5" + }, + { + "category_id": 13, + "poly": [ + 1288, + 1444, + 1404, + 1444, + 1404, + 1485, + 1288, + 1485 + ], + "score": 0.91, + "latex": "\\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } } \\equiv" + }, + { + "category_id": 13, + "poly": [ + 885, + 867, + 988, + 867, + 988, + 898, + 885, + 898 + ], + "score": 0.9, + "latex": "N _ { 2 } = 5 0" + }, + { + "category_id": 13, + "poly": [ + 1231, + 1030, + 1271, + 1030, + 1271, + 1062, + 1231, + 1062 + ], + "score": 0.89, + "latex": "\\overline { { N } } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 999, + 867, + 1103, + 867, + 1103, + 898, + 999, + 898 + ], + "score": 0.89, + "latex": "N _ { 3 } = 5 0 ." + }, + { + "category_id": 13, + "poly": [ + 401, + 1157, + 455, + 1157, + 455, + 1185, + 401, + 1185 + ], + "score": 0.88, + "latex": "\\varepsilon _ { \\mathrm { t r a i n } }" + }, + { + "category_id": 13, + "poly": [ + 596, + 1279, + 641, + 1279, + 641, + 1306, + 596, + 1306 + ], + "score": 0.88, + "latex": "\\varepsilon _ { \\mathrm { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 505, + 1157, + 551, + 1157, + 551, + 1184, + 505, + 1184 + ], + "score": 0.88, + "latex": "\\varepsilon _ { \\mathrm { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 758, + 867, + 874, + 867, + 874, + 898, + 758, + 898 + ], + "score": 0.87, + "latex": "N _ { 1 } = 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 429, + 1279, + 483, + 1279, + 483, + 1307, + 429, + 1307 + ], + "score": 0.82, + "latex": "\\varepsilon _ { \\mathrm { t r a i n } }" + }, + { + "category_id": 13, + "poly": [ + 385, + 1065, + 400, + 1065, + 400, + 1089, + 385, + 1089 + ], + "score": 0.62, + "latex": "t" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 225.0, + 369.0, + 225.0, + 369.0, + 262.0, + 315.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 229.0, + 575.0, + 229.0, + 575.0, + 258.0, + 550.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 232.0, + 840.0, + 232.0, + 840.0, + 258.0, + 794.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 219.0, + 955.0, + 219.0, + 955.0, + 400.0, + 902.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 234.0, + 1134.0, + 234.0, + 1134.0, + 254.0, + 1114.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 227.0, + 1221.0, + 227.0, + 1221.0, + 261.0, + 1158.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 237.0, + 1372.0, + 237.0, + 1372.0, + 253.0, + 1357.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 252.0, + 843.0, + 252.0, + 843.0, + 272.0, + 819.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 282.0, + 593.0, + 282.0, + 593.0, + 300.0, + 579.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 275.0, + 955.0, + 275.0, + 955.0, + 292.0, + 940.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 278.0, + 1087.0, + 278.0, + 1087.0, + 296.0, + 1071.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 268.0, + 1219.0, + 268.0, + 1219.0, + 373.0, + 1150.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 278.0, + 1322.0, + 278.0, + 1322.0, + 295.0, + 1308.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 290.0, + 365.0, + 290.0, + 365.0, + 354.0, + 313.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 290.0, + 581.0, + 290.0, + 581.0, + 356.0, + 555.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 313.0, + 867.0, + 313.0, + 867.0, + 346.0, + 825.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 315.0, + 955.0, + 315.0, + 955.0, + 333.0, + 940.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 311.0, + 1218.0, + 311.0, + 1218.0, + 335.0, + 1188.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 348.0, + 365.0, + 348.0, + 365.0, + 372.0, + 331.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 339.0, + 595.0, + 339.0, + 595.0, + 388.0, + 576.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 358.0, + 871.0, + 358.0, + 871.0, + 386.0, + 818.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 355.0, + 955.0, + 355.0, + 955.0, + 373.0, + 940.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 333.0, + 1033.0, + 333.0, + 1033.0, + 349.0, + 1018.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 350.0, + 1218.0, + 350.0, + 1218.0, + 373.0, + 1188.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 374.0, + 1243.0, + 374.0, + 1243.0, + 386.0, + 1234.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 347.0, + 1267.0, + 347.0, + 1267.0, + 357.0, + 1256.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 418.0, + 376.0, + 418.0, + 376.0, + 429.0, + 366.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 410.0, + 462.0, + 410.0, + 462.0, + 455.0, + 430.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 411.0, + 537.0, + 411.0, + 537.0, + 434.0, + 506.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 402.0, + 593.0, + 402.0, + 593.0, + 416.0, + 577.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 413.0, + 611.0, + 413.0, + 611.0, + 431.0, + 598.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 410.0, + 704.0, + 410.0, + 704.0, + 454.0, + 676.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 411.0, + 791.0, + 411.0, + 791.0, + 434.0, + 761.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 379.0, + 872.0, + 379.0, + 872.0, + 430.0, + 794.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 389.0, + 978.0, + 389.0, + 978.0, + 426.0, + 940.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 408.0, + 1104.0, + 408.0, + 1104.0, + 454.0, + 985.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 411.0, + 1134.0, + 411.0, + 1134.0, + 429.0, + 1118.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 388.0, + 1235.0, + 388.0, + 1235.0, + 426.0, + 1188.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 403.0, + 1350.0, + 403.0, + 1350.0, + 454.0, + 1256.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 466.0, + 331.0, + 466.0, + 331.0, + 488.0, + 312.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 469.0, + 353.0, + 469.0, + 353.0, + 484.0, + 337.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 463.0, + 597.0, + 463.0, + 597.0, + 489.0, + 552.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 464.0, + 840.0, + 464.0, + 840.0, + 490.0, + 794.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 454.0, + 939.0, + 454.0, + 939.0, + 631.0, + 900.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 470.0, + 955.0, + 470.0, + 955.0, + 487.0, + 940.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 469.0, + 1132.0, + 469.0, + 1132.0, + 485.0, + 1116.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 460.0, + 1188.0, + 460.0, + 1188.0, + 494.0, + 1158.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 473.0, + 1372.0, + 473.0, + 1372.0, + 495.0, + 1354.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 485.0, + 843.0, + 485.0, + 843.0, + 505.0, + 819.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 492.0, + 1218.0, + 492.0, + 1218.0, + 608.0, + 1150.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 494.0, + 1346.0, + 494.0, + 1346.0, + 511.0, + 1333.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 513.0, + 349.0, + 513.0, + 349.0, + 529.0, + 334.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 503.0, + 957.0, + 503.0, + 957.0, + 526.0, + 938.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 523.0, + 339.0, + 523.0, + 339.0, + 587.0, + 315.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 522.0, + 582.0, + 522.0, + 582.0, + 588.0, + 556.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 526.0, + 1076.0, + 526.0, + 1076.0, + 541.0, + 1061.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 541.0, + 955.0, + 541.0, + 955.0, + 558.0, + 940.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 537.0, + 1219.0, + 537.0, + 1219.0, + 560.0, + 1188.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 555.0, + 353.0, + 555.0, + 353.0, + 577.0, + 333.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 548.0, + 866.0, + 548.0, + 866.0, + 576.0, + 824.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 601.0, + 353.0, + 601.0, + 353.0, + 621.0, + 333.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 587.0, + 594.0, + 587.0, + 594.0, + 604.0, + 577.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 621.0, + 747.0, + 621.0, + 747.0, + 628.0, + 741.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 591.0, + 873.0, + 591.0, + 873.0, + 640.0, + 794.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 576.0, + 957.0, + 576.0, + 957.0, + 629.0, + 937.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 627.0, + 973.0, + 627.0, + 973.0, + 637.0, + 964.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 605.0, + 995.0, + 605.0, + 995.0, + 616.0, + 984.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 574.0, + 1025.0, + 574.0, + 1025.0, + 590.0, + 1011.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 581.0, + 1218.0, + 581.0, + 1218.0, + 648.0, + 1188.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 621.0, + 1231.0, + 621.0, + 1231.0, + 633.0, + 1220.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 651.0, + 366.0, + 651.0, + 366.0, + 662.0, + 356.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 644.0, + 457.0, + 644.0, + 457.0, + 688.0, + 425.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 647.0, + 534.0, + 647.0, + 534.0, + 664.0, + 506.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 647.0, + 612.0, + 647.0, + 612.0, + 663.0, + 597.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 639.0, + 708.0, + 639.0, + 708.0, + 691.0, + 672.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 643.0, + 791.0, + 643.0, + 791.0, + 667.0, + 759.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 639.0, + 846.0, + 639.0, + 846.0, + 662.0, + 799.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 640.0, + 1104.0, + 640.0, + 1104.0, + 686.0, + 974.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 637.0, + 1235.0, + 637.0, + 1235.0, + 659.0, + 1216.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 639.0, + 1338.0, + 639.0, + 1338.0, + 684.0, + 1254.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 639.0, + 1378.0, + 639.0, + 1378.0, + 658.0, + 1363.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 257.0, + 1120.0, + 257.0, + 1120.0, + 265.0, + 1091.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 310.0, + 598.0, + 310.0, + 598.0, + 330.0, + 568.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.25, + 368.0, + 1004.25, + 368.0, + 1004.25, + 378.0, + 982.25, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 554.0, + 1058.0, + 554.0, + 1058.0, + 562.0, + 1028.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.25, + 567.5, + 770.25, + 567.5, + 770.25, + 574.5, + 732.25, + 574.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 593.5, + 783.0, + 593.5, + 783.0, + 605.5, + 737.0, + 605.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 715.0, + 1405.0, + 715.0, + 1405.0, + 747.0, + 295.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 743.0, + 850.0, + 743.0, + 850.0, + 782.0, + 293.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 743.0, + 1409.0, + 743.0, + 1409.0, + 782.0, + 932.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 775.0, + 1407.0, + 775.0, + 1407.0, + 810.0, + 293.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 805.0, + 1407.0, + 805.0, + 1407.0, + 840.0, + 294.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 837.0, + 1405.0, + 837.0, + 1405.0, + 872.0, + 294.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 869.0, + 757.0, + 869.0, + 757.0, + 900.0, + 295.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 869.0, + 884.0, + 869.0, + 884.0, + 900.0, + 875.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 869.0, + 998.0, + 869.0, + 998.0, + 900.0, + 989.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 869.0, + 1120.0, + 869.0, + 1120.0, + 900.0, + 1104.0, + 900.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": [ + 297.0, + 942.0, + 1402.0, + 942.0, + 1402.0, + 971.0, + 297.0, + 971.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, + 715.0, + 1406.0, + 715.0, + 1406.0, + 747.0, + 295.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 743.0, + 850.0, + 743.0, + 850.0, + 782.0, + 293.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 743.0, + 1409.0, + 743.0, + 1409.0, + 782.0, + 932.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 775.0, + 1406.0, + 775.0, + 1406.0, + 811.0, + 294.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 805.0, + 1408.0, + 805.0, + 1408.0, + 840.0, + 294.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 837.0, + 1406.0, + 837.0, + 1406.0, + 872.0, + 294.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 866.0, + 757.0, + 866.0, + 757.0, + 902.0, + 294.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 866.0, + 884.0, + 866.0, + 884.0, + 902.0, + 875.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 866.0, + 998.0, + 866.0, + 998.0, + 902.0, + 989.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 866.0, + 1122.0, + 866.0, + 1122.0, + 902.0, + 1104.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1002.0, + 1405.0, + 1002.0, + 1405.0, + 1034.0, + 296.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1026.0, + 1230.0, + 1026.0, + 1230.0, + 1069.0, + 291.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1026.0, + 1408.0, + 1026.0, + 1408.0, + 1069.0, + 1272.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1061.0, + 384.0, + 1061.0, + 384.0, + 1098.0, + 292.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 1061.0, + 1406.0, + 1061.0, + 1406.0, + 1098.0, + 401.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1094.0, + 1403.0, + 1094.0, + 1403.0, + 1126.0, + 295.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1122.0, + 1406.0, + 1122.0, + 1406.0, + 1158.0, + 294.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1150.0, + 400.0, + 1150.0, + 400.0, + 1191.0, + 292.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1150.0, + 504.0, + 1150.0, + 504.0, + 1191.0, + 456.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1150.0, + 1406.0, + 1150.0, + 1406.0, + 1191.0, + 552.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1179.0, + 1410.0, + 1179.0, + 1410.0, + 1222.0, + 292.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1211.0, + 1408.0, + 1211.0, + 1408.0, + 1251.0, + 294.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1245.0, + 1406.0, + 1245.0, + 1406.0, + 1280.0, + 294.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1273.0, + 428.0, + 1273.0, + 428.0, + 1313.0, + 292.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 1273.0, + 595.0, + 1273.0, + 595.0, + 1313.0, + 484.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 1273.0, + 1091.0, + 1273.0, + 1091.0, + 1313.0, + 642.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1561.0, + 1405.0, + 1561.0, + 1405.0, + 1595.0, + 296.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1590.0, + 546.0, + 1590.0, + 546.0, + 1625.0, + 293.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1590.0, + 1407.0, + 1590.0, + 1407.0, + 1625.0, + 620.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1621.0, + 1406.0, + 1621.0, + 1406.0, + 1655.0, + 293.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1649.0, + 984.0, + 1649.0, + 984.0, + 1686.0, + 293.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 1649.0, + 1409.0, + 1649.0, + 1409.0, + 1686.0, + 1076.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1676.0, + 1410.0, + 1676.0, + 1410.0, + 1719.0, + 292.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1711.0, + 1406.0, + 1711.0, + 1406.0, + 1748.0, + 292.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1742.0, + 1297.0, + 1742.0, + 1297.0, + 1778.0, + 293.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1320.0, + 1405.0, + 1320.0, + 1405.0, + 1357.0, + 293.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1354.0, + 1404.0, + 1354.0, + 1404.0, + 1386.0, + 296.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1383.0, + 1407.0, + 1383.0, + 1407.0, + 1418.0, + 294.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1412.0, + 1407.0, + 1412.0, + 1407.0, + 1451.0, + 293.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1439.0, + 459.0, + 1439.0, + 459.0, + 1495.0, + 293.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1439.0, + 1287.0, + 1439.0, + 1287.0, + 1495.0, + 740.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1483.0, + 1408.0, + 1483.0, + 1408.0, + 1518.0, + 426.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1510.0, + 1344.0, + 1510.0, + 1344.0, + 1548.0, + 293.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1442.5, + 506.0, + 1442.5, + 506.0, + 1467.5, + 454.0, + 1467.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1791.0, + 1405.0, + 1791.0, + 1405.0, + 1824.0, + 296.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1822.0, + 1405.0, + 1822.0, + 1405.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1885.0, + 292.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1879.0, + 1404.0, + 1879.0, + 1404.0, + 1918.0, + 292.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1913.0, + 1408.0, + 1913.0, + 1408.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 1406.0, + 2003.0, + 1406.0, + 2035.0, + 293.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 942.0, + 1402.0, + 942.0, + 1402.0, + 971.0, + 297.0, + 971.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1166, + 1407, + 1166, + 1407, + 1563, + 296, + 1563 + ], + "score": 0.981 + }, + { + "category_id": 3, + "poly": [ + 304, + 300, + 1338, + 300, + 1338, + 811, + 304, + 811 + ], + "score": 0.974 + }, + { + "category_id": 4, + "poly": [ + 295, + 832, + 1406, + 832, + 1406, + 1050, + 295, + 1050 + ], + "score": 0.965 + }, + { + "category_id": 4, + "poly": [ + 296, + 1929, + 1408, + 1929, + 1408, + 2054, + 296, + 2054 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1401, + 229, + 1401, + 293, + 298, + 293 + ], + "score": 0.951 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.804 + }, + { + "category_id": 3, + "poly": [ + 302, + 1609, + 1312, + 1609, + 1312, + 1918, + 302, + 1918 + ], + "score": 0.76 + }, + { + "category_id": 0, + "poly": [ + 323, + 1111, + 1110, + 1111, + 1110, + 1140, + 323, + 1140 + ], + "score": 0.733 + }, + { + "category_id": 1, + "poly": [ + 323, + 1111, + 1110, + 1111, + 1110, + 1140, + 323, + 1140 + ], + "score": 0.119 + }, + { + "category_id": 13, + "poly": [ + 600, + 1410, + 938, + 1410, + 938, + 1466, + 600, + 1466 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\sigma _ { r } ^ { 2 } = \\frac { 1 } { N _ { 3 } } \\left[ \\sum _ { i = \\alpha } ^ { \\overline { { N } } _ { 2 } } \\bar { s } _ { \\alpha } ^ { 2 } \\right] + \\frac { 1 } { \\overline { { N } } _ { 1 } } \\sigma _ { z } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 494, + 1495, + 816, + 1495, + 816, + 1532, + 494, + 1532 + ], + "score": 0.89, + "latex": "[ ( \\sigma _ { r } ( 1 - \\sqrt { \\mathcal { A } } ) , \\sigma _ { r } ( 1 + \\sqrt { \\mathcal { A } } ) ]" + }, + { + "category_id": 13, + "poly": [ + 881, + 1017, + 983, + 1017, + 983, + 1047, + 881, + 1047 + ], + "score": 0.89, + "latex": "N _ { 2 } = 5 0" + }, + { + "category_id": 13, + "poly": [ + 1249, + 1321, + 1285, + 1321, + 1285, + 1352, + 1249, + 1352 + ], + "score": 0.89, + "latex": "{ \\hat { \\mathbf { y } } } ^ { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 1115, + 2022, + 1218, + 2022, + 1218, + 2053, + 1115, + 2053 + ], + "score": 0.88, + "latex": "N _ { 2 } = 5 0" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1383, + 1252, + 1383, + 1252, + 1411, + 1220, + 1411 + ], + "score": 0.88, + "latex": "\\overline { { s } } _ { \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 1228, + 2022, + 1334, + 2022, + 1334, + 2053, + 1228, + 2053 + ], + "score": 0.88, + "latex": "N _ { 3 } = 5 0 ." + }, + { + "category_id": 13, + "poly": [ + 994, + 1016, + 1100, + 1016, + 1100, + 1048, + 994, + 1048 + ], + "score": 0.87, + "latex": "N _ { 3 } = 5 0 ." + }, + { + "category_id": 13, + "poly": [ + 989, + 2022, + 1105, + 2022, + 1105, + 2053, + 989, + 2053 + ], + "score": 0.87, + "latex": "N _ { 1 } = 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 898, + 1463, + 947, + 1463, + 947, + 1493, + 898, + 1493 + ], + "score": 0.87, + "latex": "\\pmb { \\Sigma } ^ { 3 1 }" + }, + { + "category_id": 13, + "poly": [ + 754, + 1017, + 870, + 1017, + 870, + 1048, + 754, + 1048 + ], + "score": 0.87, + "latex": "N _ { 1 } = 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 628, + 1321, + 663, + 1321, + 663, + 1348, + 628, + 1348 + ], + "score": 0.86, + "latex": "\\hat { \\mathbf { x } } ^ { \\mu }" + }, + { + "category_id": 14, + "poly": [ + 336, + 772, + 1254, + 772, + 1254, + 809, + 336, + 809 + ], + "score": 0.85, + "latex": "\\begin{array} { r } { \\overline { { \\boldsymbol { N } } } _ { 2 } = 1 , \\boldsymbol { N } _ { l } = 3 \\qquad \\overline { { \\boldsymbol { N } } } _ { 2 } = 3 , \\boldsymbol { N } _ { l } = 3 \\qquad \\overline { { \\boldsymbol { N } } } _ { 2 } = 1 , \\boldsymbol { N } _ { l } = 5 \\qquad \\overline { { \\boldsymbol { N } } } _ { 2 } = 3 , \\boldsymbol { N } _ { l } = 5 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 573, + 1529, + 621, + 1529, + 621, + 1558, + 573, + 1558 + ], + "score": 0.85, + "latex": "\\pmb { \\Sigma } ^ { 3 1 }" + }, + { + "category_id": 13, + "poly": [ + 1023, + 1425, + 1055, + 1425, + 1055, + 1452, + 1023, + 1452 + ], + "score": 0.84, + "latex": "\\sigma _ { z }" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 301.0, + 353.0, + 301.0, + 353.0, + 331.0, + 307.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 305.0, + 574.0, + 305.0, + 574.0, + 328.0, + 552.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 310.0, + 592.0, + 310.0, + 592.0, + 322.0, + 581.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 305.0, + 816.0, + 305.0, + 816.0, + 330.0, + 789.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 310.0, + 833.0, + 310.0, + 833.0, + 320.0, + 823.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 308.0, + 1051.0, + 308.0, + 1051.0, + 324.0, + 1035.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 288.0, + 1278.0, + 288.0, + 1278.0, + 488.0, + 1064.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 353.0, + 350.0, + 353.0, + 350.0, + 426.0, + 314.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 354.0, + 595.0, + 354.0, + 595.0, + 425.0, + 558.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 341.0, + 838.0, + 341.0, + 838.0, + 426.0, + 798.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 344.0, + 1081.0, + 344.0, + 1081.0, + 425.0, + 1039.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 332.0, + 1325.0, + 332.0, + 1325.0, + 373.0, + 1277.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 386.0, + 1081.0, + 386.0, + 1081.0, + 404.0, + 1058.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 396.0, + 352.0, + 396.0, + 352.0, + 416.0, + 334.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 400.0, + 595.0, + 400.0, + 595.0, + 421.0, + 576.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 397.0, + 838.0, + 397.0, + 838.0, + 418.0, + 817.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 428.0, + 838.0, + 428.0, + 838.0, + 449.0, + 819.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 425.0, + 1080.0, + 425.0, + 1080.0, + 446.0, + 1060.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 442.0, + 353.0, + 442.0, + 353.0, + 460.0, + 333.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 449.0, + 595.0, + 449.0, + 595.0, + 468.0, + 575.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 460.0, + 835.0, + 460.0, + 835.0, + 474.0, + 820.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 466.0, + 1081.0, + 466.0, + 1081.0, + 484.0, + 1060.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 487.0, + 529.0, + 487.0, + 529.0, + 502.0, + 512.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 490.0, + 610.0, + 490.0, + 610.0, + 501.0, + 599.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 489.0, + 770.0, + 489.0, + 770.0, + 502.0, + 755.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 490.0, + 852.0, + 490.0, + 852.0, + 501.0, + 841.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 479.0, + 943.0, + 479.0, + 943.0, + 528.0, + 908.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 486.0, + 1016.0, + 486.0, + 1016.0, + 504.0, + 993.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 487.0, + 1095.0, + 487.0, + 1095.0, + 502.0, + 1081.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 483.0, + 1182.0, + 483.0, + 1182.0, + 507.0, + 1156.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 487.0, + 1259.0, + 487.0, + 1259.0, + 502.0, + 1242.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 504.0, + 454.0, + 504.0, + 454.0, + 522.0, + 429.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 504.0, + 696.0, + 504.0, + 696.0, + 522.0, + 672.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 498.0, + 1185.0, + 498.0, + 1185.0, + 526.0, + 1154.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 535.0, + 334.0, + 535.0, + 334.0, + 563.0, + 310.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 527.0, + 543.0, + 527.0, + 543.0, + 738.0, + 363.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 542.0, + 592.0, + 542.0, + 592.0, + 553.0, + 580.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 534.0, + 815.0, + 534.0, + 815.0, + 564.0, + 783.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 539.0, + 841.0, + 539.0, + 841.0, + 556.0, + 817.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 541.0, + 1025.0, + 541.0, + 1025.0, + 691.0, + 892.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 540.0, + 1054.0, + 540.0, + 1054.0, + 559.0, + 1034.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 524.0, + 1283.0, + 524.0, + 1283.0, + 707.0, + 1064.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 553.0, + 351.0, + 553.0, + 351.0, + 563.0, + 338.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 565.0, + 619.0, + 565.0, + 619.0, + 608.0, + 604.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 565.0, + 1330.0, + 565.0, + 1330.0, + 590.0, + 1286.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 582.0, + 595.0, + 582.0, + 595.0, + 603.0, + 575.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 584.0, + 1081.0, + 584.0, + 1081.0, + 603.0, + 1060.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 587.0, + 1335.0, + 587.0, + 1335.0, + 604.0, + 1312.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 597.0, + 352.0, + 597.0, + 352.0, + 656.0, + 313.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 595.0, + 583.0, + 595.0, + 583.0, + 656.0, + 558.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 596.0, + 838.0, + 596.0, + 838.0, + 655.0, + 798.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 596.0, + 967.0, + 596.0, + 967.0, + 613.0, + 944.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 600.0, + 1063.0, + 600.0, + 1063.0, + 638.0, + 1042.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 631.0, + 594.0, + 631.0, + 594.0, + 645.0, + 576.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 621.0, + 621.0, + 621.0, + 621.0, + 655.0, + 610.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 639.0, + 951.0, + 639.0, + 951.0, + 647.0, + 925.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 633.0, + 1055.0, + 633.0, + 1055.0, + 649.0, + 1040.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 634.0, + 1079.0, + 634.0, + 1079.0, + 647.0, + 1061.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 657.0, + 353.0, + 657.0, + 353.0, + 675.0, + 333.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 658.0, + 833.0, + 658.0, + 833.0, + 668.0, + 821.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 675.0, + 595.0, + 675.0, + 595.0, + 693.0, + 575.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 683.0, + 1074.0, + 683.0, + 1074.0, + 693.0, + 1063.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 719.0, + 370.0, + 719.0, + 370.0, + 733.0, + 356.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 717.0, + 530.0, + 717.0, + 530.0, + 736.0, + 509.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 719.0, + 611.0, + 719.0, + 611.0, + 735.0, + 598.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 718.0, + 773.0, + 718.0, + 773.0, + 736.0, + 751.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 719.0, + 853.0, + 719.0, + 853.0, + 735.0, + 839.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 715.0, + 938.0, + 715.0, + 938.0, + 739.0, + 913.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 717.0, + 1016.0, + 717.0, + 1016.0, + 736.0, + 993.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 719.0, + 1095.0, + 719.0, + 1095.0, + 735.0, + 1082.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 715.0, + 1190.0, + 715.0, + 1190.0, + 739.0, + 1165.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 718.0, + 1277.0, + 718.0, + 1277.0, + 736.0, + 1256.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 733.0, + 455.0, + 733.0, + 455.0, + 757.0, + 426.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 733.0, + 696.0, + 733.0, + 696.0, + 756.0, + 669.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 730.0, + 940.0, + 730.0, + 940.0, + 758.0, + 910.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 732.0, + 1191.0, + 732.0, + 1191.0, + 757.0, + 1164.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.75, + 454.5, + 1000.75, + 454.5, + 1000.75, + 466.5, + 977.75, + 466.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 541.5, + 577.0, + 541.5, + 577.0, + 553.5, + 555.0, + 553.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 833.0, + 1406.0, + 833.0, + 1406.0, + 868.0, + 294.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 865.0, + 1406.0, + 865.0, + 1406.0, + 896.0, + 295.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 894.0, + 1406.0, + 894.0, + 1406.0, + 927.0, + 293.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 925.0, + 1406.0, + 925.0, + 1406.0, + 960.0, + 295.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 956.0, + 1406.0, + 956.0, + 1406.0, + 991.0, + 294.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 987.0, + 1405.0, + 987.0, + 1405.0, + 1019.0, + 293.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1017.0, + 753.0, + 1017.0, + 753.0, + 1052.0, + 294.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1017.0, + 880.0, + 1017.0, + 880.0, + 1052.0, + 871.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1017.0, + 993.0, + 1017.0, + 993.0, + 1052.0, + 984.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 1017.0, + 1117.0, + 1017.0, + 1117.0, + 1052.0, + 1101.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1928.0, + 1406.0, + 1928.0, + 1406.0, + 1967.0, + 293.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1962.0, + 1409.0, + 1962.0, + 1409.0, + 1995.0, + 295.0, + 1995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1990.0, + 1405.0, + 1990.0, + 1405.0, + 2027.0, + 293.0, + 2027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2022.0, + 988.0, + 2022.0, + 988.0, + 2055.0, + 293.0, + 2055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 2022.0, + 1114.0, + 2022.0, + 1114.0, + 2055.0, + 1106.0, + 2055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 2022.0, + 1227.0, + 2022.0, + 1227.0, + 2055.0, + 1219.0, + 2055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 2022.0, + 1351.0, + 2022.0, + 1351.0, + 2055.0, + 1335.0, + 2055.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": [ + 332.0, + 1644.0, + 366.0, + 1644.0, + 366.0, + 1679.0, + 332.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 1628.0, + 651.0, + 1628.0, + 651.0, + 1669.0, + 586.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1609.0, + 938.0, + 1609.0, + 938.0, + 1657.0, + 850.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1640.0, + 967.0, + 1640.0, + 967.0, + 1664.0, + 956.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1668.0, + 366.0, + 1668.0, + 366.0, + 1702.0, + 332.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1667.0, + 699.0, + 1667.0, + 699.0, + 1702.0, + 620.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1672.0, + 937.0, + 1672.0, + 937.0, + 1704.0, + 878.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1707.0, + 339.0, + 1707.0, + 339.0, + 1781.0, + 303.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1695.0, + 364.0, + 1695.0, + 364.0, + 1746.0, + 342.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1695.0, + 738.0, + 1695.0, + 738.0, + 1725.0, + 622.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 1713.0, + 935.0, + 1713.0, + 935.0, + 1772.0, + 859.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 1695.0, + 1276.0, + 1695.0, + 1276.0, + 1761.0, + 1163.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1753.0, + 365.0, + 1753.0, + 365.0, + 1780.0, + 332.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1758.0, + 673.0, + 1758.0, + 673.0, + 1800.0, + 588.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 1754.0, + 971.0, + 1754.0, + 971.0, + 1766.0, + 962.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 1767.0, + 1189.0, + 1767.0, + 1189.0, + 1777.0, + 1178.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 1757.0, + 1313.0, + 1757.0, + 1313.0, + 1787.0, + 1199.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1774.0, + 368.0, + 1774.0, + 368.0, + 1831.0, + 332.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1794.0, + 746.0, + 1794.0, + 746.0, + 1831.0, + 621.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1782.0, + 933.0, + 1782.0, + 933.0, + 1816.0, + 878.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1826.0, + 365.0, + 1826.0, + 365.0, + 1854.0, + 342.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1820.0, + 764.0, + 1820.0, + 764.0, + 1854.0, + 622.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1849.0, + 375.0, + 1849.0, + 375.0, + 1877.0, + 342.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1838.0, + 934.0, + 1838.0, + 934.0, + 1870.0, + 878.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1875.0, + 384.0, + 1875.0, + 384.0, + 1897.0, + 366.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1872.0, + 451.0, + 1872.0, + 451.0, + 1899.0, + 419.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1869.0, + 510.0, + 1869.0, + 510.0, + 1901.0, + 474.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 1872.0, + 566.0, + 1872.0, + 566.0, + 1899.0, + 532.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1868.0, + 950.0, + 1868.0, + 950.0, + 1895.0, + 928.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 1873.0, + 1134.0, + 1873.0, + 1134.0, + 1891.0, + 1120.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1896.0, + 475.0, + 1896.0, + 475.0, + 1922.0, + 453.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 1891.0, + 1053.0, + 1891.0, + 1053.0, + 1924.0, + 1015.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.75, + 1603.5, + 368.75, + 1603.5, + 368.75, + 1653.5, + 301.75, + 1653.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1109.0, + 1116.0, + 1109.0, + 1116.0, + 1144.0, + 318.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1166.0, + 1407.0, + 1166.0, + 1407.0, + 1203.0, + 295.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1198.0, + 1405.0, + 1198.0, + 1405.0, + 1234.0, + 294.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1227.0, + 1408.0, + 1227.0, + 1408.0, + 1265.0, + 291.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1260.0, + 1405.0, + 1260.0, + 1405.0, + 1292.0, + 294.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1288.0, + 1405.0, + 1288.0, + 1405.0, + 1326.0, + 293.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1317.0, + 627.0, + 1317.0, + 627.0, + 1354.0, + 293.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1317.0, + 1248.0, + 1317.0, + 1248.0, + 1354.0, + 664.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1317.0, + 1408.0, + 1317.0, + 1408.0, + 1354.0, + 1286.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1348.0, + 1405.0, + 1348.0, + 1405.0, + 1387.0, + 293.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1380.0, + 1219.0, + 1380.0, + 1219.0, + 1416.0, + 294.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1380.0, + 1405.0, + 1380.0, + 1405.0, + 1416.0, + 1253.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1401.0, + 599.0, + 1401.0, + 599.0, + 1473.0, + 288.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 1401.0, + 1022.0, + 1401.0, + 1022.0, + 1473.0, + 939.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 1401.0, + 1417.0, + 1401.0, + 1417.0, + 1473.0, + 1056.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1460.0, + 897.0, + 1460.0, + 897.0, + 1499.0, + 293.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1460.0, + 1405.0, + 1460.0, + 1405.0, + 1499.0, + 948.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1498.0, + 493.0, + 1498.0, + 493.0, + 1534.0, + 294.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1498.0, + 1407.0, + 1498.0, + 1407.0, + 1534.0, + 817.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1525.0, + 572.0, + 1525.0, + 572.0, + 1565.0, + 294.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1525.0, + 1407.0, + 1525.0, + 1407.0, + 1565.0, + 622.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 1382.0, + 261.0, + 1382.0, + 296.0, + 294.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1109.0, + 1116.0, + 1109.0, + 1116.0, + 1144.0, + 318.0, + 1144.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1237, + 1406, + 1237, + 1406, + 1422, + 297, + 1422 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1873, + 1405, + 1873, + 1405, + 2035, + 297, + 2035 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 331, + 224, + 1373, + 224, + 1373, + 539, + 331, + 539 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 295, + 973, + 1406, + 973, + 1406, + 1201, + 295, + 1201 + ], + "score": 0.969 + }, + { + "category_id": 3, + "poly": [ + 297, + 638, + 1369, + 638, + 1369, + 936, + 297, + 936 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 296, + 1524, + 1405, + 1524, + 1405, + 1860, + 296, + 1860 + ], + "score": 0.96 + }, + { + "category_id": 4, + "poly": [ + 290, + 562, + 1405, + 562, + 1405, + 625, + 290, + 625 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 298, + 1467, + 1402, + 1467, + 1402, + 1498, + 298, + 1498 + ], + "score": 0.808 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.792 + }, + { + "category_id": 8, + "poly": [ + 299, + 1162, + 720, + 1162, + 720, + 1203, + 299, + 1203 + ], + "score": 0.502 + }, + { + "category_id": 13, + "poly": [ + 363, + 1723, + 522, + 1723, + 522, + 1757, + 363, + 1757 + ], + "score": 0.93, + "latex": "s _ { 1 } = \\overline { { s } } _ { 1 } \\mathcal { O } ( \\overline { { s } } _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 586, + 974, + 790, + 974, + 790, + 1010, + 586, + 1010 + ], + "score": 0.93, + "latex": "\\mathcal { T } ^ { A B } ( \\overline { { s } } _ { A } , \\overline { { s } } _ { B } , q )" + }, + { + "category_id": 13, + "poly": [ + 1111, + 1943, + 1270, + 1943, + 1270, + 1976, + 1111, + 1976 + ], + "score": 0.93, + "latex": "s _ { 1 } = \\overline { { s } } _ { 1 } \\mathcal { O } ( \\overline { { s } } _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 611, + 1942, + 738, + 1942, + 738, + 1975, + 611, + 1975 + ], + "score": 0.92, + "latex": "s _ { 1 } ( t ) \\to \\hat { s } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 926, + 1722, + 1172, + 1722, + 1172, + 1760, + 926, + 1760 + ], + "score": 0.92, + "latex": "\\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } } = 1 - \\mathcal { O } ( \\overline { { s } } _ { 1 } ) ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 406, + 1099, + 524, + 1099, + 524, + 1129, + 406, + 1129 + ], + "score": 0.92, + "latex": "\\overline { { s } } _ { A } = 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 663, + 1596, + 785, + 1596, + 785, + 1630, + 663, + 1630 + ], + "score": 0.92, + "latex": "\\overline { { s } } _ { 1 } > A ^ { 1 / 4 }" + }, + { + "category_id": 13, + "poly": [ + 1194, + 972, + 1399, + 972, + 1399, + 1008, + 1194, + 1008 + ], + "score": 0.92, + "latex": "\\overline { { s } } _ { A } = 0 . 8 4 = \\sqrt [ 4 ] { A }" + }, + { + "category_id": 13, + "poly": [ + 775, + 1039, + 861, + 1039, + 861, + 1068, + 775, + 1068 + ], + "score": 0.9, + "latex": "{ \\overline { { s } } } _ { A } = 3" + }, + { + "category_id": 13, + "poly": [ + 1281, + 1129, + 1403, + 1129, + 1403, + 1160, + 1281, + 1160 + ], + "score": 0.9, + "latex": "N _ { 1 } = 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 409, + 1760, + 486, + 1760, + 486, + 1802, + 409, + 1802 + ], + "score": 0.89, + "latex": "t _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }" + }, + { + "category_id": 13, + "poly": [ + 744, + 1875, + 822, + 1875, + 822, + 1915, + 744, + 1915 + ], + "score": 0.89, + "latex": "t _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }" + }, + { + "category_id": 13, + "poly": [ + 526, + 1556, + 607, + 1556, + 607, + 1598, + 526, + 1598 + ], + "score": 0.89, + "latex": "\\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1158, + 477, + 1158, + 477, + 1202, + 297, + 1202 + ], + "score": 0.89, + "latex": "\\dot { \\overline { { { N } } } } _ { 2 } ^ { A } = \\overline { { { N } } } _ { 2 } ^ { B } = 1 ." + }, + { + "category_id": 13, + "poly": [ + 658, + 1556, + 736, + 1556, + 736, + 1595, + 658, + 1595 + ], + "score": 0.89, + "latex": "t _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }" + }, + { + "category_id": 13, + "poly": [ + 1111, + 979, + 1144, + 979, + 1144, + 1007, + 1111, + 1007 + ], + "score": 0.87, + "latex": "{ \\overline { { s } } } _ { A }" + }, + { + "category_id": 13, + "poly": [ + 608, + 1875, + 690, + 1875, + 690, + 1913, + 608, + 1913 + ], + "score": 0.87, + "latex": "\\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } }" + }, + { + "category_id": 13, + "poly": [ + 363, + 1631, + 392, + 1631, + 392, + 1660, + 363, + 1660 + ], + "score": 0.87, + "latex": "\\hat { s _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 486, + 1166, + 589, + 1166, + 589, + 1200, + 486, + 1200 + ], + "score": 0.79, + "latex": "N _ { 2 } = 5 0" + }, + { + "category_id": 13, + "poly": [ + 599, + 1167, + 705, + 1167, + 705, + 1200, + 599, + 1200 + ], + "score": 0.79, + "latex": "N _ { 3 } = 5 0 ." + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 223.0, + 1152.0, + 223.0, + 1152.0, + 250.0, + 1056.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 238.0, + 1146.0, + 238.0, + 1146.0, + 260.0, + 1060.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 252.0, + 605.0, + 252.0, + 605.0, + 278.0, + 499.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 250.0, + 1158.0, + 250.0, + 1158.0, + 277.0, + 1049.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 275.0, + 407.0, + 275.0, + 407.0, + 310.0, + 351.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 284.0, + 439.0, + 284.0, + 439.0, + 301.0, + 419.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 270.0, + 569.0, + 270.0, + 569.0, + 290.0, + 498.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 285.0, + 684.0, + 285.0, + 684.0, + 299.0, + 668.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 275.0, + 754.0, + 275.0, + 754.0, + 309.0, + 695.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 288.0, + 1009.0, + 288.0, + 1009.0, + 316.0, + 882.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 282.0, + 1108.0, + 282.0, + 1108.0, + 294.0, + 1097.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 387.0, + 567.0, + 387.0, + 567.0, + 413.0, + 540.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 438.0, + 587.0, + 438.0, + 587.0, + 459.0, + 519.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 484.0, + 480.0, + 484.0, + 480.0, + 511.0, + 405.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 483.0, + 700.0, + 483.0, + 700.0, + 514.0, + 626.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 484.0, + 983.0, + 484.0, + 983.0, + 511.0, + 909.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 478.0, + 1127.0, + 478.0, + 1127.0, + 498.0, + 1079.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 516.0, + 495.0, + 516.0, + 495.0, + 538.0, + 388.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 516.0, + 716.0, + 516.0, + 716.0, + 538.0, + 609.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 516.0, + 1014.0, + 516.0, + 1014.0, + 538.0, + 878.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 513.0, + 1294.0, + 513.0, + 1294.0, + 540.0, + 1229.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 293.5, + 1164.0, + 293.5, + 1164.0, + 313.5, + 1132.0, + 313.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 288.5, + 1094.0, + 288.5, + 1094.0, + 308.5, + 1030.0, + 308.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 512.0, + 1136.0, + 512.0, + 1136.0, + 537.0, + 1069.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 968.0, + 585.0, + 968.0, + 585.0, + 1014.0, + 290.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 968.0, + 1110.0, + 968.0, + 1110.0, + 1014.0, + 791.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 968.0, + 1193.0, + 968.0, + 1193.0, + 1014.0, + 1145.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 968.0, + 1409.0, + 968.0, + 1409.0, + 1014.0, + 1400.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1004.0, + 1404.0, + 1004.0, + 1404.0, + 1043.0, + 293.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1038.0, + 774.0, + 1038.0, + 774.0, + 1070.0, + 295.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1038.0, + 1404.0, + 1038.0, + 1404.0, + 1070.0, + 862.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1063.0, + 1406.0, + 1063.0, + 1406.0, + 1105.0, + 292.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1097.0, + 405.0, + 1097.0, + 405.0, + 1133.0, + 294.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 1097.0, + 1406.0, + 1097.0, + 1406.0, + 1133.0, + 525.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1128.0, + 1280.0, + 1128.0, + 1280.0, + 1164.0, + 290.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 1159.0, + 485.0, + 1159.0, + 485.0, + 1205.0, + 478.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 1159.0, + 598.0, + 1159.0, + 598.0, + 1205.0, + 590.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1159.0, + 722.0, + 1159.0, + 722.0, + 1205.0, + 706.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1167.0, + 342.0, + 1167.0, + 342.0, + 1203.0, + 297.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 638.0, + 329.0, + 638.0, + 329.0, + 681.0, + 291.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 634.0, + 379.0, + 634.0, + 379.0, + 707.0, + 336.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 697.0, + 573.0, + 697.0, + 573.0, + 719.0, + 560.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 658.0, + 589.0, + 658.0, + 589.0, + 664.0, + 583.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 641.0, + 661.0, + 641.0, + 661.0, + 676.0, + 630.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 656.0, + 712.0, + 656.0, + 712.0, + 685.0, + 673.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 651.0, + 927.0, + 651.0, + 927.0, + 736.0, + 906.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 638.0, + 995.0, + 638.0, + 995.0, + 680.0, + 956.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 669.0, + 1049.0, + 669.0, + 1049.0, + 702.0, + 1004.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 664.0, + 1240.0, + 664.0, + 1240.0, + 684.0, + 1226.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 659.0, + 1330.0, + 659.0, + 1330.0, + 711.0, + 1255.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 707.0, + 711.0, + 707.0, + 711.0, + 736.0, + 673.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 731.0, + 328.0, + 731.0, + 328.0, + 792.0, + 300.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 719.0, + 379.0, + 719.0, + 379.0, + 751.0, + 336.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 735.0, + 555.0, + 735.0, + 555.0, + 755.0, + 541.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 734.0, + 660.0, + 734.0, + 660.0, + 789.0, + 634.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 726.0, + 905.0, + 726.0, + 905.0, + 741.0, + 890.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 732.0, + 992.0, + 732.0, + 992.0, + 792.0, + 962.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 735.0, + 1331.0, + 735.0, + 1331.0, + 763.0, + 1298.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 761.0, + 378.0, + 761.0, + 378.0, + 793.0, + 336.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 760.0, + 539.0, + 760.0, + 539.0, + 796.0, + 518.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 761.0, + 590.0, + 761.0, + 590.0, + 770.0, + 579.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 758.0, + 711.0, + 758.0, + 711.0, + 787.0, + 673.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 777.0, + 756.0, + 777.0, + 756.0, + 793.0, + 722.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 775.0, + 828.0, + 775.0, + 828.0, + 791.0, + 815.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 761.0, + 925.0, + 761.0, + 925.0, + 785.0, + 906.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 767.0, + 1047.0, + 767.0, + 1047.0, + 789.0, + 1026.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 758.0, + 1241.0, + 758.0, + 1241.0, + 783.0, + 1227.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 797.0, + 516.0, + 797.0, + 516.0, + 821.0, + 502.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 785.0, + 575.0, + 785.0, + 575.0, + 807.0, + 557.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 785.0, + 1153.0, + 785.0, + 1153.0, + 796.0, + 1143.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 789.0, + 1187.0, + 789.0, + 1187.0, + 799.0, + 1177.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 791.0, + 1330.0, + 791.0, + 1330.0, + 824.0, + 1292.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 807.0, + 375.0, + 807.0, + 375.0, + 836.0, + 337.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 809.0, + 555.0, + 809.0, + 555.0, + 826.0, + 541.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 807.0, + 712.0, + 807.0, + 712.0, + 838.0, + 668.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 843.0, + 516.0, + 843.0, + 516.0, + 863.0, + 502.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 826.0, + 535.0, + 826.0, + 535.0, + 847.0, + 520.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 819.0, + 739.0, + 819.0, + 739.0, + 862.0, + 718.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 840.0, + 754.0, + 840.0, + 754.0, + 860.0, + 741.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 818.0, + 774.0, + 818.0, + 774.0, + 849.0, + 757.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 821.0, + 850.0, + 821.0, + 850.0, + 873.0, + 776.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 838.0, + 865.0, + 838.0, + 865.0, + 848.0, + 855.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 843.0, + 1069.0, + 843.0, + 1069.0, + 855.0, + 1058.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 834.0, + 1139.0, + 834.0, + 1139.0, + 857.0, + 1088.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 844.0, + 1153.0, + 844.0, + 1153.0, + 853.0, + 1143.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 834.0, + 1369.0, + 834.0, + 1369.0, + 866.0, + 1270.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 850.0, + 375.0, + 850.0, + 375.0, + 879.0, + 337.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 862.0, + 396.0, + 862.0, + 396.0, + 873.0, + 386.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 849.0, + 594.0, + 849.0, + 594.0, + 870.0, + 574.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 858.0, + 713.0, + 858.0, + 713.0, + 889.0, + 668.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 848.0, + 790.0, + 848.0, + 790.0, + 864.0, + 782.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 850.0, + 850.0, + 850.0, + 850.0, + 877.0, + 833.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 860.0, + 865.0, + 860.0, + 865.0, + 872.0, + 855.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 858.0, + 1049.0, + 858.0, + 1049.0, + 884.0, + 995.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 854.0, + 1071.0, + 854.0, + 1071.0, + 873.0, + 1056.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 859.0, + 1084.0, + 859.0, + 1084.0, + 872.0, + 1075.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 853.0, + 1108.0, + 853.0, + 1108.0, + 875.0, + 1087.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 855.0, + 1174.0, + 855.0, + 1174.0, + 877.0, + 1121.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 858.0, + 1208.0, + 858.0, + 1208.0, + 874.0, + 1176.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 862.0, + 1221.0, + 862.0, + 1221.0, + 872.0, + 1211.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 884.0, + 413.0, + 884.0, + 413.0, + 913.0, + 374.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 880.0, + 509.0, + 880.0, + 509.0, + 915.0, + 469.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 884.0, + 605.0, + 884.0, + 605.0, + 913.0, + 568.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 884.0, + 748.0, + 884.0, + 748.0, + 913.0, + 710.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 883.0, + 843.0, + 883.0, + 843.0, + 915.0, + 802.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 884.0, + 936.0, + 884.0, + 936.0, + 913.0, + 899.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 884.0, + 1082.0, + 884.0, + 1082.0, + 913.0, + 1044.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 882.0, + 1169.0, + 882.0, + 1169.0, + 915.0, + 1127.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 884.0, + 1253.0, + 884.0, + 1253.0, + 913.0, + 1216.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 906.0, + 503.0, + 906.0, + 503.0, + 939.0, + 475.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 908.0, + 834.0, + 908.0, + 834.0, + 937.0, + 810.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 906.0, + 1163.0, + 906.0, + 1163.0, + 939.0, + 1135.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.25, + 851.5, + 573.25, + 851.5, + 573.25, + 867.0, + 558.25, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 854.0, + 1126.0, + 854.0, + 1126.0, + 875.5, + 1100.0, + 875.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 562.0, + 1404.0, + 562.0, + 1404.0, + 597.0, + 294.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 594.0, + 1206.0, + 594.0, + 1206.0, + 625.0, + 297.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1466.0, + 1402.0, + 1466.0, + 1402.0, + 1496.0, + 296.0, + 1496.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, + 1238.0, + 1404.0, + 1238.0, + 1404.0, + 1272.0, + 294.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1267.0, + 1404.0, + 1267.0, + 1404.0, + 1305.0, + 292.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1299.0, + 1408.0, + 1299.0, + 1408.0, + 1335.0, + 295.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1327.0, + 1406.0, + 1327.0, + 1406.0, + 1364.0, + 292.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1357.0, + 1406.0, + 1357.0, + 1406.0, + 1396.0, + 294.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1392.0, + 1340.0, + 1392.0, + 1340.0, + 1424.0, + 295.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 1853.0, + 607.0, + 1853.0, + 607.0, + 1949.0, + 282.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1853.0, + 743.0, + 1853.0, + 743.0, + 1949.0, + 691.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1853.0, + 1406.0, + 1853.0, + 1406.0, + 1949.0, + 823.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 610.0, + 1942.0, + 610.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1942.0, + 1110.0, + 1942.0, + 1110.0, + 1976.0, + 739.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 1942.0, + 1408.0, + 1942.0, + 1408.0, + 1976.0, + 1271.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1408.0, + 1970.0, + 1408.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1999.0, + 1405.0, + 1999.0, + 1405.0, + 2040.0, + 292.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1869.5, + 1410.0, + 1869.5, + 1410.0, + 1921.5, + 740.0, + 1921.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1525.0, + 1405.0, + 1525.0, + 1405.0, + 1563.0, + 293.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1553.0, + 525.0, + 1553.0, + 525.0, + 1599.0, + 294.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 1553.0, + 612.0, + 1553.0, + 612.0, + 1599.0, + 608.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1559.0, + 1405.0, + 1559.0, + 1405.0, + 1600.0, + 737.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1592.0, + 662.0, + 1592.0, + 662.0, + 1640.0, + 290.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1592.0, + 1407.0, + 1592.0, + 1407.0, + 1640.0, + 786.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1629.0, + 362.0, + 1629.0, + 362.0, + 1665.0, + 294.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1629.0, + 1406.0, + 1629.0, + 1406.0, + 1665.0, + 393.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1661.0, + 1405.0, + 1661.0, + 1405.0, + 1694.0, + 295.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1691.0, + 1405.0, + 1691.0, + 1405.0, + 1725.0, + 294.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1722.0, + 362.0, + 1722.0, + 362.0, + 1760.0, + 294.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 1722.0, + 925.0, + 1722.0, + 925.0, + 1760.0, + 523.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 1747.0, + 408.0, + 1747.0, + 408.0, + 1816.0, + 279.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 1747.0, + 1405.0, + 1747.0, + 1405.0, + 1816.0, + 487.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1800.0, + 1406.0, + 1800.0, + 1406.0, + 1831.0, + 295.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1829.0, + 1277.0, + 1829.0, + 1277.0, + 1860.0, + 296.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1554.0, + 708.0, + 1554.0, + 708.0, + 1591.0, + 600.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.25, + 1722.0, + 972.25, + 1722.0, + 972.25, + 1745.0, + 919.25, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1717.0, + 1409.0, + 1717.0, + 1409.0, + 1766.0, + 927.0, + 1766.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1409, + 1405, + 1409, + 1405, + 1783, + 297, + 1783 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 296, + 1046, + 1406, + 1046, + 1406, + 1391, + 296, + 1391 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 296, + 730, + 1406, + 730, + 1406, + 1035, + 296, + 1035 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 398, + 1406, + 398, + 1406, + 632, + 297, + 632 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 1880, + 1403, + 1880, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 556, + 277, + 1137, + 277, + 1137, + 391, + 556, + 391 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 292, + 227, + 1230, + 227, + 1230, + 264, + 292, + 264 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 816, + 73, + 816, + 106, + 298, + 106 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 299, + 1825, + 530, + 1825, + 530, + 1860, + 299, + 1860 + ], + "score": 0.903 + }, + { + "category_id": 9, + "poly": [ + 1351, + 320, + 1400, + 320, + 1400, + 350, + 1351, + 350 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 301, + 672, + 1395, + 672, + 1395, + 707, + 301, + 707 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.854 + }, + { + "category_id": 14, + "poly": [ + 555, + 274, + 1141, + 274, + 1141, + 391, + 555, + 391 + ], + "score": 0.95, + "latex": "\\varepsilon _ { \\mathrm { n o n - g r a d i e n t } } ^ { \\mathrm { o p t } } = \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\overline { { s } } _ { \\alpha } ^ { 2 } \\right] ^ { - 1 } \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\overline { { s } } _ { \\alpha } ^ { 2 } ( 1 - \\mathcal { O } ( \\overline { { s } } _ { \\alpha } ) ^ { 2 } ) \\right] ." + }, + { + "category_id": 13, + "poly": [ + 580, + 231, + 685, + 231, + 685, + 264, + 580, + 264 + ], + "score": 0.93, + "latex": "\\overline { { s } } _ { \\alpha } \\mathcal { O } ( \\overline { { s } } _ { \\alpha } )" + }, + { + "category_id": 13, + "poly": [ + 962, + 1444, + 1165, + 1444, + 1165, + 1479, + 962, + 1479 + ], + "score": 0.93, + "latex": "\\mathcal { T } ^ { A B } ( \\overline { { s } } _ { A } , \\overline { { s } } _ { B } , q )" + }, + { + "category_id": 13, + "poly": [ + 908, + 502, + 987, + 502, + 987, + 535, + 908, + 535 + ], + "score": 0.93, + "latex": "\\overline { { s } } _ { a } ( \\widehat { s } _ { \\alpha } )" + }, + { + "category_id": 13, + "poly": [ + 943, + 808, + 986, + 808, + 986, + 846, + 943, + 846 + ], + "score": 0.92, + "latex": "\\varepsilon _ { B } ^ { \\mathrm { { o p t } } }" + }, + { + "category_id": 13, + "poly": [ + 811, + 1206, + 976, + 1206, + 976, + 1253, + 811, + 1253 + ], + "score": 0.92, + "latex": "\\mathbf { \\overline { { Q } } } = \\mathbf { \\overline { { V } } } ^ { A ^ { T } } \\mathbf { \\overline { { V } } } ^ { B }" + }, + { + "category_id": 13, + "poly": [ + 1308, + 726, + 1353, + 726, + 1353, + 771, + 1308, + 771 + ], + "score": 0.91, + "latex": "\\overline { { N } } _ { 2 } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 484, + 1210, + 530, + 1210, + 530, + 1255, + 484, + 1255 + ], + "score": 0.91, + "latex": "\\overline { { N } } _ { 2 } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 494, + 1120, + 730, + 1120, + 730, + 1163, + 494, + 1163 + ], + "score": 0.91, + "latex": "\\overline { { \\mathbf { W } } } ^ { B } = \\overline { { \\mathbf { U } } } ^ { B } \\overline { { \\mathbf { S } } } ^ { B } \\overline { { \\mathbf { V } } } ^ { B ^ { T } }" + }, + { + "category_id": 13, + "poly": [ + 568, + 1210, + 615, + 1210, + 615, + 1255, + 568, + 1255 + ], + "score": 0.91, + "latex": "\\overline { { N } } _ { 2 } ^ { B }" + }, + { + "category_id": 13, + "poly": [ + 344, + 938, + 416, + 938, + 416, + 977, + 344, + 977 + ], + "score": 0.91, + "latex": "\\varepsilon _ { B A } ^ { \\mathrm { o p t } }" + }, + { + "category_id": 13, + "poly": [ + 1137, + 938, + 1399, + 938, + 1399, + 977, + 1137, + 977 + ], + "score": 0.9, + "latex": "\\mathcal { T } ^ { A B } \\equiv \\varepsilon _ { A } ^ { \\mathrm { o p t } } - \\varepsilon _ { A B } ^ { \\mathrm { o p t } }" + }, + { + "category_id": 13, + "poly": [ + 850, + 809, + 893, + 809, + 893, + 846, + 850, + 846 + ], + "score": 0.9, + "latex": "\\varepsilon _ { A } ^ { \\mathrm { { o p t } } }" + }, + { + "category_id": 13, + "poly": [ + 768, + 734, + 808, + 734, + 808, + 769, + 768, + 769 + ], + "score": 0.9, + "latex": "\\overline { { N } } _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 769, + 344, + 769, + 344, + 811, + 298, + 811 + ], + "score": 0.9, + "latex": "\\overline { { N } } _ { 2 } ^ { B }" + }, + { + "category_id": 13, + "poly": [ + 891, + 1046, + 973, + 1046, + 973, + 1079, + 891, + 1079 + ], + "score": 0.9, + "latex": "\\scriptstyle { \\mathcal { T } } ^ { A B }" + }, + { + "category_id": 13, + "poly": [ + 1310, + 1079, + 1403, + 1079, + 1403, + 1120, + 1310, + 1120 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\overline { { \\mathbf { W } } } ^ { A } = } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1159, + 472, + 1191, + 472, + 1191, + 502, + 1159, + 502 + ], + "score": 0.89, + "latex": "\\hat { s } _ { \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 812, + 1254, + 853, + 1254, + 853, + 1286, + 812, + 1286 + ], + "score": 0.89, + "latex": "\\overline { { N } } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1288, + 1123, + 1343, + 1123, + 1343, + 1162, + 1288, + 1162 + ], + "score": 0.89, + "latex": "\\overline { { \\mathbf { W } } } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 847, + 734, + 888, + 734, + 888, + 768, + 847, + 768 + ], + "score": 0.89, + "latex": "\\overline { { N } } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1040, + 531, + 1088, + 531, + 1088, + 560, + 1040, + 560 + ], + "score": 0.89, + "latex": "\\pmb { \\Sigma } ^ { 3 1 }" + }, + { + "category_id": 13, + "poly": [ + 525, + 564, + 557, + 564, + 557, + 593, + 525, + 593 + ], + "score": 0.88, + "latex": "\\hat { s } _ { \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 295, + 1118, + 438, + 1118, + 438, + 1162, + 295, + 1162 + ], + "score": 0.88, + "latex": "\\overline { { \\mathbf { U } } } ^ { A } \\overline { { \\mathbf { S } } } ^ { A } \\overline { { \\mathbf { V } } } ^ { A ^ { T } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 903, + 338, + 903, + 338, + 937, + 297, + 937 + ], + "score": 0.88, + "latex": "\\overline { { N } } _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 443, + 1080, + 498, + 1080, + 498, + 1117, + 443, + 1117 + ], + "score": 0.88, + "latex": "\\overline { { \\mathbf { W } } } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 767, + 468, + 816, + 468, + 816, + 499, + 767, + 499 + ], + "score": 0.88, + "latex": "\\pmb { \\Sigma } ^ { 3 1 }" + }, + { + "category_id": 13, + "poly": [ + 1104, + 1129, + 1148, + 1129, + 1148, + 1167, + 1104, + 1167 + ], + "score": 0.88, + "latex": "\\varepsilon _ { A } ^ { \\mathrm { { o p t } } }" + }, + { + "category_id": 13, + "poly": [ + 1041, + 726, + 1095, + 726, + 1095, + 767, + 1041, + 767 + ], + "score": 0.87, + "latex": "\\overline { { \\mathbf { W } } } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 1327, + 903, + 1400, + 903, + 1400, + 941, + 1327, + 941 + ], + "score": 0.87, + "latex": "\\varepsilon _ { A B } ^ { \\mathrm { o p t } }" + }, + { + "category_id": 13, + "poly": [ + 1098, + 1167, + 1151, + 1167, + 1151, + 1204, + 1098, + 1204 + ], + "score": 0.87, + "latex": "\\overline { { \\mathbf { W } } } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 1227, + 430, + 1344, + 430, + 1344, + 470, + 1227, + 470 + ], + "score": 0.87, + "latex": "\\varepsilon _ { \\mathrm { n o n - g r a d i e n t } } ^ { \\mathrm { o p t } }" + }, + { + "category_id": 13, + "poly": [ + 758, + 1318, + 803, + 1318, + 803, + 1357, + 758, + 1357 + ], + "score": 0.86, + "latex": "\\bar { \\mathbf { U } } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 516, + 235, + 548, + 235, + 548, + 261, + 516, + 261 + ], + "score": 0.86, + "latex": "s _ { \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 554, + 1079, + 609, + 1079, + 609, + 1118, + 554, + 1118 + ], + "score": 0.86, + "latex": "\\overline { { \\mathbf { W } } } ^ { B }" + }, + { + "category_id": 13, + "poly": [ + 592, + 567, + 624, + 567, + 624, + 594, + 592, + 594 + ], + "score": 0.86, + "latex": "s _ { \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 1146, + 726, + 1201, + 726, + 1201, + 767, + 1146, + 767 + ], + "score": 0.86, + "latex": "\\overline { { \\mathbf { W } } } ^ { B }" + }, + { + "category_id": 13, + "poly": [ + 1201, + 1165, + 1256, + 1165, + 1256, + 1205, + 1201, + 1205 + ], + "score": 0.85, + "latex": "\\overline { { \\mathbf { W } } } ^ { B }" + }, + { + "category_id": 13, + "poly": [ + 854, + 1318, + 899, + 1318, + 899, + 1357, + 854, + 1357 + ], + "score": 0.85, + "latex": "\\overline { { \\mathbf { U } } } ^ { B }" + }, + { + "category_id": 13, + "poly": [ + 388, + 1165, + 426, + 1165, + 426, + 1205, + 388, + 1205 + ], + "score": 0.84, + "latex": "\\overline { { \\mathbf { S } } } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 412, + 1286, + 440, + 1286, + 440, + 1320, + 412, + 1320 + ], + "score": 0.84, + "latex": "\\overline { { \\mathbf { Q } } }" + }, + { + "category_id": 13, + "poly": [ + 1365, + 506, + 1396, + 506, + 1396, + 533, + 1365, + 533 + ], + "score": 0.84, + "latex": "s _ { \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 295, + 1210, + 386, + 1210, + 386, + 1253, + 295, + 1253 + ], + "score": 0.81, + "latex": "\\overline { { \\mathbf { S } } } ^ { A } , \\overline { { \\mathbf { S } } } ^ { B }" + }, + { + "category_id": 13, + "poly": [ + 512, + 739, + 536, + 739, + 536, + 765, + 512, + 765 + ], + "score": 0.8, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 586, + 739, + 611, + 739, + 611, + 765, + 586, + 765 + ], + "score": 0.8, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 614, + 1599, + 640, + 1599, + 640, + 1626, + 614, + 1626 + ], + "score": 0.79, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 626, + 1450, + 643, + 1450, + 643, + 1478, + 626, + 1478 + ], + "score": 0.79, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1205, + 1511, + 1222, + 1511, + 1222, + 1538, + 1205, + 1538 + ], + "score": 0.75, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1373, + 1217, + 1402, + 1217, + 1402, + 1250, + 1373, + 1250 + ], + "score": 0.73, + "latex": "\\overline { { \\mathbf { V } } }" + }, + { + "category_id": 13, + "poly": [ + 737, + 1538, + 761, + 1538, + 761, + 1564, + 737, + 1564 + ], + "score": 0.72, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 981, + 591, + 1214, + 591, + 1214, + 632, + 981, + 632 + ], + "score": 0.7, + "latex": "\\varepsilon _ { \\mathrm { n o n - g r a d i e n t } } ^ { \\mathrm { o p t } ^ { - } } \\le \\varepsilon _ { \\mathrm { g r a d i e n t } } ^ { \\mathrm { o p t } } ." + }, + { + "category_id": 13, + "poly": [ + 1374, + 1409, + 1403, + 1409, + 1403, + 1447, + 1374, + 1447 + ], + "score": 0.68, + "latex": "\\overline { { \\mathbf { Q } } }" + }, + { + "category_id": 13, + "poly": [ + 1203, + 1629, + 1228, + 1629, + 1228, + 1656, + 1203, + 1656 + ], + "score": 0.65, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 498, + 1451, + 531, + 1451, + 531, + 1476, + 498, + 1476 + ], + "score": 0.64, + "latex": "s _ { A }" + }, + { + "category_id": 13, + "poly": [ + 541, + 1451, + 576, + 1451, + 576, + 1477, + 541, + 1477 + ], + "score": 0.61, + "latex": "s _ { B }" + }, + { + "category_id": 13, + "poly": [ + 1377, + 1569, + 1401, + 1569, + 1401, + 1595, + 1377, + 1595 + ], + "score": 0.58, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1225, + 1405, + 1264, + 1405, + 1264, + 1444, + 1225, + 1444 + ], + "score": 0.55, + "latex": "\\overline { { \\mathbf { S } } } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 1225, + 1404, + 1315, + 1404, + 1315, + 1445, + 1225, + 1445 + ], + "score": 0.52, + "latex": "\\overline { { \\mathbf { S } } } ^ { A } , \\overline { { \\mathbf { S } } } ^ { B }" + }, + { + "category_id": 13, + "poly": [ + 981, + 592, + 1026, + 592, + 1026, + 631, + 981, + 631 + ], + "score": 0.45, + "latex": "\\varepsilon _ { \\mathrm { n o n } } ^ { \\mathrm { o p t } }" + }, + { + "category_id": 13, + "poly": [ + 1274, + 1405, + 1314, + 1405, + 1314, + 1444, + 1274, + 1444 + ], + "score": 0.42, + "latex": "\\overline { { \\mathbf { S } } } ^ { B }" + }, + { + "category_id": 13, + "poly": [ + 497, + 1450, + 577, + 1450, + 577, + 1477, + 497, + 1477 + ], + "score": 0.29, + "latex": "s _ { A } , s _ { B }" + }, + { + "category_id": 13, + "poly": [ + 597, + 532, + 634, + 532, + 634, + 559, + 597, + 559 + ], + "score": 0.26, + "latex": "\\mathbf { W }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1824.0, + 534.0, + 1824.0, + 534.0, + 1868.0, + 291.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 671.0, + 1397.0, + 671.0, + 1397.0, + 709.0, + 293.0, + 709.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": [ + 287.0, + 1402.0, + 1224.0, + 1402.0, + 1224.0, + 1453.0, + 287.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 1402.0, + 1373.0, + 1402.0, + 1373.0, + 1453.0, + 1316.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1402.0, + 1411.0, + 1402.0, + 1411.0, + 1453.0, + 1404.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1438.0, + 496.0, + 1438.0, + 496.0, + 1485.0, + 291.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 1438.0, + 625.0, + 1438.0, + 625.0, + 1485.0, + 578.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1438.0, + 961.0, + 1438.0, + 961.0, + 1485.0, + 644.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 1438.0, + 1408.0, + 1438.0, + 1408.0, + 1485.0, + 1166.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1476.0, + 1406.0, + 1476.0, + 1406.0, + 1511.0, + 294.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1508.0, + 1204.0, + 1508.0, + 1204.0, + 1539.0, + 295.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1508.0, + 1403.0, + 1508.0, + 1403.0, + 1539.0, + 1223.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1533.0, + 736.0, + 1533.0, + 736.0, + 1575.0, + 291.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1533.0, + 1406.0, + 1533.0, + 1406.0, + 1575.0, + 762.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1565.0, + 1376.0, + 1565.0, + 1376.0, + 1602.0, + 291.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1565.0, + 1406.0, + 1565.0, + 1406.0, + 1602.0, + 1402.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1597.0, + 613.0, + 1597.0, + 613.0, + 1632.0, + 295.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 1597.0, + 1403.0, + 1597.0, + 1403.0, + 1632.0, + 641.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1624.0, + 1202.0, + 1624.0, + 1202.0, + 1665.0, + 292.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1624.0, + 1410.0, + 1624.0, + 1410.0, + 1665.0, + 1229.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1655.0, + 1406.0, + 1655.0, + 1406.0, + 1696.0, + 292.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1689.0, + 1406.0, + 1689.0, + 1406.0, + 1724.0, + 292.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1717.0, + 1406.0, + 1717.0, + 1406.0, + 1759.0, + 292.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1752.0, + 823.0, + 1752.0, + 823.0, + 1785.0, + 293.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1038.0, + 890.0, + 1038.0, + 890.0, + 1088.0, + 289.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1038.0, + 1408.0, + 1038.0, + 1408.0, + 1088.0, + 974.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1084.0, + 442.0, + 1084.0, + 442.0, + 1121.0, + 294.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 1076.0, + 553.0, + 1076.0, + 553.0, + 1127.0, + 499.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1076.0, + 1309.0, + 1076.0, + 1309.0, + 1127.0, + 610.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1115.0, + 294.0, + 1115.0, + 294.0, + 1163.0, + 286.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 1115.0, + 493.0, + 1115.0, + 493.0, + 1163.0, + 439.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1119.0, + 1103.0, + 1119.0, + 1103.0, + 1178.0, + 731.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1119.0, + 1287.0, + 1119.0, + 1287.0, + 1178.0, + 1149.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1119.0, + 1411.0, + 1119.0, + 1411.0, + 1178.0, + 1344.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1164.0, + 387.0, + 1164.0, + 387.0, + 1215.0, + 293.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 1164.0, + 1097.0, + 1164.0, + 1097.0, + 1215.0, + 427.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1164.0, + 1200.0, + 1164.0, + 1200.0, + 1215.0, + 1152.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1164.0, + 1407.0, + 1164.0, + 1407.0, + 1215.0, + 1257.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 1196.0, + 294.0, + 1196.0, + 294.0, + 1269.0, + 284.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 1196.0, + 483.0, + 1196.0, + 483.0, + 1269.0, + 387.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1196.0, + 567.0, + 1196.0, + 567.0, + 1269.0, + 531.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 1196.0, + 810.0, + 1196.0, + 810.0, + 1269.0, + 616.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1196.0, + 1372.0, + 1196.0, + 1372.0, + 1269.0, + 977.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1196.0, + 1412.0, + 1196.0, + 1412.0, + 1269.0, + 1403.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1251.0, + 811.0, + 1251.0, + 811.0, + 1291.0, + 291.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1251.0, + 1406.0, + 1251.0, + 1406.0, + 1291.0, + 854.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1286.0, + 411.0, + 1286.0, + 411.0, + 1325.0, + 293.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1286.0, + 1407.0, + 1286.0, + 1407.0, + 1325.0, + 441.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1318.0, + 757.0, + 1318.0, + 757.0, + 1365.0, + 290.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1318.0, + 853.0, + 1318.0, + 853.0, + 1365.0, + 804.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1318.0, + 1408.0, + 1318.0, + 1408.0, + 1365.0, + 900.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1358.0, + 1117.0, + 1358.0, + 1117.0, + 1393.0, + 294.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1110.0, + 711.0, + 1110.0, + 711.0, + 1161.0, + 610.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.25, + 1116.0, + 736.25, + 1116.0, + 736.25, + 1144.0, + 686.25, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 724.0, + 511.0, + 724.0, + 511.0, + 776.0, + 290.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 724.0, + 585.0, + 724.0, + 585.0, + 776.0, + 537.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 724.0, + 767.0, + 724.0, + 767.0, + 776.0, + 612.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 724.0, + 846.0, + 724.0, + 846.0, + 776.0, + 809.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 724.0, + 1040.0, + 724.0, + 1040.0, + 776.0, + 889.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 724.0, + 1145.0, + 724.0, + 1145.0, + 776.0, + 1096.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 724.0, + 1307.0, + 724.0, + 1307.0, + 776.0, + 1202.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 724.0, + 1408.0, + 724.0, + 1408.0, + 776.0, + 1354.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 769.0, + 297.0, + 769.0, + 297.0, + 815.0, + 290.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 769.0, + 1409.0, + 769.0, + 1409.0, + 815.0, + 345.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 795.0, + 849.0, + 795.0, + 849.0, + 876.0, + 282.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 795.0, + 942.0, + 795.0, + 942.0, + 876.0, + 894.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 795.0, + 1417.0, + 795.0, + 1417.0, + 876.0, + 987.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 872.0, + 296.0, + 872.0, + 296.0, + 964.0, + 279.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 872.0, + 1326.0, + 872.0, + 1326.0, + 964.0, + 339.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 872.0, + 1421.0, + 872.0, + 1421.0, + 964.0, + 1401.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 920.0, + 343.0, + 920.0, + 343.0, + 996.0, + 281.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 920.0, + 1136.0, + 920.0, + 1136.0, + 996.0, + 417.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 971.0, + 1408.0, + 971.0, + 1408.0, + 1008.0, + 293.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1003.0, + 1146.0, + 1003.0, + 1146.0, + 1038.0, + 294.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 949.5, + 1409.0, + 949.5, + 1409.0, + 983.5, + 1315.0, + 983.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 396.0, + 1407.0, + 396.0, + 1407.0, + 434.0, + 295.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 417.0, + 1226.0, + 417.0, + 1226.0, + 485.0, + 288.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 417.0, + 1412.0, + 417.0, + 1412.0, + 485.0, + 1345.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 463.0, + 766.0, + 463.0, + 766.0, + 507.0, + 292.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 463.0, + 1158.0, + 463.0, + 1158.0, + 507.0, + 817.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 463.0, + 1407.0, + 463.0, + 1407.0, + 507.0, + 1192.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 495.0, + 907.0, + 495.0, + 907.0, + 541.0, + 292.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 495.0, + 1364.0, + 495.0, + 1364.0, + 541.0, + 988.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 495.0, + 1409.0, + 495.0, + 1409.0, + 541.0, + 1397.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 524.0, + 596.0, + 524.0, + 596.0, + 568.0, + 292.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 524.0, + 1039.0, + 524.0, + 1039.0, + 568.0, + 635.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 524.0, + 1407.0, + 524.0, + 1407.0, + 568.0, + 1089.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 562.0, + 524.0, + 562.0, + 524.0, + 598.0, + 295.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 562.0, + 591.0, + 562.0, + 591.0, + 598.0, + 558.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 562.0, + 1404.0, + 562.0, + 1404.0, + 598.0, + 625.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 580.0, + 980.0, + 580.0, + 980.0, + 646.0, + 289.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 608.0, + 1221.0, + 608.0, + 1221.0, + 635.0, + 1215.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.25, + 589.0, + 1184.25, + 589.0, + 1184.25, + 621.0, + 1118.25, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1879.0, + 1405.0, + 1879.0, + 1405.0, + 1919.0, + 294.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1909.0, + 1404.0, + 1909.0, + 1404.0, + 1946.0, + 295.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1944.0, + 1405.0, + 1944.0, + 1405.0, + 1977.0, + 295.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 1404.0, + 2003.0, + 1404.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 226.0, + 515.0, + 226.0, + 515.0, + 268.0, + 295.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 226.0, + 579.0, + 226.0, + 579.0, + 268.0, + 549.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 226.0, + 1233.0, + 226.0, + 1233.0, + 268.0, + 686.0, + 268.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 230, + 1405, + 230, + 1405, + 506, + 298, + 506 + ], + "score": 0.967 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 300, + 550, + 487, + 550, + 487, + 584, + 300, + 584 + ], + "score": 0.865 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 861, + 2088, + 861, + 2113, + 835, + 2113 + ], + "score": 0.826 + }, + { + "category_id": 1, + "poly": [ + 298, + 602, + 1402, + 602, + 1402, + 664, + 298, + 664 + ], + "score": 0.646 + }, + { + "category_id": 1, + "poly": [ + 297, + 682, + 1401, + 682, + 1401, + 776, + 297, + 776 + ], + "score": 0.503 + }, + { + "category_id": 1, + "poly": [ + 295, + 1409, + 1406, + 1409, + 1406, + 1502, + 295, + 1502 + ], + "score": 0.479 + }, + { + "category_id": 1, + "poly": [ + 298, + 1684, + 1402, + 1684, + 1402, + 1779, + 298, + 1779 + ], + "score": 0.467 + }, + { + "category_id": 1, + "poly": [ + 293, + 1797, + 1402, + 1797, + 1402, + 1863, + 293, + 1863 + ], + "score": 0.455 + }, + { + "category_id": 1, + "poly": [ + 294, + 1603, + 1400, + 1603, + 1400, + 1669, + 294, + 1669 + ], + "score": 0.45 + }, + { + "category_id": 1, + "poly": [ + 292, + 1520, + 1402, + 1520, + 1402, + 1586, + 292, + 1586 + ], + "score": 0.443 + }, + { + "category_id": 1, + "poly": [ + 305, + 794, + 1400, + 794, + 1400, + 920, + 305, + 920 + ], + "score": 0.432 + }, + { + "category_id": 1, + "poly": [ + 299, + 1296, + 1401, + 1296, + 1401, + 1392, + 299, + 1392 + ], + "score": 0.432 + }, + { + "category_id": 1, + "poly": [ + 295, + 1214, + 1402, + 1214, + 1402, + 1280, + 295, + 1280 + ], + "score": 0.389 + }, + { + "category_id": 1, + "poly": [ + 299, + 1101, + 1401, + 1101, + 1401, + 1197, + 299, + 1197 + ], + "score": 0.38 + }, + { + "category_id": 1, + "poly": [ + 298, + 1020, + 1399, + 1020, + 1399, + 1086, + 298, + 1086 + ], + "score": 0.351 + }, + { + "category_id": 1, + "poly": [ + 302, + 1881, + 1405, + 1881, + 1405, + 2032, + 302, + 2032 + ], + "score": 0.333 + }, + { + "category_id": 1, + "poly": [ + 300, + 938, + 1399, + 938, + 1399, + 1004, + 300, + 1004 + ], + "score": 0.275 + }, + { + "category_id": 13, + "poly": [ + 1190, + 1028, + 1209, + 1028, + 1209, + 1046, + 1190, + 1046 + ], + "score": 0.4, + "latex": ":" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 551.0, + 490.0, + 551.0, + 490.0, + 587.0, + 296.0, + 587.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": [ + 296.0, + 232.0, + 1405.0, + 232.0, + 1405.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 262.0, + 1403.0, + 262.0, + 1403.0, + 295.0, + 296.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 291.0, + 1406.0, + 291.0, + 1406.0, + 328.0, + 295.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 320.0, + 1407.0, + 320.0, + 1407.0, + 358.0, + 293.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 350.0, + 1407.0, + 350.0, + 1407.0, + 389.0, + 293.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 384.0, + 1403.0, + 384.0, + 1403.0, + 416.0, + 297.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 415.0, + 1405.0, + 415.0, + 1405.0, + 448.0, + 296.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 442.0, + 1406.0, + 442.0, + 1406.0, + 479.0, + 295.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 476.0, + 1376.0, + 476.0, + 1376.0, + 509.0, + 296.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 600.0, + 1403.0, + 600.0, + 1403.0, + 636.0, + 294.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 632.0, + 698.0, + 632.0, + 698.0, + 666.0, + 322.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 684.0, + 1405.0, + 684.0, + 1405.0, + 718.0, + 297.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 713.0, + 1402.0, + 713.0, + 1402.0, + 750.0, + 321.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 746.0, + 639.0, + 746.0, + 639.0, + 777.0, + 323.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1406.0, + 1408.0, + 1406.0, + 1408.0, + 1446.0, + 292.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1437.0, + 1413.0, + 1437.0, + 1413.0, + 1476.0, + 321.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1471.0, + 424.0, + 1471.0, + 424.0, + 1504.0, + 323.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1681.0, + 1406.0, + 1681.0, + 1406.0, + 1723.0, + 293.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1713.0, + 1408.0, + 1713.0, + 1408.0, + 1756.0, + 320.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1749.0, + 576.0, + 1749.0, + 576.0, + 1778.0, + 320.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1798.0, + 1405.0, + 1798.0, + 1405.0, + 1834.0, + 295.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1829.0, + 917.0, + 1829.0, + 917.0, + 1864.0, + 322.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1604.0, + 1405.0, + 1604.0, + 1405.0, + 1640.0, + 296.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1633.0, + 1172.0, + 1633.0, + 1172.0, + 1668.0, + 321.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1521.0, + 1405.0, + 1521.0, + 1405.0, + 1557.0, + 295.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1552.0, + 1246.0, + 1552.0, + 1246.0, + 1588.0, + 319.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 793.0, + 1404.0, + 793.0, + 1404.0, + 831.0, + 297.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 828.0, + 1404.0, + 828.0, + 1404.0, + 861.0, + 322.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 856.0, + 1408.0, + 856.0, + 1408.0, + 892.0, + 318.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 891.0, + 854.0, + 891.0, + 854.0, + 921.0, + 323.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1296.0, + 1405.0, + 1296.0, + 1405.0, + 1334.0, + 294.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1329.0, + 1405.0, + 1329.0, + 1405.0, + 1364.0, + 323.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1359.0, + 1095.0, + 1359.0, + 1095.0, + 1394.0, + 319.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1215.0, + 1404.0, + 1215.0, + 1404.0, + 1251.0, + 295.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1244.0, + 882.0, + 1244.0, + 882.0, + 1279.0, + 322.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1101.0, + 1407.0, + 1101.0, + 1407.0, + 1139.0, + 294.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1134.0, + 1408.0, + 1134.0, + 1408.0, + 1170.0, + 322.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1162.0, + 975.0, + 1162.0, + 975.0, + 1198.0, + 322.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1021.0, + 1189.0, + 1021.0, + 1189.0, + 1053.0, + 296.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 1021.0, + 1403.0, + 1021.0, + 1403.0, + 1053.0, + 1210.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1050.0, + 1189.0, + 1050.0, + 1189.0, + 1085.0, + 323.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1879.0, + 1409.0, + 1879.0, + 1409.0, + 1917.0, + 297.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1947.0, + 322.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1939.0, + 1405.0, + 1939.0, + 1405.0, + 1977.0, + 321.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1970.0, + 1409.0, + 1970.0, + 1409.0, + 2010.0, + 321.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2001.0, + 1135.0, + 2001.0, + 1135.0, + 2038.0, + 322.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 939.0, + 1404.0, + 939.0, + 1404.0, + 975.0, + 295.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 970.0, + 1389.0, + 970.0, + 1389.0, + 1005.0, + 321.0, + 1005.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1565, + 1407, + 1565, + 1407, + 1690, + 297, + 1690 + ], + "score": 0.977 + }, + { + "category_id": 8, + "poly": [ + 626, + 1862, + 1070, + 1862, + 1070, + 1957, + 626, + 1957 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 296, + 1783, + 1402, + 1783, + 1402, + 1848, + 296, + 1848 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1398, + 1971, + 1398, + 2036, + 298, + 2036 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 635, + 1707, + 1063, + 1707, + 1063, + 1771, + 635, + 1771 + ], + "score": 0.928 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.878 + }, + { + "category_id": 0, + "poly": [ + 298, + 1498, + 1027, + 1498, + 1027, + 1533, + 298, + 1533 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.868 + }, + { + "category_id": 1, + "poly": [ + 298, + 570, + 1407, + 570, + 1407, + 664, + 298, + 664 + ], + "score": 0.624 + }, + { + "category_id": 1, + "poly": [ + 296, + 797, + 1405, + 797, + 1405, + 892, + 296, + 892 + ], + "score": 0.615 + }, + { + "category_id": 1, + "poly": [ + 298, + 1345, + 1406, + 1345, + 1406, + 1439, + 298, + 1439 + ], + "score": 0.609 + }, + { + "category_id": 1, + "poly": [ + 299, + 683, + 1402, + 683, + 1402, + 779, + 299, + 779 + ], + "score": 0.606 + }, + { + "category_id": 1, + "poly": [ + 295, + 911, + 1402, + 911, + 1402, + 1006, + 295, + 1006 + ], + "score": 0.568 + }, + { + "category_id": 1, + "poly": [ + 300, + 457, + 1401, + 457, + 1401, + 553, + 300, + 553 + ], + "score": 0.566 + }, + { + "category_id": 1, + "poly": [ + 306, + 343, + 1399, + 343, + 1399, + 437, + 306, + 437 + ], + "score": 0.531 + }, + { + "category_id": 1, + "poly": [ + 302, + 1025, + 1402, + 1025, + 1402, + 1121, + 302, + 1121 + ], + "score": 0.529 + }, + { + "category_id": 1, + "poly": [ + 298, + 1139, + 1406, + 1139, + 1406, + 1325, + 298, + 1325 + ], + "score": 0.484 + }, + { + "category_id": 1, + "poly": [ + 301, + 229, + 1399, + 229, + 1399, + 323, + 301, + 323 + ], + "score": 0.468 + }, + { + "category_id": 14, + "poly": [ + 625, + 1860, + 1071, + 1860, + 1071, + 1958, + 625, + 1958 + ], + "score": 0.94, + "latex": "t ( s , \\hat { s } ) = \\frac { \\tau } { 2 } \\left[ \\frac { \\operatorname { t a n h } ^ { - 1 } \\left( \\sqrt { \\frac { u } { \\hat { s } } } \\right) } { \\hat { s } ^ { 3 / 2 } } - \\frac { 1 } { \\hat { s } \\sqrt { u } } \\right] _ { \\epsilon } ^ { s }" + }, + { + "category_id": 14, + "poly": [ + 633, + 1703, + 1065, + 1703, + 1065, + 1772, + 633, + 1772 + ], + "score": 0.93, + "latex": "\\tau { \\frac { d } { d t } } u = ( N _ { l } - 1 ) u ^ { 2 - 2 / ( N _ { l } - 1 ) } ( s - u )" + }, + { + "category_id": 13, + "poly": [ + 927, + 1972, + 998, + 1972, + 998, + 2006, + 927, + 2006 + ], + "score": 0.93, + "latex": "s ( t , { \\hat { s } } )" + }, + { + "category_id": 13, + "poly": [ + 660, + 1598, + 809, + 1598, + 809, + 1631, + 660, + 1631 + ], + "score": 0.93, + "latex": "\\{ \\hat { s } ^ { \\alpha } , \\hat { \\mathbf { u } } ^ { \\alpha } , \\hat { \\mathbf { v } } ^ { \\alpha } \\}" + }, + { + "category_id": 13, + "poly": [ + 987, + 1629, + 1068, + 1629, + 1068, + 1659, + 987, + 1659 + ], + "score": 0.88, + "latex": "N _ { l } - 2" + }, + { + "category_id": 13, + "poly": [ + 826, + 1630, + 860, + 1630, + 860, + 1659, + 826, + 1659 + ], + "score": 0.86, + "latex": "N _ { l }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1496.0, + 1028.0, + 1496.0, + 1028.0, + 1540.0, + 294.0, + 1540.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, + 1568.0, + 1404.0, + 1568.0, + 1404.0, + 1601.0, + 294.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1596.0, + 659.0, + 1596.0, + 659.0, + 1632.0, + 294.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 1596.0, + 1409.0, + 1596.0, + 1409.0, + 1632.0, + 810.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1627.0, + 825.0, + 1627.0, + 825.0, + 1664.0, + 294.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1627.0, + 986.0, + 1627.0, + 986.0, + 1664.0, + 861.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 1627.0, + 1408.0, + 1627.0, + 1408.0, + 1664.0, + 1069.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1659.0, + 756.0, + 1659.0, + 756.0, + 1692.0, + 295.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1779.0, + 1406.0, + 1779.0, + 1406.0, + 1823.0, + 294.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1814.0, + 912.0, + 1814.0, + 912.0, + 1850.0, + 296.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1967.0, + 926.0, + 1967.0, + 926.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1967.0, + 1404.0, + 1967.0, + 1404.0, + 2009.0, + 999.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1999.0, + 418.0, + 1999.0, + 418.0, + 2041.0, + 292.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 570.0, + 1408.0, + 570.0, + 1408.0, + 607.0, + 293.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 602.0, + 1412.0, + 602.0, + 1412.0, + 636.0, + 322.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 632.0, + 424.0, + 632.0, + 424.0, + 664.0, + 324.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 796.0, + 1405.0, + 796.0, + 1405.0, + 835.0, + 295.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 827.0, + 1408.0, + 827.0, + 1408.0, + 866.0, + 322.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 862.0, + 503.0, + 862.0, + 503.0, + 892.0, + 320.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1345.0, + 1406.0, + 1345.0, + 1406.0, + 1382.0, + 296.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1375.0, + 1409.0, + 1375.0, + 1409.0, + 1413.0, + 320.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1405.0, + 1269.0, + 1405.0, + 1269.0, + 1441.0, + 321.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 686.0, + 1406.0, + 686.0, + 1406.0, + 720.0, + 295.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 714.0, + 1407.0, + 714.0, + 1407.0, + 755.0, + 322.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 746.0, + 1230.0, + 746.0, + 1230.0, + 780.0, + 323.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 908.0, + 1407.0, + 908.0, + 1407.0, + 950.0, + 294.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 940.0, + 1409.0, + 940.0, + 1409.0, + 982.0, + 319.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 976.0, + 589.0, + 976.0, + 589.0, + 1007.0, + 320.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 457.0, + 1405.0, + 457.0, + 1405.0, + 495.0, + 294.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 488.0, + 1406.0, + 488.0, + 1406.0, + 526.0, + 321.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 520.0, + 1400.0, + 520.0, + 1400.0, + 554.0, + 323.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 340.0, + 1404.0, + 340.0, + 1404.0, + 380.0, + 298.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 373.0, + 1403.0, + 373.0, + 1403.0, + 409.0, + 323.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 402.0, + 918.0, + 402.0, + 918.0, + 441.0, + 323.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1024.0, + 1405.0, + 1024.0, + 1405.0, + 1063.0, + 296.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1053.0, + 1408.0, + 1053.0, + 1408.0, + 1096.0, + 321.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1086.0, + 1057.0, + 1086.0, + 1057.0, + 1122.0, + 321.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1136.0, + 1408.0, + 1136.0, + 1408.0, + 1177.0, + 293.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1167.0, + 1409.0, + 1167.0, + 1409.0, + 1209.0, + 319.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1199.0, + 1406.0, + 1199.0, + 1406.0, + 1237.0, + 321.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1232.0, + 1404.0, + 1232.0, + 1404.0, + 1268.0, + 321.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1261.0, + 1408.0, + 1261.0, + 1408.0, + 1296.0, + 321.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1295.0, + 955.0, + 1295.0, + 955.0, + 1326.0, + 324.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 297.0, + 320.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 292.0, + 856.0, + 292.0, + 856.0, + 326.0, + 323.0, + 326.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 433, + 1404, + 433, + 1404, + 619, + 298, + 619 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 300, + 733, + 1402, + 733, + 1402, + 856, + 300, + 856 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 295, + 1404, + 295, + 1404, + 419, + 299, + 419 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 396, + 872, + 1303, + 872, + 1303, + 978, + 396, + 978 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 470, + 1039, + 1226, + 1039, + 1226, + 1121, + 470, + 1121 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 495, + 1382, + 1199, + 1382, + 1199, + 1469, + 495, + 1469 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 494, + 1142, + 1199, + 1142, + 1199, + 1228, + 494, + 1228 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 470, + 1281, + 1226, + 1281, + 1226, + 1362, + 470, + 1362 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 296, + 1477, + 1400, + 1477, + 1400, + 1550, + 296, + 1550 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 297, + 990, + 950, + 990, + 950, + 1023, + 297, + 1023 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 296, + 1232, + 1032, + 1232, + 1032, + 1265, + 296, + 1265 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 297, + 665, + 1035, + 665, + 1035, + 700, + 297, + 700 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 296, + 1763, + 1034, + 1763, + 1034, + 1801, + 296, + 1801 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 105, + 299, + 105 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1068, + 1400, + 1068, + 1400, + 1099, + 1351, + 1099 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1411, + 1401, + 1411, + 1401, + 1444, + 1351, + 1444 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1171, + 1401, + 1171, + 1401, + 1202, + 1351, + 1202 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1308, + 1400, + 1308, + 1400, + 1340, + 1351, + 1340 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1693, + 1400, + 1693, + 1400, + 1722, + 1351, + 1722 + ], + "score": 0.871 + }, + { + "category_id": 9, + "poly": [ + 1351, + 909, + 1400, + 909, + 1400, + 940, + 1351, + 940 + ], + "score": 0.866 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1611, + 1399, + 1611, + 1399, + 1639, + 1352, + 1639 + ], + "score": 0.864 + }, + { + "category_id": 1, + "poly": [ + 297, + 1829, + 938, + 1829, + 938, + 1867, + 297, + 1867 + ], + "score": 0.86 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.852 + }, + { + "category_id": 8, + "poly": [ + 304, + 1649, + 1394, + 1649, + 1394, + 1695, + 304, + 1695 + ], + "score": 0.839 + }, + { + "category_id": 8, + "poly": [ + 294, + 1566, + 1398, + 1566, + 1398, + 1610, + 294, + 1610 + ], + "score": 0.765 + }, + { + "category_id": 1, + "poly": [ + 365, + 1887, + 1403, + 1887, + 1403, + 2032, + 365, + 2032 + ], + "score": 0.759 + }, + { + "category_id": 0, + "poly": [ + 298, + 228, + 1168, + 228, + 1168, + 262, + 298, + 262 + ], + "score": 0.61 + }, + { + "category_id": 8, + "poly": [ + 291, + 1566, + 1398, + 1566, + 1398, + 1642, + 291, + 1642 + ], + "score": 0.137 + }, + { + "category_id": 14, + "poly": [ + 396, + 870, + 1301, + 870, + 1301, + 979, + 396, + 979 + ], + "score": 0.93, + "latex": "\\varepsilon _ { \\mathrm { t r a i n } } \\equiv \\frac { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { P } \\mathbf { W } \\hat { \\mathbf { x } } ^ { \\mu } - \\mathbf { P } \\hat { \\mathbf { y } } ^ { \\mu } | | _ { 2 } ^ { 2 } } { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { P } \\hat { \\mathbf { y } } ^ { \\mu } | | _ { 2 } ^ { 2 } } , \\varepsilon _ { \\mathrm { t e s t } } \\equiv \\frac { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { P } \\mathbf { W } \\overline { { \\mathbf { x } } } ^ { \\mu } - \\mathbf { P } \\overline { { \\mathbf { y } } } ^ { \\mu } | | _ { 2 } ^ { 2 } } { \\sum _ { \\mu = 1 } ^ { \\overline { { N _ { 1 } } } } | | \\mathbf { P } \\overline { { \\mathbf { y } } } ^ { \\mu } | | _ { 2 } ^ { 2 } } ," + }, + { + "category_id": 13, + "poly": [ + 525, + 1507, + 690, + 1507, + 690, + 1545, + 525, + 1545 + ], + "score": 0.92, + "latex": "\\overline { { \\mathbf { W } } } = \\overline { { \\mathbf { U } } } \\overline { { \\mathbf { S } } } \\overline { { \\mathbf { V } } } ^ { T }" + }, + { + "category_id": 14, + "poly": [ + 473, + 1277, + 1226, + 1277, + 1226, + 1363, + 473, + 1363 + ], + "score": 0.91, + "latex": "\\varepsilon _ { \\mathrm { t r a i n } } = \\frac { \\mathrm { T r } { \\bf P } { \\bf W } { \\bf W } ^ { T } { \\bf P } ^ { T } - 2 \\mathrm { T r } { \\bf P } \\Sigma ^ { 3 1 } { \\bf W } ^ { T } { \\bf P } ^ { T } + \\mathrm { T r } { \\bf P } \\Sigma ^ { 3 1 } \\Sigma ^ { 3 1 ^ { T } } { \\bf P } ^ { T } } { \\mathrm { T r } { \\bf P } \\Sigma ^ { 3 1 } \\Sigma ^ { 3 1 ^ { T } } { \\bf P } ^ { T } } ," + }, + { + "category_id": 13, + "poly": [ + 296, + 1511, + 466, + 1511, + 466, + 1546, + 296, + 1546 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\pmb { \\Sigma } ^ { 3 1 } = \\hat { \\mathbf { U } } \\hat { \\mathbf { S } } \\hat { \\mathbf { V } } ^ { T } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1013, + 1952, + 1058, + 1952, + 1058, + 1996, + 1013, + 1996 + ], + "score": 0.9, + "latex": "\\overline { { N } } _ { 2 } ^ { A }" + }, + { + "category_id": 14, + "poly": [ + 496, + 1135, + 1202, + 1135, + 1202, + 1228, + 496, + 1228 + ], + "score": 0.9, + "latex": "\\varepsilon _ { \\mathrm { t e s t } } = \\frac { \\mathrm { T r } { \\mathbf { W } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } { \\mathbf { W } } - 2 \\mathrm { T r } { \\mathbf { W } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\overline { { { \\mathbf { W } } } } + \\mathrm { T r } \\overline { { { \\mathbf { W } } } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\overline { { { \\mathbf { W } } } } } { \\mathrm { T r } \\overline { { { \\mathbf { W } } } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\overline { { { \\mathbf { W } } } } } ." + }, + { + "category_id": 13, + "poly": [ + 1096, + 1952, + 1142, + 1952, + 1142, + 1996, + 1096, + 1996 + ], + "score": 0.9, + "latex": "\\overline { { N } } _ { 2 } ^ { B }" + }, + { + "category_id": 14, + "poly": [ + 470, + 1036, + 1226, + 1036, + 1226, + 1123, + 470, + 1123 + ], + "score": 0.9, + "latex": "\\varepsilon _ { \\mathrm { t r a i n } } = \\frac { \\mathrm { T r } { \\mathbf { W } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } { \\mathbf { W } } - 2 \\mathrm { T r } { \\mathbf { W } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\Sigma ^ { 3 1 } + \\mathrm { T r } { \\Sigma ^ { 3 1 } } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\Sigma ^ { 3 1 } } { \\mathrm { T r } \\Sigma ^ { 3 1 } ^ { T } { \\mathbf { P } } ^ { T } { \\mathbf { P } } \\Sigma ^ { 3 1 } } ," + }, + { + "category_id": 14, + "poly": [ + 496, + 1376, + 1202, + 1376, + 1202, + 1470, + 496, + 1470 + ], + "score": 0.89, + "latex": "\\varepsilon _ { \\mathrm { t e s t } } = \\frac { \\mathrm { T r } \\mathbf { P } \\mathbf { W } \\mathbf { W } ^ { T } \\mathbf { P } ^ { T } - 2 \\mathrm { T r } \\mathbf { P } \\overline { { \\mathbf { W } } } \\mathbf { W } ^ { T } \\mathbf { P } ^ { T } + \\mathrm { T r } \\mathbf { P } \\overline { { \\mathbf { W } } } \\mathbf { W } ^ { T } \\mathbf { P } ^ { T } } { \\mathrm { T r } \\mathbf { P } \\overline { { \\mathbf { W } } } \\mathbf { W } ^ { T } \\mathbf { P } ^ { T } } ." + }, + { + "category_id": 13, + "poly": [ + 845, + 1831, + 927, + 1831, + 927, + 1862, + 845, + 1862 + ], + "score": 0.89, + "latex": "\\scriptstyle { \\mathcal { T } } ^ { A B }" + }, + { + "category_id": 13, + "poly": [ + 395, + 1992, + 501, + 1992, + 501, + 2032, + 395, + 2032 + ], + "score": 0.87, + "latex": "\\overline { { \\mathbf { V } } } ^ { A T } \\overline { { \\mathbf { V } } } ^ { B }" + }, + { + "category_id": 14, + "poly": [ + 310, + 1564, + 1402, + 1564, + 1402, + 1612, + 310, + 1612 + ], + "score": 0.87, + "latex": "\\begin{array} { r } { \\operatorname { t r a i n } = \\Big [ \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 3 } } \\hat { s } _ { \\beta } ^ { 2 } \\vert \\vert { \\mathbf { P } } \\hat { \\mathbf { a } } ^ { \\alpha } \\vert \\vert _ { 2 } ^ { 2 } \\Big ] ^ { - 1 } \\Big [ \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } s _ { \\alpha } ^ { 2 } \\vert \\vert { \\mathbf { P } } \\mathbf { u } ^ { \\alpha } \\vert \\vert _ { 2 } ^ { 2 } + \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 3 } } \\hat { s } _ { \\beta } ^ { 2 } \\vert \\vert { \\mathbf { P } } \\hat { \\mathbf { a } } ^ { \\alpha } \\vert \\vert _ { 2 } ^ { 2 } - 2 \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 3 } } s _ { \\alpha } \\hat { s } _ { \\beta } \\big ( { \\mathbf { P } } \\mathbf { u } ^ { \\alpha } \\cdot { \\mathbf { P } } \\hat { \\mathbf { u } } ^ { \\beta } \\big ) \\big ( { \\mathbf { v } } ^ { \\alpha } \\cdot { \\mathbf { \\hat { v } } } ^ { \\beta } \\big ) \\Big ] , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1240, + 1475, + 1396, + 1475, + 1396, + 1507, + 1240, + 1507 + ], + "score": 0.87, + "latex": "\\mathbf { W } = \\mathbf { U } \\mathbf { S } \\mathbf { V } ^ { T }" + }, + { + "category_id": 14, + "poly": [ + 310, + 1646, + 1400, + 1646, + 1400, + 1694, + 310, + 1694 + ], + "score": 0.86, + "latex": "\\begin{array} { r } { \\varepsilon _ { \\mathrm { t e s t } } = \\Big [ \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 2 } } \\bar { s } _ { \\beta } ^ { 2 } \\big | \\big | { \\bf P } \\bar { \\bf u } ^ { \\alpha } \\big | \\big | _ { 2 } ^ { 2 } \\Big ] ^ { - 1 } \\Big [ \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } s _ { \\alpha } ^ { 2 } \\big | \\big | { \\bf P } { \\bf u } ^ { \\alpha } \\big | \\big | _ { 2 } ^ { 2 } + \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 2 } } \\bar { s } _ { \\beta } ^ { 2 } \\big | \\big | { \\bf P } \\bar { \\bf u } ^ { \\alpha } \\big | \\big | _ { 2 } ^ { 2 } - 2 \\sum _ { \\alpha = 1 } ^ { N _ { 2 } } \\sum _ { \\beta = 1 } ^ { \\mathbb { N } _ { 2 } } s _ { \\alpha } \\bar { s } _ { \\beta } \\big ( { \\bf P } { \\bf u } ^ { \\alpha } \\cdot { \\bf P } { \\bf { \\bar { u } } } ^ { \\beta } \\big ) \\big ( { \\bf v } ^ { \\alpha } \\cdot { \\bf \\bar { v } } ^ { \\beta } \\big ) \\Big ] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1344, + 1961, + 1406, + 1961, + 1406, + 1995, + 1344, + 1995 + ], + "score": 0.83, + "latex": "\\overline { { \\mathbf { Q } } } =" + }, + { + "category_id": 13, + "poly": [ + 718, + 1890, + 762, + 1890, + 762, + 1929, + 718, + 1929 + ], + "score": 0.73, + "latex": "\\overline { { \\mathbf { U } } } ^ { B }" + }, + { + "category_id": 13, + "poly": [ + 620, + 1890, + 664, + 1890, + 664, + 1928, + 620, + 1928 + ], + "score": 0.7, + "latex": "\\overline { { \\mathbf { U } } } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 397, + 826, + 421, + 826, + 421, + 853, + 397, + 853 + ], + "score": 0.65, + "latex": "\\mathbf { P }" + }, + { + "category_id": 13, + "poly": [ + 777, + 1956, + 809, + 1956, + 809, + 1996, + 777, + 1996 + ], + "score": 0.53, + "latex": "\\sigma _ { z } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 809, + 1951, + 909, + 1951, + 909, + 1996, + 809, + 1996 + ], + "score": 0.51, + "latex": ", \\overline { { \\mathbf { S } } } ^ { A } , \\overline { { \\mathbf { S } } } ^ { B }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 661.0, + 1039.0, + 661.0, + 1039.0, + 705.0, + 295.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1760.0, + 1035.0, + 1760.0, + 1035.0, + 1804.0, + 293.0, + 1804.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": [ + 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, + 223.0, + 1172.0, + 223.0, + 1172.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 431.0, + 1404.0, + 431.0, + 1404.0, + 470.0, + 293.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 466.0, + 1405.0, + 466.0, + 1405.0, + 498.0, + 296.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 497.0, + 1405.0, + 497.0, + 1405.0, + 529.0, + 296.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 527.0, + 1402.0, + 527.0, + 1402.0, + 559.0, + 296.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 558.0, + 1404.0, + 558.0, + 1404.0, + 590.0, + 296.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 587.0, + 914.0, + 587.0, + 914.0, + 623.0, + 294.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 732.0, + 1408.0, + 732.0, + 1408.0, + 769.0, + 293.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 765.0, + 1406.0, + 765.0, + 1406.0, + 798.0, + 295.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 792.0, + 1406.0, + 792.0, + 1406.0, + 829.0, + 291.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 827.0, + 396.0, + 827.0, + 396.0, + 857.0, + 293.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 827.0, + 433.0, + 827.0, + 433.0, + 857.0, + 422.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 296.0, + 1406.0, + 296.0, + 1406.0, + 329.0, + 295.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 327.0, + 1406.0, + 327.0, + 1406.0, + 362.0, + 293.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 359.0, + 1403.0, + 359.0, + 1403.0, + 392.0, + 295.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 389.0, + 1259.0, + 389.0, + 1259.0, + 421.0, + 295.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1473.0, + 1239.0, + 1473.0, + 1239.0, + 1512.0, + 292.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1473.0, + 1406.0, + 1473.0, + 1406.0, + 1512.0, + 1397.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1504.0, + 295.0, + 1504.0, + 295.0, + 1555.0, + 291.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 1504.0, + 524.0, + 1504.0, + 524.0, + 1555.0, + 467.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1504.0, + 986.0, + 1504.0, + 986.0, + 1555.0, + 691.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 987.0, + 954.0, + 987.0, + 954.0, + 1029.0, + 294.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1228.0, + 1035.0, + 1228.0, + 1035.0, + 1271.0, + 295.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1829.0, + 844.0, + 1829.0, + 844.0, + 1869.0, + 292.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1829.0, + 943.0, + 1829.0, + 943.0, + 1869.0, + 928.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1888.0, + 619.0, + 1888.0, + 619.0, + 1934.0, + 363.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 1888.0, + 717.0, + 1888.0, + 717.0, + 1934.0, + 665.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 1888.0, + 772.0, + 1888.0, + 772.0, + 1934.0, + 763.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1936.0, + 776.0, + 1936.0, + 776.0, + 2008.0, + 358.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1936.0, + 1012.0, + 1936.0, + 1012.0, + 2008.0, + 910.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 1936.0, + 1095.0, + 1936.0, + 1095.0, + 2008.0, + 1059.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1936.0, + 1343.0, + 1936.0, + 1343.0, + 2008.0, + 1143.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1986.0, + 394.0, + 1986.0, + 394.0, + 2031.0, + 388.0, + 2031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1986.0, + 510.0, + 1986.0, + 510.0, + 2031.0, + 502.0, + 2031.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 4, + "poly": [ + 295, + 1689, + 1407, + 1689, + 1407, + 1876, + 295, + 1876 + ], + "score": 0.964 + }, + { + "category_id": 3, + "poly": [ + 299, + 366, + 1377, + 366, + 1377, + 1672, + 299, + 1672 + ], + "score": 0.949 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.856 + }, + { + "category_id": 3, + "poly": [ + 299, + 366, + 1377, + 366, + 1377, + 1684, + 299, + 1684 + ], + "score": 0.451 + }, + { + "category_id": 13, + "poly": [ + 1281, + 1786, + 1313, + 1786, + 1313, + 1813, + 1281, + 1813 + ], + "score": 0.85, + "latex": "\\sigma _ { z }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1689.0, + 1406.0, + 1689.0, + 1406.0, + 1725.0, + 294.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1722.0, + 1404.0, + 1722.0, + 1404.0, + 1754.0, + 294.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1752.0, + 1406.0, + 1752.0, + 1406.0, + 1784.0, + 296.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1781.0, + 1280.0, + 1781.0, + 1280.0, + 1816.0, + 293.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 1781.0, + 1405.0, + 1781.0, + 1405.0, + 1816.0, + 1314.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1811.0, + 1405.0, + 1811.0, + 1405.0, + 1847.0, + 293.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1844.0, + 823.0, + 1844.0, + 823.0, + 1877.0, + 296.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 378.0, + 1021.0, + 378.0, + 1021.0, + 430.0, + 962.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 443.0, + 1001.0, + 443.0, + 1001.0, + 568.0, + 963.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 490.0, + 1370.0, + 490.0, + 1370.0, + 515.0, + 1347.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 517.0, + 1368.0, + 517.0, + 1368.0, + 537.0, + 1350.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 544.0, + 1370.0, + 544.0, + 1370.0, + 565.0, + 1352.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 616.0, + 1012.0, + 616.0, + 1012.0, + 629.0, + 997.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 638.0, + 1038.0, + 638.0, + 1038.0, + 660.0, + 1021.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 634.0, + 1163.0, + 634.0, + 1163.0, + 666.0, + 1135.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 638.0, + 1284.0, + 638.0, + 1284.0, + 662.0, + 1256.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 656.0, + 1169.0, + 656.0, + 1169.0, + 692.0, + 1130.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 706.0, + 348.0, + 706.0, + 348.0, + 745.0, + 306.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 703.0, + 677.0, + 703.0, + 677.0, + 745.0, + 632.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 706.0, + 1012.0, + 706.0, + 1012.0, + 742.0, + 963.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 770.0, + 344.0, + 770.0, + 344.0, + 891.0, + 304.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 768.0, + 673.0, + 768.0, + 673.0, + 891.0, + 634.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 770.0, + 1001.0, + 770.0, + 1001.0, + 890.0, + 963.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 812.0, + 1370.0, + 812.0, + 1370.0, + 837.0, + 1346.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 839.0, + 1368.0, + 839.0, + 1368.0, + 859.0, + 1350.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 865.0, + 1370.0, + 865.0, + 1370.0, + 887.0, + 1352.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 936.0, + 354.0, + 936.0, + 354.0, + 953.0, + 336.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 934.0, + 683.0, + 934.0, + 683.0, + 953.0, + 664.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 934.0, + 1013.0, + 934.0, + 1013.0, + 953.0, + 996.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 962.0, + 377.0, + 962.0, + 377.0, + 982.0, + 359.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 957.0, + 495.0, + 957.0, + 495.0, + 988.0, + 473.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 959.0, + 616.0, + 959.0, + 616.0, + 987.0, + 583.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 959.0, + 710.0, + 959.0, + 710.0, + 984.0, + 688.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 957.0, + 825.0, + 957.0, + 825.0, + 988.0, + 803.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 960.0, + 944.0, + 960.0, + 944.0, + 984.0, + 915.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 960.0, + 1038.0, + 960.0, + 1038.0, + 982.0, + 1021.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 956.0, + 1163.0, + 956.0, + 1163.0, + 990.0, + 1135.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 960.0, + 1284.0, + 960.0, + 1284.0, + 985.0, + 1256.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 977.0, + 505.0, + 977.0, + 505.0, + 1018.0, + 463.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 979.0, + 834.0, + 979.0, + 834.0, + 1016.0, + 794.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 977.0, + 1172.0, + 977.0, + 1172.0, + 1018.0, + 1128.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1028.0, + 1003.0, + 1028.0, + 1003.0, + 1069.0, + 966.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 1037.0, + 1006.0, + 1037.0, + 1006.0, + 1050.0, + 994.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1092.0, + 1001.0, + 1092.0, + 1001.0, + 1212.0, + 963.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1135.0, + 1370.0, + 1135.0, + 1370.0, + 1160.0, + 1346.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 1160.0, + 1370.0, + 1160.0, + 1370.0, + 1184.0, + 1347.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 1189.0, + 1370.0, + 1189.0, + 1370.0, + 1211.0, + 1352.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 1258.0, + 1013.0, + 1258.0, + 1013.0, + 1278.0, + 994.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1284.0, + 1038.0, + 1284.0, + 1038.0, + 1305.0, + 1022.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1277.0, + 1168.0, + 1277.0, + 1168.0, + 1315.0, + 1130.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 1281.0, + 1290.0, + 1281.0, + 1290.0, + 1309.0, + 1252.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1299.0, + 1172.0, + 1299.0, + 1172.0, + 1340.0, + 1128.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1347.0, + 358.0, + 1347.0, + 358.0, + 1394.0, + 306.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1346.0, + 682.0, + 1346.0, + 682.0, + 1394.0, + 624.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1344.0, + 1021.0, + 1344.0, + 1021.0, + 1395.0, + 956.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1399.0, + 799.0, + 1399.0, + 799.0, + 1428.0, + 784.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1414.0, + 340.0, + 1414.0, + 340.0, + 1535.0, + 302.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1417.0, + 672.0, + 1417.0, + 672.0, + 1537.0, + 632.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1422.0, + 798.0, + 1422.0, + 798.0, + 1454.0, + 784.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1416.0, + 1003.0, + 1416.0, + 1003.0, + 1538.0, + 964.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 1467.0, + 432.0, + 1467.0, + 432.0, + 1474.0, + 424.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1464.0, + 800.0, + 1464.0, + 800.0, + 1546.0, + 781.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1460.0, + 1368.0, + 1460.0, + 1368.0, + 1480.0, + 1349.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 1485.0, + 1370.0, + 1485.0, + 1370.0, + 1505.0, + 1350.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 1513.0, + 1370.0, + 1513.0, + 1370.0, + 1533.0, + 1352.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1578.0, + 355.0, + 1578.0, + 355.0, + 1603.0, + 333.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 1578.0, + 685.0, + 1578.0, + 685.0, + 1605.0, + 663.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 1577.0, + 1016.0, + 1577.0, + 1016.0, + 1605.0, + 993.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1606.0, + 377.0, + 1606.0, + 377.0, + 1628.0, + 359.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 1595.0, + 508.0, + 1595.0, + 508.0, + 1666.0, + 460.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1600.0, + 622.0, + 1600.0, + 622.0, + 1634.0, + 577.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1606.0, + 707.0, + 1606.0, + 707.0, + 1628.0, + 691.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1599.0, + 832.0, + 1599.0, + 832.0, + 1637.0, + 795.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1600.0, + 951.0, + 1600.0, + 951.0, + 1634.0, + 907.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 1606.0, + 1038.0, + 1606.0, + 1038.0, + 1628.0, + 1021.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1599.0, + 1168.0, + 1599.0, + 1168.0, + 1637.0, + 1131.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1602.0, + 1292.0, + 1602.0, + 1292.0, + 1634.0, + 1249.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1622.0, + 835.0, + 1622.0, + 835.0, + 1663.0, + 792.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1625.0, + 1169.0, + 1625.0, + 1169.0, + 1662.0, + 1130.0, + 1662.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": [ + 831.0, + 2084.0, + 869.0, + 2084.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 377.0, + 1022.0, + 377.0, + 1022.0, + 428.0, + 962.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 443.0, + 1001.0, + 443.0, + 1001.0, + 569.0, + 963.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 499.0, + 1362.0, + 499.0, + 1362.0, + 507.0, + 1355.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 520.0, + 1365.0, + 520.0, + 1365.0, + 535.0, + 1353.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 545.0, + 1370.0, + 545.0, + 1370.0, + 564.0, + 1352.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 613.0, + 1013.0, + 613.0, + 1013.0, + 632.0, + 996.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 639.0, + 1038.0, + 639.0, + 1038.0, + 660.0, + 1022.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 634.0, + 1163.0, + 634.0, + 1163.0, + 668.0, + 1135.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 638.0, + 1284.0, + 638.0, + 1284.0, + 663.0, + 1256.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 653.0, + 1171.0, + 653.0, + 1171.0, + 694.0, + 1128.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 704.0, + 342.0, + 704.0, + 342.0, + 744.0, + 306.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 706.0, + 670.0, + 706.0, + 670.0, + 744.0, + 633.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 706.0, + 1007.0, + 706.0, + 1007.0, + 743.0, + 963.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 771.0, + 340.0, + 771.0, + 340.0, + 889.0, + 302.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 772.0, + 672.0, + 772.0, + 672.0, + 891.0, + 633.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 771.0, + 1001.0, + 771.0, + 1001.0, + 889.0, + 963.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 814.0, + 1368.0, + 814.0, + 1368.0, + 834.0, + 1349.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 839.0, + 1368.0, + 839.0, + 1368.0, + 858.0, + 1352.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 867.0, + 1370.0, + 867.0, + 1370.0, + 888.0, + 1352.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 938.0, + 352.0, + 938.0, + 352.0, + 951.0, + 337.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 935.0, + 683.0, + 935.0, + 683.0, + 954.0, + 666.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 935.0, + 1013.0, + 935.0, + 1013.0, + 954.0, + 996.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 961.0, + 377.0, + 961.0, + 377.0, + 982.0, + 361.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 957.0, + 495.0, + 957.0, + 495.0, + 987.0, + 473.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 961.0, + 613.0, + 961.0, + 613.0, + 984.0, + 586.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 961.0, + 707.0, + 961.0, + 707.0, + 982.0, + 691.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 957.0, + 825.0, + 957.0, + 825.0, + 985.0, + 803.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 961.0, + 944.0, + 961.0, + 944.0, + 984.0, + 916.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 961.0, + 1038.0, + 961.0, + 1038.0, + 982.0, + 1022.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 959.0, + 1160.0, + 959.0, + 1160.0, + 987.0, + 1137.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 960.0, + 1284.0, + 960.0, + 1284.0, + 984.0, + 1256.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 979.0, + 504.0, + 979.0, + 504.0, + 1016.0, + 464.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 979.0, + 834.0, + 979.0, + 834.0, + 1016.0, + 794.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 978.0, + 1169.0, + 978.0, + 1169.0, + 1015.0, + 1130.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1025.0, + 1004.0, + 1025.0, + 1004.0, + 1072.0, + 965.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 1034.0, + 1010.0, + 1034.0, + 1010.0, + 1053.0, + 993.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1093.0, + 1001.0, + 1093.0, + 1001.0, + 1214.0, + 963.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1137.0, + 1368.0, + 1137.0, + 1368.0, + 1158.0, + 1349.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 1162.0, + 1368.0, + 1162.0, + 1368.0, + 1182.0, + 1350.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 1189.0, + 1370.0, + 1189.0, + 1370.0, + 1211.0, + 1352.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 1257.0, + 1013.0, + 1257.0, + 1013.0, + 1278.0, + 994.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1283.0, + 1038.0, + 1283.0, + 1038.0, + 1306.0, + 1022.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1278.0, + 1168.0, + 1278.0, + 1168.0, + 1315.0, + 1131.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1279.0, + 1292.0, + 1279.0, + 1292.0, + 1312.0, + 1249.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1298.0, + 1171.0, + 1298.0, + 1171.0, + 1340.0, + 1128.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1353.0, + 351.0, + 1353.0, + 351.0, + 1388.0, + 309.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1347.0, + 682.0, + 1347.0, + 682.0, + 1393.0, + 626.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1344.0, + 1022.0, + 1344.0, + 1022.0, + 1394.0, + 956.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1388.0, + 800.0, + 1388.0, + 800.0, + 1455.0, + 781.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 1416.0, + 344.0, + 1416.0, + 344.0, + 1536.0, + 304.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1418.0, + 672.0, + 1418.0, + 672.0, + 1538.0, + 632.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1446.0, + 800.0, + 1446.0, + 800.0, + 1484.0, + 781.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 1419.0, + 1001.0, + 1419.0, + 1001.0, + 1536.0, + 962.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 1458.0, + 1370.0, + 1458.0, + 1370.0, + 1483.0, + 1347.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1492.0, + 795.0, + 1492.0, + 795.0, + 1536.0, + 785.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 1486.0, + 1370.0, + 1486.0, + 1370.0, + 1533.0, + 1350.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1579.0, + 355.0, + 1579.0, + 355.0, + 1604.0, + 333.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 1577.0, + 686.0, + 1577.0, + 686.0, + 1604.0, + 663.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 1576.0, + 1024.0, + 1576.0, + 1024.0, + 1605.0, + 991.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1605.0, + 377.0, + 1605.0, + 377.0, + 1628.0, + 359.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 1595.0, + 508.0, + 1595.0, + 508.0, + 1666.0, + 461.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 1601.0, + 622.0, + 1601.0, + 622.0, + 1634.0, + 576.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1604.0, + 710.0, + 1604.0, + 710.0, + 1631.0, + 688.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1597.0, + 837.0, + 1597.0, + 837.0, + 1663.0, + 792.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1601.0, + 951.0, + 1601.0, + 951.0, + 1634.0, + 906.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 1605.0, + 1038.0, + 1605.0, + 1038.0, + 1629.0, + 1021.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 1595.0, + 1174.0, + 1595.0, + 1174.0, + 1666.0, + 1125.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1601.0, + 1292.0, + 1601.0, + 1292.0, + 1634.0, + 1249.0, + 1634.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 294, + 690, + 1408, + 690, + 1408, + 892, + 294, + 892 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 295, + 905, + 1407, + 905, + 1407, + 1125, + 295, + 1125 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 296, + 1381, + 1407, + 1381, + 1407, + 1555, + 296, + 1555 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1955, + 1404, + 1955, + 1404, + 2038, + 297, + 2038 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 299, + 1818, + 1396, + 1818, + 1396, + 1931, + 299, + 1931 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 528, + 1565, + 1165, + 1565, + 1165, + 1617, + 528, + 1617 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 627, + 1326, + 1075, + 1326, + 1075, + 1377, + 627, + 1377 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 642, + 1688, + 1054, + 1688, + 1054, + 1742, + 642, + 1742 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 705, + 1233, + 999, + 1233, + 999, + 1284, + 705, + 1284 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 295, + 1771, + 1183, + 1771, + 1183, + 1807, + 295, + 1807 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 297, + 1300, + 488, + 1300, + 488, + 1332, + 297, + 1332 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 816, + 73, + 816, + 106, + 297, + 106 + ], + "score": 0.918 + }, + { + "category_id": 8, + "poly": [ + 418, + 1126, + 1276, + 1126, + 1276, + 1177, + 418, + 1177 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 300, + 1185, + 754, + 1185, + 754, + 1219, + 300, + 1219 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 301, + 1629, + 768, + 1629, + 768, + 1676, + 301, + 1676 + ], + "score": 0.903 + }, + { + "category_id": 1, + "poly": [ + 296, + 229, + 497, + 229, + 497, + 261, + 296, + 261 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1350, + 613, + 1401, + 613, + 1401, + 645, + 1350, + 645 + ], + "score": 0.892 + }, + { + "category_id": 8, + "poly": [ + 546, + 575, + 1144, + 575, + 1144, + 681, + 546, + 681 + ], + "score": 0.872 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2114, + 835, + 2114 + ], + "score": 0.865 + }, + { + "category_id": 8, + "poly": [ + 463, + 267, + 1230, + 267, + 1230, + 536, + 463, + 536 + ], + "score": 0.747 + }, + { + "category_id": 8, + "poly": [ + 467, + 443, + 791, + 443, + 791, + 534, + 467, + 534 + ], + "score": 0.142 + }, + { + "category_id": 8, + "poly": [ + 465, + 268, + 1228, + 268, + 1228, + 415, + 465, + 415 + ], + "score": 0.115 + }, + { + "category_id": 13, + "poly": [ + 297, + 1059, + 489, + 1059, + 489, + 1103, + 297, + 1103 + ], + "score": 0.92, + "latex": "\\overline { { \\mathbf { W } } } ^ { A + B ^ { T } } \\overline { { \\mathbf { W } } } ^ { A + B }" + }, + { + "category_id": 14, + "poly": [ + 310, + 1815, + 1402, + 1815, + 1402, + 1930, + 310, + 1930 + ], + "score": 0.92, + "latex": "\\begin{array}{c} \\overline { { \\mathbf { V } } } ^ { A B ^ { T } } \\overline { { \\mathbf { V } } } ^ { A B } \\overline { { \\mathbf { S } } } ^ { A B ^ { 2 } } = [ \\frac { \\overline { { \\mathbf { V } } } ^ { A ^ { T } } } { \\overline { { \\mathbf { V } } } ^ { B ^ { T } } } ] [ \\begin{array} { c } { \\overline { { \\mathbf { V } } } ^ { A } \\begin{array} { c } { \\overline { { \\mathbf { V } } } ^ { B } } \\end{array} } \\end{array} ] [ \\frac { \\overline { { \\mathbf { S } } } ^ { A ^ { 2 } } } { \\mathbf { 0 } } \\end{array} ] \\frac { \\mathbf { 0 } } { \\overline { { \\mathbf { S } } } ^ { B ^ { 2 } } } ] = [ \\begin{array} { c c } { \\mathbf { I } } & { \\mathbf { Q } } \\\\ { \\mathbf { Q } ^ { \\mathbf { T } } } & { \\mathbf { I } } \\end{array} ] [ \\frac { \\overline { { \\mathbf { S } } } ^ { A ^ { 2 } } } { \\mathbf { 0 } } \\begin{array} { c } { \\mathbf { [ \\begin{array} { c } { \\mathbf { 0 } } \\\\ { \\overline { { \\mathbf { S } } } ^ { B ^ { 2 } } } \\end{array} ] } \\overline { { \\mathbf { S } } } ^ { B ^ { 2 } } } \\end{array} ]" + }, + { + "category_id": 13, + "poly": [ + 765, + 904, + 940, + 904, + 940, + 953, + 765, + 953 + ], + "score": 0.92, + "latex": "\\mathbf { \\overline { { Q } } } = \\mathbf { \\overline { { V } } } ^ { A ^ { T } } \\mathbf { \\overline { { V } } } ^ { B }" + }, + { + "category_id": 14, + "poly": [ + 639, + 1687, + 1056, + 1687, + 1056, + 1740, + 639, + 1740 + ], + "score": 0.92, + "latex": "\\operatorname { r a n k } { \\overline { { \\mathbf { V } } } } ^ { A B } { \\overline { { \\mathbf { S } } } } ^ { A B ^ { 2 } } { \\overline { { \\mathbf { V } } } } ^ { A B ^ { T } } = \\operatorname { r a n k } { \\overline { { \\mathbf { V } } } } ^ { A B } ." + }, + { + "category_id": 13, + "poly": [ + 420, + 912, + 466, + 912, + 466, + 955, + 420, + 955 + ], + "score": 0.91, + "latex": "\\overline { { N } } _ { 2 } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 548, + 1381, + 753, + 1381, + 753, + 1426, + 548, + 1426 + ], + "score": 0.91, + "latex": "\\overline { { { \\bf { V } } } } ^ { A B } \\overline { { { \\bf { S } } } } ^ { A B ^ { 2 } } \\overline { { { \\bf { V } } } } ^ { A B ^ { T } }" + }, + { + "category_id": 13, + "poly": [ + 1310, + 1063, + 1398, + 1063, + 1398, + 1102, + 1310, + 1102 + ], + "score": 0.91, + "latex": "\\overline { { \\mathbf { W } } } ^ { A + B }" + }, + { + "category_id": 13, + "poly": [ + 510, + 912, + 558, + 912, + 558, + 955, + 510, + 955 + ], + "score": 0.91, + "latex": "\\overline { { N } } _ { 2 } ^ { B }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1986, + 503, + 1986, + 503, + 2031, + 296, + 2031 + ], + "score": 0.91, + "latex": "\\overline { { { \\bf { V } } } } ^ { A B } \\overline { { { \\bf { S } } } } ^ { A B ^ { 2 } } \\overline { { { \\bf { V } } } } ^ { A \\bar { B } ^ { T } }" + }, + { + "category_id": 13, + "poly": [ + 494, + 849, + 540, + 849, + 540, + 887, + 494, + 887 + ], + "score": 0.91, + "latex": "\\overline { { \\mathbf { V } } } ^ { B }" + }, + { + "category_id": 13, + "poly": [ + 1092, + 1018, + 1179, + 1018, + 1179, + 1056, + 1092, + 1056 + ], + "score": 0.91, + "latex": "\\overline { { \\mathbf { W } } } ^ { A + B }" + }, + { + "category_id": 14, + "poly": [ + 625, + 1327, + 1077, + 1327, + 1077, + 1376, + 625, + 1376 + ], + "score": 0.91, + "latex": "\\mathbf { \\overline { { { V } } } } ^ { A B ^ { T } } \\mathbf { \\overline { { { V } } } } ^ { A B } \\mathbf { \\overline { { { S } } } } ^ { A B ^ { 2 } } \\mathbf { \\overline { { { V } } } } ^ { A B ^ { T } } { \\vec { c } } = \\lambda \\mathbf { \\overline { { { V } } } } ^ { A B ^ { T } } { \\vec { c } }" + }, + { + "category_id": 14, + "poly": [ + 703, + 1231, + 999, + 1231, + 999, + 1283, + 703, + 1283 + ], + "score": 0.91, + "latex": "\\overline { { { \\bf V } } } ^ { A B } \\overline { { { \\bf S } } } ^ { A B ^ { 2 } } \\overline { { { \\bf V } } } ^ { A B ^ { T } } \\vec { c } = \\lambda \\vec { c }" + }, + { + "category_id": 13, + "poly": [ + 496, + 1506, + 564, + 1506, + 564, + 1549, + 496, + 1549 + ], + "score": 0.91, + "latex": "\\overline { { \\mathbf { S } } } ^ { A B ^ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 505, + 1018, + 592, + 1018, + 592, + 1056, + 505, + 1056 + ], + "score": 0.9, + "latex": "\\overline { { \\mathbf { W } } } ^ { A + B }" + }, + { + "category_id": 14, + "poly": [ + 419, + 1124, + 1279, + 1124, + 1279, + 1176, + 419, + 1176 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\overline { { \\mathbf { W } } } ^ { A + B ^ { T } } \\overline { { \\mathbf { W } } } ^ { A + B } = \\overline { { \\mathbf { V } } } ^ { A B } \\overline { { \\mathbf { S } } } ^ { A B } \\overline { { \\mathbf { U } } } ^ { A B ^ { T } } \\overline { { \\mathbf { U } } } ^ { A B } \\overline { { \\mathbf { S } } } ^ { A B } \\overline { { \\mathbf { V } } } ^ { A B ^ { T } } = \\overline { { \\mathbf { V } } } ^ { A B } \\overline { { \\mathbf { S } } } ^ { A B ^ { 2 } } \\overline { { \\mathbf { V } } } ^ { A B ^ { T } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 753, + 1427, + 815, + 1427, + 815, + 1466, + 753, + 1466 + ], + "score": 0.9, + "latex": "\\overline { { \\mathbf { V } } } ^ { A B }" + }, + { + "category_id": 13, + "poly": [ + 449, + 1627, + 517, + 1627, + 517, + 1671, + 449, + 1671 + ], + "score": 0.9, + "latex": "\\overline { { \\mathbf { S } } } ^ { A B ^ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 1025, + 1381, + 1232, + 1381, + 1232, + 1427, + 1025, + 1427 + ], + "score": 0.9, + "latex": "\\overline { { { \\bf V } } } ^ { A B ^ { T } } \\overline { { { \\bf V } } } ^ { A B } \\overline { { { \\bf S } } } ^ { A B ^ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 613, + 689, + 677, + 689, + 677, + 728, + 613, + 728 + ], + "score": 0.89, + "latex": "\\overline { { \\mathbf { U } } } ^ { A B }" + }, + { + "category_id": 14, + "poly": [ + 547, + 574, + 1148, + 574, + 1148, + 685, + 547, + 685 + ], + "score": 0.89, + "latex": "\\mathbf { \\overline { { W } } } ^ { A + B } = [ \\frac { \\mathbf { \\overline { { U } } } ^ { A } } { \\mathbf { 0 } } | \\begin{array} { c } { \\mathbf { 0 } } \\\\ { \\mathbf { \\overline { { U } } } ^ { B } } \\end{array} ] [ \\frac { \\mathbf { \\overline { { S } } } ^ { A } } { \\mathbf { 0 } } | \\begin{array} { c } { \\mathbf { 0 } } \\\\ { \\mathbf { \\overline { { S } } } ^ { B } } \\end{array} ] [ \\frac { \\mathbf { \\overline { { V } } } ^ { A ^ { T } } } { \\mathbf { \\overline { { V } } } ^ { B ^ { T } } } ] " + }, + { + "category_id": 13, + "poly": [ + 1306, + 731, + 1353, + 731, + 1353, + 768, + 1306, + 768 + ], + "score": 0.89, + "latex": "\\overline { { \\mathbf { U } } } ^ { A }" + }, + { + "category_id": 14, + "poly": [ + 528, + 1564, + 1168, + 1564, + 1168, + 1615, + 528, + 1615 + ], + "score": 0.89, + "latex": "\\mathrm { r a n k } \\overline { { { \\mathbf { V } } } } ^ { A B ^ { T } } \\overline { { { \\mathbf { V } } } } ^ { A B } \\overline { { { \\mathbf { S } } } } ^ { A B ^ { 2 } } = \\mathrm { r a n k } \\overline { { { \\mathbf { V } } } } ^ { A B ^ { T } } \\overline { { { \\mathbf { V } } } } ^ { A B } = \\mathrm { r a n k } \\overline { { { \\mathbf { V } } } } ^ { A B } ." + }, + { + "category_id": 13, + "poly": [ + 598, + 730, + 661, + 730, + 661, + 768, + 598, + 768 + ], + "score": 0.89, + "latex": "\\overline { { \\mathbf { U } } } ^ { A B }" + }, + { + "category_id": 13, + "poly": [ + 842, + 954, + 883, + 954, + 883, + 986, + 842, + 986 + ], + "score": 0.88, + "latex": "\\overline { { N } } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 398, + 850, + 443, + 850, + 443, + 887, + 398, + 887 + ], + "score": 0.88, + "latex": "\\overline { { \\mathbf { V } } } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 296, + 769, + 343, + 769, + 343, + 807, + 296, + 807 + ], + "score": 0.88, + "latex": "\\overline { { \\mathbf { U } } } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 1286, + 1466, + 1349, + 1466, + 1349, + 1505, + 1286, + 1505 + ], + "score": 0.87, + "latex": "\\overline { { \\mathbf { V } } } ^ { A B }" + }, + { + "category_id": 13, + "poly": [ + 555, + 1991, + 599, + 1991, + 599, + 2031, + 555, + 2031 + ], + "score": 0.87, + "latex": "\\overline { { \\mathbf { V } } } ^ { A }" + }, + { + "category_id": 14, + "poly": [ + 463, + 270, + 1234, + 270, + 1234, + 537, + 463, + 537 + ], + "score": 0.86, + "latex": "\\begin{array} { l l } { { { \\overline { { { \\cal { \\bf { U } } } } } } ^ { A B } = \\begin{array} { c } { { { \\overline { { { \\cal { N } } } } } _ { 3 } } } \\\\ { { { \\overline { { { \\cal { N } } } } } _ { 3 } } } \\\\ { { { \\overline { { { \\cal { N } } } } } _ { 3 } } } \\end{array} } } & { { { \\overline { { { \\cal { N } } } } } _ { 3 } ^ { A } \\begin{array} { c } { { { \\overline { { { \\cal { N } } } } } _ { 2 } ^ { B } } } \\\\ { { \\left| \\begin{array} { c } { { { \\bf { \\overline { { { \\bf { U } } } } } } ^ { A } } } \\end{array} \\right| } } } \\\\ { { { \\overline { { { \\bf { U } } } } } ^ { B } } } \\end{array} } & { { { \\overline { { { \\bf { S } } } } } ^ { A B } = \\begin{array} { c } { { { \\overline { { { \\cal { N } } } } } _ { 2 } ^ { A } } } \\\\ { { { \\overline { { { \\cal { N } } } } } _ { 2 } ^ { B } } } \\end{array} } } \\\\ { { { \\overline { { { \\cal { N } } } } } _ { 2 } ^ { A B } = \\begin{array} { c } { { { \\overline { { { \\cal { N } } } } } _ { 3 } ^ { A } } } \\end{array} } } & { { { \\overline { { { \\bf { U } } } } } _ { 2 } ^ { B } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 473, + 986, + 502, + 986, + 502, + 1020, + 473, + 1020 + ], + "score": 0.85, + "latex": "\\overline { { \\mathbf { Q } } }" + }, + { + "category_id": 13, + "poly": [ + 382, + 1188, + 398, + 1188, + 398, + 1213, + 382, + 1213 + ], + "score": 0.84, + "latex": "\\vec { c }" + }, + { + "category_id": 13, + "poly": [ + 1332, + 702, + 1357, + 702, + 1357, + 728, + 1332, + 728 + ], + "score": 0.84, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 296, + 810, + 342, + 810, + 342, + 848, + 296, + 848 + ], + "score": 0.82, + "latex": "\\overline { { \\mathbf { U } } } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 395, + 809, + 441, + 809, + 441, + 848, + 395, + 848 + ], + "score": 0.79, + "latex": "\\overline { { \\mathbf { U } } } ^ { B }" + }, + { + "category_id": 13, + "poly": [ + 1197, + 702, + 1221, + 702, + 1221, + 728, + 1197, + 728 + ], + "score": 0.78, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1373, + 918, + 1402, + 918, + 1402, + 950, + 1373, + 950 + ], + "score": 0.77, + "latex": "\\overline { { \\mathbf { V } } }" + }, + { + "category_id": 14, + "poly": [ + 899, + 270, + 1230, + 270, + 1230, + 414, + 899, + 414 + ], + "score": 0.58, + "latex": "\\begin{array} { r } { \\overline { { \\mathbf { S } } } ^ { A B } = \\begin{array} { l } { \\overline { { N } } _ { 2 } ^ { A } } \\\\ { \\overline { { N } } _ { 2 } ^ { A } } \\\\ { \\overline { { N } } _ { 2 } ^ { B } } \\end{array} \\left[ \\frac { \\overline { { \\mathbf { S } } } ^ { A } } { { \\mathbf { 0 } } } \\begin{array} { l } { \\overline { { N } } _ { 2 } ^ { B } } \\\\ { \\overline { { \\mathbf { S } } } ^ { A } } \\end{array} \\right] } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 695.0, + 1196.0, + 695.0, + 1196.0, + 737.0, + 678.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 695.0, + 1331.0, + 695.0, + 1331.0, + 737.0, + 1222.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1358.0, + 695.0, + 1407.0, + 695.0, + 1407.0, + 737.0, + 1358.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 734.0, + 1305.0, + 734.0, + 1305.0, + 773.0, + 662.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 734.0, + 1406.0, + 734.0, + 1406.0, + 773.0, + 1354.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 764.0, + 295.0, + 764.0, + 295.0, + 823.0, + 291.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 764.0, + 1410.0, + 764.0, + 1410.0, + 823.0, + 344.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 789.0, + 295.0, + 789.0, + 295.0, + 869.0, + 285.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 789.0, + 394.0, + 789.0, + 394.0, + 869.0, + 343.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 789.0, + 1415.0, + 789.0, + 1415.0, + 869.0, + 442.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 834.0, + 397.0, + 834.0, + 397.0, + 902.0, + 286.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 834.0, + 493.0, + 834.0, + 493.0, + 902.0, + 444.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 834.0, + 821.0, + 834.0, + 821.0, + 902.0, + 541.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.25, + 682.0, + 691.25, + 682.0, + 691.25, + 745.0, + 287.25, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.75, + 725.0, + 674.75, + 725.0, + 674.75, + 781.5, + 287.75, + 781.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 899.0, + 419.0, + 899.0, + 419.0, + 961.0, + 285.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 899.0, + 509.0, + 899.0, + 509.0, + 961.0, + 467.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 899.0, + 764.0, + 899.0, + 764.0, + 961.0, + 559.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 899.0, + 1372.0, + 899.0, + 1372.0, + 961.0, + 941.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 899.0, + 1413.0, + 899.0, + 1413.0, + 961.0, + 1403.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 951.0, + 841.0, + 951.0, + 841.0, + 989.0, + 293.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 951.0, + 1406.0, + 951.0, + 1406.0, + 989.0, + 884.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 985.0, + 472.0, + 985.0, + 472.0, + 1024.0, + 294.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 985.0, + 1406.0, + 985.0, + 1406.0, + 1024.0, + 503.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1028.0, + 1406.0, + 1028.0, + 1406.0, + 1061.0, + 1180.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1098.0, + 362.0, + 1098.0, + 362.0, + 1137.0, + 292.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1012.0, + 607.0, + 1012.0, + 607.0, + 1068.5, + 286.0, + 1068.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1007.5, + 1196.0, + 1007.5, + 1196.0, + 1071.5, + 574.0, + 1071.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.75, + 1052.5, + 417.75, + 1052.5, + 417.75, + 1104.0, + 281.75, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1052.5, + 506.0, + 1052.5, + 506.0, + 1104.0, + 388.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1055.5, + 1414.0, + 1055.5, + 1414.0, + 1119.5, + 473.0, + 1119.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1371.0, + 1408.0, + 1371.0, + 1408.0, + 1435.0, + 1233.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1418.0, + 752.0, + 1418.0, + 752.0, + 1478.0, + 285.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 1418.0, + 1414.0, + 1418.0, + 1414.0, + 1478.0, + 816.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1467.0, + 1285.0, + 1467.0, + 1285.0, + 1511.0, + 290.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 1467.0, + 1410.0, + 1467.0, + 1410.0, + 1511.0, + 1350.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1519.0, + 984.0, + 1519.0, + 984.0, + 1554.0, + 565.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 1375.5, + 763.0, + 1375.5, + 763.0, + 1414.5, + 679.0, + 1414.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 1375.5, + 696.0, + 1375.5, + 696.0, + 1441.5, + 282.0, + 1441.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.25, + 1379.0, + 1121.25, + 1379.0, + 1121.25, + 1437.5, + 744.25, + 1437.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 1502.0, + 584.0, + 1502.0, + 584.0, + 1566.0, + 282.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1956.0, + 1405.0, + 1956.0, + 1405.0, + 1988.0, + 295.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 1991.0, + 554.0, + 1991.0, + 554.0, + 2041.0, + 504.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1991.0, + 1362.0, + 1991.0, + 1362.0, + 2041.0, + 600.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.75, + 1978.5, + 447.75, + 1978.5, + 447.75, + 2041.0, + 283.75, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1979.0, + 521.0, + 1979.0, + 521.0, + 2025.5, + 407.0, + 2025.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1768.0, + 1185.0, + 1768.0, + 1185.0, + 1811.0, + 293.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1296.0, + 492.0, + 1296.0, + 492.0, + 1336.0, + 294.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1184.0, + 381.0, + 1184.0, + 381.0, + 1221.0, + 296.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 1184.0, + 755.0, + 1184.0, + 755.0, + 1221.0, + 399.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1642.0, + 770.0, + 1642.0, + 770.0, + 1675.0, + 518.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 1620.0, + 542.0, + 1620.0, + 542.0, + 1689.0, + 279.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 499.0, + 225.0, + 499.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 986, + 1405, + 986, + 1405, + 1425, + 296, + 1425 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 298, + 783, + 1405, + 783, + 1405, + 877, + 298, + 877 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1941, + 1404, + 1941, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 675, + 348, + 1019, + 348, + 1019, + 458, + 675, + 458 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1405, + 228, + 1405, + 324, + 297, + 324 + ], + "score": 0.961 + }, + { + "category_id": 3, + "poly": [ + 645, + 1479, + 1054, + 1479, + 1054, + 1685, + 645, + 1685 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 778, + 521, + 922, + 521, + 922, + 600, + 778, + 600 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 780, + 682, + 918, + 682, + 918, + 760, + 780, + 760 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 296, + 483, + 416, + 483, + 416, + 514, + 296, + 514 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 300, + 623, + 785, + 623, + 785, + 657, + 300, + 657 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 816, + 74, + 816, + 105, + 298, + 105 + ], + "score": 0.912 + }, + { + "category_id": 4, + "poly": [ + 293, + 1725, + 1402, + 1725, + 1402, + 1791, + 293, + 1791 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 298, + 1866, + 919, + 1866, + 919, + 1900, + 298, + 1900 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 300, + 927, + 812, + 927, + 812, + 958, + 300, + 958 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.86 + }, + { + "category_id": 14, + "poly": [ + 670, + 346, + 1025, + 346, + 1025, + 459, + 670, + 459 + ], + "score": 0.94, + "latex": "\\left[ \\begin{array} { l l } { \\mathbf { I } } & { \\mathbf { Q } } \\\\ { \\mathbf { Q } ^ { \\mathbf { T } } } & { \\mathbf { I } } \\end{array} \\right] \\left[ \\frac { \\mathbf { \\overline { { S } } } ^ { A ^ { 2 } } \\mathbf { \\Phi } } { \\mathbf { 0 } } \\right] \\mathbf { \\overline { { S } } } ^ { B ^ { 2 } } \\mathbf { \\Phi } ]" + }, + { + "category_id": 13, + "poly": [ + 488, + 623, + 589, + 623, + 589, + 657, + 488, + 657 + ], + "score": 0.93, + "latex": "s \\sqrt { 1 \\pm q }" + }, + { + "category_id": 14, + "poly": [ + 777, + 680, + 921, + 680, + 921, + 760, + 777, + 760 + ], + "score": 0.93, + "latex": "\\left[ \\begin{array} { c c } { 1 } & { 1 } \\\\ { 1 } & { - 1 } \\end{array} \\right]" + }, + { + "category_id": 14, + "poly": [ + 773, + 520, + 925, + 520, + 925, + 599, + 773, + 599 + ], + "score": 0.91, + "latex": "\\left[ \\begin{array} { l l } { 1 } & { q } \\\\ { q } & { 1 } \\end{array} \\right] \\overline { { s } } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 755, + 1170, + 822, + 1170, + 822, + 1202, + 755, + 1202 + ], + "score": 0.91, + "latex": "q = 1" + }, + { + "category_id": 13, + "poly": [ + 931, + 1025, + 976, + 1025, + 976, + 1060, + 931, + 1060 + ], + "score": 0.9, + "latex": "\\overline { { \\mathbf { Y } } } _ { A }" + }, + { + "category_id": 13, + "poly": [ + 736, + 1726, + 818, + 1726, + 818, + 1757, + 736, + 1757 + ], + "score": 0.9, + "latex": "\\mathcal { T } ^ { A B }" + }, + { + "category_id": 13, + "poly": [ + 406, + 1059, + 469, + 1059, + 469, + 1098, + 406, + 1098 + ], + "score": 0.9, + "latex": "\\mathbf { \\overline { { V } } } ^ { A B }" + }, + { + "category_id": 13, + "poly": [ + 328, + 1198, + 390, + 1198, + 390, + 1238, + 328, + 1238 + ], + "score": 0.9, + "latex": "\\overline { { \\mathbf { V } } } ^ { A B }" + }, + { + "category_id": 13, + "poly": [ + 583, + 293, + 741, + 293, + 741, + 323, + 583, + 323 + ], + "score": 0.9, + "latex": "\\mathit { \\Pi } _ { \\overline { { { s } } } _ { A } } ^ { \\prime } = \\mathit { \\Pi } _ { \\overline { { { s } } } _ { B } } ^ { \\prime } = \\mathit { \\Pi } _ { \\overline { { { s } } } } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1044, + 1019, + 1090, + 1019, + 1090, + 1058, + 1044, + 1058 + ], + "score": 0.9, + "latex": "\\overline { { \\mathbf { V } } } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 642, + 1132, + 710, + 1132, + 710, + 1161, + 642, + 1161 + ], + "score": 0.89, + "latex": "q > 0" + }, + { + "category_id": 13, + "poly": [ + 1125, + 1019, + 1188, + 1019, + 1188, + 1058, + 1125, + 1058 + ], + "score": 0.89, + "latex": "\\overline { { \\mathbf { V } } } ^ { A B }" + }, + { + "category_id": 13, + "poly": [ + 629, + 1162, + 675, + 1162, + 675, + 1198, + 629, + 1198 + ], + "score": 0.88, + "latex": "\\overline { { \\mathbf { V } } } ^ { A }" + }, + { + "category_id": 13, + "poly": [ + 1180, + 1133, + 1214, + 1133, + 1214, + 1162, + 1180, + 1162 + ], + "score": 0.84, + "latex": "{ \\overline { { s } } } _ { A }" + }, + { + "category_id": 13, + "poly": [ + 684, + 819, + 702, + 819, + 702, + 846, + 684, + 846 + ], + "score": 0.8, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1375, + 1332, + 1401, + 1332, + 1401, + 1359, + 1375, + 1359 + ], + "score": 0.76, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 692, + 1363, + 716, + 1363, + 716, + 1390, + 692, + 1390 + ], + "score": 0.57, + "latex": "A" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1480.0, + 814.0, + 1480.0, + 814.0, + 1507.0, + 647.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1507.0, + 799.0, + 1507.0, + 799.0, + 1538.0, + 646.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1524.0, + 1055.0, + 1524.0, + 1055.0, + 1554.0, + 916.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1538.0, + 756.0, + 1538.0, + 756.0, + 1566.0, + 646.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1552.0, + 1041.0, + 1552.0, + 1041.0, + 1583.0, + 916.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1581.0, + 1029.0, + 1581.0, + 1029.0, + 1611.0, + 915.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1634.0, + 812.0, + 1634.0, + 812.0, + 1641.0, + 804.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.75, + 1571.5, + 820.75, + 1571.5, + 820.75, + 1607.0, + 724.75, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1647.0, + 807.0, + 1647.0, + 807.0, + 1676.0, + 745.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1719.0, + 735.0, + 1719.0, + 735.0, + 1767.0, + 291.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 1719.0, + 1408.0, + 1719.0, + 1408.0, + 1767.0, + 819.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1757.0, + 656.0, + 1757.0, + 656.0, + 1793.0, + 295.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1862.0, + 920.0, + 1862.0, + 920.0, + 1905.0, + 293.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 927.0, + 816.0, + 927.0, + 816.0, + 962.0, + 295.0, + 962.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, + 987.0, + 1406.0, + 987.0, + 1406.0, + 1024.0, + 294.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1011.0, + 930.0, + 1011.0, + 930.0, + 1071.0, + 286.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1011.0, + 1043.0, + 1011.0, + 1043.0, + 1071.0, + 977.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1011.0, + 1124.0, + 1011.0, + 1124.0, + 1071.0, + 1091.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 1011.0, + 1412.0, + 1011.0, + 1412.0, + 1071.0, + 1189.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1060.0, + 1407.0, + 1060.0, + 1407.0, + 1107.0, + 470.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1097.0, + 1405.0, + 1097.0, + 1405.0, + 1136.0, + 293.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1129.0, + 641.0, + 1129.0, + 641.0, + 1165.0, + 295.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1129.0, + 1179.0, + 1129.0, + 1179.0, + 1165.0, + 711.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 1129.0, + 1405.0, + 1129.0, + 1405.0, + 1165.0, + 1215.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1160.0, + 628.0, + 1160.0, + 628.0, + 1208.0, + 291.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1160.0, + 754.0, + 1160.0, + 754.0, + 1208.0, + 676.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1160.0, + 1408.0, + 1160.0, + 1408.0, + 1208.0, + 823.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1205.0, + 327.0, + 1205.0, + 327.0, + 1239.0, + 290.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1203.0, + 1406.0, + 1203.0, + 1406.0, + 1247.0, + 391.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1239.0, + 1406.0, + 1239.0, + 1406.0, + 1275.0, + 294.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1269.0, + 1407.0, + 1269.0, + 1407.0, + 1304.0, + 294.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1299.0, + 1405.0, + 1299.0, + 1405.0, + 1336.0, + 294.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1331.0, + 1374.0, + 1331.0, + 1374.0, + 1365.0, + 294.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1331.0, + 1405.0, + 1331.0, + 1405.0, + 1365.0, + 1402.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1362.0, + 691.0, + 1362.0, + 691.0, + 1395.0, + 295.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 1362.0, + 1406.0, + 1362.0, + 1406.0, + 1395.0, + 717.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1393.0, + 922.0, + 1393.0, + 922.0, + 1424.0, + 295.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1057.0, + 479.0, + 1057.0, + 479.0, + 1103.5, + 289.0, + 1103.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1199.5, + 392.0, + 1199.5, + 392.0, + 1223.5, + 347.0, + 1223.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 783.0, + 1405.0, + 783.0, + 1405.0, + 817.0, + 296.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 812.0, + 683.0, + 812.0, + 683.0, + 852.0, + 292.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 812.0, + 1405.0, + 812.0, + 1405.0, + 852.0, + 703.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 845.0, + 1092.0, + 845.0, + 1092.0, + 877.0, + 294.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1939.0, + 1405.0, + 1939.0, + 1405.0, + 1979.0, + 292.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 468.0, + 2003.0, + 468.0, + 2035.0, + 294.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1403.0, + 228.0, + 1403.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 263.0, + 1405.0, + 263.0, + 1405.0, + 296.0, + 294.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 293.0, + 582.0, + 293.0, + 582.0, + 324.0, + 296.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 293.0, + 877.0, + 293.0, + 877.0, + 324.0, + 742.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 481.0, + 418.0, + 481.0, + 418.0, + 515.0, + 294.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 621.0, + 487.0, + 621.0, + 487.0, + 661.0, + 296.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 621.0, + 784.0, + 621.0, + 784.0, + 661.0, + 590.0, + 661.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1745, + 1406, + 1745, + 1406, + 1932, + 296, + 1932 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 887, + 1404, + 887, + 1404, + 1045, + 296, + 1045 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 302, + 1080, + 1378, + 1080, + 1378, + 1352, + 302, + 1352 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 300, + 781, + 1402, + 781, + 1402, + 875, + 300, + 875 + ], + "score": 0.962 + }, + { + "category_id": 3, + "poly": [ + 628, + 228, + 1063, + 228, + 1063, + 551, + 628, + 551 + ], + "score": 0.959 + }, + { + "category_id": 4, + "poly": [ + 294, + 1385, + 1407, + 1385, + 1407, + 1609, + 294, + 1609 + ], + "score": 0.959 + }, + { + "category_id": 4, + "poly": [ + 294, + 581, + 1401, + 581, + 1401, + 645, + 294, + 645 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 610, + 1999, + 1087, + 1999, + 1087, + 2038, + 610, + 2038 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 295, + 1945, + 1197, + 1945, + 1197, + 1979, + 295, + 1979 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 297, + 1675, + 1046, + 1675, + 1046, + 1711, + 297, + 1711 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 298, + 712, + 1234, + 712, + 1234, + 746, + 298, + 746 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 104, + 299, + 104 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1352, + 2003, + 1400, + 2003, + 1400, + 2033, + 1352, + 2033 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.868 + }, + { + "category_id": 13, + "poly": [ + 524, + 952, + 634, + 952, + 634, + 982, + 524, + 982 + ], + "score": 0.93, + "latex": "N _ { 2 } = N _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 593, + 1387, + 798, + 1387, + 798, + 1423, + 593, + 1423 + ], + "score": 0.92, + "latex": "\\mathcal { T } ^ { A B } ( \\overline { { s } } _ { A } , \\overline { { s } } _ { B } , q )" + }, + { + "category_id": 13, + "poly": [ + 494, + 1422, + 703, + 1422, + 703, + 1455, + 494, + 1455 + ], + "score": 0.92, + "latex": "\\overline { { s } } _ { A } = 0 . 8 4 = \\sqrt [ 4 ] { A }" + }, + { + "category_id": 13, + "poly": [ + 907, + 1839, + 1091, + 1839, + 1091, + 1869, + 907, + 1869 + ], + "score": 0.91, + "latex": "N _ { 1 } = N _ { 2 } = N _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 751, + 1516, + 866, + 1516, + 866, + 1546, + 751, + 1546 + ], + "score": 0.91, + "latex": "\\overline { { s } } _ { A } = 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 1167, + 1456, + 1258, + 1456, + 1258, + 1486, + 1167, + 1486 + ], + "score": 0.91, + "latex": "{ \\overline { { s } } } _ { A } = 3" + }, + { + "category_id": 14, + "poly": [ + 609, + 1997, + 1091, + 1997, + 1091, + 2036, + 609, + 2036 + ], + "score": 0.91, + "latex": "\\hat { \\mathbf { y } } ^ { \\mu } = \\overline { { \\mathbf { W } } } \\hat { \\mathbf { x } } ^ { \\mu } + \\mathbf { z } ^ { \\mu } \\qquad \\mathrm { f o r } \\quad \\mu = 1 , \\ldots , \\mathbf { P } ." + }, + { + "category_id": 13, + "poly": [ + 1054, + 1808, + 1151, + 1808, + 1151, + 1839, + 1054, + 1839 + ], + "score": 0.91, + "latex": "P \\neq N _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 735, + 1839, + 811, + 1839, + 811, + 1867, + 735, + 1867 + ], + "score": 0.89, + "latex": "A = 1" + }, + { + "category_id": 13, + "poly": [ + 1121, + 887, + 1216, + 887, + 1216, + 921, + 1121, + 921 + ], + "score": 0.89, + "latex": "\\overline { { N } } _ { 2 } = 4" + }, + { + "category_id": 13, + "poly": [ + 406, + 1426, + 440, + 1426, + 440, + 1455, + 406, + 1455 + ], + "score": 0.85, + "latex": "{ \\overline { { s } } } _ { A }" + }, + { + "category_id": 13, + "poly": [ + 672, + 1809, + 697, + 1809, + 697, + 1835, + 672, + 1835 + ], + "score": 0.84, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1089, + 1949, + 1113, + 1949, + 1113, + 1974, + 1089, + 1974 + ], + "score": 0.83, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 876, + 887, + 1110, + 887, + 1110, + 922, + 876, + 922 + ], + "score": 0.7, + "latex": "\\overline { { N } } _ { 1 } = 1 0 0 \\overline { { N } } _ { 3 } = 5 0" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1083.0, + 384.0, + 1083.0, + 384.0, + 1159.0, + 305.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1084.0, + 659.0, + 1084.0, + 659.0, + 1119.0, + 629.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1118.0, + 705.0, + 1118.0, + 705.0, + 1146.0, + 668.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1096.0, + 898.0, + 1096.0, + 898.0, + 1149.0, + 877.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 1083.0, + 1056.0, + 1083.0, + 1056.0, + 1131.0, + 972.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 1098.0, + 1259.0, + 1098.0, + 1259.0, + 1124.0, + 1245.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1101.0, + 1342.0, + 1101.0, + 1342.0, + 1150.0, + 1272.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1168.0, + 327.0, + 1168.0, + 327.0, + 1221.0, + 297.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 1181.0, + 469.0, + 1181.0, + 469.0, + 1198.0, + 455.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1170.0, + 566.0, + 1170.0, + 566.0, + 1193.0, + 552.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1168.0, + 657.0, + 1168.0, + 657.0, + 1222.0, + 627.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1180.0, + 705.0, + 1180.0, + 705.0, + 1208.0, + 668.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1166.0, + 895.0, + 1166.0, + 895.0, + 1181.0, + 880.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1168.0, + 985.0, + 1168.0, + 985.0, + 1221.0, + 961.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 1162.0, + 1054.0, + 1162.0, + 1054.0, + 1184.0, + 1034.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 1181.0, + 1220.0, + 1181.0, + 1220.0, + 1191.0, + 1210.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 1172.0, + 1260.0, + 1172.0, + 1260.0, + 1206.0, + 1243.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1313.0, + 1170.0, + 1341.0, + 1170.0, + 1341.0, + 1197.0, + 1313.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1188.0, + 724.0, + 1188.0, + 724.0, + 1199.0, + 713.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1201.0, + 383.0, + 1201.0, + 383.0, + 1228.0, + 339.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1204.0, + 435.0, + 1204.0, + 435.0, + 1221.0, + 425.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1204.0, + 499.0, + 1204.0, + 499.0, + 1216.0, + 490.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1203.0, + 725.0, + 1203.0, + 725.0, + 1213.0, + 714.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 1199.0, + 1112.0, + 1199.0, + 1112.0, + 1211.0, + 1102.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 1198.0, + 1147.0, + 1198.0, + 1147.0, + 1211.0, + 1139.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1193.0, + 1226.0, + 1193.0, + 1226.0, + 1241.0, + 1209.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1215.0, + 470.0, + 1215.0, + 470.0, + 1242.0, + 453.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1215.0, + 1150.0, + 1215.0, + 1150.0, + 1232.0, + 1135.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1215.0, + 1184.0, + 1215.0, + 1184.0, + 1225.0, + 1174.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1241.0, + 404.0, + 1241.0, + 404.0, + 1265.0, + 390.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1221.0, + 438.0, + 1221.0, + 438.0, + 1252.0, + 421.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 1242.0, + 704.0, + 1242.0, + 704.0, + 1269.0, + 665.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 1220.0, + 1112.0, + 1220.0, + 1112.0, + 1252.0, + 1102.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 1239.0, + 1147.0, + 1239.0, + 1147.0, + 1252.0, + 1138.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1235.0, + 1185.0, + 1235.0, + 1185.0, + 1247.0, + 1173.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 1220.0, + 1341.0, + 1220.0, + 1341.0, + 1252.0, + 1307.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1269.0, + 383.0, + 1269.0, + 383.0, + 1296.0, + 335.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1262.0, + 405.0, + 1262.0, + 405.0, + 1296.0, + 389.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1250.0, + 724.0, + 1250.0, + 724.0, + 1265.0, + 715.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 1260.0, + 1112.0, + 1260.0, + 1112.0, + 1270.0, + 1102.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1252.0, + 1152.0, + 1252.0, + 1152.0, + 1290.0, + 1134.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1261.0, + 1377.0, + 1261.0, + 1377.0, + 1287.0, + 1282.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1281.0, + 724.0, + 1281.0, + 724.0, + 1296.0, + 714.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1304.0, + 415.0, + 1304.0, + 415.0, + 1332.0, + 379.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 1304.0, + 496.0, + 1304.0, + 496.0, + 1334.0, + 460.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1304.0, + 577.0, + 1304.0, + 577.0, + 1332.0, + 542.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1304.0, + 737.0, + 1304.0, + 737.0, + 1334.0, + 700.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1304.0, + 822.0, + 1304.0, + 822.0, + 1334.0, + 785.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1304.0, + 906.0, + 1304.0, + 906.0, + 1332.0, + 872.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 1304.0, + 1087.0, + 1304.0, + 1087.0, + 1334.0, + 1052.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1304.0, + 1179.0, + 1304.0, + 1179.0, + 1334.0, + 1143.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1306.0, + 1270.0, + 1306.0, + 1270.0, + 1331.0, + 1237.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1327.0, + 491.0, + 1327.0, + 491.0, + 1356.0, + 466.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1327.0, + 817.0, + 1327.0, + 817.0, + 1356.0, + 791.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1327.0, + 1174.0, + 1327.0, + 1174.0, + 1356.0, + 1149.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1191.5, + 829.0, + 1191.5, + 829.0, + 1221.5, + 818.0, + 1221.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1254.5, + 1058.0, + 1254.5, + 1058.0, + 1285.5, + 992.0, + 1285.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 231.0, + 661.0, + 231.0, + 661.0, + 273.0, + 631.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 237.0, + 701.0, + 237.0, + 701.0, + 263.0, + 682.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 265.0, + 674.0, + 265.0, + 674.0, + 445.0, + 629.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 266.0, + 735.0, + 266.0, + 735.0, + 272.0, + 730.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 289.0, + 702.0, + 289.0, + 702.0, + 314.0, + 676.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 291.0, + 737.0, + 291.0, + 737.0, + 300.0, + 727.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 303.0, + 759.0, + 303.0, + 759.0, + 316.0, + 748.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 319.0, + 1066.0, + 319.0, + 1066.0, + 352.0, + 960.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 341.0, + 701.0, + 341.0, + 701.0, + 367.0, + 678.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 344.0, + 737.0, + 344.0, + 737.0, + 352.0, + 727.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 337.0, + 1050.0, + 337.0, + 1050.0, + 376.0, + 960.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 394.0, + 701.0, + 394.0, + 701.0, + 420.0, + 676.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 370.0, + 737.0, + 370.0, + 737.0, + 405.0, + 727.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 393.0, + 958.0, + 393.0, + 958.0, + 405.0, + 944.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 373.0, + 1049.0, + 373.0, + 1049.0, + 426.0, + 960.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 422.0, + 737.0, + 422.0, + 737.0, + 431.0, + 727.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 446.0, + 700.0, + 446.0, + 700.0, + 468.0, + 678.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 447.0, + 738.0, + 447.0, + 738.0, + 460.0, + 727.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 472.0, + 738.0, + 472.0, + 738.0, + 488.0, + 727.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 486.0, + 760.0, + 486.0, + 760.0, + 527.0, + 702.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 487.0, + 925.0, + 487.0, + 925.0, + 512.0, + 897.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 520.0, + 845.0, + 520.0, + 845.0, + 554.0, + 783.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.75, + 317.0, + 735.75, + 317.0, + 735.75, + 325.5, + 727.75, + 325.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.25, + 372.5, + 797.25, + 372.5, + 797.25, + 379.5, + 791.25, + 379.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1381.0, + 592.0, + 1381.0, + 592.0, + 1427.0, + 292.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 1381.0, + 1410.0, + 1381.0, + 1410.0, + 1427.0, + 799.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1421.0, + 405.0, + 1421.0, + 405.0, + 1460.0, + 293.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1421.0, + 493.0, + 1421.0, + 493.0, + 1460.0, + 441.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1421.0, + 1406.0, + 1421.0, + 1406.0, + 1460.0, + 704.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1454.0, + 1166.0, + 1454.0, + 1166.0, + 1489.0, + 295.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1454.0, + 1405.0, + 1454.0, + 1405.0, + 1489.0, + 1259.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1487.0, + 1406.0, + 1487.0, + 1406.0, + 1519.0, + 295.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1513.0, + 750.0, + 1513.0, + 750.0, + 1550.0, + 293.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1513.0, + 1406.0, + 1513.0, + 1406.0, + 1550.0, + 867.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1543.0, + 1406.0, + 1543.0, + 1406.0, + 1584.0, + 292.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1577.0, + 445.0, + 1577.0, + 445.0, + 1610.0, + 295.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 578.0, + 1404.0, + 578.0, + 1404.0, + 617.0, + 294.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 612.0, + 940.0, + 612.0, + 940.0, + 646.0, + 294.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1669.0, + 1052.0, + 1669.0, + 1052.0, + 1717.0, + 293.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 708.0, + 1239.0, + 708.0, + 1239.0, + 752.0, + 292.0, + 752.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": [ + 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, + 1748.0, + 1402.0, + 1748.0, + 1402.0, + 1780.0, + 294.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1777.0, + 1406.0, + 1777.0, + 1406.0, + 1812.0, + 293.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1809.0, + 671.0, + 1809.0, + 671.0, + 1841.0, + 295.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1809.0, + 1053.0, + 1809.0, + 1053.0, + 1841.0, + 698.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1809.0, + 1404.0, + 1809.0, + 1404.0, + 1841.0, + 1152.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1837.0, + 734.0, + 1837.0, + 734.0, + 1873.0, + 294.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 1837.0, + 906.0, + 1837.0, + 906.0, + 1873.0, + 812.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 1837.0, + 1406.0, + 1837.0, + 1406.0, + 1873.0, + 1092.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1868.0, + 1406.0, + 1868.0, + 1406.0, + 1904.0, + 294.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1895.0, + 571.0, + 1895.0, + 571.0, + 1937.0, + 293.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 887.0, + 875.0, + 887.0, + 875.0, + 924.0, + 294.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 887.0, + 1120.0, + 887.0, + 1120.0, + 924.0, + 1111.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 887.0, + 1406.0, + 887.0, + 1406.0, + 924.0, + 1217.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 919.0, + 1401.0, + 919.0, + 1401.0, + 953.0, + 295.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 949.0, + 523.0, + 949.0, + 523.0, + 988.0, + 293.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 949.0, + 1405.0, + 949.0, + 1405.0, + 988.0, + 635.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 975.0, + 1404.0, + 975.0, + 1404.0, + 1021.0, + 293.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1009.0, + 1111.0, + 1009.0, + 1111.0, + 1049.0, + 293.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 781.0, + 1406.0, + 781.0, + 1406.0, + 818.0, + 295.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 815.0, + 1404.0, + 815.0, + 1404.0, + 845.0, + 296.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 844.0, + 826.0, + 844.0, + 826.0, + 876.0, + 294.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1944.0, + 1088.0, + 1944.0, + 1088.0, + 1984.0, + 294.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1944.0, + 1199.0, + 1944.0, + 1199.0, + 1984.0, + 1114.0, + 1984.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1238, + 1406, + 1238, + 1406, + 1876, + 296, + 1876 + ], + "score": 0.983 + }, + { + "category_id": 3, + "poly": [ + 305, + 220, + 1367, + 220, + 1367, + 781, + 305, + 781 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 1966, + 1401, + 1966, + 1401, + 2035, + 300, + 2035 + ], + "score": 0.949 + }, + { + "category_id": 4, + "poly": [ + 295, + 812, + 1407, + 812, + 1407, + 1103, + 295, + 1103 + ], + "score": 0.937 + }, + { + "category_id": 8, + "poly": [ + 547, + 1191, + 1149, + 1191, + 1149, + 1230, + 547, + 1230 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 294, + 1152, + 1370, + 1152, + 1370, + 1185, + 294, + 1185 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 300, + 1910, + 708, + 1910, + 708, + 1943, + 300, + 1943 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.894 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1199, + 1399, + 1199, + 1399, + 1229, + 1352, + 1229 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.855 + }, + { + "category_id": 13, + "poly": [ + 706, + 875, + 804, + 875, + 804, + 916, + 706, + 916 + ], + "score": 0.94, + "latex": "\\sqrt { P / N _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 1084, + 1334, + 1167, + 1334, + 1167, + 1371, + 1084, + 1371 + ], + "score": 0.94, + "latex": "\\sigma _ { z } ^ { 2 } / \\overline { { N } } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1226, + 1508, + 1402, + 1508, + 1402, + 1546, + 1226, + 1546 + ], + "score": 0.93, + "latex": "\\Sigma ^ { 1 1 } = P / \\overline { { N } } _ { 1 } \\mathbf { I }" + }, + { + "category_id": 13, + "poly": [ + 517, + 1500, + 618, + 1500, + 618, + 1554, + 517, + 1554 + ], + "score": 0.93, + "latex": "\\sqrt { P / \\overline { { N } } _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 1087, + 1812, + 1266, + 1812, + 1266, + 1846, + 1087, + 1846 + ], + "score": 0.93, + "latex": "\\bar { \\mathcal { D } } \\equiv P / N _ { 1 } > \\mathrm { ~ \\bar { ~ } { ~ 1 ~ } ~ }" + }, + { + "category_id": 13, + "poly": [ + 1171, + 911, + 1322, + 911, + 1322, + 951, + 1171, + 951 + ], + "score": 0.92, + "latex": "\\mathrm { S N R } \\sqrt { P / N _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 887, + 1553, + 990, + 1553, + 990, + 1587, + 887, + 1587 + ], + "score": 0.92, + "latex": "P < \\overline { { N } } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 528, + 1587, + 652, + 1587, + 652, + 1621, + 528, + 1621 + ], + "score": 0.92, + "latex": "\\pmb { \\Sigma } ^ { 1 1 } = \\pmb { \\mathcal { P } } ^ { | | }" + }, + { + "category_id": 13, + "poly": [ + 372, + 916, + 475, + 916, + 475, + 948, + 372, + 948 + ], + "score": 0.92, + "latex": "P \\geq N _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 462, + 1723, + 550, + 1723, + 550, + 1752, + 462, + 1752 + ], + "score": 0.92, + "latex": "\\sigma _ { z } = 1" + }, + { + "category_id": 13, + "poly": [ + 331, + 1300, + 372, + 1300, + 372, + 1335, + 331, + 1335 + ], + "score": 0.91, + "latex": "\\overline { { N } } _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 1136, + 949, + 1239, + 949, + 1239, + 978, + 1136, + 978 + ], + "score": 0.91, + "latex": "P < N _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 412, + 1301, + 453, + 1301, + 453, + 1334, + 412, + 1334 + ], + "score": 0.91, + "latex": "\\overline { { N } } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 513, + 1464, + 617, + 1464, + 617, + 1499, + 513, + 1499 + ], + "score": 0.9, + "latex": "P > \\overline { { N } } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 878, + 1271, + 918, + 1271, + 918, + 1303, + 878, + 1303 + ], + "score": 0.9, + "latex": "\\overline { { N } } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 618, + 1238, + 659, + 1238, + 659, + 1273, + 618, + 1273 + ], + "score": 0.9, + "latex": "\\overline { { N } } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 958, + 1272, + 998, + 1272, + 998, + 1303, + 958, + 1303 + ], + "score": 0.9, + "latex": "\\overline { { N } } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1228, + 1302, + 1261, + 1302, + 1261, + 1337, + 1228, + 1337 + ], + "score": 0.9, + "latex": "z _ { i } ^ { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 646, + 1844, + 722, + 1844, + 722, + 1872, + 646, + 1872 + ], + "score": 0.9, + "latex": "\\mathcal { D } < 1" + }, + { + "category_id": 13, + "poly": [ + 767, + 1271, + 815, + 1271, + 815, + 1301, + 767, + 1301 + ], + "score": 0.89, + "latex": "\\dot { \\mathbf { \\Sigma } } ^ { 1 \\mathrm { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 738, + 1586, + 780, + 1586, + 780, + 1621, + 738, + 1621 + ], + "score": 0.89, + "latex": "\\mathcal { P } ^ { | | }" + }, + { + "category_id": 13, + "poly": [ + 1365, + 1690, + 1396, + 1690, + 1396, + 1725, + 1365, + 1725 + ], + "score": 0.89, + "latex": "\\sigma _ { z } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 614, + 1431, + 662, + 1431, + 662, + 1462, + 614, + 1462 + ], + "score": 0.89, + "latex": "\\pmb { \\Sigma } ^ { 1 1 }" + }, + { + "category_id": 13, + "poly": [ + 771, + 1069, + 1031, + 1069, + 1031, + 1100, + 771, + 1100 + ], + "score": 0.89, + "latex": "N _ { 1 } = N _ { 2 } = N _ { 3 } = 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 728, + 1999, + 1006, + 1999, + 1006, + 2033, + 728, + 2033 + ], + "score": 0.89, + "latex": "{ \\boldsymbol { \\Sigma } } ^ { 3 1 } = \\overline { { \\mathbf { W } } } \\hat { \\mathbf { X } } \\hat { \\mathbf { X } } ^ { T } + \\mathbf { Z } \\hat { \\mathbf { X } } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 1095, + 1373, + 1154, + 1373, + 1154, + 1406, + 1095, + 1406 + ], + "score": 0.89, + "latex": "O ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 906, + 1239, + 946, + 1239, + 946, + 1272, + 906, + 1272 + ], + "score": 0.89, + "latex": "\\overline { { N } } _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 1327, + 1272, + 1374, + 1272, + 1374, + 1300, + 1327, + 1300 + ], + "score": 0.88, + "latex": "\\pmb { \\Sigma } ^ { 3 1 }" + }, + { + "category_id": 13, + "poly": [ + 966, + 1967, + 1013, + 1967, + 1013, + 1996, + 966, + 1996 + ], + "score": 0.88, + "latex": "\\pmb { \\Sigma } ^ { 1 1 }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1274, + 608, + 1274, + 608, + 1301, + 577, + 1301 + ], + "score": 0.87, + "latex": "\\hat { \\mathbf { z } } ^ { \\mu }" + }, + { + "category_id": 14, + "poly": [ + 550, + 1190, + 1149, + 1190, + 1149, + 1229, + 550, + 1229 + ], + "score": 0.86, + "latex": "\\begin{array} { r } { \\pmb { \\Sigma } ^ { 1 1 } \\equiv \\hat { \\mathbf { X } } \\hat { \\mathbf { X } } ^ { T } \\qquad \\pmb { \\Sigma } ^ { 3 1 } \\equiv \\hat { \\mathbf { Y } } \\hat { \\mathbf { X } } ^ { T } = \\overline { { \\mathbf { W } } } \\hat { \\mathbf { X } } \\hat { \\mathbf { X } } ^ { T } + \\mathbf { Z } \\hat { \\mathbf { X } } ^ { T } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1111, + 1463, + 1139, + 1463, + 1139, + 1495, + 1111, + 1495 + ], + "score": 0.85, + "latex": "\\hat { \\bf X }" + }, + { + "category_id": 13, + "poly": [ + 1309, + 1551, + 1337, + 1551, + 1337, + 1585, + 1309, + 1585 + ], + "score": 0.85, + "latex": "\\hat { \\bf X }" + }, + { + "category_id": 13, + "poly": [ + 589, + 1970, + 668, + 1970, + 668, + 1999, + 589, + 1999 + ], + "score": 0.85, + "latex": "\\mathcal { D } > 1 \\vert" + }, + { + "category_id": 13, + "poly": [ + 988, + 1243, + 1013, + 1243, + 1013, + 1270, + 988, + 1270 + ], + "score": 0.82, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 668, + 1657, + 695, + 1657, + 695, + 1688, + 668, + 1688 + ], + "score": 0.81, + "latex": "\\hat { \\bf X }" + }, + { + "category_id": 13, + "poly": [ + 905, + 949, + 930, + 949, + 930, + 975, + 905, + 975 + ], + "score": 0.81, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 820, + 1242, + 844, + 1242, + 844, + 1270, + 820, + 1270 + ], + "score": 0.81, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 401, + 1621, + 429, + 1621, + 429, + 1655, + 401, + 1655 + ], + "score": 0.81, + "latex": "\\hat { \\mathbf X }" + }, + { + "category_id": 13, + "poly": [ + 781, + 1369, + 817, + 1369, + 817, + 1400, + 781, + 1400 + ], + "score": 0.81, + "latex": "\\overline { { \\mathbf { W } } }" + }, + { + "category_id": 13, + "poly": [ + 1312, + 1970, + 1336, + 1970, + 1336, + 1996, + 1312, + 1996 + ], + "score": 0.81, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 1144, + 1592, + 1170, + 1592, + 1170, + 1620, + 1144, + 1620 + ], + "score": 0.8, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1010, + 1784, + 1035, + 1784, + 1035, + 1810, + 1010, + 1810 + ], + "score": 0.79, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1041, + 1067, + 1136, + 1067, + 1136, + 1100, + 1041, + 1100 + ], + "score": 0.78, + "latex": "{ \\overline { { N } } } _ { 2 } ^ { - } = 1 ." + }, + { + "category_id": 13, + "poly": [ + 737, + 1238, + 778, + 1238, + 778, + 1273, + 737, + 1273 + ], + "score": 0.76, + "latex": "\\overline { { N } } _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 1059, + 816, + 1084, + 816, + 1084, + 842, + 1059, + 842 + ], + "score": 0.75, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 489, + 1242, + 512, + 1242, + 512, + 1270, + 489, + 1270 + ], + "score": 0.73, + "latex": "\\mathbf { Z }" + }, + { + "category_id": 13, + "poly": [ + 935, + 875, + 1032, + 875, + 1032, + 916, + 935, + 916 + ], + "score": 0.72, + "latex": "\\sqrt { P / N _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 483, + 1274, + 518, + 1274, + 518, + 1303, + 483, + 1303 + ], + "score": 0.7, + "latex": "{ \\hat { \\mathbf { y } } } ^ { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 376, + 1338, + 399, + 1338, + 399, + 1366, + 376, + 1366 + ], + "score": 0.7, + "latex": "\\mathbf { Z }" + }, + { + "category_id": 13, + "poly": [ + 1350, + 1248, + 1372, + 1248, + 1372, + 1272, + 1350, + 1272 + ], + "score": 0.68, + "latex": "\\mu ^ { \\mathrm { i } }" + }, + { + "category_id": 13, + "poly": [ + 700, + 1241, + 725, + 1241, + 725, + 1270, + 700, + 1270 + ], + "score": 0.67, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 438, + 1274, + 472, + 1274, + 472, + 1300, + 438, + 1300 + ], + "score": 0.63, + "latex": "\\hat { \\mathbf { x } } ^ { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 973, + 1373, + 996, + 1373, + 996, + 1401, + 973, + 1401 + ], + "score": 0.6, + "latex": "\\mathbf { Z }" + }, + { + "category_id": 13, + "poly": [ + 399, + 1237, + 428, + 1237, + 428, + 1271, + 399, + 1271 + ], + "score": 0.52, + "latex": "\\hat { \\mathbf Y }" + }, + { + "category_id": 13, + "poly": [ + 1273, + 1998, + 1374, + 1998, + 1374, + 2031, + 1273, + 2031 + ], + "score": 0.51, + "latex": "\\overline { { \\mathbf { W } } } \\hat { \\mathbf { X } } \\hat { \\mathbf { X } } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 359, + 1237, + 428, + 1237, + 428, + 1272, + 359, + 1272 + ], + "score": 0.34, + "latex": "\\hat { \\mathbf { X } } , \\hat { \\mathbf { Y } }" + }, + { + "category_id": 13, + "poly": [ + 438, + 1273, + 519, + 1273, + 519, + 1303, + 438, + 1303 + ], + "score": 0.29, + "latex": "\\hat { \\mathbf { x } } ^ { \\mu } , \\hat { \\mathbf { y } } ^ { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 360, + 1237, + 388, + 1237, + 388, + 1271, + 360, + 1271 + ], + "score": 0.27, + "latex": "\\hat { \\mathbf X }" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 219.0, + 1039.0, + 219.0, + 1039.0, + 411.0, + 995.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 228.0, + 339.0, + 228.0, + 339.0, + 266.0, + 303.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 228.0, + 732.0, + 228.0, + 732.0, + 260.0, + 704.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 230.0, + 673.0, + 230.0, + 673.0, + 264.0, + 610.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 236.0, + 752.0, + 236.0, + 752.0, + 253.0, + 737.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 236.0, + 1055.0, + 236.0, + 1055.0, + 253.0, + 1041.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 253.0, + 355.0, + 253.0, + 355.0, + 271.0, + 341.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 306.0, + 358.0, + 306.0, + 358.0, + 377.0, + 313.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 262.0, + 674.0, + 262.0, + 674.0, + 364.0, + 577.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 264.0, + 754.0, + 264.0, + 754.0, + 410.0, + 697.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 300.0, + 1053.0, + 300.0, + 1053.0, + 318.0, + 1038.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 261.0, + 1363.0, + 261.0, + 1363.0, + 363.0, + 1309.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 356.0, + 646.0, + 356.0, + 646.0, + 384.0, + 611.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 363.0, + 754.0, + 363.0, + 754.0, + 385.0, + 734.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 363.0, + 1058.0, + 363.0, + 1058.0, + 384.0, + 1037.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 381.0, + 355.0, + 381.0, + 355.0, + 397.0, + 339.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 386.0, + 1226.0, + 386.0, + 1226.0, + 395.0, + 1211.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 396.0, + 1359.0, + 396.0, + 1359.0, + 412.0, + 1346.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 422.0, + 357.0, + 422.0, + 357.0, + 442.0, + 337.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 408.0, + 647.0, + 408.0, + 647.0, + 437.0, + 611.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 426.0, + 755.0, + 426.0, + 755.0, + 449.0, + 732.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 428.0, + 1058.0, + 428.0, + 1058.0, + 447.0, + 1036.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 436.0, + 820.0, + 436.0, + 820.0, + 469.0, + 783.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 436.0, + 878.0, + 436.0, + 878.0, + 469.0, + 838.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 436.0, + 934.0, + 436.0, + 934.0, + 469.0, + 897.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 443.0, + 1127.0, + 443.0, + 1127.0, + 463.0, + 1112.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 441.0, + 1171.0, + 441.0, + 1171.0, + 465.0, + 1153.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 442.0, + 1214.0, + 442.0, + 1214.0, + 463.0, + 1195.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 441.0, + 1256.0, + 441.0, + 1256.0, + 465.0, + 1238.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 453.0, + 380.0, + 453.0, + 380.0, + 476.0, + 362.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 452.0, + 480.0, + 452.0, + 480.0, + 502.0, + 447.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 452.0, + 571.0, + 452.0, + 571.0, + 477.0, + 543.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 451.0, + 647.0, + 451.0, + 647.0, + 479.0, + 611.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 461.0, + 895.0, + 461.0, + 895.0, + 503.0, + 827.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 463.0, + 1224.0, + 463.0, + 1224.0, + 502.0, + 1116.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 504.0, + 688.0, + 504.0, + 688.0, + 721.0, + 646.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 504.0, + 1010.0, + 504.0, + 1010.0, + 539.0, + 955.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 519.0, + 709.0, + 519.0, + 709.0, + 539.0, + 691.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 533.0, + 1024.0, + 533.0, + 1024.0, + 561.0, + 987.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 586.0, + 704.0, + 586.0, + 704.0, + 601.0, + 690.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 569.0, + 860.0, + 569.0, + 860.0, + 588.0, + 837.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 576.0, + 1025.0, + 576.0, + 1025.0, + 605.0, + 989.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 610.0, + 1026.0, + 610.0, + 1026.0, + 641.0, + 986.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 645.0, + 709.0, + 645.0, + 709.0, + 668.0, + 688.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 640.0, + 1013.0, + 640.0, + 1013.0, + 674.0, + 955.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 673.0, + 1013.0, + 673.0, + 1013.0, + 703.0, + 962.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 709.0, + 709.0, + 709.0, + 709.0, + 730.0, + 688.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 700.0, + 985.0, + 700.0, + 985.0, + 719.0, + 966.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 700.0, + 1009.0, + 700.0, + 1009.0, + 723.0, + 989.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 728.0, + 734.0, + 728.0, + 734.0, + 754.0, + 711.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 729.0, + 806.0, + 729.0, + 806.0, + 756.0, + 780.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 733.0, + 872.0, + 733.0, + 872.0, + 753.0, + 852.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 735.0, + 941.0, + 735.0, + 941.0, + 752.0, + 926.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 725.0, + 984.0, + 725.0, + 984.0, + 741.0, + 968.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 723.0, + 1009.0, + 723.0, + 1009.0, + 744.0, + 989.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 748.0, + 912.0, + 748.0, + 912.0, + 786.0, + 742.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 411.5, + 1275.0, + 411.5, + 1275.0, + 427.5, + 1247.0, + 427.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 535.5, + 954.0, + 535.5, + 954.0, + 572.0, + 837.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 656.5, + 739.0, + 656.5, + 739.0, + 682.5, + 736.0, + 682.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 812.0, + 1058.0, + 812.0, + 1058.0, + 850.0, + 294.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 812.0, + 1406.0, + 812.0, + 1406.0, + 850.0, + 1085.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 848.0, + 1404.0, + 848.0, + 1404.0, + 878.0, + 296.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 876.0, + 705.0, + 876.0, + 705.0, + 917.0, + 292.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 876.0, + 934.0, + 876.0, + 934.0, + 917.0, + 805.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 876.0, + 1409.0, + 876.0, + 1409.0, + 917.0, + 1033.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 915.0, + 371.0, + 915.0, + 371.0, + 953.0, + 294.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 915.0, + 1170.0, + 915.0, + 1170.0, + 953.0, + 476.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 915.0, + 1406.0, + 915.0, + 1406.0, + 953.0, + 1323.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 948.0, + 904.0, + 948.0, + 904.0, + 982.0, + 294.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 948.0, + 1135.0, + 948.0, + 1135.0, + 982.0, + 931.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 948.0, + 1405.0, + 948.0, + 1405.0, + 982.0, + 1240.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 978.0, + 1406.0, + 978.0, + 1406.0, + 1012.0, + 294.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1006.0, + 1407.0, + 1006.0, + 1407.0, + 1045.0, + 292.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1037.0, + 1405.0, + 1037.0, + 1405.0, + 1076.0, + 293.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1070.0, + 770.0, + 1070.0, + 770.0, + 1104.0, + 296.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1070.0, + 1040.0, + 1070.0, + 1040.0, + 1104.0, + 1032.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 1070.0, + 1153.0, + 1070.0, + 1153.0, + 1104.0, + 1137.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1911.0, + 711.0, + 1911.0, + 711.0, + 1944.0, + 297.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2122.0, + 832.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1235.0, + 358.0, + 1235.0, + 358.0, + 1279.0, + 293.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1235.0, + 488.0, + 1235.0, + 488.0, + 1279.0, + 429.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1235.0, + 617.0, + 1235.0, + 617.0, + 1279.0, + 513.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1235.0, + 699.0, + 1235.0, + 699.0, + 1279.0, + 660.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1235.0, + 736.0, + 1235.0, + 736.0, + 1279.0, + 726.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1235.0, + 819.0, + 1235.0, + 819.0, + 1279.0, + 779.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1235.0, + 905.0, + 1235.0, + 905.0, + 1279.0, + 845.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1235.0, + 987.0, + 1235.0, + 987.0, + 1279.0, + 947.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 1235.0, + 1349.0, + 1235.0, + 1349.0, + 1279.0, + 1014.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 1235.0, + 1407.0, + 1235.0, + 1407.0, + 1279.0, + 1373.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1267.0, + 437.0, + 1267.0, + 437.0, + 1308.0, + 291.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1267.0, + 576.0, + 1267.0, + 576.0, + 1308.0, + 520.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1267.0, + 766.0, + 1267.0, + 766.0, + 1308.0, + 609.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 1267.0, + 877.0, + 1267.0, + 877.0, + 1308.0, + 816.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1267.0, + 957.0, + 1267.0, + 957.0, + 1308.0, + 919.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1267.0, + 1326.0, + 1267.0, + 1326.0, + 1308.0, + 999.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1267.0, + 1408.0, + 1267.0, + 1408.0, + 1308.0, + 1375.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1299.0, + 330.0, + 1299.0, + 330.0, + 1338.0, + 294.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1299.0, + 411.0, + 1299.0, + 411.0, + 1338.0, + 373.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1299.0, + 1227.0, + 1299.0, + 1227.0, + 1338.0, + 454.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1299.0, + 1406.0, + 1299.0, + 1406.0, + 1338.0, + 1262.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1333.0, + 375.0, + 1333.0, + 375.0, + 1374.0, + 291.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1333.0, + 1083.0, + 1333.0, + 1083.0, + 1374.0, + 400.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 1333.0, + 1406.0, + 1333.0, + 1406.0, + 1374.0, + 1168.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1371.0, + 780.0, + 1371.0, + 780.0, + 1407.0, + 295.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1371.0, + 972.0, + 1371.0, + 972.0, + 1407.0, + 818.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1371.0, + 1094.0, + 1371.0, + 1094.0, + 1407.0, + 997.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 1371.0, + 1406.0, + 1371.0, + 1406.0, + 1407.0, + 1155.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1401.0, + 1407.0, + 1401.0, + 1407.0, + 1438.0, + 293.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1426.0, + 613.0, + 1426.0, + 613.0, + 1474.0, + 291.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 1426.0, + 1407.0, + 1426.0, + 1407.0, + 1474.0, + 663.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1466.0, + 512.0, + 1466.0, + 512.0, + 1502.0, + 294.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1466.0, + 1110.0, + 1466.0, + 1110.0, + 1502.0, + 618.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1466.0, + 1406.0, + 1466.0, + 1406.0, + 1502.0, + 1140.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1507.0, + 516.0, + 1507.0, + 516.0, + 1551.0, + 293.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1507.0, + 1225.0, + 1507.0, + 1225.0, + 1551.0, + 619.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1507.0, + 1407.0, + 1507.0, + 1407.0, + 1551.0, + 1403.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1553.0, + 886.0, + 1553.0, + 886.0, + 1589.0, + 291.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 1553.0, + 1308.0, + 1553.0, + 1308.0, + 1589.0, + 991.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 1553.0, + 1407.0, + 1553.0, + 1407.0, + 1589.0, + 1338.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1585.0, + 527.0, + 1585.0, + 527.0, + 1627.0, + 293.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 1585.0, + 737.0, + 1585.0, + 737.0, + 1627.0, + 653.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1585.0, + 1143.0, + 1585.0, + 1143.0, + 1627.0, + 781.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1585.0, + 1406.0, + 1585.0, + 1406.0, + 1627.0, + 1171.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1622.0, + 400.0, + 1622.0, + 400.0, + 1665.0, + 291.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1622.0, + 1407.0, + 1622.0, + 1407.0, + 1665.0, + 430.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1659.0, + 667.0, + 1659.0, + 667.0, + 1694.0, + 294.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1659.0, + 1404.0, + 1659.0, + 1404.0, + 1694.0, + 696.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1677.0, + 1364.0, + 1677.0, + 1364.0, + 1741.0, + 285.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1677.0, + 1418.0, + 1677.0, + 1418.0, + 1741.0, + 1397.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1721.0, + 461.0, + 1721.0, + 461.0, + 1756.0, + 294.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1721.0, + 1404.0, + 1721.0, + 1404.0, + 1756.0, + 551.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1750.0, + 1406.0, + 1750.0, + 1406.0, + 1788.0, + 293.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1784.0, + 1009.0, + 1784.0, + 1009.0, + 1816.0, + 295.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 1784.0, + 1404.0, + 1784.0, + 1404.0, + 1816.0, + 1036.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1812.0, + 1086.0, + 1812.0, + 1086.0, + 1848.0, + 295.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 1812.0, + 1406.0, + 1812.0, + 1406.0, + 1848.0, + 1267.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1841.0, + 645.0, + 1841.0, + 645.0, + 1877.0, + 295.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1841.0, + 734.0, + 1841.0, + 734.0, + 1877.0, + 723.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1962.0, + 588.0, + 1962.0, + 588.0, + 2003.0, + 295.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 1962.0, + 965.0, + 1962.0, + 965.0, + 2003.0, + 669.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 1962.0, + 1311.0, + 1962.0, + 1311.0, + 2003.0, + 1014.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 1962.0, + 1406.0, + 1962.0, + 1406.0, + 2003.0, + 1337.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1993.0, + 727.0, + 1993.0, + 727.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 1993.0, + 1272.0, + 1993.0, + 1272.0, + 2037.0, + 1007.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1993.0, + 1407.0, + 1993.0, + 1407.0, + 2037.0, + 1375.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1146.0, + 1376.0, + 1146.0, + 1376.0, + 1193.0, + 293.0, + 1193.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 548, + 1405, + 548, + 1405, + 983, + 297, + 983 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1519, + 1406, + 1519, + 1406, + 1862, + 297, + 1862 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1083, + 1405, + 1083, + 1405, + 1398, + 297, + 1398 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 226, + 1405, + 226, + 1405, + 457, + 297, + 457 + ], + "score": 0.979 + }, + { + "category_id": 8, + "poly": [ + 375, + 990, + 1315, + 990, + 1315, + 1078, + 375, + 1078 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 299, + 1971, + 1402, + 1971, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.943 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 302, + 492, + 726, + 492, + 726, + 525, + 302, + 525 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 301, + 1906, + 848, + 1906, + 848, + 1939, + 301, + 1939 + ], + "score": 0.879 + }, + { + "category_id": 0, + "poly": [ + 303, + 1435, + 1287, + 1435, + 1287, + 1494, + 303, + 1494 + ], + "score": 0.876 + }, + { + "category_id": 9, + "poly": [ + 1367, + 1022, + 1399, + 1022, + 1399, + 1045, + 1367, + 1045 + ], + "score": 0.875 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.847 + }, + { + "category_id": 14, + "poly": [ + 379, + 989, + 1320, + 989, + 1320, + 1079, + 379, + 1079 + ], + "score": 0.94, + "latex": "\\varepsilon _ { \\mathsf { t e s t } } ( t ) = { \\frac { \\left[ ( N _ { 3 } - P ) \\epsilon ^ { 2 } + ( P - { \\overline { { N } } } _ { 2 } ) \\langle s ( { \\hat { s } } , t ) ^ { 2 } \\rangle + \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } \\left[ ( s _ { \\alpha } ( t ) - { \\overline { { s } } } _ { \\alpha } ) ^ { 2 } + 2 s _ { \\alpha } ( t ) { \\overline { { s } } } _ { \\alpha } ( 1 - { \\mathcal { O } } ( { \\sqrt { \\overline { { D } } } } { \\overline { { s } } } _ { \\alpha } ) ) \\right] \\right] } { \\left[ \\sum _ { \\alpha = 1 } ^ { \\overline { { N } } _ { 2 } } { \\overline { { s } } } _ { \\alpha } ^ { 2 } \\right] } }" + }, + { + "category_id": 13, + "poly": [ + 711, + 818, + 855, + 818, + 855, + 852, + 711, + 852 + ], + "score": 0.93, + "latex": "\\mathcal { A } = N _ { 3 } / \\bar { N _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 1136, + 1361, + 1253, + 1361, + 1253, + 1395, + 1136, + 1395 + ], + "score": 0.93, + "latex": "\\overline { { s } } \\sqrt { D } \\overline { { s } }" + }, + { + "category_id": 13, + "poly": [ + 791, + 1327, + 911, + 1327, + 911, + 1361, + 791, + 1361 + ], + "score": 0.93, + "latex": "\\overline { { s } } \\sqrt { D } \\overline { { s } }" + }, + { + "category_id": 13, + "poly": [ + 975, + 818, + 1104, + 818, + 1104, + 852, + 975, + 852 + ], + "score": 0.92, + "latex": "\\mathcal { D } = P / N _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1212, + 1673, + 1362, + 1673, + 1362, + 1712, + 1212, + 1712 + ], + "score": 0.92, + "latex": "\\mathbf { S N R } \\sqrt { P / N _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 865, + 718, + 958, + 718, + 958, + 748, + 865, + 748 + ], + "score": 0.92, + "latex": "N _ { 1 } - P" + }, + { + "category_id": 13, + "poly": [ + 1079, + 1115, + 1175, + 1115, + 1175, + 1146, + 1079, + 1146 + ], + "score": 0.92, + "latex": "N _ { 3 } - P" + }, + { + "category_id": 13, + "poly": [ + 537, + 1114, + 631, + 1114, + 631, + 1145, + 537, + 1145 + ], + "score": 0.92, + "latex": "N _ { 3 } - P" + }, + { + "category_id": 13, + "poly": [ + 881, + 1643, + 976, + 1643, + 976, + 1673, + 881, + 1673 + ], + "score": 0.92, + "latex": "P < N _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 654, + 1173, + 749, + 1173, + 749, + 1205, + 654, + 1205 + ], + "score": 0.92, + "latex": "P - { \\overline { { N } } } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 852, + 460, + 852, + 460, + 888, + 298, + 888 + ], + "score": 0.92, + "latex": "\\overline { { N } } _ { 3 } , \\overline { { N } } _ { 1 } \\infty" + }, + { + "category_id": 13, + "poly": [ + 1237, + 361, + 1314, + 361, + 1314, + 389, + 1237, + 389 + ], + "score": 0.92, + "latex": "\\mathcal { D } = 1" + }, + { + "category_id": 13, + "poly": [ + 1268, + 617, + 1397, + 617, + 1397, + 651, + 1268, + 651 + ], + "score": 0.92, + "latex": "\\pmb { \\Sigma } ^ { 1 1 } = \\pmb { \\mathcal { P } } ^ { | | }" + }, + { + "category_id": 13, + "poly": [ + 1070, + 1708, + 1165, + 1708, + 1165, + 1738, + 1070, + 1738 + ], + "score": 0.91, + "latex": "P < N _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 352, + 651, + 605, + 651, + 605, + 686, + 352, + 686 + ], + "score": 0.91, + "latex": "{ \\boldsymbol { \\Sigma } } ^ { 3 1 } = \\overline { { \\mathbf { W } } } \\mathbf { \\mathcal { P } } ^ { | | } + \\mathbf { Z } \\hat { \\mathbf { X } } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 1217, + 1297, + 1307, + 1297, + 1307, + 1325, + 1217, + 1325 + ], + "score": 0.91, + "latex": "A \\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 458, + 1677, + 554, + 1677, + 554, + 1708, + 458, + 1708 + ], + "score": 0.91, + "latex": "P \\geq N _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 617, + 887, + 664, + 887, + 664, + 921, + 617, + 921 + ], + "score": 0.91, + "latex": "\\sqrt { \\mathcal { D } }" + }, + { + "category_id": 13, + "poly": [ + 987, + 1084, + 1082, + 1084, + 1082, + 1114, + 987, + 1114 + ], + "score": 0.91, + "latex": "P = N _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1351, + 295, + 1398, + 295, + 1398, + 330, + 1351, + 330 + ], + "score": 0.91, + "latex": "\\sqrt { \\mathcal { D } }" + }, + { + "category_id": 13, + "poly": [ + 996, + 1365, + 1086, + 1365, + 1086, + 1394, + 996, + 1394 + ], + "score": 0.91, + "latex": "A \\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 825, + 331, + 901, + 331, + 901, + 359, + 825, + 359 + ], + "score": 0.91, + "latex": "\\mathcal { D } > 1" + }, + { + "category_id": 13, + "poly": [ + 573, + 391, + 620, + 391, + 620, + 425, + 573, + 425 + ], + "score": 0.91, + "latex": "\\sqrt { \\mathcal { D } }" + }, + { + "category_id": 13, + "poly": [ + 520, + 361, + 596, + 361, + 596, + 388, + 520, + 388 + ], + "score": 0.91, + "latex": "\\mathcal { D } = 1" + }, + { + "category_id": 13, + "poly": [ + 822, + 261, + 872, + 261, + 872, + 296, + 822, + 296 + ], + "score": 0.9, + "latex": "\\sqrt { \\mathcal { D } }" + }, + { + "category_id": 13, + "poly": [ + 1216, + 688, + 1254, + 688, + 1254, + 718, + 1216, + 718 + ], + "score": 0.9, + "latex": "N _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 675, + 854, + 734, + 854, + 734, + 889, + 675, + 889 + ], + "score": 0.9, + "latex": "O ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 534, + 853, + 574, + 853, + 574, + 886, + 534, + 886 + ], + "score": 0.9, + "latex": "\\overline { { N } } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 374, + 819, + 561, + 819, + 561, + 850, + 374, + 850 + ], + "score": 0.89, + "latex": "N _ { 3 } = N _ { 2 } = N _ { 1 } ;" + }, + { + "category_id": 13, + "poly": [ + 609, + 296, + 661, + 296, + 661, + 330, + 609, + 330 + ], + "score": 0.89, + "latex": "\\sqrt { \\mathcal { D } }" + }, + { + "category_id": 13, + "poly": [ + 370, + 266, + 448, + 266, + 448, + 294, + 370, + 294 + ], + "score": 0.89, + "latex": "\\mathcal { D } = 1" + }, + { + "category_id": 13, + "poly": [ + 401, + 748, + 442, + 748, + 442, + 781, + 401, + 781 + ], + "score": 0.89, + "latex": "\\mathcal { P } ^ { | | }" + }, + { + "category_id": 13, + "poly": [ + 1243, + 850, + 1318, + 850, + 1318, + 885, + 1243, + 885 + ], + "score": 0.89, + "latex": "\\overline { { \\mathbf { W } } } \\mathcal { P } ^ { | | }" + }, + { + "category_id": 13, + "poly": [ + 521, + 783, + 562, + 783, + 562, + 817, + 521, + 817 + ], + "score": 0.88, + "latex": "\\mathcal { P } ^ { | | }" + }, + { + "category_id": 13, + "poly": [ + 1256, + 581, + 1298, + 581, + 1298, + 614, + 1256, + 614 + ], + "score": 0.88, + "latex": "\\mathcal { P } ^ { | | }" + }, + { + "category_id": 13, + "poly": [ + 909, + 225, + 972, + 225, + 972, + 259, + 909, + 259 + ], + "score": 0.88, + "latex": "\\mathbf { Z } \\hat { \\mathbf { X } } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 1345, + 1643, + 1398, + 1643, + 1398, + 1673, + 1345, + 1673 + ], + "score": 0.88, + "latex": "\\le P" + }, + { + "category_id": 13, + "poly": [ + 495, + 586, + 533, + 586, + 533, + 616, + 495, + 616 + ], + "score": 0.87, + "latex": "N _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 478, + 1205, + 508, + 1205, + 508, + 1238, + 478, + 1238 + ], + "score": 0.87, + "latex": "\\langle \\cdot \\rangle" + }, + { + "category_id": 13, + "poly": [ + 562, + 1614, + 647, + 1614, + 647, + 1642, + 562, + 1642 + ], + "score": 0.86, + "latex": "t \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 1354, + 853, + 1402, + 853, + 1402, + 883, + 1354, + 883 + ], + "score": 0.86, + "latex": "\\pmb { \\Sigma } ^ { 3 1 }" + }, + { + "category_id": 13, + "poly": [ + 750, + 1143, + 777, + 1143, + 777, + 1172, + 750, + 1172 + ], + "score": 0.85, + "latex": "\\epsilon ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 645, + 552, + 727, + 552, + 727, + 581, + 645, + 581 + ], + "score": 0.85, + "latex": "\\mathcal { D } < 1 \\dot { }" + }, + { + "category_id": 13, + "poly": [ + 1169, + 552, + 1193, + 552, + 1193, + 578, + 1169, + 578 + ], + "score": 0.83, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 849, + 1709, + 874, + 1709, + 874, + 1735, + 849, + 1735 + ], + "score": 0.82, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 399, + 427, + 423, + 427, + 423, + 453, + 399, + 453 + ], + "score": 0.82, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 401, + 1553, + 425, + 1553, + 425, + 1579, + 401, + 1579 + ], + "score": 0.82, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 670, + 617, + 698, + 617, + 698, + 650, + 670, + 650 + ], + "score": 0.81, + "latex": "\\hat { \\mathbf X }" + }, + { + "category_id": 13, + "poly": [ + 655, + 1237, + 680, + 1237, + 680, + 1263, + 655, + 1263 + ], + "score": 0.81, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 569, + 232, + 595, + 232, + 595, + 258, + 569, + 258 + ], + "score": 0.8, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 352, + 1614, + 376, + 1614, + 376, + 1640, + 352, + 1640 + ], + "score": 0.8, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1084, + 260, + 1112, + 260, + 1112, + 294, + 1084, + 294 + ], + "score": 0.8, + "latex": "\\hat { \\mathbf X }" + }, + { + "category_id": 13, + "poly": [ + 594, + 689, + 620, + 689, + 620, + 715, + 594, + 715 + ], + "score": 0.79, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 298, + 622, + 323, + 622, + 323, + 649, + 298, + 649 + ], + "score": 0.79, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 469, + 1298, + 486, + 1298, + 486, + 1324, + 469, + 1324 + ], + "score": 0.78, + "latex": "\\hat { s }" + }, + { + "category_id": 13, + "poly": [ + 482, + 1239, + 507, + 1239, + 507, + 1263, + 482, + 1263 + ], + "score": 0.78, + "latex": "\\mathcal { A }" + }, + { + "category_id": 13, + "poly": [ + 1204, + 1269, + 1222, + 1269, + 1222, + 1294, + 1204, + 1294 + ], + "score": 0.28, + "latex": "\\overline { { s } }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 493.0, + 731.0, + 493.0, + 731.0, + 526.0, + 297.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1904.0, + 854.0, + 1904.0, + 854.0, + 1944.0, + 294.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1432.0, + 357.0, + 1432.0, + 357.0, + 1466.0, + 298.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1433.0, + 1292.0, + 1433.0, + 1292.0, + 1466.0, + 364.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1467.0, + 673.0, + 1467.0, + 673.0, + 1494.0, + 369.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 549.0, + 644.0, + 549.0, + 644.0, + 585.0, + 295.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 549.0, + 1168.0, + 549.0, + 1168.0, + 585.0, + 728.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 549.0, + 1405.0, + 549.0, + 1405.0, + 585.0, + 1194.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 583.0, + 494.0, + 583.0, + 494.0, + 620.0, + 292.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 583.0, + 1255.0, + 583.0, + 1255.0, + 620.0, + 534.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 583.0, + 1405.0, + 583.0, + 1405.0, + 620.0, + 1299.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 616.0, + 297.0, + 616.0, + 297.0, + 656.0, + 291.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 616.0, + 669.0, + 616.0, + 669.0, + 656.0, + 324.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 616.0, + 1267.0, + 616.0, + 1267.0, + 656.0, + 699.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 616.0, + 1407.0, + 616.0, + 1407.0, + 656.0, + 1398.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 647.0, + 351.0, + 647.0, + 351.0, + 694.0, + 290.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 647.0, + 1406.0, + 647.0, + 1406.0, + 694.0, + 606.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 687.0, + 593.0, + 687.0, + 593.0, + 723.0, + 295.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 687.0, + 1215.0, + 687.0, + 1215.0, + 723.0, + 621.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 687.0, + 1405.0, + 687.0, + 1405.0, + 723.0, + 1255.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 717.0, + 864.0, + 717.0, + 864.0, + 753.0, + 294.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 717.0, + 1405.0, + 717.0, + 1405.0, + 753.0, + 959.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 745.0, + 400.0, + 745.0, + 400.0, + 794.0, + 291.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 745.0, + 1407.0, + 745.0, + 1407.0, + 794.0, + 443.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 784.0, + 520.0, + 784.0, + 520.0, + 826.0, + 291.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 784.0, + 1406.0, + 784.0, + 1406.0, + 826.0, + 563.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 816.0, + 373.0, + 816.0, + 373.0, + 856.0, + 294.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 816.0, + 710.0, + 816.0, + 710.0, + 856.0, + 562.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 816.0, + 974.0, + 816.0, + 974.0, + 856.0, + 856.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 816.0, + 1406.0, + 816.0, + 1406.0, + 856.0, + 1105.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 848.0, + 297.0, + 848.0, + 297.0, + 892.0, + 291.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 848.0, + 533.0, + 848.0, + 533.0, + 892.0, + 461.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 848.0, + 674.0, + 848.0, + 674.0, + 892.0, + 575.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 848.0, + 1242.0, + 848.0, + 1242.0, + 892.0, + 735.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 848.0, + 1353.0, + 848.0, + 1353.0, + 892.0, + 1319.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 848.0, + 1406.0, + 848.0, + 1406.0, + 892.0, + 1403.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 888.0, + 616.0, + 888.0, + 616.0, + 926.0, + 292.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 888.0, + 1408.0, + 888.0, + 1408.0, + 926.0, + 665.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 919.0, + 1405.0, + 919.0, + 1405.0, + 955.0, + 294.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 949.0, + 1147.0, + 949.0, + 1147.0, + 988.0, + 294.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1517.0, + 1406.0, + 1517.0, + 1406.0, + 1558.0, + 291.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1551.0, + 400.0, + 1551.0, + 400.0, + 1586.0, + 295.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1551.0, + 1406.0, + 1551.0, + 1406.0, + 1586.0, + 426.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1584.0, + 1403.0, + 1584.0, + 1403.0, + 1615.0, + 296.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1611.0, + 351.0, + 1611.0, + 351.0, + 1648.0, + 292.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1611.0, + 561.0, + 1611.0, + 561.0, + 1648.0, + 377.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 1611.0, + 1404.0, + 1611.0, + 1404.0, + 1648.0, + 648.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1640.0, + 880.0, + 1640.0, + 880.0, + 1678.0, + 291.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1640.0, + 1344.0, + 1640.0, + 1344.0, + 1678.0, + 977.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1640.0, + 1407.0, + 1640.0, + 1407.0, + 1678.0, + 1399.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1675.0, + 457.0, + 1675.0, + 457.0, + 1713.0, + 292.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1675.0, + 1211.0, + 1675.0, + 1211.0, + 1713.0, + 555.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 1675.0, + 1407.0, + 1675.0, + 1407.0, + 1713.0, + 1363.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1707.0, + 848.0, + 1707.0, + 848.0, + 1742.0, + 295.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1707.0, + 1069.0, + 1707.0, + 1069.0, + 1742.0, + 875.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 1707.0, + 1406.0, + 1707.0, + 1406.0, + 1742.0, + 1166.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1735.0, + 1407.0, + 1735.0, + 1407.0, + 1776.0, + 292.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1769.0, + 1404.0, + 1769.0, + 1404.0, + 1804.0, + 294.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1797.0, + 1404.0, + 1797.0, + 1404.0, + 1835.0, + 294.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1830.0, + 724.0, + 1830.0, + 724.0, + 1865.0, + 295.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1082.0, + 986.0, + 1082.0, + 986.0, + 1119.0, + 295.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 1082.0, + 1406.0, + 1082.0, + 1406.0, + 1119.0, + 1083.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1112.0, + 536.0, + 1112.0, + 536.0, + 1148.0, + 294.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1112.0, + 1078.0, + 1112.0, + 1078.0, + 1148.0, + 632.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 1112.0, + 1406.0, + 1112.0, + 1406.0, + 1148.0, + 1176.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1143.0, + 749.0, + 1143.0, + 749.0, + 1180.0, + 295.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1143.0, + 1405.0, + 1143.0, + 1405.0, + 1180.0, + 778.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1172.0, + 653.0, + 1172.0, + 653.0, + 1209.0, + 292.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1172.0, + 1407.0, + 1172.0, + 1407.0, + 1209.0, + 750.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1204.0, + 477.0, + 1204.0, + 477.0, + 1241.0, + 294.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 1204.0, + 1405.0, + 1204.0, + 1405.0, + 1241.0, + 509.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1234.0, + 481.0, + 1234.0, + 481.0, + 1270.0, + 295.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1234.0, + 654.0, + 1234.0, + 654.0, + 1270.0, + 508.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 1234.0, + 1405.0, + 1234.0, + 1405.0, + 1270.0, + 681.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1265.0, + 1203.0, + 1265.0, + 1203.0, + 1300.0, + 294.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1265.0, + 1405.0, + 1265.0, + 1405.0, + 1300.0, + 1223.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1295.0, + 468.0, + 1295.0, + 468.0, + 1331.0, + 294.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 1295.0, + 1216.0, + 1295.0, + 1216.0, + 1331.0, + 487.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 1295.0, + 1405.0, + 1295.0, + 1405.0, + 1331.0, + 1308.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1329.0, + 790.0, + 1329.0, + 790.0, + 1365.0, + 295.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 1329.0, + 1405.0, + 1329.0, + 1405.0, + 1365.0, + 912.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1364.0, + 995.0, + 1364.0, + 995.0, + 1399.0, + 292.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 1364.0, + 1135.0, + 1364.0, + 1135.0, + 1399.0, + 1087.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1364.0, + 1265.0, + 1364.0, + 1265.0, + 1399.0, + 1254.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 225.0, + 568.0, + 225.0, + 568.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 225.0, + 908.0, + 225.0, + 908.0, + 268.0, + 596.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 225.0, + 1406.0, + 225.0, + 1406.0, + 268.0, + 973.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 264.0, + 369.0, + 264.0, + 369.0, + 300.0, + 294.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 264.0, + 821.0, + 264.0, + 821.0, + 300.0, + 449.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 264.0, + 1083.0, + 264.0, + 1083.0, + 300.0, + 873.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 264.0, + 1406.0, + 264.0, + 1406.0, + 300.0, + 1113.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 296.0, + 608.0, + 296.0, + 608.0, + 332.0, + 292.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 296.0, + 1350.0, + 296.0, + 1350.0, + 332.0, + 662.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 296.0, + 1408.0, + 296.0, + 1408.0, + 332.0, + 1399.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 331.0, + 824.0, + 331.0, + 824.0, + 363.0, + 296.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 331.0, + 1405.0, + 331.0, + 1405.0, + 363.0, + 902.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 356.0, + 519.0, + 356.0, + 519.0, + 398.0, + 291.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 356.0, + 1236.0, + 356.0, + 1236.0, + 398.0, + 597.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 356.0, + 1406.0, + 356.0, + 1406.0, + 398.0, + 1315.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 392.0, + 572.0, + 392.0, + 572.0, + 431.0, + 292.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 392.0, + 1405.0, + 392.0, + 1405.0, + 431.0, + 621.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 424.0, + 398.0, + 424.0, + 398.0, + 458.0, + 295.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 424.0, + 434.0, + 424.0, + 434.0, + 458.0, + 424.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1407.0, + 1971.0, + 1407.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1406.0, + 2003.0, + 1406.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 228, + 1406, + 228, + 1406, + 414, + 297, + 414 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 297, + 450, + 1405, + 450, + 1405, + 1396, + 297, + 1396 + ], + "score": 0.954 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.897 + }, + { + "category_id": 4, + "poly": [ + 292, + 1416, + 1402, + 1416, + 1402, + 1475, + 292, + 1475 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2112, + 835, + 2112 + ], + "score": 0.856 + }, + { + "category_id": 4, + "poly": [ + 296, + 1498, + 1405, + 1498, + 1405, + 1836, + 296, + 1836 + ], + "score": 0.793 + }, + { + "category_id": 1, + "poly": [ + 296, + 1498, + 1405, + 1498, + 1405, + 1836, + 296, + 1836 + ], + "score": 0.29 + }, + { + "category_id": 13, + "poly": [ + 915, + 1804, + 1107, + 1804, + 1107, + 1835, + 915, + 1835 + ], + "score": 0.91, + "latex": "N _ { 1 } = N _ { 3 } = 1 0 0 \\rangle" + }, + { + "category_id": 13, + "poly": [ + 1248, + 1191, + 1282, + 1191, + 1282, + 1209, + 1248, + 1209 + ], + "score": 0.73, + "latex": "5 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1249, + 711, + 1281, + 711, + 1281, + 729, + 1249, + 729 + ], + "score": 0.59, + "latex": "5 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1249, + 1213, + 1273, + 1213, + 1273, + 1230, + 1249, + 1230 + ], + "score": 0.57, + "latex": "4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1230, + 1234, + 1274, + 1234, + 1274, + 1252, + 1230, + 1252 + ], + "score": 0.49, + "latex": "+ 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1249, + 733, + 1273, + 733, + 1273, + 750, + 1249, + 750 + ], + "score": 0.46, + "latex": "4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1230, + 754, + 1274, + 754, + 1274, + 772, + 1230, + 772 + ], + "score": 0.37, + "latex": "+ 1 \\%" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 462.0, + 830.0, + 462.0, + 830.0, + 488.0, + 789.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 470.0, + 721.0, + 470.0, + 721.0, + 526.0, + 685.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 472.0, + 335.0, + 472.0, + 335.0, + 820.0, + 300.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 487.0, + 797.0, + 487.0, + 797.0, + 806.0, + 762.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 509.0, + 1275.0, + 509.0, + 1275.0, + 540.0, + 1220.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 526.0, + 350.0, + 526.0, + 350.0, + 536.0, + 338.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 526.0, + 1033.0, + 526.0, + 1033.0, + 562.0, + 1012.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 531.0, + 1274.0, + 531.0, + 1274.0, + 550.0, + 1249.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 577.0, + 828.0, + 577.0, + 828.0, + 600.0, + 792.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 617.0, + 355.0, + 617.0, + 355.0, + 638.0, + 334.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 646.0, + 940.0, + 646.0, + 940.0, + 683.0, + 928.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 656.0, + 988.0, + 656.0, + 988.0, + 685.0, + 964.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 663.0, + 1368.0, + 663.0, + 1368.0, + 692.0, + 1222.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 713.0, + 356.0, + 713.0, + 356.0, + 734.0, + 334.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 692.0, + 827.0, + 692.0, + 827.0, + 716.0, + 791.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 689.0, + 911.0, + 689.0, + 911.0, + 719.0, + 900.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 700.0, + 947.0, + 700.0, + 947.0, + 728.0, + 923.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 687.0, + 1248.0, + 687.0, + 1248.0, + 733.0, + 1226.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 687.0, + 1327.0, + 687.0, + 1327.0, + 733.0, + 1282.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 733.0, + 463.0, + 733.0, + 463.0, + 753.0, + 443.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 733.0, + 887.0, + 733.0, + 887.0, + 782.0, + 858.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 738.0, + 913.0, + 738.0, + 913.0, + 756.0, + 898.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 729.0, + 1248.0, + 729.0, + 1248.0, + 755.0, + 1227.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 729.0, + 1319.0, + 729.0, + 1319.0, + 755.0, + 1274.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 758.0, + 436.0, + 758.0, + 436.0, + 780.0, + 416.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 757.0, + 861.0, + 757.0, + 861.0, + 792.0, + 845.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 761.0, + 890.0, + 761.0, + 890.0, + 780.0, + 876.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 751.0, + 1318.0, + 751.0, + 1318.0, + 776.0, + 1275.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 781.0, + 412.0, + 781.0, + 412.0, + 804.0, + 392.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 773.0, + 874.0, + 773.0, + 874.0, + 800.0, + 860.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 794.0, + 860.0, + 794.0, + 860.0, + 811.0, + 846.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 810.0, + 356.0, + 810.0, + 356.0, + 831.0, + 333.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 801.0, + 390.0, + 801.0, + 390.0, + 822.0, + 369.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 804.0, + 831.0, + 804.0, + 831.0, + 830.0, + 791.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 838.0, + 383.0, + 838.0, + 383.0, + 859.0, + 362.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 836.0, + 486.0, + 836.0, + 486.0, + 859.0, + 465.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 836.0, + 589.0, + 836.0, + 589.0, + 858.0, + 568.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 838.0, + 690.0, + 838.0, + 690.0, + 858.0, + 670.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 832.0, + 866.0, + 832.0, + 866.0, + 861.0, + 827.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 832.0, + 981.0, + 832.0, + 981.0, + 861.0, + 942.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 832.0, + 1094.0, + 832.0, + 1094.0, + 861.0, + 1056.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 834.0, + 1210.0, + 834.0, + 1210.0, + 861.0, + 1171.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 855.0, + 713.0, + 855.0, + 713.0, + 883.0, + 373.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 853.0, + 1174.0, + 853.0, + 1174.0, + 885.0, + 860.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 899.0, + 1405.0, + 899.0, + 1405.0, + 932.0, + 292.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 931.0, + 986.0, + 931.0, + 986.0, + 958.0, + 296.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 978.0, + 358.0, + 978.0, + 358.0, + 998.0, + 335.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 978.0, + 816.0, + 978.0, + 816.0, + 998.0, + 796.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 988.0, + 1274.0, + 988.0, + 1274.0, + 1020.0, + 1220.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1011.0, + 1274.0, + 1011.0, + 1274.0, + 1029.0, + 1249.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1031.0, + 687.0, + 1031.0, + 687.0, + 1047.0, + 671.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1032.0, + 802.0, + 1032.0, + 802.0, + 1284.0, + 762.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1033.0, + 338.0, + 1033.0, + 338.0, + 1283.0, + 301.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1069.0, + 808.0, + 1069.0, + 808.0, + 1079.0, + 798.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1152.0, + 351.0, + 1152.0, + 351.0, + 1168.0, + 335.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1152.0, + 813.0, + 1152.0, + 813.0, + 1168.0, + 797.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1143.0, + 1368.0, + 1143.0, + 1368.0, + 1172.0, + 1222.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1167.0, + 1314.0, + 1167.0, + 1314.0, + 1192.0, + 1226.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1187.0, + 1247.0, + 1187.0, + 1247.0, + 1212.0, + 1227.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 1187.0, + 1327.0, + 1187.0, + 1327.0, + 1212.0, + 1283.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1210.0, + 1248.0, + 1210.0, + 1248.0, + 1235.0, + 1229.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1210.0, + 1319.0, + 1210.0, + 1319.0, + 1235.0, + 1274.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1235.0, + 353.0, + 1235.0, + 353.0, + 1256.0, + 333.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1236.0, + 816.0, + 1236.0, + 816.0, + 1255.0, + 794.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1227.0, + 1229.0, + 1227.0, + 1229.0, + 1259.0, + 1225.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 1227.0, + 1319.0, + 1227.0, + 1319.0, + 1259.0, + 1275.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1301.0, + 432.0, + 1301.0, + 432.0, + 1310.0, + 416.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 1318.0, + 422.0, + 1318.0, + 422.0, + 1330.0, + 399.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1319.0, + 401.0, + 1319.0, + 401.0, + 1328.0, + 390.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1324.0, + 353.0, + 1324.0, + 353.0, + 1339.0, + 334.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1324.0, + 813.0, + 1324.0, + 813.0, + 1339.0, + 794.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1348.0, + 419.0, + 1348.0, + 419.0, + 1376.0, + 380.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 1348.0, + 524.0, + 1348.0, + 524.0, + 1376.0, + 486.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 1348.0, + 628.0, + 1348.0, + 628.0, + 1376.0, + 591.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1350.0, + 733.0, + 1350.0, + 733.0, + 1374.0, + 696.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1350.0, + 881.0, + 1350.0, + 881.0, + 1374.0, + 845.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 1348.0, + 991.0, + 1348.0, + 991.0, + 1376.0, + 953.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1348.0, + 1099.0, + 1348.0, + 1099.0, + 1376.0, + 1061.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1349.0, + 1210.0, + 1349.0, + 1210.0, + 1376.0, + 1169.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1369.0, + 646.0, + 1369.0, + 646.0, + 1399.0, + 441.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 1368.0, + 1115.0, + 1368.0, + 1115.0, + 1401.0, + 911.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 498.5, + 1172.0, + 498.5, + 1172.0, + 505.5, + 1149.0, + 505.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 550.0, + 666.0, + 550.0, + 666.0, + 559.0, + 643.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 572.0, + 650.0, + 572.0, + 650.0, + 592.0, + 600.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 604.5, + 976.0, + 604.5, + 976.0, + 624.5, + 971.0, + 624.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.25, + 604.0, + 615.25, + 604.0, + 615.25, + 618.5, + 572.25, + 618.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 627.5, + 592.0, + 627.5, + 592.0, + 646.5, + 540.0, + 646.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 663.0, + 557.0, + 663.0, + 557.0, + 680.5, + 501.0, + 680.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 712.5, + 501.0, + 712.5, + 501.0, + 726.5, + 458.0, + 726.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.25, + 1064.5, + 1042.25, + 1064.5, + 1042.25, + 1073.5, + 1002.25, + 1073.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1300.5, + 860.0, + 1300.5, + 860.0, + 1312.5, + 856.0, + 1312.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.75, + 1296.5, + 1303.75, + 1296.5, + 1303.75, + 1325.5, + 1228.75, + 1325.5 + ], + "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, + 1416.0, + 1404.0, + 1416.0, + 1404.0, + 1450.0, + 295.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1444.0, + 1022.0, + 1444.0, + 1022.0, + 1477.0, + 294.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 829.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1499.0, + 1405.0, + 1499.0, + 1405.0, + 1534.0, + 294.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1529.0, + 1403.0, + 1529.0, + 1403.0, + 1564.0, + 294.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1561.0, + 1406.0, + 1561.0, + 1406.0, + 1594.0, + 293.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1592.0, + 1403.0, + 1592.0, + 1403.0, + 1623.0, + 295.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1616.0, + 1406.0, + 1616.0, + 1406.0, + 1661.0, + 291.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1651.0, + 1407.0, + 1651.0, + 1407.0, + 1687.0, + 293.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1683.0, + 1405.0, + 1683.0, + 1405.0, + 1718.0, + 295.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1709.0, + 1406.0, + 1709.0, + 1406.0, + 1752.0, + 293.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1743.0, + 1405.0, + 1743.0, + 1405.0, + 1778.0, + 295.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1773.0, + 1407.0, + 1773.0, + 1407.0, + 1811.0, + 294.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1804.0, + 914.0, + 1804.0, + 914.0, + 1839.0, + 294.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 1804.0, + 1116.0, + 1804.0, + 1116.0, + 1839.0, + 1108.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1406.0, + 228.0, + 1406.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 1408.0, + 261.0, + 1408.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 292.0, + 1404.0, + 292.0, + 1404.0, + 324.0, + 296.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 318.0, + 1408.0, + 318.0, + 1408.0, + 358.0, + 292.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 350.0, + 1406.0, + 350.0, + 1406.0, + 389.0, + 292.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 381.0, + 497.0, + 381.0, + 497.0, + 417.0, + 294.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1499.0, + 1405.0, + 1499.0, + 1405.0, + 1534.0, + 294.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1529.0, + 1403.0, + 1529.0, + 1403.0, + 1564.0, + 294.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1561.0, + 1406.0, + 1561.0, + 1406.0, + 1594.0, + 293.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1592.0, + 1403.0, + 1592.0, + 1403.0, + 1623.0, + 295.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1616.0, + 1406.0, + 1616.0, + 1406.0, + 1661.0, + 291.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1651.0, + 1407.0, + 1651.0, + 1407.0, + 1687.0, + 293.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1683.0, + 1405.0, + 1683.0, + 1405.0, + 1718.0, + 295.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1709.0, + 1406.0, + 1709.0, + 1406.0, + 1752.0, + 293.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1743.0, + 1405.0, + 1743.0, + 1405.0, + 1778.0, + 295.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1773.0, + 1407.0, + 1773.0, + 1407.0, + 1811.0, + 294.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1804.0, + 914.0, + 1804.0, + 914.0, + 1839.0, + 294.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 1804.0, + 1116.0, + 1804.0, + 1116.0, + 1839.0, + 1108.0, + 1839.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/ryl8-3AcFX/images/0c2af4f20bff019aa7b4451d8c8c17d18c418539da9d6fdb1731801104ee13f4.jpg b/parse/train/ryl8-3AcFX/images/0c2af4f20bff019aa7b4451d8c8c17d18c418539da9d6fdb1731801104ee13f4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3f92ade87f0d30424e6b72f9ba11fa0abb2b60c --- /dev/null +++ b/parse/train/ryl8-3AcFX/images/0c2af4f20bff019aa7b4451d8c8c17d18c418539da9d6fdb1731801104ee13f4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fac9314e9936b60f6bd7634ca75cf1971402adc995708087acd3f108d53aac7 +size 84092 diff --git a/parse/train/ryl8-3AcFX/images/29572d56ea3108ce90d88a0899f0ef2fd83371a46ba7cd3f48925611325ef4b3.jpg b/parse/train/ryl8-3AcFX/images/29572d56ea3108ce90d88a0899f0ef2fd83371a46ba7cd3f48925611325ef4b3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2203099a1ec84106499a5958d42a0b9986c4cdb6 --- /dev/null +++ b/parse/train/ryl8-3AcFX/images/29572d56ea3108ce90d88a0899f0ef2fd83371a46ba7cd3f48925611325ef4b3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f5c95894cd313f80c8ba1f2a11825e164f21185399cbcbad15c5c37f403c1f6 +size 5613 diff --git a/parse/train/ryl8-3AcFX/images/35b7e6a24f0c5bed7b34598c68f8edc46e80acf25e85cb864608de6a62da3468.jpg b/parse/train/ryl8-3AcFX/images/35b7e6a24f0c5bed7b34598c68f8edc46e80acf25e85cb864608de6a62da3468.jpg new file mode 100644 index 0000000000000000000000000000000000000000..10a4bd00dac054193eeef1b5a54b9a009724c271 --- /dev/null +++ b/parse/train/ryl8-3AcFX/images/35b7e6a24f0c5bed7b34598c68f8edc46e80acf25e85cb864608de6a62da3468.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5793dbcbd1a7a8aa4364f47beb7754b3dac3911656a76217d85c07eaacf61b72 +size 5325 diff --git a/parse/train/ryl8-3AcFX/images/454d3d5c07e46c47836db203be42a162039ca2b89ed604e4b93d3f54b9439450.jpg b/parse/train/ryl8-3AcFX/images/454d3d5c07e46c47836db203be42a162039ca2b89ed604e4b93d3f54b9439450.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f8c8578e26b0633468f5b7544e21611e62a0d12 --- /dev/null +++ b/parse/train/ryl8-3AcFX/images/454d3d5c07e46c47836db203be42a162039ca2b89ed604e4b93d3f54b9439450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e300582225c287eb6a8b08bd44aa0275d4710db9ed4425d0da5e4773c9168b16 +size 62398 diff --git a/parse/train/ryl8-3AcFX/images/84b82f134a4ce9d29b16e0d278118163c84dbd0c43cdb209fe29834e61b4f3d0.jpg b/parse/train/ryl8-3AcFX/images/84b82f134a4ce9d29b16e0d278118163c84dbd0c43cdb209fe29834e61b4f3d0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3169193404f5388fb2efdc0dfad91851f4b03af0 --- /dev/null +++ b/parse/train/ryl8-3AcFX/images/84b82f134a4ce9d29b16e0d278118163c84dbd0c43cdb209fe29834e61b4f3d0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17daf33e51ddea23a67a63a49d29679cd4a5816f9ab18ab873cbafec90756196 +size 41294 diff --git a/parse/train/ryl8-3AcFX/images/b697477b9cb79ead3917daf560ff441c1c390142121c5691f6596dab62dd9294.jpg b/parse/train/ryl8-3AcFX/images/b697477b9cb79ead3917daf560ff441c1c390142121c5691f6596dab62dd9294.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3a5301ebfcdb97d1a5f0f5bd1da533a2fe04252 --- /dev/null +++ b/parse/train/ryl8-3AcFX/images/b697477b9cb79ead3917daf560ff441c1c390142121c5691f6596dab62dd9294.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e796ffd605f5d1ed7a2ff4dfcb41f651f57c15c643617929392954811b9ac9a8 +size 63917 diff --git a/parse/train/ryl8-3AcFX/images/e79e124b60d044cab8e51548fd8fd661c41ff4d077667c39bbbd1a8ba161936c.jpg b/parse/train/ryl8-3AcFX/images/e79e124b60d044cab8e51548fd8fd661c41ff4d077667c39bbbd1a8ba161936c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83c3da7f2721a4291deb2cdece691e31ff2d6439 --- /dev/null +++ b/parse/train/ryl8-3AcFX/images/e79e124b60d044cab8e51548fd8fd661c41ff4d077667c39bbbd1a8ba161936c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743f5fc63d6ab8726294e589c470585274c0855c8f15858f82c89e45523bdcf +size 55631 diff --git a/parse/train/ryl8-3AcFX/images/fe5bbe6d4f99b0bec4e85cfef403473e032c312e72e9fe563e65f89c8a69f52a.jpg b/parse/train/ryl8-3AcFX/images/fe5bbe6d4f99b0bec4e85cfef403473e032c312e72e9fe563e65f89c8a69f52a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..404c89ed820f139791629afcf09f42b65af14476 --- /dev/null +++ b/parse/train/ryl8-3AcFX/images/fe5bbe6d4f99b0bec4e85cfef403473e032c312e72e9fe563e65f89c8a69f52a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e00181ac9caa820a9d14a1ed467d3c7f025765f6b7842723dbb48b2f46f4cef0 +size 6697 diff --git a/parse/train/tqc8n6oHCtZ/images/320388afaf5c944756a7b3f52eddc7583af0fdd53b75f8ac7bf8c3063dd11f2f.jpg b/parse/train/tqc8n6oHCtZ/images/320388afaf5c944756a7b3f52eddc7583af0fdd53b75f8ac7bf8c3063dd11f2f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..678629a08fd46e68a2de629c7928ee039b402264 --- /dev/null +++ b/parse/train/tqc8n6oHCtZ/images/320388afaf5c944756a7b3f52eddc7583af0fdd53b75f8ac7bf8c3063dd11f2f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45cfb7a86b9032c5415a341f31112d119eeb0a89d4b08e3e541fad77c15f94f2 +size 32136 diff --git a/parse/train/tqc8n6oHCtZ/images/3ea54ad6f6a4d01240155dd50bd06714bd078c67453a78cfd7ce1b9404ef27c2.jpg b/parse/train/tqc8n6oHCtZ/images/3ea54ad6f6a4d01240155dd50bd06714bd078c67453a78cfd7ce1b9404ef27c2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..62a8979235d212af450bd41de6c2943a7c7289c1 --- /dev/null +++ b/parse/train/tqc8n6oHCtZ/images/3ea54ad6f6a4d01240155dd50bd06714bd078c67453a78cfd7ce1b9404ef27c2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99554ba6e3376b2cc5e69a685dd34158b4ca8c0cac6ec9eb1de5bbf90e3b44a5 +size 39663 diff --git a/parse/train/tqc8n6oHCtZ/images/4608176aa7c7dba0b4748567c1c64abe798b711bebf826c4b323894a4bfb2b12.jpg b/parse/train/tqc8n6oHCtZ/images/4608176aa7c7dba0b4748567c1c64abe798b711bebf826c4b323894a4bfb2b12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e2a326883ffb46c81f8203ceb87e2892736f83a --- /dev/null +++ b/parse/train/tqc8n6oHCtZ/images/4608176aa7c7dba0b4748567c1c64abe798b711bebf826c4b323894a4bfb2b12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7931ec12b035e77be2942645717514cffd8db8a92fbc9916149b0c639225191 +size 23977 diff --git a/parse/train/tqc8n6oHCtZ/images/e4a6ecfc1cdcda5b3130f2509429e44b544d994935e6b44f36893f811295f752.jpg b/parse/train/tqc8n6oHCtZ/images/e4a6ecfc1cdcda5b3130f2509429e44b544d994935e6b44f36893f811295f752.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c801b9823f5dafe1ff9345337a54437bc348576 --- /dev/null +++ b/parse/train/tqc8n6oHCtZ/images/e4a6ecfc1cdcda5b3130f2509429e44b544d994935e6b44f36893f811295f752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc726086dc3493084bd0f20f7ffa76c9987dc0cc66301ca23ab426606f6923d9 +size 7084 diff --git a/parse/train/tqc8n6oHCtZ/images/f0829b1fbd9636baa6152ad5a45e5f7dbf08c6a7333b2fd362453dfa90284833.jpg b/parse/train/tqc8n6oHCtZ/images/f0829b1fbd9636baa6152ad5a45e5f7dbf08c6a7333b2fd362453dfa90284833.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97dcdda864888893404b7530b7b42e71496f46a6 --- /dev/null +++ b/parse/train/tqc8n6oHCtZ/images/f0829b1fbd9636baa6152ad5a45e5f7dbf08c6a7333b2fd362453dfa90284833.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0602071302c1e3e38537a285046bd4a20b5a68bc0ddd67b849d4438d8557d7f5 +size 51126 diff --git a/parse/train/x_n34KpwAvI/images/05a9ef193925c2947e566d0dc0b420b7c19832834de37b0b8fc581d2fabdda87.jpg b/parse/train/x_n34KpwAvI/images/05a9ef193925c2947e566d0dc0b420b7c19832834de37b0b8fc581d2fabdda87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76b59b201a8a921d8e7ea3f80def8cbf16eea9a8 --- /dev/null +++ b/parse/train/x_n34KpwAvI/images/05a9ef193925c2947e566d0dc0b420b7c19832834de37b0b8fc581d2fabdda87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10436dd499aad68670c4c172e9a6a26f8d22d85819ba1c7b8b8a14446ded4af0 +size 62694 diff --git a/parse/train/x_n34KpwAvI/images/0fa8dfc01b9411311f831f265a2df5d677e6b25e95756c7f0a5cade1ecac00b9.jpg b/parse/train/x_n34KpwAvI/images/0fa8dfc01b9411311f831f265a2df5d677e6b25e95756c7f0a5cade1ecac00b9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d65cfd9b26ee05fac19e29440e737ee1195e05b --- /dev/null +++ b/parse/train/x_n34KpwAvI/images/0fa8dfc01b9411311f831f265a2df5d677e6b25e95756c7f0a5cade1ecac00b9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83da81d581251efc4409cfade4e452693081febb910d57c1913dacabf52b2944 +size 20777 diff --git a/parse/train/x_n34KpwAvI/images/196452dc2207b824cd5ec3d8d0e2db29cb9a4ac4bd65b1fe725f7bb346a66f19.jpg b/parse/train/x_n34KpwAvI/images/196452dc2207b824cd5ec3d8d0e2db29cb9a4ac4bd65b1fe725f7bb346a66f19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf7d1c65eb23d8548fa6b96f0d03e6a0b3d80ba7 --- /dev/null +++ b/parse/train/x_n34KpwAvI/images/196452dc2207b824cd5ec3d8d0e2db29cb9a4ac4bd65b1fe725f7bb346a66f19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aab042b1e961e243958c0af7061157717b648e6df0e4638b9671d78691e042a +size 26433 diff --git a/parse/train/x_n34KpwAvI/images/1e4cd9a5ba40c218bd4a88ef8db090ef1a62465f1dd37bc707b4af12b6275f8f.jpg b/parse/train/x_n34KpwAvI/images/1e4cd9a5ba40c218bd4a88ef8db090ef1a62465f1dd37bc707b4af12b6275f8f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0207aa948004d40e6b2bbce9cc8ea5e394ae3308 --- /dev/null +++ b/parse/train/x_n34KpwAvI/images/1e4cd9a5ba40c218bd4a88ef8db090ef1a62465f1dd37bc707b4af12b6275f8f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba88ca6d95ff68d9a2ff28fd8ab2fb51c608dbaedf006da232b09811215483ab +size 20599 diff --git a/parse/train/x_n34KpwAvI/images/2741adad72ed06e7afabdd3dde7ac25ec9f73872276864b218e625940f2076cf.jpg b/parse/train/x_n34KpwAvI/images/2741adad72ed06e7afabdd3dde7ac25ec9f73872276864b218e625940f2076cf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2dcc80364c9cc6728d99818e3c21e9b6fb37065 --- /dev/null +++ b/parse/train/x_n34KpwAvI/images/2741adad72ed06e7afabdd3dde7ac25ec9f73872276864b218e625940f2076cf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:685eff3ee3473df692f187adf9645cb9f344d520daabd8a1a14ffe99679d18d9 +size 3425 diff --git a/parse/train/x_n34KpwAvI/images/4219dda3c670126460a44a616dc221db62caa0d80b9d16f53c6da493fd34be60.jpg b/parse/train/x_n34KpwAvI/images/4219dda3c670126460a44a616dc221db62caa0d80b9d16f53c6da493fd34be60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5d2dcb167c59135635f5b3707ef0107bc8953fa --- /dev/null +++ b/parse/train/x_n34KpwAvI/images/4219dda3c670126460a44a616dc221db62caa0d80b9d16f53c6da493fd34be60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad8ce9aa61da51362358561dcf4f6c89543fa416ddd81a618ccc0ac89901d432 +size 69960 diff --git a/parse/train/x_n34KpwAvI/images/62ce6ae37f7f0d6ac9a761c23c91ac14899fa332c53ed4477eb0ac584efdf545.jpg b/parse/train/x_n34KpwAvI/images/62ce6ae37f7f0d6ac9a761c23c91ac14899fa332c53ed4477eb0ac584efdf545.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c7c4a549ed4a368c4095b4816b59c2945340be5 --- /dev/null +++ b/parse/train/x_n34KpwAvI/images/62ce6ae37f7f0d6ac9a761c23c91ac14899fa332c53ed4477eb0ac584efdf545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c590cb89bef10fd7012e6cd2745859bbf8cf1a2e7ad17fa5a4e123131a6794f +size 15114 diff --git a/parse/train/x_n34KpwAvI/images/66afbf5119514d13957f152b9416529eb989974abeef3d73eff788be220c7f1b.jpg b/parse/train/x_n34KpwAvI/images/66afbf5119514d13957f152b9416529eb989974abeef3d73eff788be220c7f1b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1197d9d5b4a3b04ae55d30f7c745bb46dcb29584 --- /dev/null +++ b/parse/train/x_n34KpwAvI/images/66afbf5119514d13957f152b9416529eb989974abeef3d73eff788be220c7f1b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ce0875c02a546a94f594db4a1b3eeedfecaed6043d3e7f2e61090169682cc1d +size 3584 diff --git a/parse/train/x_n34KpwAvI/images/a48dfbee6ce2308ced0121a6e7825fa32b4f4a129cb71e47debd6343efc58b1c.jpg b/parse/train/x_n34KpwAvI/images/a48dfbee6ce2308ced0121a6e7825fa32b4f4a129cb71e47debd6343efc58b1c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..103d6f4f812f026a8ad143297711adc6e284e963 --- /dev/null +++ b/parse/train/x_n34KpwAvI/images/a48dfbee6ce2308ced0121a6e7825fa32b4f4a129cb71e47debd6343efc58b1c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa89632ee5c364781415bedbe080dc305d823214b5c5215570bb9ebabc8b9f6 +size 46147 diff --git a/parse/train/x_n34KpwAvI/images/a4bffb5fa27c18c0f868a213e025142d64bff0fdad1ad9dd3783d48852fbccbf.jpg b/parse/train/x_n34KpwAvI/images/a4bffb5fa27c18c0f868a213e025142d64bff0fdad1ad9dd3783d48852fbccbf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11f80de0e0ad9a8d68da13fdb369c8121b6484b7 --- /dev/null +++ b/parse/train/x_n34KpwAvI/images/a4bffb5fa27c18c0f868a213e025142d64bff0fdad1ad9dd3783d48852fbccbf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c1d978e029a958e18fe256cada2e2255c8ad461d7c38ed248ec5d566888af7 +size 114953 diff --git a/parse/train/x_n34KpwAvI/images/c3a2c4be506cc489675c0a05aec6f0de2ae6365564de158ceb0286ffe3f6c247.jpg b/parse/train/x_n34KpwAvI/images/c3a2c4be506cc489675c0a05aec6f0de2ae6365564de158ceb0286ffe3f6c247.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2a9a133a5286697b4b982c5c676fb127a844eab --- /dev/null +++ b/parse/train/x_n34KpwAvI/images/c3a2c4be506cc489675c0a05aec6f0de2ae6365564de158ceb0286ffe3f6c247.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91eef25404f0bfc4969aeeb4ad2389779d84e7eeaf4da93ffab5a4d3463e4aa5 +size 3848 diff --git a/parse/train/x_n34KpwAvI/images/d96c65243fe1355410783da25412c46f86413f350a364b60810116b247f9ef55.jpg b/parse/train/x_n34KpwAvI/images/d96c65243fe1355410783da25412c46f86413f350a364b60810116b247f9ef55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cfa1faca81885ea53db4a796c9400f1a392773bd --- /dev/null +++ b/parse/train/x_n34KpwAvI/images/d96c65243fe1355410783da25412c46f86413f350a364b60810116b247f9ef55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bfe64de2c45c1b21f4c56b38a9fdbb45dbe6820a1bbe976fe3cf1642f5d6c9c +size 187293 diff --git a/parse/train/x_n34KpwAvI/images/dc92c9709295048183fd141701a2198e3414224ca6b8c5c63593ac77ed868485.jpg b/parse/train/x_n34KpwAvI/images/dc92c9709295048183fd141701a2198e3414224ca6b8c5c63593ac77ed868485.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d4054565adefc9dfe59423a8805fe98b4670c756 --- /dev/null +++ b/parse/train/x_n34KpwAvI/images/dc92c9709295048183fd141701a2198e3414224ca6b8c5c63593ac77ed868485.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:329d047e993329654c3a5daf13de17f54628deeb92794c854db4978447be7666 +size 21416 diff --git a/parse/train/x_n34KpwAvI/images/e488cf94d564cdf2a0d0e073528f78a33d6d1eea4aad4683935a29390428bb77.jpg b/parse/train/x_n34KpwAvI/images/e488cf94d564cdf2a0d0e073528f78a33d6d1eea4aad4683935a29390428bb77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fca25a2a15567e1088220ac3f10c7d8f46f1c6ec --- /dev/null +++ b/parse/train/x_n34KpwAvI/images/e488cf94d564cdf2a0d0e073528f78a33d6d1eea4aad4683935a29390428bb77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7cbadcaa282bb3fb21d4dbf3ce52d35f49188cb5878dec8350426b610ba4d96 +size 3298 diff --git a/parse/train/x_n34KpwAvI/images/ffb0cbccbf9841c8cb32f643242c71fb2683116b840ad953aca599556b8d8afe.jpg b/parse/train/x_n34KpwAvI/images/ffb0cbccbf9841c8cb32f643242c71fb2683116b840ad953aca599556b8d8afe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba8603929a255e5f4ea366169fb56a8550196c16 --- /dev/null +++ b/parse/train/x_n34KpwAvI/images/ffb0cbccbf9841c8cb32f643242c71fb2683116b840ad953aca599556b8d8afe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a233b93d27c12c3241aa7625f2cfed493f6c47abc82c46ae5e27fb301ade60e4 +size 3792 diff --git a/parse/train/zkHlu_3sJYU/images/0c298f89243367a5caeaf75d1a922847cc8cf15d5cc0345d520d5a5ecd0c8065.jpg b/parse/train/zkHlu_3sJYU/images/0c298f89243367a5caeaf75d1a922847cc8cf15d5cc0345d520d5a5ecd0c8065.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1844fdd96b577843564e79acec69b2e916a3e29 --- /dev/null +++ b/parse/train/zkHlu_3sJYU/images/0c298f89243367a5caeaf75d1a922847cc8cf15d5cc0345d520d5a5ecd0c8065.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d1d72ebb75023c767569b47d6c478aaaa917e446b1d2a166b0cfc1e88a3ac4 +size 12508 diff --git a/parse/train/zkHlu_3sJYU/images/1556786cc200b405880ee4ae90530162a87adce971d22c005304ed2740cab5b6.jpg b/parse/train/zkHlu_3sJYU/images/1556786cc200b405880ee4ae90530162a87adce971d22c005304ed2740cab5b6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..acf538e10f1f100cd41b03a3e998c38b3a2d7ce2 --- /dev/null +++ b/parse/train/zkHlu_3sJYU/images/1556786cc200b405880ee4ae90530162a87adce971d22c005304ed2740cab5b6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce674dee5eeca3c33f8b9e9793071290a8ca8f71f811e1b390181ea54344edc0 +size 54528 diff --git a/parse/train/zkHlu_3sJYU/images/33612a6331f5d3ef0e8c8fd291fb3c31a5f6f8ac42ec31a736e2fdd3fd04a275.jpg b/parse/train/zkHlu_3sJYU/images/33612a6331f5d3ef0e8c8fd291fb3c31a5f6f8ac42ec31a736e2fdd3fd04a275.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c8d2722484a8da42034e042192f01267ec7e726 --- /dev/null +++ b/parse/train/zkHlu_3sJYU/images/33612a6331f5d3ef0e8c8fd291fb3c31a5f6f8ac42ec31a736e2fdd3fd04a275.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed7afba1cc203fb7af24906df5ef94487114ed5fb4601bdccb7efdf4e1d66dfb +size 22354 diff --git a/parse/train/zkHlu_3sJYU/images/52da16afc4302804d6a4ab22cd1c386be51e97663e0104a66ba3cba153d51343.jpg b/parse/train/zkHlu_3sJYU/images/52da16afc4302804d6a4ab22cd1c386be51e97663e0104a66ba3cba153d51343.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5f82ee474eb009242afb13178fe076f28f562f37 --- /dev/null +++ b/parse/train/zkHlu_3sJYU/images/52da16afc4302804d6a4ab22cd1c386be51e97663e0104a66ba3cba153d51343.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:894e7250b6ca2aabebffe62a6132dd309dab106d09bb2be20f1bd72d87269121 +size 70951 diff --git a/parse/train/zkHlu_3sJYU/images/5be2415e2dfae8eeafe9efa1dafa3882628cb0216856667b76b7a5ebfcb20a08.jpg b/parse/train/zkHlu_3sJYU/images/5be2415e2dfae8eeafe9efa1dafa3882628cb0216856667b76b7a5ebfcb20a08.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5f0034bfb2512eab2895edd648a378ae92159dd1 --- /dev/null +++ b/parse/train/zkHlu_3sJYU/images/5be2415e2dfae8eeafe9efa1dafa3882628cb0216856667b76b7a5ebfcb20a08.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31b4d64fa02babb4220e27219366cce29f079c8ba9e2070d6cb8079da46ab01c +size 29403 diff --git a/parse/train/zkHlu_3sJYU/images/61812e810ccf39dd2731b749f42a72a3d462f52a8ede135374ca289893dcb24b.jpg b/parse/train/zkHlu_3sJYU/images/61812e810ccf39dd2731b749f42a72a3d462f52a8ede135374ca289893dcb24b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cea80eac07acf079764052ec8869cffeffce6971 --- /dev/null +++ b/parse/train/zkHlu_3sJYU/images/61812e810ccf39dd2731b749f42a72a3d462f52a8ede135374ca289893dcb24b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07d5a7aab37d16048443ebeeac105ab285f5adbb7329e74c4706fe1d04859eed +size 117674 diff --git a/parse/train/zkHlu_3sJYU/images/6b80552c0af4a15dca897acbebf0ff96cc58d66aa2fda81b9bdb8e56e9209211.jpg b/parse/train/zkHlu_3sJYU/images/6b80552c0af4a15dca897acbebf0ff96cc58d66aa2fda81b9bdb8e56e9209211.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7626fc621443ffebf4db459df935d36642ecf47a --- /dev/null +++ b/parse/train/zkHlu_3sJYU/images/6b80552c0af4a15dca897acbebf0ff96cc58d66aa2fda81b9bdb8e56e9209211.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02550d7520b99782cd583aacc30e84d6f2e54310058d89b69d33aa767cea2d42 +size 91490 diff --git a/parse/train/zkHlu_3sJYU/images/754f10657b9f14284a8fe1a62243c0a45d0fff540230864084447d0ccbd8e4be.jpg b/parse/train/zkHlu_3sJYU/images/754f10657b9f14284a8fe1a62243c0a45d0fff540230864084447d0ccbd8e4be.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3479c0cb9ab7cd7280c57f4e87c9d07d15f6134 --- /dev/null +++ b/parse/train/zkHlu_3sJYU/images/754f10657b9f14284a8fe1a62243c0a45d0fff540230864084447d0ccbd8e4be.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d7b23018a97a8163b5445133faa395fbc08267ded7a42d16f41732fbbe9103d +size 68013 diff --git a/parse/train/zkHlu_3sJYU/images/8f5b81be5d5fa3e25bad2d3b5bfaaee39e19115b5633c0957065478960c9a925.jpg b/parse/train/zkHlu_3sJYU/images/8f5b81be5d5fa3e25bad2d3b5bfaaee39e19115b5633c0957065478960c9a925.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64413b58c79c0a7849ec4ff96673b13f15ea0dae --- /dev/null +++ b/parse/train/zkHlu_3sJYU/images/8f5b81be5d5fa3e25bad2d3b5bfaaee39e19115b5633c0957065478960c9a925.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14cc0440d3dfb917a72918949feb2c8fb9353aaeb25db56b8ffdd53501212d2a +size 41265 diff --git a/parse/train/zkHlu_3sJYU/images/a971bafe07034ad3756bcc541f10ef2bdfe6116f41021ff798aadfe23d680b5b.jpg b/parse/train/zkHlu_3sJYU/images/a971bafe07034ad3756bcc541f10ef2bdfe6116f41021ff798aadfe23d680b5b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50242fda1c5913d9f5f023529b9f6e418f8aeed2 --- /dev/null +++ b/parse/train/zkHlu_3sJYU/images/a971bafe07034ad3756bcc541f10ef2bdfe6116f41021ff798aadfe23d680b5b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d424c453c685d9550a5c57d141b4dd9fb7e0d5eeb72d4062050be2b58fd9a15 +size 24953 diff --git a/parse/train/zkHlu_3sJYU/images/ac6ac6ecbb8287397ec2dfba7dee09aaed1514be15b60f03372b18028cc9c400.jpg b/parse/train/zkHlu_3sJYU/images/ac6ac6ecbb8287397ec2dfba7dee09aaed1514be15b60f03372b18028cc9c400.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc37f8247354f68f976af3039ade1671c9074e20 --- /dev/null +++ b/parse/train/zkHlu_3sJYU/images/ac6ac6ecbb8287397ec2dfba7dee09aaed1514be15b60f03372b18028cc9c400.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a3d8c9e6f4b0df9a391016b63db12f31825d4b46c5c96da661b7d820934a05 +size 77086 diff --git a/parse/train/zkHlu_3sJYU/images/c32faae3a91097bedea7320df061b75ad882c9f5fab922ff250421ea9ba3730e.jpg b/parse/train/zkHlu_3sJYU/images/c32faae3a91097bedea7320df061b75ad882c9f5fab922ff250421ea9ba3730e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99449ff57ca437b53cafbab2a7b256d509a71bc1 --- /dev/null +++ b/parse/train/zkHlu_3sJYU/images/c32faae3a91097bedea7320df061b75ad882c9f5fab922ff250421ea9ba3730e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2894ef80715f3f2ec8cdd3e33bc5e1205e47d1a67c23848fa178521e515cda28 +size 38427 diff --git a/parse/train/zkHlu_3sJYU/images/d68071c96bf626f6573c635632fb7669f4f052dca4e1468d3338c40bc264b813.jpg b/parse/train/zkHlu_3sJYU/images/d68071c96bf626f6573c635632fb7669f4f052dca4e1468d3338c40bc264b813.jpg new file mode 100644 index 0000000000000000000000000000000000000000..10a4deac889bb78522487fe85df544cb8330b5ae --- /dev/null +++ b/parse/train/zkHlu_3sJYU/images/d68071c96bf626f6573c635632fb7669f4f052dca4e1468d3338c40bc264b813.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d64562da4d83fcf72a1041e950fc6eabe2054722ae3f52bb0f17fdf20cf1243 +size 12564